blob: 911e87d0440dee2216f2cbd72fea4ba077d1dd81 [file] [log] [blame]
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001/*
2 * linux/kernel/hrtimer.c
3 *
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08004 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08005 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08006 * Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08007 *
8 * High-resolution kernel timers
9 *
10 * In contrast to the low-resolution timeout API implemented in
11 * kernel/timer.c, hrtimers provide finer resolution and accuracy
12 * depending on system configuration and capabilities.
13 *
14 * These timers are currently used for:
15 * - itimers
16 * - POSIX timers
17 * - nanosleep
18 * - precise in-kernel timing
19 *
20 * Started by: Thomas Gleixner and Ingo Molnar
21 *
22 * Credits:
23 * based on kernel/timer.c
24 *
Thomas Gleixner66188fa2006-02-01 03:05:13 -080025 * Help, testing, suggestions, bugfixes, improvements were
26 * provided by:
27 *
28 * George Anzinger, Andrew Morton, Steven Rostedt, Roman Zippel
29 * et. al.
30 *
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080031 * For licencing details see kernel-base/COPYING
32 */
33
34#include <linux/cpu.h>
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080035#include <linux/irq.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080036#include <linux/module.h>
37#include <linux/percpu.h>
38#include <linux/hrtimer.h>
39#include <linux/notifier.h>
40#include <linux/syscalls.h>
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080041#include <linux/kallsyms.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080042#include <linux/interrupt.h>
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080043#include <linux/tick.h>
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080044#include <linux/seq_file.h>
45#include <linux/err.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080046
47#include <asm/uaccess.h>
48
49/**
50 * ktime_get - get the monotonic time in ktime_t format
51 *
52 * returns the time in ktime_t format
53 */
Thomas Gleixnerd316c572007-02-16 01:28:00 -080054ktime_t ktime_get(void)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080055{
56 struct timespec now;
57
58 ktime_get_ts(&now);
59
60 return timespec_to_ktime(now);
61}
Patrick McHardy641b9e02007-03-16 01:18:42 -070062EXPORT_SYMBOL_GPL(ktime_get);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080063
64/**
65 * ktime_get_real - get the real (wall-) time in ktime_t format
66 *
67 * returns the time in ktime_t format
68 */
Thomas Gleixnerd316c572007-02-16 01:28:00 -080069ktime_t ktime_get_real(void)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080070{
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:
George Anzinger7978672c2006-02-01 03:05:11 -080082 *
83 * Note: If we want to add new timer bases, we have to skip the two
84 * clock ids captured by the cpu-timers. We do this by holding empty
85 * entries rather than doing math adjustment of the clock ids.
86 * This ensures that we capture erroneous accesses to these clock ids
87 * rather than moving them into the range of valid clock id's.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080088 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080089DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080090{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080091
92 .clock_base =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080093 {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080094 {
95 .index = CLOCK_REALTIME,
96 .get_time = &ktime_get_real,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080097 .resolution = KTIME_LOW_RES,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080098 },
99 {
100 .index = CLOCK_MONOTONIC,
101 .get_time = &ktime_get,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800102 .resolution = KTIME_LOW_RES,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800103 },
104 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800105};
106
107/**
108 * ktime_get_ts - get the monotonic clock in timespec format
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800109 * @ts: pointer to timespec variable
110 *
111 * The function calculates the monotonic clock from the realtime
112 * clock and the wall_to_monotonic offset and stores the result
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800113 * in normalized timespec format in the variable pointed to by @ts.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800114 */
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}
Matt Helsley69778e32006-01-09 20:52:39 -0800130EXPORT_SYMBOL_GPL(ktime_get_ts);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800131
132/*
Thomas Gleixner92127c72006-03-26 01:38:05 -0800133 * Get the coarse grained time at the softirq based on xtime and
134 * wall_to_monotonic.
135 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800136static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
Thomas Gleixner92127c72006-03-26 01:38:05 -0800137{
138 ktime_t xtim, tomono;
Thomas Gleixnerad28d942007-03-16 13:38:21 -0800139 struct timespec xts, tom;
Thomas Gleixner92127c72006-03-26 01:38:05 -0800140 unsigned long seq;
141
142 do {
143 seq = read_seqbegin(&xtime_lock);
john stultz2c6b47d2007-07-24 17:47:43 -0700144 xts = current_kernel_time();
Thomas Gleixnerad28d942007-03-16 13:38:21 -0800145 tom = wall_to_monotonic;
Thomas Gleixner92127c72006-03-26 01:38:05 -0800146 } while (read_seqretry(&xtime_lock, seq));
147
john stultzf4304ab2007-02-16 01:27:26 -0800148 xtim = timespec_to_ktime(xts);
Thomas Gleixnerad28d942007-03-16 13:38:21 -0800149 tomono = timespec_to_ktime(tom);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800150 base->clock_base[CLOCK_REALTIME].softirq_time = xtim;
151 base->clock_base[CLOCK_MONOTONIC].softirq_time =
152 ktime_add(xtim, tomono);
Thomas Gleixner92127c72006-03-26 01:38:05 -0800153}
154
155/*
Thomas Gleixner303e9672007-02-16 01:27:51 -0800156 * Helper function to check, whether the timer is running the callback
157 * function
158 */
159static inline int hrtimer_callback_running(struct hrtimer *timer)
160{
161 return timer->state & HRTIMER_STATE_CALLBACK;
162}
163
164/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800165 * Functions and macros which are different for UP/SMP systems are kept in a
166 * single place
167 */
168#ifdef CONFIG_SMP
169
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800170/*
171 * We are using hashed locking: holding per_cpu(hrtimer_bases)[n].lock
172 * means that all timers which are tied to this base via timer->base are
173 * locked, and the base itself is locked too.
174 *
175 * So __run_timers/migrate_timers can safely modify all timers which could
176 * be found on the lists/queues.
177 *
178 * When the timer's base is locked, and the timer removed from list, it is
179 * possible to set timer->base = NULL and drop the lock: the timer remains
180 * locked.
181 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800182static
183struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer,
184 unsigned long *flags)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800185{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800186 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800187
188 for (;;) {
189 base = timer->base;
190 if (likely(base != NULL)) {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800191 spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800192 if (likely(base == timer->base))
193 return base;
194 /* The timer has migrated to another CPU: */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800195 spin_unlock_irqrestore(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800196 }
197 cpu_relax();
198 }
199}
200
201/*
202 * Switch the timer base to the current CPU when possible.
203 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800204static inline struct hrtimer_clock_base *
205switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800206{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800207 struct hrtimer_clock_base *new_base;
208 struct hrtimer_cpu_base *new_cpu_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800209
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800210 new_cpu_base = &__get_cpu_var(hrtimer_bases);
211 new_base = &new_cpu_base->clock_base[base->index];
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800212
213 if (base != new_base) {
214 /*
215 * We are trying to schedule the timer on the local CPU.
216 * However we can't change timer's base while it is running,
217 * so we keep it on the same CPU. No hassle vs. reprogramming
218 * the event source in the high resolution case. The softirq
219 * code will take care of this when the timer function has
220 * completed. There is no conflict as we hold the lock until
221 * the timer is enqueued.
222 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800223 if (unlikely(hrtimer_callback_running(timer)))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800224 return base;
225
226 /* See the comment in lock_timer_base() */
227 timer->base = NULL;
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800228 spin_unlock(&base->cpu_base->lock);
229 spin_lock(&new_base->cpu_base->lock);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800230 timer->base = new_base;
231 }
232 return new_base;
233}
234
235#else /* CONFIG_SMP */
236
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800237static inline struct hrtimer_clock_base *
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800238lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
239{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800240 struct hrtimer_clock_base *base = timer->base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800241
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800242 spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800243
244 return base;
245}
246
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800247# define switch_hrtimer_base(t, b) (b)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800248
249#endif /* !CONFIG_SMP */
250
251/*
252 * Functions for the union type storage format of ktime_t which are
253 * too large for inlining:
254 */
255#if BITS_PER_LONG < 64
256# ifndef CONFIG_KTIME_SCALAR
257/**
258 * ktime_add_ns - Add a scalar nanoseconds value to a ktime_t variable
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800259 * @kt: addend
260 * @nsec: the scalar nsec value to add
261 *
262 * Returns the sum of kt and nsec in ktime_t format
263 */
264ktime_t ktime_add_ns(const ktime_t kt, u64 nsec)
265{
266 ktime_t tmp;
267
268 if (likely(nsec < NSEC_PER_SEC)) {
269 tmp.tv64 = nsec;
270 } else {
271 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
272
273 tmp = ktime_set((long)nsec, rem);
274 }
275
276 return ktime_add(kt, tmp);
277}
David Howellsb8b8fd22007-04-27 15:31:24 -0700278
279EXPORT_SYMBOL_GPL(ktime_add_ns);
Arnaldo Carvalho de Meloa2723782007-08-19 17:16:05 -0700280
281/**
282 * ktime_sub_ns - Subtract a scalar nanoseconds value from a ktime_t variable
283 * @kt: minuend
284 * @nsec: the scalar nsec value to subtract
285 *
286 * Returns the subtraction of @nsec from @kt in ktime_t format
287 */
288ktime_t ktime_sub_ns(const ktime_t kt, u64 nsec)
289{
290 ktime_t tmp;
291
292 if (likely(nsec < NSEC_PER_SEC)) {
293 tmp.tv64 = nsec;
294 } else {
295 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
296
297 tmp = ktime_set((long)nsec, rem);
298 }
299
300 return ktime_sub(kt, tmp);
301}
302
303EXPORT_SYMBOL_GPL(ktime_sub_ns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800304# endif /* !CONFIG_KTIME_SCALAR */
305
306/*
307 * Divide a ktime value by a nanosecond value
308 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800309u64 ktime_divns(const ktime_t kt, s64 div)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800310{
311 u64 dclc, inc, dns;
312 int sft = 0;
313
314 dclc = dns = ktime_to_ns(kt);
315 inc = div;
316 /* Make sure the divisor is less than 2^32: */
317 while (div >> 32) {
318 sft++;
319 div >>= 1;
320 }
321 dclc >>= sft;
322 do_div(dclc, (unsigned long) div);
323
Davide Libenzi4d672e72008-02-04 22:27:26 -0800324 return dclc;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800325}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800326#endif /* BITS_PER_LONG >= 64 */
327
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100328/*
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100329 * Add two ktime values and do a safety check for overflow:
330 */
331ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs)
332{
333 ktime_t res = ktime_add(lhs, rhs);
334
335 /*
336 * We use KTIME_SEC_MAX here, the maximum timeout which we can
337 * return to user space in a timespec:
338 */
339 if (res.tv64 < 0 || res.tv64 < lhs.tv64 || res.tv64 < rhs.tv64)
340 res = ktime_set(KTIME_SEC_MAX, 0);
341
342 return res;
343}
344
345/*
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100346 * Check, whether the timer is on the callback pending list
347 */
348static inline int hrtimer_cb_pending(const struct hrtimer *timer)
349{
350 return timer->state & HRTIMER_STATE_PENDING;
351}
352
353/*
354 * Remove a timer from the callback pending list
355 */
356static inline void hrtimer_remove_cb_pending(struct hrtimer *timer)
357{
358 list_del_init(&timer->cb_entry);
359}
360
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800361/* High resolution timer related functions */
362#ifdef CONFIG_HIGH_RES_TIMERS
363
364/*
365 * High resolution timer enabled ?
366 */
367static int hrtimer_hres_enabled __read_mostly = 1;
368
369/*
370 * Enable / Disable high resolution mode
371 */
372static int __init setup_hrtimer_hres(char *str)
373{
374 if (!strcmp(str, "off"))
375 hrtimer_hres_enabled = 0;
376 else if (!strcmp(str, "on"))
377 hrtimer_hres_enabled = 1;
378 else
379 return 0;
380 return 1;
381}
382
383__setup("highres=", setup_hrtimer_hres);
384
385/*
386 * hrtimer_high_res_enabled - query, if the highres mode is enabled
387 */
388static inline int hrtimer_is_hres_enabled(void)
389{
390 return hrtimer_hres_enabled;
391}
392
393/*
394 * Is the high resolution mode active ?
395 */
396static inline int hrtimer_hres_active(void)
397{
398 return __get_cpu_var(hrtimer_bases).hres_active;
399}
400
401/*
402 * Reprogram the event source with checking both queues for the
403 * next event
404 * Called with interrupts disabled and base->lock held
405 */
406static void hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base)
407{
408 int i;
409 struct hrtimer_clock_base *base = cpu_base->clock_base;
410 ktime_t expires;
411
412 cpu_base->expires_next.tv64 = KTIME_MAX;
413
414 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
415 struct hrtimer *timer;
416
417 if (!base->first)
418 continue;
419 timer = rb_entry(base->first, struct hrtimer, node);
420 expires = ktime_sub(timer->expires, base->offset);
421 if (expires.tv64 < cpu_base->expires_next.tv64)
422 cpu_base->expires_next = expires;
423 }
424
425 if (cpu_base->expires_next.tv64 != KTIME_MAX)
426 tick_program_event(cpu_base->expires_next, 1);
427}
428
429/*
430 * Shared reprogramming for clock_realtime and clock_monotonic
431 *
432 * When a timer is enqueued and expires earlier than the already enqueued
433 * timers, we have to check, whether it expires earlier than the timer for
434 * which the clock event device was armed.
435 *
436 * Called with interrupts disabled and base->cpu_base.lock held
437 */
438static int hrtimer_reprogram(struct hrtimer *timer,
439 struct hrtimer_clock_base *base)
440{
441 ktime_t *expires_next = &__get_cpu_var(hrtimer_bases).expires_next;
442 ktime_t expires = ktime_sub(timer->expires, base->offset);
443 int res;
444
Thomas Gleixner63070a72008-02-14 00:58:36 +0100445 WARN_ON_ONCE(timer->expires.tv64 < 0);
446
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800447 /*
448 * When the callback is running, we do not reprogram the clock event
449 * device. The timer callback is either running on a different CPU or
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200450 * the callback is executed in the hrtimer_interrupt context. The
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800451 * reprogramming is handled either by the softirq, which called the
452 * callback or at the end of the hrtimer_interrupt.
453 */
454 if (hrtimer_callback_running(timer))
455 return 0;
456
Thomas Gleixner63070a72008-02-14 00:58:36 +0100457 /*
458 * CLOCK_REALTIME timer might be requested with an absolute
459 * expiry time which is less than base->offset. Nothing wrong
460 * about that, just avoid to call into the tick code, which
461 * has now objections against negative expiry values.
462 */
463 if (expires.tv64 < 0)
464 return -ETIME;
465
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800466 if (expires.tv64 >= expires_next->tv64)
467 return 0;
468
469 /*
470 * Clockevents returns -ETIME, when the event was in the past.
471 */
472 res = tick_program_event(expires, 0);
473 if (!IS_ERR_VALUE(res))
474 *expires_next = expires;
475 return res;
476}
477
478
479/*
480 * Retrigger next event is called after clock was set
481 *
482 * Called with interrupts disabled via on_each_cpu()
483 */
484static void retrigger_next_event(void *arg)
485{
486 struct hrtimer_cpu_base *base;
487 struct timespec realtime_offset;
488 unsigned long seq;
489
490 if (!hrtimer_hres_active())
491 return;
492
493 do {
494 seq = read_seqbegin(&xtime_lock);
495 set_normalized_timespec(&realtime_offset,
496 -wall_to_monotonic.tv_sec,
497 -wall_to_monotonic.tv_nsec);
498 } while (read_seqretry(&xtime_lock, seq));
499
500 base = &__get_cpu_var(hrtimer_bases);
501
502 /* Adjust CLOCK_REALTIME offset */
503 spin_lock(&base->lock);
504 base->clock_base[CLOCK_REALTIME].offset =
505 timespec_to_ktime(realtime_offset);
506
507 hrtimer_force_reprogram(base);
508 spin_unlock(&base->lock);
509}
510
511/*
512 * Clock realtime was set
513 *
514 * Change the offset of the realtime clock vs. the monotonic
515 * clock.
516 *
517 * We might have to reprogram the high resolution timer interrupt. On
518 * SMP we call the architecture specific code to retrigger _all_ high
519 * resolution timer interrupts. On UP we just disable interrupts and
520 * call the high resolution interrupt code.
521 */
522void clock_was_set(void)
523{
524 /* Retrigger the CPU local events everywhere */
525 on_each_cpu(retrigger_next_event, NULL, 0, 1);
526}
527
528/*
Ingo Molnar995f0542007-04-07 12:05:00 +0200529 * During resume we might have to reprogram the high resolution timer
530 * interrupt (on the local CPU):
531 */
532void hres_timers_resume(void)
533{
534 WARN_ON_ONCE(num_online_cpus() > 1);
535
536 /* Retrigger the CPU local events: */
537 retrigger_next_event(NULL);
538}
539
540/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800541 * Initialize the high resolution related parts of cpu_base
542 */
543static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base)
544{
545 base->expires_next.tv64 = KTIME_MAX;
546 base->hres_active = 0;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800547}
548
549/*
550 * Initialize the high resolution related parts of a hrtimer
551 */
552static inline void hrtimer_init_timer_hres(struct hrtimer *timer)
553{
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800554}
555
556/*
557 * When High resolution timers are active, try to reprogram. Note, that in case
558 * the state has HRTIMER_STATE_CALLBACK set, no reprogramming and no expiry
559 * check happens. The timer gets enqueued into the rbtree. The reprogramming
560 * and expiry check is done in the hrtimer_interrupt or in the softirq.
561 */
562static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
563 struct hrtimer_clock_base *base)
564{
565 if (base->cpu_base->hres_active && hrtimer_reprogram(timer, base)) {
566
567 /* Timer is expired, act upon the callback mode */
568 switch(timer->cb_mode) {
569 case HRTIMER_CB_IRQSAFE_NO_RESTART:
570 /*
571 * We can call the callback from here. No restart
572 * happens, so no danger of recursion
573 */
574 BUG_ON(timer->function(timer) != HRTIMER_NORESTART);
575 return 1;
576 case HRTIMER_CB_IRQSAFE_NO_SOFTIRQ:
577 /*
578 * This is solely for the sched tick emulation with
579 * dynamic tick support to ensure that we do not
580 * restart the tick right on the edge and end up with
581 * the tick timer in the softirq ! The calling site
582 * takes care of this.
583 */
584 return 1;
585 case HRTIMER_CB_IRQSAFE:
586 case HRTIMER_CB_SOFTIRQ:
587 /*
588 * Move everything else into the softirq pending list !
589 */
590 list_add_tail(&timer->cb_entry,
591 &base->cpu_base->cb_pending);
592 timer->state = HRTIMER_STATE_PENDING;
593 raise_softirq(HRTIMER_SOFTIRQ);
594 return 1;
595 default:
596 BUG();
597 }
598 }
599 return 0;
600}
601
602/*
603 * Switch to high resolution mode
604 */
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800605static int hrtimer_switch_to_hres(void)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800606{
Ingo Molnar820de5c2007-07-21 04:37:36 -0700607 int cpu = smp_processor_id();
608 struct hrtimer_cpu_base *base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800609 unsigned long flags;
610
611 if (base->hres_active)
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800612 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800613
614 local_irq_save(flags);
615
616 if (tick_init_highres()) {
617 local_irq_restore(flags);
Ingo Molnar820de5c2007-07-21 04:37:36 -0700618 printk(KERN_WARNING "Could not switch to high resolution "
619 "mode on CPU %d\n", cpu);
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800620 return 0;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800621 }
622 base->hres_active = 1;
623 base->clock_base[CLOCK_REALTIME].resolution = KTIME_HIGH_RES;
624 base->clock_base[CLOCK_MONOTONIC].resolution = KTIME_HIGH_RES;
625
626 tick_setup_sched_timer();
627
628 /* "Retrigger" the interrupt to get things going */
629 retrigger_next_event(NULL);
630 local_irq_restore(flags);
Michael Ellermanedfed662007-10-29 16:35:29 +1100631 printk(KERN_DEBUG "Switched to high resolution mode on CPU %d\n",
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800632 smp_processor_id());
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800633 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800634}
635
636#else
637
638static inline int hrtimer_hres_active(void) { return 0; }
639static inline int hrtimer_is_hres_enabled(void) { return 0; }
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800640static inline int hrtimer_switch_to_hres(void) { return 0; }
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800641static inline void hrtimer_force_reprogram(struct hrtimer_cpu_base *base) { }
642static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
643 struct hrtimer_clock_base *base)
644{
645 return 0;
646}
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800647static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) { }
648static inline void hrtimer_init_timer_hres(struct hrtimer *timer) { }
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100649static inline int hrtimer_reprogram(struct hrtimer *timer,
650 struct hrtimer_clock_base *base)
651{
652 return 0;
653}
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800654
655#endif /* CONFIG_HIGH_RES_TIMERS */
656
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800657#ifdef CONFIG_TIMER_STATS
658void __timer_stats_hrtimer_set_start_info(struct hrtimer *timer, void *addr)
659{
660 if (timer->start_site)
661 return;
662
663 timer->start_site = addr;
664 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
665 timer->start_pid = current->pid;
666}
667#endif
668
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800669/*
Uwe Kleine-König6506f2a2007-10-20 01:56:53 +0200670 * Counterpart to lock_hrtimer_base above:
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800671 */
672static inline
673void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
674{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800675 spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800676}
677
678/**
679 * hrtimer_forward - forward the timer expiry
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800680 * @timer: hrtimer to forward
Roman Zippel44f21472006-03-26 01:38:06 -0800681 * @now: forward past this time
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800682 * @interval: the interval to forward
683 *
684 * Forward the timer expiry so it will expire in the future.
Jonathan Corbet8dca6f32006-01-16 15:58:55 -0700685 * Returns the number of overruns.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800686 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800687u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800688{
Davide Libenzi4d672e72008-02-04 22:27:26 -0800689 u64 orun = 1;
Roman Zippel44f21472006-03-26 01:38:06 -0800690 ktime_t delta;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800691
692 delta = ktime_sub(now, timer->expires);
693
694 if (delta.tv64 < 0)
695 return 0;
696
Thomas Gleixnerc9db4fa2006-01-12 11:47:34 +0100697 if (interval.tv64 < timer->base->resolution.tv64)
698 interval.tv64 = timer->base->resolution.tv64;
699
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800700 if (unlikely(delta.tv64 >= interval.tv64)) {
Roman Zippeldf869b62006-03-26 01:38:11 -0800701 s64 incr = ktime_to_ns(interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800702
703 orun = ktime_divns(delta, incr);
704 timer->expires = ktime_add_ns(timer->expires, incr * orun);
705 if (timer->expires.tv64 > now.tv64)
706 return orun;
707 /*
708 * This (and the ktime_add() below) is the
709 * correction for exact:
710 */
711 orun++;
712 }
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100713 timer->expires = ktime_add_safe(timer->expires, interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800714
715 return orun;
716}
Stas Sergeev6bdb6b62007-05-08 00:31:58 -0700717EXPORT_SYMBOL_GPL(hrtimer_forward);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800718
719/*
720 * enqueue_hrtimer - internal function to (re)start a timer
721 *
722 * The timer is inserted in expiry order. Insertion into the
723 * red black tree is O(log(n)). Must hold the base lock.
724 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800725static void enqueue_hrtimer(struct hrtimer *timer,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800726 struct hrtimer_clock_base *base, int reprogram)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800727{
728 struct rb_node **link = &base->active.rb_node;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800729 struct rb_node *parent = NULL;
730 struct hrtimer *entry;
Ingo Molnar99bc2fc2007-07-21 04:37:36 -0700731 int leftmost = 1;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800732
733 /*
734 * Find the right place in the rbtree:
735 */
736 while (*link) {
737 parent = *link;
738 entry = rb_entry(parent, struct hrtimer, node);
739 /*
740 * We dont care about collisions. Nodes with
741 * the same expiry time stay together.
742 */
Ingo Molnar99bc2fc2007-07-21 04:37:36 -0700743 if (timer->expires.tv64 < entry->expires.tv64) {
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800744 link = &(*link)->rb_left;
Ingo Molnar99bc2fc2007-07-21 04:37:36 -0700745 } else {
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800746 link = &(*link)->rb_right;
Ingo Molnar99bc2fc2007-07-21 04:37:36 -0700747 leftmost = 0;
748 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800749 }
750
751 /*
Thomas Gleixner288867e2006-01-12 11:25:54 +0100752 * Insert the timer to the rbtree and check whether it
753 * replaces the first pending timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800754 */
Ingo Molnar99bc2fc2007-07-21 04:37:36 -0700755 if (leftmost) {
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800756 /*
757 * Reprogram the clock event device. When the timer is already
758 * expired hrtimer_enqueue_reprogram has either called the
759 * callback or added it to the pending list and raised the
760 * softirq.
761 *
762 * This is a NOP for !HIGHRES
763 */
764 if (reprogram && hrtimer_enqueue_reprogram(timer, base))
765 return;
766
767 base->first = &timer->node;
768 }
769
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800770 rb_link_node(&timer->node, parent, link);
771 rb_insert_color(&timer->node, &base->active);
Thomas Gleixner303e9672007-02-16 01:27:51 -0800772 /*
773 * HRTIMER_STATE_ENQUEUED is or'ed to the current state to preserve the
774 * state of a possibly running callback.
775 */
776 timer->state |= HRTIMER_STATE_ENQUEUED;
Thomas Gleixner288867e2006-01-12 11:25:54 +0100777}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800778
779/*
780 * __remove_hrtimer - internal function to remove a timer
781 *
782 * Caller must hold the base lock.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800783 *
784 * High resolution timer mode reprograms the clock event device when the
785 * timer is the one which expires next. The caller can disable this by setting
786 * reprogram to zero. This is useful, when the context does a reprogramming
787 * anyway (e.g. timer interrupt)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800788 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800789static void __remove_hrtimer(struct hrtimer *timer,
Thomas Gleixner303e9672007-02-16 01:27:51 -0800790 struct hrtimer_clock_base *base,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800791 unsigned long newstate, int reprogram)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800792{
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800793 /* High res. callback list. NOP for !HIGHRES */
794 if (hrtimer_cb_pending(timer))
795 hrtimer_remove_cb_pending(timer);
796 else {
797 /*
798 * Remove the timer from the rbtree and replace the
799 * first entry pointer if necessary.
800 */
801 if (base->first == &timer->node) {
802 base->first = rb_next(&timer->node);
803 /* Reprogram the clock event device. if enabled */
804 if (reprogram && hrtimer_hres_active())
805 hrtimer_force_reprogram(base->cpu_base);
806 }
807 rb_erase(&timer->node, &base->active);
808 }
Thomas Gleixner303e9672007-02-16 01:27:51 -0800809 timer->state = newstate;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800810}
811
812/*
813 * remove hrtimer, called with base lock held
814 */
815static inline int
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800816remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800817{
Thomas Gleixner303e9672007-02-16 01:27:51 -0800818 if (hrtimer_is_queued(timer)) {
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800819 int reprogram;
820
821 /*
822 * Remove the timer and force reprogramming when high
823 * resolution mode is active and the timer is on the current
824 * CPU. If we remove a timer on another CPU, reprogramming is
825 * skipped. The interrupt event on this CPU is fired and
826 * reprogramming happens in the interrupt handler. This is a
827 * rare case and less expensive than a smp call.
828 */
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800829 timer_stats_hrtimer_clear_start_info(timer);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800830 reprogram = base->cpu_base == &__get_cpu_var(hrtimer_bases);
831 __remove_hrtimer(timer, base, HRTIMER_STATE_INACTIVE,
832 reprogram);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800833 return 1;
834 }
835 return 0;
836}
837
838/**
839 * hrtimer_start - (re)start an relative timer on the current CPU
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800840 * @timer: the timer to be added
841 * @tim: expiry time
842 * @mode: expiry mode: absolute (HRTIMER_ABS) or relative (HRTIMER_REL)
843 *
844 * Returns:
845 * 0 on success
846 * 1 when the timer was active
847 */
848int
849hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
850{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800851 struct hrtimer_clock_base *base, *new_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800852 unsigned long flags;
853 int ret;
854
855 base = lock_hrtimer_base(timer, &flags);
856
857 /* Remove an active timer from the queue: */
858 ret = remove_hrtimer(timer, base);
859
860 /* Switch the timer base, if necessary: */
861 new_base = switch_hrtimer_base(timer, base);
862
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800863 if (mode == HRTIMER_MODE_REL) {
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100864 tim = ktime_add_safe(tim, new_base->get_time());
Ingo Molnar06027bd2006-02-14 13:53:15 -0800865 /*
866 * CONFIG_TIME_LOW_RES is a temporary way for architectures
867 * to signal that they simply return xtime in
868 * do_gettimeoffset(). In this case we want to round up by
869 * resolution when starting a relative timer, to avoid short
870 * timeouts. This will go away with the GTOD framework.
871 */
872#ifdef CONFIG_TIME_LOW_RES
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100873 tim = ktime_add_safe(tim, base->resolution);
Ingo Molnar06027bd2006-02-14 13:53:15 -0800874#endif
875 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800876 timer->expires = tim;
877
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800878 timer_stats_hrtimer_set_start_info(timer);
879
Ingo Molnar935c6312007-03-28 13:17:18 +0200880 /*
881 * Only allow reprogramming if the new base is on this CPU.
882 * (it might still be on another CPU if the timer was pending)
883 */
884 enqueue_hrtimer(timer, new_base,
885 new_base->cpu_base == &__get_cpu_var(hrtimer_bases));
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800886
887 unlock_hrtimer_base(timer, &flags);
888
889 return ret;
890}
Stephen Hemminger8d16b762006-05-30 21:26:09 -0700891EXPORT_SYMBOL_GPL(hrtimer_start);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800892
893/**
894 * hrtimer_try_to_cancel - try to deactivate a timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800895 * @timer: hrtimer to stop
896 *
897 * Returns:
898 * 0 when the timer was not active
899 * 1 when the timer was active
900 * -1 when the timer is currently excuting the callback function and
Randy Dunlapfa9799e2006-06-25 05:49:15 -0700901 * cannot be stopped
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800902 */
903int hrtimer_try_to_cancel(struct hrtimer *timer)
904{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800905 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800906 unsigned long flags;
907 int ret = -1;
908
909 base = lock_hrtimer_base(timer, &flags);
910
Thomas Gleixner303e9672007-02-16 01:27:51 -0800911 if (!hrtimer_callback_running(timer))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800912 ret = remove_hrtimer(timer, base);
913
914 unlock_hrtimer_base(timer, &flags);
915
916 return ret;
917
918}
Stephen Hemminger8d16b762006-05-30 21:26:09 -0700919EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800920
921/**
922 * hrtimer_cancel - cancel a timer and wait for the handler to finish.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800923 * @timer: the timer to be cancelled
924 *
925 * Returns:
926 * 0 when the timer was not active
927 * 1 when the timer was active
928 */
929int hrtimer_cancel(struct hrtimer *timer)
930{
931 for (;;) {
932 int ret = hrtimer_try_to_cancel(timer);
933
934 if (ret >= 0)
935 return ret;
Joe Korty5ef37b12006-04-10 22:54:13 -0700936 cpu_relax();
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800937 }
938}
Stephen Hemminger8d16b762006-05-30 21:26:09 -0700939EXPORT_SYMBOL_GPL(hrtimer_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800940
941/**
942 * hrtimer_get_remaining - get remaining time for the timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800943 * @timer: the timer to read
944 */
945ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
946{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800947 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800948 unsigned long flags;
949 ktime_t rem;
950
951 base = lock_hrtimer_base(timer, &flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800952 rem = ktime_sub(timer->expires, base->get_time());
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800953 unlock_hrtimer_base(timer, &flags);
954
955 return rem;
956}
Stephen Hemminger8d16b762006-05-30 21:26:09 -0700957EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800958
Thomas Gleixnerfd064b92007-02-16 01:27:47 -0800959#if defined(CONFIG_NO_IDLE_HZ) || defined(CONFIG_NO_HZ)
Tony Lindgren69239742006-03-06 15:42:45 -0800960/**
961 * hrtimer_get_next_event - get the time until next expiry event
962 *
963 * Returns the delta to the next expiry event or KTIME_MAX if no timer
964 * is pending.
965 */
966ktime_t hrtimer_get_next_event(void)
967{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800968 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
969 struct hrtimer_clock_base *base = cpu_base->clock_base;
Tony Lindgren69239742006-03-06 15:42:45 -0800970 ktime_t delta, mindelta = { .tv64 = KTIME_MAX };
971 unsigned long flags;
972 int i;
973
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800974 spin_lock_irqsave(&cpu_base->lock, flags);
975
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800976 if (!hrtimer_hres_active()) {
977 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
978 struct hrtimer *timer;
Tony Lindgren69239742006-03-06 15:42:45 -0800979
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800980 if (!base->first)
981 continue;
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800982
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800983 timer = rb_entry(base->first, struct hrtimer, node);
984 delta.tv64 = timer->expires.tv64;
985 delta = ktime_sub(delta, base->get_time());
986 if (delta.tv64 < mindelta.tv64)
987 mindelta.tv64 = delta.tv64;
988 }
Tony Lindgren69239742006-03-06 15:42:45 -0800989 }
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800990
991 spin_unlock_irqrestore(&cpu_base->lock, flags);
992
Tony Lindgren69239742006-03-06 15:42:45 -0800993 if (mindelta.tv64 < 0)
994 mindelta.tv64 = 0;
995 return mindelta;
996}
997#endif
998
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800999/**
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001000 * hrtimer_init - initialize a timer to the given clock
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001001 * @timer: the timer to be initialized
1002 * @clock_id: the clock to be used
George Anzinger7978672c2006-02-01 03:05:11 -08001003 * @mode: timer mode abs/rel
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001004 */
George Anzinger7978672c2006-02-01 03:05:11 -08001005void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1006 enum hrtimer_mode mode)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001007{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001008 struct hrtimer_cpu_base *cpu_base;
George Anzinger7978672c2006-02-01 03:05:11 -08001009
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001010 memset(timer, 0, sizeof(struct hrtimer));
George Anzinger7978672c2006-02-01 03:05:11 -08001011
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001012 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
George Anzinger7978672c2006-02-01 03:05:11 -08001013
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001014 if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS)
George Anzinger7978672c2006-02-01 03:05:11 -08001015 clock_id = CLOCK_MONOTONIC;
1016
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001017 timer->base = &cpu_base->clock_base[clock_id];
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001018 INIT_LIST_HEAD(&timer->cb_entry);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001019 hrtimer_init_timer_hres(timer);
Ingo Molnar82f67cd2007-02-16 01:28:13 -08001020
1021#ifdef CONFIG_TIMER_STATS
1022 timer->start_site = NULL;
1023 timer->start_pid = -1;
1024 memset(timer->start_comm, 0, TASK_COMM_LEN);
1025#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001026}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001027EXPORT_SYMBOL_GPL(hrtimer_init);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001028
1029/**
1030 * hrtimer_get_res - get the timer resolution for a clock
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001031 * @which_clock: which clock to query
1032 * @tp: pointer to timespec variable to store the resolution
1033 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001034 * Store the resolution of the clock selected by @which_clock in the
1035 * variable pointed to by @tp.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001036 */
1037int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)
1038{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001039 struct hrtimer_cpu_base *cpu_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001040
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001041 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
1042 *tp = ktime_to_timespec(cpu_base->clock_base[which_clock].resolution);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001043
1044 return 0;
1045}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001046EXPORT_SYMBOL_GPL(hrtimer_get_res);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001047
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001048static void run_hrtimer_pending(struct hrtimer_cpu_base *cpu_base)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001049{
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001050 spin_lock_irq(&cpu_base->lock);
1051
1052 while (!list_empty(&cpu_base->cb_pending)) {
1053 enum hrtimer_restart (*fn)(struct hrtimer *);
1054 struct hrtimer *timer;
1055 int restart;
1056
1057 timer = list_entry(cpu_base->cb_pending.next,
1058 struct hrtimer, cb_entry);
1059
Ingo Molnar82f67cd2007-02-16 01:28:13 -08001060 timer_stats_account_hrtimer(timer);
1061
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001062 fn = timer->function;
1063 __remove_hrtimer(timer, timer->base, HRTIMER_STATE_CALLBACK, 0);
1064 spin_unlock_irq(&cpu_base->lock);
1065
1066 restart = fn(timer);
1067
1068 spin_lock_irq(&cpu_base->lock);
1069
1070 timer->state &= ~HRTIMER_STATE_CALLBACK;
1071 if (restart == HRTIMER_RESTART) {
1072 BUG_ON(hrtimer_active(timer));
1073 /*
1074 * Enqueue the timer, allow reprogramming of the event
1075 * device
1076 */
1077 enqueue_hrtimer(timer, timer->base, 1);
1078 } else if (hrtimer_active(timer)) {
1079 /*
1080 * If the timer was rearmed on another CPU, reprogram
1081 * the event device.
1082 */
1083 if (timer->base->first == &timer->node)
1084 hrtimer_reprogram(timer, timer->base);
1085 }
1086 }
1087 spin_unlock_irq(&cpu_base->lock);
1088}
1089
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001090static void __run_hrtimer(struct hrtimer *timer)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001091{
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001092 struct hrtimer_clock_base *base = timer->base;
1093 struct hrtimer_cpu_base *cpu_base = base->cpu_base;
1094 enum hrtimer_restart (*fn)(struct hrtimer *);
1095 int restart;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001096
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001097 __remove_hrtimer(timer, base, HRTIMER_STATE_CALLBACK, 0);
1098 timer_stats_account_hrtimer(timer);
Dimitri Sivanich3055add2006-03-31 02:31:20 -08001099
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001100 fn = timer->function;
1101 if (timer->cb_mode == HRTIMER_CB_IRQSAFE_NO_SOFTIRQ) {
1102 /*
1103 * Used for scheduler timers, avoid lock inversion with
1104 * rq->lock and tasklist_lock.
1105 *
1106 * These timers are required to deal with enqueue expiry
1107 * themselves and are not allowed to migrate.
1108 */
1109 spin_unlock(&cpu_base->lock);
1110 restart = fn(timer);
1111 spin_lock(&cpu_base->lock);
1112 } else
Roman Zippel05cfb612006-03-26 01:38:12 -08001113 restart = fn(timer);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001114
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001115 /*
1116 * Note: We clear the CALLBACK bit after enqueue_hrtimer to avoid
1117 * reprogramming of the event hardware. This happens at the end of this
1118 * function anyway.
1119 */
1120 if (restart != HRTIMER_NORESTART) {
1121 BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
1122 enqueue_hrtimer(timer, base, 0);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001123 }
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001124 timer->state &= ~HRTIMER_STATE_CALLBACK;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001125}
1126
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001127#ifdef CONFIG_HIGH_RES_TIMERS
1128
1129/*
1130 * High resolution timer interrupt
1131 * Called with interrupts disabled
1132 */
1133void hrtimer_interrupt(struct clock_event_device *dev)
1134{
1135 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1136 struct hrtimer_clock_base *base;
1137 ktime_t expires_next, now;
1138 int i, raise = 0;
1139
1140 BUG_ON(!cpu_base->hres_active);
1141 cpu_base->nr_events++;
1142 dev->next_event.tv64 = KTIME_MAX;
1143
1144 retry:
1145 now = ktime_get();
1146
1147 expires_next.tv64 = KTIME_MAX;
1148
1149 base = cpu_base->clock_base;
1150
1151 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
1152 ktime_t basenow;
1153 struct rb_node *node;
1154
1155 spin_lock(&cpu_base->lock);
1156
1157 basenow = ktime_add(now, base->offset);
1158
1159 while ((node = base->first)) {
1160 struct hrtimer *timer;
1161
1162 timer = rb_entry(node, struct hrtimer, node);
1163
1164 if (basenow.tv64 < timer->expires.tv64) {
1165 ktime_t expires;
1166
1167 expires = ktime_sub(timer->expires,
1168 base->offset);
1169 if (expires.tv64 < expires_next.tv64)
1170 expires_next = expires;
1171 break;
1172 }
1173
1174 /* Move softirq callbacks to the pending list */
1175 if (timer->cb_mode == HRTIMER_CB_SOFTIRQ) {
1176 __remove_hrtimer(timer, base,
1177 HRTIMER_STATE_PENDING, 0);
1178 list_add_tail(&timer->cb_entry,
1179 &base->cpu_base->cb_pending);
1180 raise = 1;
1181 continue;
1182 }
1183
1184 __run_hrtimer(timer);
1185 }
1186 spin_unlock(&cpu_base->lock);
1187 base++;
1188 }
1189
1190 cpu_base->expires_next = expires_next;
1191
1192 /* Reprogramming necessary ? */
1193 if (expires_next.tv64 != KTIME_MAX) {
1194 if (tick_program_event(expires_next, 0))
1195 goto retry;
1196 }
1197
1198 /* Raise softirq ? */
1199 if (raise)
1200 raise_softirq(HRTIMER_SOFTIRQ);
1201}
1202
1203static void run_hrtimer_softirq(struct softirq_action *h)
1204{
1205 run_hrtimer_pending(&__get_cpu_var(hrtimer_bases));
1206}
1207
1208#endif /* CONFIG_HIGH_RES_TIMERS */
1209
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001210/*
1211 * Called from timer softirq every jiffy, expire hrtimers:
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001212 *
1213 * For HRT its the fall back code to run the softirq in the timer
1214 * softirq context in case the hrtimer initialization failed or has
1215 * not been done yet.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001216 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001217void hrtimer_run_pending(void)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001218{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001219 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001220
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001221 if (hrtimer_hres_active())
1222 return;
1223
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001224 /*
1225 * This _is_ ugly: We have to check in the softirq context,
1226 * whether we can switch to highres and / or nohz mode. The
1227 * clocksource switch happens in the timer interrupt with
1228 * xtime_lock held. Notification from there only sets the
1229 * check bit in the tick_oneshot code, otherwise we might
1230 * deadlock vs. xtime_lock.
1231 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001232 if (tick_check_oneshot_change(!hrtimer_is_hres_enabled()))
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001233 hrtimer_switch_to_hres();
1234
1235 run_hrtimer_pending(cpu_base);
1236}
1237
1238/*
1239 * Called from hardirq context every jiffy
1240 */
1241static inline void run_hrtimer_queue(struct hrtimer_cpu_base *cpu_base,
1242 int index)
1243{
1244 struct rb_node *node;
1245 struct hrtimer_clock_base *base = &cpu_base->clock_base[index];
1246
1247 if (!base->first)
1248 return;
1249
1250 if (base->get_softirq_time)
1251 base->softirq_time = base->get_softirq_time();
1252
1253 spin_lock(&cpu_base->lock);
1254
1255 while ((node = base->first)) {
1256 struct hrtimer *timer;
1257
1258 timer = rb_entry(node, struct hrtimer, node);
1259 if (base->softirq_time.tv64 <= timer->expires.tv64)
1260 break;
1261
1262 if (timer->cb_mode == HRTIMER_CB_SOFTIRQ) {
1263 __remove_hrtimer(timer, base, HRTIMER_STATE_PENDING, 0);
1264 list_add_tail(&timer->cb_entry,
1265 &base->cpu_base->cb_pending);
1266 continue;
1267 }
1268
1269 __run_hrtimer(timer);
1270 }
1271 spin_unlock(&cpu_base->lock);
1272}
1273
1274void hrtimer_run_queues(void)
1275{
1276 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1277 int i;
1278
1279 if (hrtimer_hres_active())
1280 return;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001281
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001282 hrtimer_get_softirq_time(cpu_base);
Thomas Gleixner92127c72006-03-26 01:38:05 -08001283
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001284 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++)
1285 run_hrtimer_queue(cpu_base, i);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001286}
1287
1288/*
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001289 * Sleep related functions:
1290 */
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001291static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001292{
1293 struct hrtimer_sleeper *t =
1294 container_of(timer, struct hrtimer_sleeper, timer);
1295 struct task_struct *task = t->task;
1296
1297 t->task = NULL;
1298 if (task)
1299 wake_up_process(task);
1300
1301 return HRTIMER_NORESTART;
1302}
1303
Ingo Molnar36c8b582006-07-03 00:25:41 -07001304void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001305{
1306 sl->timer.function = hrtimer_wakeup;
1307 sl->task = task;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001308#ifdef CONFIG_HIGH_RES_TIMERS
Peter Zijlstra37bb6cb2008-01-25 21:08:32 +01001309 sl->timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001310#endif
Thomas Gleixner00362e32006-03-31 02:31:17 -08001311}
1312
Thomas Gleixner669d7862006-03-31 02:31:19 -08001313static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001314{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001315 hrtimer_init_sleeper(t, current);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001316
Roman Zippel432569b2006-03-26 01:38:08 -08001317 do {
1318 set_current_state(TASK_INTERRUPTIBLE);
1319 hrtimer_start(&t->timer, t->timer.expires, mode);
Peter Zijlstra37bb6cb2008-01-25 21:08:32 +01001320 if (!hrtimer_active(&t->timer))
1321 t->task = NULL;
Roman Zippel432569b2006-03-26 01:38:08 -08001322
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001323 if (likely(t->task))
1324 schedule();
Roman Zippel432569b2006-03-26 01:38:08 -08001325
Thomas Gleixner669d7862006-03-31 02:31:19 -08001326 hrtimer_cancel(&t->timer);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001327 mode = HRTIMER_MODE_ABS;
Roman Zippel432569b2006-03-26 01:38:08 -08001328
Thomas Gleixner669d7862006-03-31 02:31:19 -08001329 } while (t->task && !signal_pending(current));
1330
Peter Zijlstra3588a082008-02-01 17:45:13 +01001331 __set_current_state(TASK_RUNNING);
1332
Thomas Gleixner669d7862006-03-31 02:31:19 -08001333 return t->task == NULL;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001334}
1335
Oleg Nesterov080344b2008-02-01 17:29:05 +03001336static int update_rmtp(struct hrtimer *timer, struct timespec __user *rmtp)
1337{
1338 struct timespec rmt;
1339 ktime_t rem;
1340
1341 rem = ktime_sub(timer->expires, timer->base->get_time());
1342 if (rem.tv64 <= 0)
1343 return 0;
1344 rmt = ktime_to_timespec(rem);
1345
1346 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
1347 return -EFAULT;
1348
1349 return 1;
1350}
1351
Toyo Abe1711ef32006-09-29 02:00:28 -07001352long __sched hrtimer_nanosleep_restart(struct restart_block *restart)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001353{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001354 struct hrtimer_sleeper t;
Oleg Nesterov080344b2008-02-01 17:29:05 +03001355 struct timespec __user *rmtp;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001356
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001357 hrtimer_init(&t.timer, restart->nanosleep.index, HRTIMER_MODE_ABS);
1358 t.timer.expires.tv64 = restart->nanosleep.expires;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001359
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001360 if (do_nanosleep(&t, HRTIMER_MODE_ABS))
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001361 return 0;
1362
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001363 rmtp = restart->nanosleep.rmtp;
Roman Zippel432569b2006-03-26 01:38:08 -08001364 if (rmtp) {
Oleg Nesterov080344b2008-02-01 17:29:05 +03001365 int ret = update_rmtp(&t.timer, rmtp);
1366 if (ret <= 0)
1367 return ret;
Roman Zippel432569b2006-03-26 01:38:08 -08001368 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001369
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001370 /* The other values in restart are already filled in */
1371 return -ERESTART_RESTARTBLOCK;
1372}
1373
Oleg Nesterov080344b2008-02-01 17:29:05 +03001374long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001375 const enum hrtimer_mode mode, const clockid_t clockid)
1376{
1377 struct restart_block *restart;
Thomas Gleixner669d7862006-03-31 02:31:19 -08001378 struct hrtimer_sleeper t;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001379
Roman Zippel432569b2006-03-26 01:38:08 -08001380 hrtimer_init(&t.timer, clockid, mode);
1381 t.timer.expires = timespec_to_ktime(*rqtp);
1382 if (do_nanosleep(&t, mode))
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001383 return 0;
1384
George Anzinger7978672c2006-02-01 03:05:11 -08001385 /* Absolute timers do not update the rmtp value and restart: */
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001386 if (mode == HRTIMER_MODE_ABS)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001387 return -ERESTARTNOHAND;
1388
Roman Zippel432569b2006-03-26 01:38:08 -08001389 if (rmtp) {
Oleg Nesterov080344b2008-02-01 17:29:05 +03001390 int ret = update_rmtp(&t.timer, rmtp);
1391 if (ret <= 0)
1392 return ret;
Roman Zippel432569b2006-03-26 01:38:08 -08001393 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001394
1395 restart = &current_thread_info()->restart_block;
Toyo Abe1711ef32006-09-29 02:00:28 -07001396 restart->fn = hrtimer_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001397 restart->nanosleep.index = t.timer.base->index;
1398 restart->nanosleep.rmtp = rmtp;
1399 restart->nanosleep.expires = t.timer.expires.tv64;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001400
1401 return -ERESTART_RESTARTBLOCK;
1402}
1403
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001404asmlinkage long
1405sys_nanosleep(struct timespec __user *rqtp, struct timespec __user *rmtp)
1406{
Oleg Nesterov080344b2008-02-01 17:29:05 +03001407 struct timespec tu;
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001408
1409 if (copy_from_user(&tu, rqtp, sizeof(tu)))
1410 return -EFAULT;
1411
1412 if (!timespec_valid(&tu))
1413 return -EINVAL;
1414
Oleg Nesterov080344b2008-02-01 17:29:05 +03001415 return hrtimer_nanosleep(&tu, rmtp, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001416}
1417
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001418/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001419 * Functions related to boot-time initialization:
1420 */
Randy Dunlap0ec160d2008-01-21 17:18:24 -08001421static void __cpuinit init_hrtimers_cpu(int cpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001422{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001423 struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001424 int i;
1425
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001426 spin_lock_init(&cpu_base->lock);
1427 lockdep_set_class(&cpu_base->lock, &cpu_base->lock_key);
1428
1429 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++)
1430 cpu_base->clock_base[i].cpu_base = cpu_base;
1431
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001432 INIT_LIST_HEAD(&cpu_base->cb_pending);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001433 hrtimer_init_hres(cpu_base);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001434}
1435
1436#ifdef CONFIG_HOTPLUG_CPU
1437
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001438static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
1439 struct hrtimer_clock_base *new_base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001440{
1441 struct hrtimer *timer;
1442 struct rb_node *node;
1443
1444 while ((node = rb_first(&old_base->active))) {
1445 timer = rb_entry(node, struct hrtimer, node);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001446 BUG_ON(hrtimer_callback_running(timer));
1447 __remove_hrtimer(timer, old_base, HRTIMER_STATE_INACTIVE, 0);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001448 timer->base = new_base;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001449 /*
1450 * Enqueue the timer. Allow reprogramming of the event device
1451 */
1452 enqueue_hrtimer(timer, new_base, 1);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001453 }
1454}
1455
1456static void migrate_hrtimers(int cpu)
1457{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001458 struct hrtimer_cpu_base *old_base, *new_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001459 int i;
1460
1461 BUG_ON(cpu_online(cpu));
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001462 old_base = &per_cpu(hrtimer_bases, cpu);
1463 new_base = &get_cpu_var(hrtimer_bases);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001464
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001465 tick_cancel_sched_timer(cpu);
1466
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001467 local_irq_disable();
Heiko Carstense81ce1f2007-03-05 00:30:51 -08001468 double_spin_lock(&new_base->lock, &old_base->lock,
1469 smp_processor_id() < cpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001470
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001471 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001472 migrate_hrtimer_list(&old_base->clock_base[i],
1473 &new_base->clock_base[i]);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001474 }
1475
Heiko Carstense81ce1f2007-03-05 00:30:51 -08001476 double_spin_unlock(&new_base->lock, &old_base->lock,
1477 smp_processor_id() < cpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001478 local_irq_enable();
1479 put_cpu_var(hrtimer_bases);
1480}
1481#endif /* CONFIG_HOTPLUG_CPU */
1482
Chandra Seetharaman8c78f302006-07-30 03:03:35 -07001483static int __cpuinit hrtimer_cpu_notify(struct notifier_block *self,
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001484 unsigned long action, void *hcpu)
1485{
David Miller7713a7d2007-07-16 17:17:44 -07001486 unsigned int cpu = (long)hcpu;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001487
1488 switch (action) {
1489
1490 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001491 case CPU_UP_PREPARE_FROZEN:
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001492 init_hrtimers_cpu(cpu);
1493 break;
1494
1495#ifdef CONFIG_HOTPLUG_CPU
1496 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001497 case CPU_DEAD_FROZEN:
Thomas Gleixnerd316c572007-02-16 01:28:00 -08001498 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DEAD, &cpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001499 migrate_hrtimers(cpu);
1500 break;
1501#endif
1502
1503 default:
1504 break;
1505 }
1506
1507 return NOTIFY_OK;
1508}
1509
Chandra Seetharaman8c78f302006-07-30 03:03:35 -07001510static struct notifier_block __cpuinitdata hrtimers_nb = {
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001511 .notifier_call = hrtimer_cpu_notify,
1512};
1513
1514void __init hrtimers_init(void)
1515{
1516 hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
1517 (void *)(long)smp_processor_id());
1518 register_cpu_notifier(&hrtimers_nb);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001519#ifdef CONFIG_HIGH_RES_TIMERS
1520 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq, NULL);
1521#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001522}
1523