blob: 53d26829cd4d3dd00a6ce305f54d0a45fe7b7589 [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>
Paul Gortmaker9984de12011-05-23 14:51:41 -040035#include <linux/export.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080036#include <linux/percpu.h>
37#include <linux/hrtimer.h>
38#include <linux/notifier.h>
39#include <linux/syscalls.h>
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080040#include <linux/kallsyms.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080041#include <linux/interrupt.h>
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -080042#include <linux/tick.h>
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080043#include <linux/seq_file.h>
44#include <linux/err.h>
Thomas Gleixner237fc6e2008-04-30 00:55:04 -070045#include <linux/debugobjects.h>
Arun R Bharadwajeea08f32009-04-16 12:16:41 +053046#include <linux/sched.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060047#include <linux/sched/sysctl.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060048#include <linux/sched/rt.h>
Dario Faggioliaab03e02013-11-28 11:14:43 +010049#include <linux/sched/deadline.h>
Arun R Bharadwajeea08f32009-04-16 12:16:41 +053050#include <linux/timer.h>
Colin Crossb0f8c442013-05-06 23:50:19 +000051#include <linux/freezer.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080052
53#include <asm/uaccess.h>
54
Xiao Guangrongc6a2a172009-08-10 10:51:23 +080055#include <trace/events/timer.h>
56
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080057/*
58 * The timer bases:
George Anzinger7978672c2006-02-01 03:05:11 -080059 *
John Stultze06383d2010-12-14 19:37:07 -080060 * There are more clockids then hrtimer bases. Thus, we index
61 * into the timer bases by the hrtimer_base_type enum. When trying
62 * to reach a base using a clockid, hrtimer_clockid_to_base()
63 * is used to convert from clockid to the proper hrtimer_base_type.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080064 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080065DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080066{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080067
Michael Bohan84cc8fd2013-03-19 19:19:25 -070068 .lock = __RAW_SPIN_LOCK_UNLOCKED(hrtimer_bases.lock),
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080069 .clock_base =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080070 {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080071 {
Thomas Gleixnerab8177b2011-05-20 13:05:15 +020072 .index = HRTIMER_BASE_MONOTONIC,
73 .clockid = CLOCK_MONOTONIC,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080074 .get_time = &ktime_get,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080075 .resolution = KTIME_LOW_RES,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080076 },
John Stultz70a08cc2011-02-15 10:45:16 -080077 {
Thomas Gleixner68fa61c2011-05-20 23:14:04 +020078 .index = HRTIMER_BASE_REALTIME,
79 .clockid = CLOCK_REALTIME,
80 .get_time = &ktime_get_real,
81 .resolution = KTIME_LOW_RES,
82 },
83 {
Thomas Gleixnerab8177b2011-05-20 13:05:15 +020084 .index = HRTIMER_BASE_BOOTTIME,
85 .clockid = CLOCK_BOOTTIME,
John Stultz70a08cc2011-02-15 10:45:16 -080086 .get_time = &ktime_get_boottime,
87 .resolution = KTIME_LOW_RES,
88 },
John Stultz90adda92013-01-21 17:00:11 -080089 {
90 .index = HRTIMER_BASE_TAI,
91 .clockid = CLOCK_TAI,
92 .get_time = &ktime_get_clocktai,
93 .resolution = KTIME_LOW_RES,
94 },
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080095 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080096};
97
Mike Frysinger942c3c52011-05-02 15:24:27 -040098static const int hrtimer_clock_to_base_table[MAX_CLOCKS] = {
Thomas Gleixnerce313322011-04-29 00:02:00 +020099 [CLOCK_REALTIME] = HRTIMER_BASE_REALTIME,
100 [CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC,
101 [CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME,
John Stultz90adda92013-01-21 17:00:11 -0800102 [CLOCK_TAI] = HRTIMER_BASE_TAI,
Thomas Gleixnerce313322011-04-29 00:02:00 +0200103};
John Stultze06383d2010-12-14 19:37:07 -0800104
105static inline int hrtimer_clockid_to_base(clockid_t clock_id)
106{
107 return hrtimer_clock_to_base_table[clock_id];
108}
109
110
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800111/*
Thomas Gleixner92127c72006-03-26 01:38:05 -0800112 * Get the coarse grained time at the softirq based on xtime and
113 * wall_to_monotonic.
114 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800115static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
Thomas Gleixner92127c72006-03-26 01:38:05 -0800116{
John Stultz70a08cc2011-02-15 10:45:16 -0800117 ktime_t xtim, mono, boot;
John Stultz314ac372011-02-14 18:43:08 -0800118 struct timespec xts, tom, slp;
John Stultz90adda92013-01-21 17:00:11 -0800119 s32 tai_offset;
Thomas Gleixner92127c72006-03-26 01:38:05 -0800120
John Stultz314ac372011-02-14 18:43:08 -0800121 get_xtime_and_monotonic_and_sleep_offset(&xts, &tom, &slp);
John Stultz90adda92013-01-21 17:00:11 -0800122 tai_offset = timekeeping_get_tai_offset();
Thomas Gleixner92127c72006-03-26 01:38:05 -0800123
john stultzf4304ab2007-02-16 01:27:26 -0800124 xtim = timespec_to_ktime(xts);
John Stultz70a08cc2011-02-15 10:45:16 -0800125 mono = ktime_add(xtim, timespec_to_ktime(tom));
126 boot = ktime_add(mono, timespec_to_ktime(slp));
John Stultze06383d2010-12-14 19:37:07 -0800127 base->clock_base[HRTIMER_BASE_REALTIME].softirq_time = xtim;
John Stultz70a08cc2011-02-15 10:45:16 -0800128 base->clock_base[HRTIMER_BASE_MONOTONIC].softirq_time = mono;
129 base->clock_base[HRTIMER_BASE_BOOTTIME].softirq_time = boot;
John Stultz90adda92013-01-21 17:00:11 -0800130 base->clock_base[HRTIMER_BASE_TAI].softirq_time =
131 ktime_add(xtim, ktime_set(tai_offset, 0));
Thomas Gleixner92127c72006-03-26 01:38:05 -0800132}
133
134/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800135 * Functions and macros which are different for UP/SMP systems are kept in a
136 * single place
137 */
138#ifdef CONFIG_SMP
139
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800140/*
141 * We are using hashed locking: holding per_cpu(hrtimer_bases)[n].lock
142 * means that all timers which are tied to this base via timer->base are
143 * locked, and the base itself is locked too.
144 *
145 * So __run_timers/migrate_timers can safely modify all timers which could
146 * be found on the lists/queues.
147 *
148 * When the timer's base is locked, and the timer removed from list, it is
149 * possible to set timer->base = NULL and drop the lock: the timer remains
150 * locked.
151 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800152static
153struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer,
154 unsigned long *flags)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800155{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800156 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800157
158 for (;;) {
159 base = timer->base;
160 if (likely(base != NULL)) {
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100161 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800162 if (likely(base == timer->base))
163 return base;
164 /* The timer has migrated to another CPU: */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100165 raw_spin_unlock_irqrestore(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800166 }
167 cpu_relax();
168 }
169}
170
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200171/*
172 * With HIGHRES=y we do not migrate the timer when it is expiring
173 * before the next event on the target cpu because we cannot reprogram
174 * the target cpu hardware and we would cause it to fire late.
175 *
176 * Called with cpu_base->lock of target cpu held.
177 */
178static int
179hrtimer_check_target(struct hrtimer *timer, struct hrtimer_clock_base *new_base)
180{
181#ifdef CONFIG_HIGH_RES_TIMERS
182 ktime_t expires;
183
184 if (!new_base->cpu_base->hres_active)
185 return 0;
186
187 expires = ktime_sub(hrtimer_get_expires(timer), new_base->offset);
188 return expires.tv64 <= new_base->cpu_base->expires_next.tv64;
189#else
190 return 0;
191#endif
192}
193
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800194/*
195 * Switch the timer base to the current CPU when possible.
196 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800197static inline struct hrtimer_clock_base *
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530198switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base,
199 int pinned)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800200{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800201 struct hrtimer_clock_base *new_base;
202 struct hrtimer_cpu_base *new_cpu_base;
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200203 int this_cpu = smp_processor_id();
Viresh Kumar6201b4d2014-03-18 16:26:07 +0530204 int cpu = get_nohz_timer_target(pinned);
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200205 int basenum = base->index;
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530206
207again:
208 new_cpu_base = &per_cpu(hrtimer_bases, cpu);
John Stultze06383d2010-12-14 19:37:07 -0800209 new_base = &new_cpu_base->clock_base[basenum];
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800210
211 if (base != new_base) {
212 /*
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200213 * We are trying to move timer to new_base.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800214 * However we can't change timer's base while it is running,
215 * so we keep it on the same CPU. No hassle vs. reprogramming
216 * the event source in the high resolution case. The softirq
217 * code will take care of this when the timer function has
218 * completed. There is no conflict as we hold the lock until
219 * the timer is enqueued.
220 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800221 if (unlikely(hrtimer_callback_running(timer)))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800222 return base;
223
224 /* See the comment in lock_timer_base() */
225 timer->base = NULL;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100226 raw_spin_unlock(&base->cpu_base->lock);
227 raw_spin_lock(&new_base->cpu_base->lock);
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530228
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200229 if (cpu != this_cpu && hrtimer_check_target(timer, new_base)) {
230 cpu = this_cpu;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100231 raw_spin_unlock(&new_base->cpu_base->lock);
232 raw_spin_lock(&base->cpu_base->lock);
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200233 timer->base = base;
234 goto again;
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530235 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800236 timer->base = new_base;
237 }
238 return new_base;
239}
240
241#else /* CONFIG_SMP */
242
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800243static inline struct hrtimer_clock_base *
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800244lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
245{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800246 struct hrtimer_clock_base *base = timer->base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800247
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100248 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800249
250 return base;
251}
252
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530253# define switch_hrtimer_base(t, b, p) (b)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800254
255#endif /* !CONFIG_SMP */
256
257/*
258 * Functions for the union type storage format of ktime_t which are
259 * too large for inlining:
260 */
261#if BITS_PER_LONG < 64
262# ifndef CONFIG_KTIME_SCALAR
263/**
264 * ktime_add_ns - Add a scalar nanoseconds value to a ktime_t variable
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800265 * @kt: addend
266 * @nsec: the scalar nsec value to add
267 *
268 * Returns the sum of kt and nsec in ktime_t format
269 */
270ktime_t ktime_add_ns(const ktime_t kt, u64 nsec)
271{
272 ktime_t tmp;
273
274 if (likely(nsec < NSEC_PER_SEC)) {
275 tmp.tv64 = nsec;
276 } else {
277 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
278
David Engraf51fd36f2013-03-19 13:29:55 +0100279 /* Make sure nsec fits into long */
280 if (unlikely(nsec > KTIME_SEC_MAX))
281 return (ktime_t){ .tv64 = KTIME_MAX };
282
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800283 tmp = ktime_set((long)nsec, rem);
284 }
285
286 return ktime_add(kt, tmp);
287}
David Howellsb8b8fd22007-04-27 15:31:24 -0700288
289EXPORT_SYMBOL_GPL(ktime_add_ns);
Arnaldo Carvalho de Meloa2723782007-08-19 17:16:05 -0700290
291/**
292 * ktime_sub_ns - Subtract a scalar nanoseconds value from a ktime_t variable
293 * @kt: minuend
294 * @nsec: the scalar nsec value to subtract
295 *
296 * Returns the subtraction of @nsec from @kt in ktime_t format
297 */
298ktime_t ktime_sub_ns(const ktime_t kt, u64 nsec)
299{
300 ktime_t tmp;
301
302 if (likely(nsec < NSEC_PER_SEC)) {
303 tmp.tv64 = nsec;
304 } else {
305 unsigned long rem = do_div(nsec, NSEC_PER_SEC);
306
307 tmp = ktime_set((long)nsec, rem);
308 }
309
310 return ktime_sub(kt, tmp);
311}
312
313EXPORT_SYMBOL_GPL(ktime_sub_ns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800314# endif /* !CONFIG_KTIME_SCALAR */
315
316/*
317 * Divide a ktime value by a nanosecond value
318 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800319u64 ktime_divns(const ktime_t kt, s64 div)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800320{
Carlos R. Mafra900cfa42008-05-22 19:25:11 -0300321 u64 dclc;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800322 int sft = 0;
323
Carlos R. Mafra900cfa42008-05-22 19:25:11 -0300324 dclc = ktime_to_ns(kt);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800325 /* Make sure the divisor is less than 2^32: */
326 while (div >> 32) {
327 sft++;
328 div >>= 1;
329 }
330 dclc >>= sft;
331 do_div(dclc, (unsigned long) div);
332
Davide Libenzi4d672e72008-02-04 22:27:26 -0800333 return dclc;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800334}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800335#endif /* BITS_PER_LONG >= 64 */
336
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100337/*
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100338 * Add two ktime values and do a safety check for overflow:
339 */
340ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs)
341{
342 ktime_t res = ktime_add(lhs, rhs);
343
344 /*
345 * We use KTIME_SEC_MAX here, the maximum timeout which we can
346 * return to user space in a timespec:
347 */
348 if (res.tv64 < 0 || res.tv64 < lhs.tv64 || res.tv64 < rhs.tv64)
349 res = ktime_set(KTIME_SEC_MAX, 0);
350
351 return res;
352}
353
Artem Bityutskiy8daa21e2009-05-28 16:21:24 +0300354EXPORT_SYMBOL_GPL(ktime_add_safe);
355
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700356#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
357
358static struct debug_obj_descr hrtimer_debug_descr;
359
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100360static void *hrtimer_debug_hint(void *addr)
361{
362 return ((struct hrtimer *) addr)->function;
363}
364
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700365/*
366 * fixup_init is called when:
367 * - an active object is initialized
368 */
369static int hrtimer_fixup_init(void *addr, enum debug_obj_state state)
370{
371 struct hrtimer *timer = addr;
372
373 switch (state) {
374 case ODEBUG_STATE_ACTIVE:
375 hrtimer_cancel(timer);
376 debug_object_init(timer, &hrtimer_debug_descr);
377 return 1;
378 default:
379 return 0;
380 }
381}
382
383/*
384 * fixup_activate is called when:
385 * - an active object is activated
386 * - an unknown object is activated (might be a statically initialized object)
387 */
388static int hrtimer_fixup_activate(void *addr, enum debug_obj_state state)
389{
390 switch (state) {
391
392 case ODEBUG_STATE_NOTAVAILABLE:
393 WARN_ON_ONCE(1);
394 return 0;
395
396 case ODEBUG_STATE_ACTIVE:
397 WARN_ON(1);
398
399 default:
400 return 0;
401 }
402}
403
404/*
405 * fixup_free is called when:
406 * - an active object is freed
407 */
408static int hrtimer_fixup_free(void *addr, enum debug_obj_state state)
409{
410 struct hrtimer *timer = addr;
411
412 switch (state) {
413 case ODEBUG_STATE_ACTIVE:
414 hrtimer_cancel(timer);
415 debug_object_free(timer, &hrtimer_debug_descr);
416 return 1;
417 default:
418 return 0;
419 }
420}
421
422static struct debug_obj_descr hrtimer_debug_descr = {
423 .name = "hrtimer",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100424 .debug_hint = hrtimer_debug_hint,
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700425 .fixup_init = hrtimer_fixup_init,
426 .fixup_activate = hrtimer_fixup_activate,
427 .fixup_free = hrtimer_fixup_free,
428};
429
430static inline void debug_hrtimer_init(struct hrtimer *timer)
431{
432 debug_object_init(timer, &hrtimer_debug_descr);
433}
434
435static inline void debug_hrtimer_activate(struct hrtimer *timer)
436{
437 debug_object_activate(timer, &hrtimer_debug_descr);
438}
439
440static inline void debug_hrtimer_deactivate(struct hrtimer *timer)
441{
442 debug_object_deactivate(timer, &hrtimer_debug_descr);
443}
444
445static inline void debug_hrtimer_free(struct hrtimer *timer)
446{
447 debug_object_free(timer, &hrtimer_debug_descr);
448}
449
450static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
451 enum hrtimer_mode mode);
452
453void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t clock_id,
454 enum hrtimer_mode mode)
455{
456 debug_object_init_on_stack(timer, &hrtimer_debug_descr);
457 __hrtimer_init(timer, clock_id, mode);
458}
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700459EXPORT_SYMBOL_GPL(hrtimer_init_on_stack);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700460
461void destroy_hrtimer_on_stack(struct hrtimer *timer)
462{
463 debug_object_free(timer, &hrtimer_debug_descr);
464}
465
466#else
467static inline void debug_hrtimer_init(struct hrtimer *timer) { }
468static inline void debug_hrtimer_activate(struct hrtimer *timer) { }
469static inline void debug_hrtimer_deactivate(struct hrtimer *timer) { }
470#endif
471
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800472static inline void
473debug_init(struct hrtimer *timer, clockid_t clockid,
474 enum hrtimer_mode mode)
475{
476 debug_hrtimer_init(timer);
477 trace_hrtimer_init(timer, clockid, mode);
478}
479
480static inline void debug_activate(struct hrtimer *timer)
481{
482 debug_hrtimer_activate(timer);
483 trace_hrtimer_start(timer);
484}
485
486static inline void debug_deactivate(struct hrtimer *timer)
487{
488 debug_hrtimer_deactivate(timer);
489 trace_hrtimer_cancel(timer);
490}
491
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800492/* High resolution timer related functions */
493#ifdef CONFIG_HIGH_RES_TIMERS
494
495/*
496 * High resolution timer enabled ?
497 */
498static int hrtimer_hres_enabled __read_mostly = 1;
499
500/*
501 * Enable / Disable high resolution mode
502 */
503static int __init setup_hrtimer_hres(char *str)
504{
505 if (!strcmp(str, "off"))
506 hrtimer_hres_enabled = 0;
507 else if (!strcmp(str, "on"))
508 hrtimer_hres_enabled = 1;
509 else
510 return 0;
511 return 1;
512}
513
514__setup("highres=", setup_hrtimer_hres);
515
516/*
517 * hrtimer_high_res_enabled - query, if the highres mode is enabled
518 */
519static inline int hrtimer_is_hres_enabled(void)
520{
521 return hrtimer_hres_enabled;
522}
523
524/*
525 * Is the high resolution mode active ?
526 */
527static inline int hrtimer_hres_active(void)
528{
Christoph Lameter909ea962010-12-08 16:22:55 +0100529 return __this_cpu_read(hrtimer_bases.hres_active);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800530}
531
532/*
533 * Reprogram the event source with checking both queues for the
534 * next event
535 * Called with interrupts disabled and base->lock held
536 */
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400537static void
538hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base, int skip_equal)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800539{
540 int i;
541 struct hrtimer_clock_base *base = cpu_base->clock_base;
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400542 ktime_t expires, expires_next;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800543
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400544 expires_next.tv64 = KTIME_MAX;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800545
546 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
547 struct hrtimer *timer;
John Stultz998adc32010-09-20 19:19:17 -0700548 struct timerqueue_node *next;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800549
John Stultz998adc32010-09-20 19:19:17 -0700550 next = timerqueue_getnext(&base->active);
551 if (!next)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800552 continue;
John Stultz998adc32010-09-20 19:19:17 -0700553 timer = container_of(next, struct hrtimer, node);
554
Arjan van de Vencc584b22008-09-01 15:02:30 -0700555 expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
Thomas Gleixnerb0a9b512009-01-25 11:31:36 +0100556 /*
557 * clock_was_set() has changed base->offset so the
558 * result might be negative. Fix it up to prevent a
559 * false positive in clockevents_program_event()
560 */
561 if (expires.tv64 < 0)
562 expires.tv64 = 0;
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400563 if (expires.tv64 < expires_next.tv64)
564 expires_next = expires;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800565 }
566
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400567 if (skip_equal && expires_next.tv64 == cpu_base->expires_next.tv64)
568 return;
569
570 cpu_base->expires_next.tv64 = expires_next.tv64;
571
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800572 if (cpu_base->expires_next.tv64 != KTIME_MAX)
573 tick_program_event(cpu_base->expires_next, 1);
574}
575
576/*
577 * Shared reprogramming for clock_realtime and clock_monotonic
578 *
579 * When a timer is enqueued and expires earlier than the already enqueued
580 * timers, we have to check, whether it expires earlier than the timer for
581 * which the clock event device was armed.
582 *
583 * Called with interrupts disabled and base->cpu_base.lock held
584 */
585static int hrtimer_reprogram(struct hrtimer *timer,
586 struct hrtimer_clock_base *base)
587{
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100588 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700589 ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800590 int res;
591
Arjan van de Vencc584b22008-09-01 15:02:30 -0700592 WARN_ON_ONCE(hrtimer_get_expires_tv64(timer) < 0);
Thomas Gleixner63070a72008-02-14 00:58:36 +0100593
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800594 /*
595 * When the callback is running, we do not reprogram the clock event
596 * device. The timer callback is either running on a different CPU or
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200597 * the callback is executed in the hrtimer_interrupt context. The
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800598 * reprogramming is handled either by the softirq, which called the
599 * callback or at the end of the hrtimer_interrupt.
600 */
601 if (hrtimer_callback_running(timer))
602 return 0;
603
Thomas Gleixner63070a72008-02-14 00:58:36 +0100604 /*
605 * CLOCK_REALTIME timer might be requested with an absolute
606 * expiry time which is less than base->offset. Nothing wrong
607 * about that, just avoid to call into the tick code, which
608 * has now objections against negative expiry values.
609 */
610 if (expires.tv64 < 0)
611 return -ETIME;
612
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100613 if (expires.tv64 >= cpu_base->expires_next.tv64)
614 return 0;
615
616 /*
617 * If a hang was detected in the last timer interrupt then we
618 * do not schedule a timer which is earlier than the expiry
619 * which we enforced in the hang detection. We want the system
620 * to make progress.
621 */
622 if (cpu_base->hang_detected)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800623 return 0;
624
625 /*
626 * Clockevents returns -ETIME, when the event was in the past.
627 */
628 res = tick_program_event(expires, 0);
629 if (!IS_ERR_VALUE(res))
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100630 cpu_base->expires_next = expires;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800631 return res;
632}
633
Ingo Molnar995f0542007-04-07 12:05:00 +0200634/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800635 * Initialize the high resolution related parts of cpu_base
636 */
637static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base)
638{
639 base->expires_next.tv64 = KTIME_MAX;
640 base->hres_active = 0;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800641}
642
643/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800644 * When High resolution timers are active, try to reprogram. Note, that in case
645 * the state has HRTIMER_STATE_CALLBACK set, no reprogramming and no expiry
646 * check happens. The timer gets enqueued into the rbtree. The reprogramming
647 * and expiry check is done in the hrtimer_interrupt or in the softirq.
648 */
649static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
Leonid Shatzb22affe2013-02-04 14:33:37 +0200650 struct hrtimer_clock_base *base)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800651{
Leonid Shatzb22affe2013-02-04 14:33:37 +0200652 return base->cpu_base->hres_active && hrtimer_reprogram(timer, base);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800653}
654
John Stultz5baefd62012-07-10 18:43:25 -0400655static inline ktime_t hrtimer_update_base(struct hrtimer_cpu_base *base)
656{
657 ktime_t *offs_real = &base->clock_base[HRTIMER_BASE_REALTIME].offset;
658 ktime_t *offs_boot = &base->clock_base[HRTIMER_BASE_BOOTTIME].offset;
John Stultz90adda92013-01-21 17:00:11 -0800659 ktime_t *offs_tai = &base->clock_base[HRTIMER_BASE_TAI].offset;
John Stultz5baefd62012-07-10 18:43:25 -0400660
John Stultz90adda92013-01-21 17:00:11 -0800661 return ktime_get_update_offsets(offs_real, offs_boot, offs_tai);
John Stultz5baefd62012-07-10 18:43:25 -0400662}
663
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200664/*
665 * Retrigger next event is called after clock was set
666 *
667 * Called with interrupts disabled via on_each_cpu()
668 */
669static void retrigger_next_event(void *arg)
670{
671 struct hrtimer_cpu_base *base = &__get_cpu_var(hrtimer_bases);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200672
673 if (!hrtimer_hres_active())
674 return;
675
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200676 raw_spin_lock(&base->lock);
John Stultz5baefd62012-07-10 18:43:25 -0400677 hrtimer_update_base(base);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200678 hrtimer_force_reprogram(base, 0);
679 raw_spin_unlock(&base->lock);
680}
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200681
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800682/*
683 * Switch to high resolution mode
684 */
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800685static int hrtimer_switch_to_hres(void)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800686{
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200687 int i, cpu = smp_processor_id();
Ingo Molnar820de5c2007-07-21 04:37:36 -0700688 struct hrtimer_cpu_base *base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800689 unsigned long flags;
690
691 if (base->hres_active)
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800692 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800693
694 local_irq_save(flags);
695
696 if (tick_init_highres()) {
697 local_irq_restore(flags);
Ingo Molnar820de5c2007-07-21 04:37:36 -0700698 printk(KERN_WARNING "Could not switch to high resolution "
699 "mode on CPU %d\n", cpu);
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800700 return 0;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800701 }
702 base->hres_active = 1;
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200703 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++)
704 base->clock_base[i].resolution = KTIME_HIGH_RES;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800705
706 tick_setup_sched_timer();
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800707 /* "Retrigger" the interrupt to get things going */
708 retrigger_next_event(NULL);
709 local_irq_restore(flags);
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800710 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800711}
712
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200713static void clock_was_set_work(struct work_struct *work)
714{
715 clock_was_set();
716}
717
718static DECLARE_WORK(hrtimer_work, clock_was_set_work);
719
John Stultzf55a6fa2012-07-10 18:43:19 -0400720/*
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200721 * Called from timekeeping and resume code to reprogramm the hrtimer
722 * interrupt device on all cpus.
John Stultzf55a6fa2012-07-10 18:43:19 -0400723 */
724void clock_was_set_delayed(void)
725{
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200726 schedule_work(&hrtimer_work);
John Stultzf55a6fa2012-07-10 18:43:19 -0400727}
728
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800729#else
730
731static inline int hrtimer_hres_active(void) { return 0; }
732static inline int hrtimer_is_hres_enabled(void) { return 0; }
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800733static inline int hrtimer_switch_to_hres(void) { return 0; }
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400734static inline void
735hrtimer_force_reprogram(struct hrtimer_cpu_base *base, int skip_equal) { }
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800736static inline int hrtimer_enqueue_reprogram(struct hrtimer *timer,
Leonid Shatzb22affe2013-02-04 14:33:37 +0200737 struct hrtimer_clock_base *base)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800738{
739 return 0;
740}
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800741static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) { }
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200742static inline void retrigger_next_event(void *arg) { }
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800743
744#endif /* CONFIG_HIGH_RES_TIMERS */
745
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200746/*
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200747 * Clock realtime was set
748 *
749 * Change the offset of the realtime clock vs. the monotonic
750 * clock.
751 *
752 * We might have to reprogram the high resolution timer interrupt. On
753 * SMP we call the architecture specific code to retrigger _all_ high
754 * resolution timer interrupts. On UP we just disable interrupts and
755 * call the high resolution interrupt code.
756 */
757void clock_was_set(void)
758{
Thomas Gleixner90ff1f32011-05-25 23:08:17 +0200759#ifdef CONFIG_HIGH_RES_TIMERS
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200760 /* Retrigger the CPU local events everywhere */
761 on_each_cpu(retrigger_next_event, NULL, 1);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200762#endif
763 timerfd_clock_was_set();
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200764}
765
766/*
767 * During resume we might have to reprogram the high resolution timer
David Vrabel7c4c3a02013-06-27 11:35:44 +0100768 * interrupt on all online CPUs. However, all other CPUs will be
769 * stopped with IRQs interrupts disabled so the clock_was_set() call
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200770 * must be deferred.
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200771 */
772void hrtimers_resume(void)
773{
774 WARN_ONCE(!irqs_disabled(),
775 KERN_INFO "hrtimers_resume() called with IRQs enabled!");
776
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200777 /* Retrigger on the local CPU */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200778 retrigger_next_event(NULL);
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200779 /* And schedule a retrigger for all others */
780 clock_was_set_delayed();
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200781}
782
Heiko Carstens5f201902009-12-10 10:56:29 +0100783static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800784{
Heiko Carstens5f201902009-12-10 10:56:29 +0100785#ifdef CONFIG_TIMER_STATS
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800786 if (timer->start_site)
787 return;
Heiko Carstens5f201902009-12-10 10:56:29 +0100788 timer->start_site = __builtin_return_address(0);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800789 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
790 timer->start_pid = current->pid;
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800791#endif
Heiko Carstens5f201902009-12-10 10:56:29 +0100792}
793
794static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
795{
796#ifdef CONFIG_TIMER_STATS
797 timer->start_site = NULL;
798#endif
799}
800
801static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
802{
803#ifdef CONFIG_TIMER_STATS
804 if (likely(!timer_stats_active))
805 return;
806 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
807 timer->function, timer->start_comm, 0);
808#endif
809}
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800810
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800811/*
Uwe Kleine-König6506f2a2007-10-20 01:56:53 +0200812 * Counterpart to lock_hrtimer_base above:
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800813 */
814static inline
815void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
816{
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100817 raw_spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800818}
819
820/**
821 * hrtimer_forward - forward the timer expiry
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800822 * @timer: hrtimer to forward
Roman Zippel44f21472006-03-26 01:38:06 -0800823 * @now: forward past this time
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800824 * @interval: the interval to forward
825 *
826 * Forward the timer expiry so it will expire in the future.
Jonathan Corbet8dca6f32006-01-16 15:58:55 -0700827 * Returns the number of overruns.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800828 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800829u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800830{
Davide Libenzi4d672e72008-02-04 22:27:26 -0800831 u64 orun = 1;
Roman Zippel44f21472006-03-26 01:38:06 -0800832 ktime_t delta;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800833
Arjan van de Vencc584b22008-09-01 15:02:30 -0700834 delta = ktime_sub(now, hrtimer_get_expires(timer));
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800835
836 if (delta.tv64 < 0)
837 return 0;
838
Thomas Gleixnerc9db4fa2006-01-12 11:47:34 +0100839 if (interval.tv64 < timer->base->resolution.tv64)
840 interval.tv64 = timer->base->resolution.tv64;
841
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800842 if (unlikely(delta.tv64 >= interval.tv64)) {
Roman Zippeldf869b62006-03-26 01:38:11 -0800843 s64 incr = ktime_to_ns(interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800844
845 orun = ktime_divns(delta, incr);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700846 hrtimer_add_expires_ns(timer, incr * orun);
847 if (hrtimer_get_expires_tv64(timer) > now.tv64)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800848 return orun;
849 /*
850 * This (and the ktime_add() below) is the
851 * correction for exact:
852 */
853 orun++;
854 }
Arjan van de Vencc584b22008-09-01 15:02:30 -0700855 hrtimer_add_expires(timer, interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800856
857 return orun;
858}
Stas Sergeev6bdb6b62007-05-08 00:31:58 -0700859EXPORT_SYMBOL_GPL(hrtimer_forward);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800860
861/*
862 * enqueue_hrtimer - internal function to (re)start a timer
863 *
864 * The timer is inserted in expiry order. Insertion into the
865 * red black tree is O(log(n)). Must hold the base lock.
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100866 *
867 * Returns 1 when the new timer is the leftmost timer in the tree.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800868 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100869static int enqueue_hrtimer(struct hrtimer *timer,
870 struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800871{
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800872 debug_activate(timer);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700873
John Stultz998adc32010-09-20 19:19:17 -0700874 timerqueue_add(&base->active, &timer->node);
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200875 base->cpu_base->active_bases |= 1 << base->index;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800876
877 /*
Thomas Gleixner303e9672007-02-16 01:27:51 -0800878 * HRTIMER_STATE_ENQUEUED is or'ed to the current state to preserve the
879 * state of a possibly running callback.
880 */
881 timer->state |= HRTIMER_STATE_ENQUEUED;
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100882
John Stultz998adc32010-09-20 19:19:17 -0700883 return (&timer->node == base->active.next);
Thomas Gleixner288867e2006-01-12 11:25:54 +0100884}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800885
886/*
887 * __remove_hrtimer - internal function to remove a timer
888 *
889 * Caller must hold the base lock.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800890 *
891 * High resolution timer mode reprograms the clock event device when the
892 * timer is the one which expires next. The caller can disable this by setting
893 * reprogram to zero. This is useful, when the context does a reprogramming
894 * anyway (e.g. timer interrupt)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800895 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800896static void __remove_hrtimer(struct hrtimer *timer,
Thomas Gleixner303e9672007-02-16 01:27:51 -0800897 struct hrtimer_clock_base *base,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800898 unsigned long newstate, int reprogram)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800899{
Jeff Ohlstein27c9cd72011-11-18 15:47:10 -0800900 struct timerqueue_node *next_timer;
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400901 if (!(timer->state & HRTIMER_STATE_ENQUEUED))
902 goto out;
903
Jeff Ohlstein27c9cd72011-11-18 15:47:10 -0800904 next_timer = timerqueue_getnext(&base->active);
905 timerqueue_del(&base->active, &timer->node);
906 if (&timer->node == next_timer) {
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400907#ifdef CONFIG_HIGH_RES_TIMERS
908 /* Reprogram the clock event device. if enabled */
909 if (reprogram && hrtimer_hres_active()) {
910 ktime_t expires;
911
912 expires = ktime_sub(hrtimer_get_expires(timer),
913 base->offset);
914 if (base->cpu_base->expires_next.tv64 == expires.tv64)
915 hrtimer_force_reprogram(base->cpu_base, 1);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800916 }
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400917#endif
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800918 }
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200919 if (!timerqueue_getnext(&base->active))
920 base->cpu_base->active_bases &= ~(1 << base->index);
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400921out:
Thomas Gleixner303e9672007-02-16 01:27:51 -0800922 timer->state = newstate;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800923}
924
925/*
926 * remove hrtimer, called with base lock held
927 */
928static inline int
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800929remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800930{
Thomas Gleixner303e9672007-02-16 01:27:51 -0800931 if (hrtimer_is_queued(timer)) {
Salman Qazif13d4f92010-10-12 07:25:19 -0700932 unsigned long state;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800933 int reprogram;
934
935 /*
936 * Remove the timer and force reprogramming when high
937 * resolution mode is active and the timer is on the current
938 * CPU. If we remove a timer on another CPU, reprogramming is
939 * skipped. The interrupt event on this CPU is fired and
940 * reprogramming happens in the interrupt handler. This is a
941 * rare case and less expensive than a smp call.
942 */
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800943 debug_deactivate(timer);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800944 timer_stats_hrtimer_clear_start_info(timer);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800945 reprogram = base->cpu_base == &__get_cpu_var(hrtimer_bases);
Salman Qazif13d4f92010-10-12 07:25:19 -0700946 /*
947 * We must preserve the CALLBACK state flag here,
948 * otherwise we could move the timer base in
949 * switch_hrtimer_base.
950 */
951 state = timer->state & HRTIMER_STATE_CALLBACK;
952 __remove_hrtimer(timer, base, state, reprogram);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800953 return 1;
954 }
955 return 0;
956}
957
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100958int __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
959 unsigned long delta_ns, const enum hrtimer_mode mode,
960 int wakeup)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800961{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800962 struct hrtimer_clock_base *base, *new_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800963 unsigned long flags;
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100964 int ret, leftmost;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800965
966 base = lock_hrtimer_base(timer, &flags);
967
968 /* Remove an active timer from the queue: */
969 ret = remove_hrtimer(timer, base);
970
971 /* Switch the timer base, if necessary: */
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530972 new_base = switch_hrtimer_base(timer, base, mode & HRTIMER_MODE_PINNED);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800973
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530974 if (mode & HRTIMER_MODE_REL) {
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100975 tim = ktime_add_safe(tim, new_base->get_time());
Ingo Molnar06027bd2006-02-14 13:53:15 -0800976 /*
977 * CONFIG_TIME_LOW_RES is a temporary way for architectures
978 * to signal that they simply return xtime in
979 * do_gettimeoffset(). In this case we want to round up by
980 * resolution when starting a relative timer, to avoid short
981 * timeouts. This will go away with the GTOD framework.
982 */
983#ifdef CONFIG_TIME_LOW_RES
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100984 tim = ktime_add_safe(tim, base->resolution);
Ingo Molnar06027bd2006-02-14 13:53:15 -0800985#endif
986 }
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700987
Arjan van de Venda8f2e12008-09-07 10:47:46 -0700988 hrtimer_set_expires_range_ns(timer, tim, delta_ns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800989
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800990 timer_stats_hrtimer_set_start_info(timer);
991
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100992 leftmost = enqueue_hrtimer(timer, new_base);
993
Ingo Molnar935c6312007-03-28 13:17:18 +0200994 /*
995 * Only allow reprogramming if the new base is on this CPU.
996 * (it might still be on another CPU if the timer was pending)
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100997 *
998 * XXX send_remote_softirq() ?
Ingo Molnar935c6312007-03-28 13:17:18 +0200999 */
Leonid Shatzb22affe2013-02-04 14:33:37 +02001000 if (leftmost && new_base->cpu_base == &__get_cpu_var(hrtimer_bases)
1001 && hrtimer_enqueue_reprogram(timer, new_base)) {
1002 if (wakeup) {
1003 /*
1004 * We need to drop cpu_base->lock to avoid a
1005 * lock ordering issue vs. rq->lock.
1006 */
1007 raw_spin_unlock(&new_base->cpu_base->lock);
1008 raise_softirq_irqoff(HRTIMER_SOFTIRQ);
1009 local_irq_restore(flags);
1010 return ret;
1011 } else {
1012 __raise_softirq_irqoff(HRTIMER_SOFTIRQ);
1013 }
1014 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001015
1016 unlock_hrtimer_base(timer, &flags);
1017
1018 return ret;
1019}
Yan, Zheng8588a2bb2014-03-18 16:56:42 +08001020EXPORT_SYMBOL_GPL(__hrtimer_start_range_ns);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001021
1022/**
1023 * hrtimer_start_range_ns - (re)start an hrtimer on the current CPU
1024 * @timer: the timer to be added
1025 * @tim: expiry time
1026 * @delta_ns: "slack" range for the timer
David Daney8ffbc7d2013-03-13 12:20:38 -07001027 * @mode: expiry mode: absolute (HRTIMER_MODE_ABS) or
1028 * relative (HRTIMER_MODE_REL)
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001029 *
1030 * Returns:
1031 * 0 on success
1032 * 1 when the timer was active
1033 */
1034int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
1035 unsigned long delta_ns, const enum hrtimer_mode mode)
1036{
1037 return __hrtimer_start_range_ns(timer, tim, delta_ns, mode, 1);
1038}
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001039EXPORT_SYMBOL_GPL(hrtimer_start_range_ns);
1040
1041/**
Thomas Gleixnere1dd7bc2008-10-20 13:33:36 +02001042 * hrtimer_start - (re)start an hrtimer on the current CPU
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001043 * @timer: the timer to be added
1044 * @tim: expiry time
David Daney8ffbc7d2013-03-13 12:20:38 -07001045 * @mode: expiry mode: absolute (HRTIMER_MODE_ABS) or
1046 * relative (HRTIMER_MODE_REL)
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001047 *
1048 * Returns:
1049 * 0 on success
1050 * 1 when the timer was active
1051 */
1052int
1053hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
1054{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001055 return __hrtimer_start_range_ns(timer, tim, 0, mode, 1);
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001056}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001057EXPORT_SYMBOL_GPL(hrtimer_start);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001058
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001059
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001060/**
1061 * hrtimer_try_to_cancel - try to deactivate a timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001062 * @timer: hrtimer to stop
1063 *
1064 * Returns:
1065 * 0 when the timer was not active
1066 * 1 when the timer was active
1067 * -1 when the timer is currently excuting the callback function and
Randy Dunlapfa9799e2006-06-25 05:49:15 -07001068 * cannot be stopped
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001069 */
1070int hrtimer_try_to_cancel(struct hrtimer *timer)
1071{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001072 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001073 unsigned long flags;
1074 int ret = -1;
1075
1076 base = lock_hrtimer_base(timer, &flags);
1077
Thomas Gleixner303e9672007-02-16 01:27:51 -08001078 if (!hrtimer_callback_running(timer))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001079 ret = remove_hrtimer(timer, base);
1080
1081 unlock_hrtimer_base(timer, &flags);
1082
1083 return ret;
1084
1085}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001086EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001087
1088/**
1089 * hrtimer_cancel - cancel a timer and wait for the handler to finish.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001090 * @timer: the timer to be cancelled
1091 *
1092 * Returns:
1093 * 0 when the timer was not active
1094 * 1 when the timer was active
1095 */
1096int hrtimer_cancel(struct hrtimer *timer)
1097{
1098 for (;;) {
1099 int ret = hrtimer_try_to_cancel(timer);
1100
1101 if (ret >= 0)
1102 return ret;
Joe Korty5ef37b12006-04-10 22:54:13 -07001103 cpu_relax();
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001104 }
1105}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001106EXPORT_SYMBOL_GPL(hrtimer_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001107
1108/**
1109 * hrtimer_get_remaining - get remaining time for the timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001110 * @timer: the timer to read
1111 */
1112ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
1113{
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001114 unsigned long flags;
1115 ktime_t rem;
1116
Andi Kleenb3bd3de2010-08-10 14:17:51 -07001117 lock_hrtimer_base(timer, &flags);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001118 rem = hrtimer_expires_remaining(timer);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001119 unlock_hrtimer_base(timer, &flags);
1120
1121 return rem;
1122}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001123EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001124
Frederic Weisbecker3451d022011-08-10 23:21:01 +02001125#ifdef CONFIG_NO_HZ_COMMON
Tony Lindgren69239742006-03-06 15:42:45 -08001126/**
1127 * hrtimer_get_next_event - get the time until next expiry event
1128 *
1129 * Returns the delta to the next expiry event or KTIME_MAX if no timer
1130 * is pending.
1131 */
1132ktime_t hrtimer_get_next_event(void)
1133{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001134 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
1135 struct hrtimer_clock_base *base = cpu_base->clock_base;
Tony Lindgren69239742006-03-06 15:42:45 -08001136 ktime_t delta, mindelta = { .tv64 = KTIME_MAX };
1137 unsigned long flags;
1138 int i;
1139
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001140 raw_spin_lock_irqsave(&cpu_base->lock, flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001141
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001142 if (!hrtimer_hres_active()) {
1143 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
1144 struct hrtimer *timer;
John Stultz998adc32010-09-20 19:19:17 -07001145 struct timerqueue_node *next;
Tony Lindgren69239742006-03-06 15:42:45 -08001146
John Stultz998adc32010-09-20 19:19:17 -07001147 next = timerqueue_getnext(&base->active);
1148 if (!next)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001149 continue;
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001150
John Stultz998adc32010-09-20 19:19:17 -07001151 timer = container_of(next, struct hrtimer, node);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001152 delta.tv64 = hrtimer_get_expires_tv64(timer);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001153 delta = ktime_sub(delta, base->get_time());
1154 if (delta.tv64 < mindelta.tv64)
1155 mindelta.tv64 = delta.tv64;
1156 }
Tony Lindgren69239742006-03-06 15:42:45 -08001157 }
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001158
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001159 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001160
Tony Lindgren69239742006-03-06 15:42:45 -08001161 if (mindelta.tv64 < 0)
1162 mindelta.tv64 = 0;
1163 return mindelta;
1164}
1165#endif
1166
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001167static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1168 enum hrtimer_mode mode)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001169{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001170 struct hrtimer_cpu_base *cpu_base;
John Stultze06383d2010-12-14 19:37:07 -08001171 int base;
George Anzinger7978672c2006-02-01 03:05:11 -08001172
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001173 memset(timer, 0, sizeof(struct hrtimer));
George Anzinger7978672c2006-02-01 03:05:11 -08001174
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001175 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
George Anzinger7978672c2006-02-01 03:05:11 -08001176
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001177 if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS)
George Anzinger7978672c2006-02-01 03:05:11 -08001178 clock_id = CLOCK_MONOTONIC;
1179
John Stultze06383d2010-12-14 19:37:07 -08001180 base = hrtimer_clockid_to_base(clock_id);
1181 timer->base = &cpu_base->clock_base[base];
John Stultz998adc32010-09-20 19:19:17 -07001182 timerqueue_init(&timer->node);
Ingo Molnar82f67cd2007-02-16 01:28:13 -08001183
1184#ifdef CONFIG_TIMER_STATS
1185 timer->start_site = NULL;
1186 timer->start_pid = -1;
1187 memset(timer->start_comm, 0, TASK_COMM_LEN);
1188#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001189}
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001190
1191/**
1192 * hrtimer_init - initialize a timer to the given clock
1193 * @timer: the timer to be initialized
1194 * @clock_id: the clock to be used
1195 * @mode: timer mode abs/rel
1196 */
1197void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1198 enum hrtimer_mode mode)
1199{
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001200 debug_init(timer, clock_id, mode);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001201 __hrtimer_init(timer, clock_id, mode);
1202}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001203EXPORT_SYMBOL_GPL(hrtimer_init);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001204
1205/**
1206 * hrtimer_get_res - get the timer resolution for a clock
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001207 * @which_clock: which clock to query
1208 * @tp: pointer to timespec variable to store the resolution
1209 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001210 * Store the resolution of the clock selected by @which_clock in the
1211 * variable pointed to by @tp.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001212 */
1213int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)
1214{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001215 struct hrtimer_cpu_base *cpu_base;
John Stultze06383d2010-12-14 19:37:07 -08001216 int base = hrtimer_clockid_to_base(which_clock);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001217
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001218 cpu_base = &__raw_get_cpu_var(hrtimer_bases);
John Stultze06383d2010-12-14 19:37:07 -08001219 *tp = ktime_to_timespec(cpu_base->clock_base[base].resolution);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001220
1221 return 0;
1222}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001223EXPORT_SYMBOL_GPL(hrtimer_get_res);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001224
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001225static void __run_hrtimer(struct hrtimer *timer, ktime_t *now)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001226{
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001227 struct hrtimer_clock_base *base = timer->base;
1228 struct hrtimer_cpu_base *cpu_base = base->cpu_base;
1229 enum hrtimer_restart (*fn)(struct hrtimer *);
1230 int restart;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001231
Peter Zijlstraca109492008-11-25 12:43:51 +01001232 WARN_ON(!irqs_disabled());
1233
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001234 debug_deactivate(timer);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001235 __remove_hrtimer(timer, base, HRTIMER_STATE_CALLBACK, 0);
1236 timer_stats_account_hrtimer(timer);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001237 fn = timer->function;
Peter Zijlstraca109492008-11-25 12:43:51 +01001238
1239 /*
1240 * Because we run timers from hardirq context, there is no chance
1241 * they get migrated to another cpu, therefore its safe to unlock
1242 * the timer base.
1243 */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001244 raw_spin_unlock(&cpu_base->lock);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001245 trace_hrtimer_expire_entry(timer, now);
Peter Zijlstraca109492008-11-25 12:43:51 +01001246 restart = fn(timer);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001247 trace_hrtimer_expire_exit(timer);
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001248 raw_spin_lock(&cpu_base->lock);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001249
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001250 /*
Thomas Gleixnere3f1d882009-01-05 11:28:23 +01001251 * Note: We clear the CALLBACK bit after enqueue_hrtimer and
1252 * we do not reprogramm the event hardware. Happens either in
1253 * hrtimer_start_range_ns() or in hrtimer_interrupt()
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001254 */
1255 if (restart != HRTIMER_NORESTART) {
1256 BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001257 enqueue_hrtimer(timer, base);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001258 }
Salman Qazif13d4f92010-10-12 07:25:19 -07001259
1260 WARN_ON_ONCE(!(timer->state & HRTIMER_STATE_CALLBACK));
1261
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001262 timer->state &= ~HRTIMER_STATE_CALLBACK;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001263}
1264
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001265#ifdef CONFIG_HIGH_RES_TIMERS
1266
1267/*
1268 * High resolution timer interrupt
1269 * Called with interrupts disabled
1270 */
1271void hrtimer_interrupt(struct clock_event_device *dev)
1272{
1273 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001274 ktime_t expires_next, now, entry_time, delta;
1275 int i, retries = 0;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001276
1277 BUG_ON(!cpu_base->hres_active);
1278 cpu_base->nr_events++;
1279 dev->next_event.tv64 = KTIME_MAX;
1280
Thomas Gleixner196951e2012-07-10 18:43:23 -04001281 raw_spin_lock(&cpu_base->lock);
John Stultz5baefd62012-07-10 18:43:25 -04001282 entry_time = now = hrtimer_update_base(cpu_base);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001283retry:
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001284 expires_next.tv64 = KTIME_MAX;
Thomas Gleixner6ff70412009-07-10 14:57:05 +02001285 /*
1286 * We set expires_next to KTIME_MAX here with cpu_base->lock
1287 * held to prevent that a timer is enqueued in our queue via
1288 * the migration code. This does not affect enqueueing of
1289 * timers which run their callback and need to be requeued on
1290 * this CPU.
1291 */
1292 cpu_base->expires_next.tv64 = KTIME_MAX;
1293
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001294 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001295 struct hrtimer_clock_base *base;
John Stultz998adc32010-09-20 19:19:17 -07001296 struct timerqueue_node *node;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001297 ktime_t basenow;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001298
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001299 if (!(cpu_base->active_bases & (1 << i)))
1300 continue;
1301
1302 base = cpu_base->clock_base + i;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001303 basenow = ktime_add(now, base->offset);
1304
John Stultz998adc32010-09-20 19:19:17 -07001305 while ((node = timerqueue_getnext(&base->active))) {
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001306 struct hrtimer *timer;
1307
John Stultz998adc32010-09-20 19:19:17 -07001308 timer = container_of(node, struct hrtimer, node);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001309
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001310 /*
1311 * The immediate goal for using the softexpires is
1312 * minimizing wakeups, not running timers at the
1313 * earliest interrupt after their soft expiration.
1314 * This allows us to avoid using a Priority Search
1315 * Tree, which can answer a stabbing querry for
1316 * overlapping intervals and instead use the simple
1317 * BST we already have.
1318 * We don't add extra wakeups by delaying timers that
1319 * are right-of a not yet expired timer, because that
1320 * timer will have to trigger a wakeup anyway.
1321 */
1322
1323 if (basenow.tv64 < hrtimer_get_softexpires_tv64(timer)) {
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001324 ktime_t expires;
1325
Arjan van de Vencc584b22008-09-01 15:02:30 -07001326 expires = ktime_sub(hrtimer_get_expires(timer),
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001327 base->offset);
Prarit Bhargava8f294b52013-04-08 08:47:15 -04001328 if (expires.tv64 < 0)
1329 expires.tv64 = KTIME_MAX;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001330 if (expires.tv64 < expires_next.tv64)
1331 expires_next = expires;
1332 break;
1333 }
1334
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001335 __run_hrtimer(timer, &basenow);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001336 }
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001337 }
1338
Thomas Gleixner6ff70412009-07-10 14:57:05 +02001339 /*
1340 * Store the new expiry value so the migration code can verify
1341 * against it.
1342 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001343 cpu_base->expires_next = expires_next;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001344 raw_spin_unlock(&cpu_base->lock);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001345
1346 /* Reprogramming necessary ? */
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001347 if (expires_next.tv64 == KTIME_MAX ||
1348 !tick_program_event(expires_next, 0)) {
1349 cpu_base->hang_detected = 0;
1350 return;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001351 }
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001352
1353 /*
1354 * The next timer was already expired due to:
1355 * - tracing
1356 * - long lasting callbacks
1357 * - being scheduled away when running in a VM
1358 *
1359 * We need to prevent that we loop forever in the hrtimer
1360 * interrupt routine. We give it 3 attempts to avoid
1361 * overreacting on some spurious event.
John Stultz5baefd62012-07-10 18:43:25 -04001362 *
1363 * Acquire base lock for updating the offsets and retrieving
1364 * the current time.
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001365 */
Thomas Gleixner196951e2012-07-10 18:43:23 -04001366 raw_spin_lock(&cpu_base->lock);
John Stultz5baefd62012-07-10 18:43:25 -04001367 now = hrtimer_update_base(cpu_base);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001368 cpu_base->nr_retries++;
1369 if (++retries < 3)
1370 goto retry;
1371 /*
1372 * Give the system a chance to do something else than looping
1373 * here. We stored the entry time, so we know exactly how long
1374 * we spent here. We schedule the next event this amount of
1375 * time away.
1376 */
1377 cpu_base->nr_hangs++;
1378 cpu_base->hang_detected = 1;
Thomas Gleixner196951e2012-07-10 18:43:23 -04001379 raw_spin_unlock(&cpu_base->lock);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001380 delta = ktime_sub(now, entry_time);
1381 if (delta.tv64 > cpu_base->max_hang_time.tv64)
1382 cpu_base->max_hang_time = delta;
1383 /*
1384 * Limit it to a sensible value as we enforce a longer
1385 * delay. Give the CPU at least 100ms to catch up.
1386 */
1387 if (delta.tv64 > 100 * NSEC_PER_MSEC)
1388 expires_next = ktime_add_ns(now, 100 * NSEC_PER_MSEC);
1389 else
1390 expires_next = ktime_add(now, delta);
1391 tick_program_event(expires_next, 1);
1392 printk_once(KERN_WARNING "hrtimer: interrupt took %llu ns\n",
1393 ktime_to_ns(delta));
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001394}
1395
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001396/*
1397 * local version of hrtimer_peek_ahead_timers() called with interrupts
1398 * disabled.
1399 */
1400static void __hrtimer_peek_ahead_timers(void)
1401{
1402 struct tick_device *td;
1403
1404 if (!hrtimer_hres_active())
1405 return;
1406
1407 td = &__get_cpu_var(tick_cpu_device);
1408 if (td && td->evtdev)
1409 hrtimer_interrupt(td->evtdev);
1410}
1411
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001412/**
1413 * hrtimer_peek_ahead_timers -- run soft-expired timers now
1414 *
1415 * hrtimer_peek_ahead_timers will peek at the timer queue of
1416 * the current cpu and check if there are any timers for which
1417 * the soft expires time has passed. If any such timers exist,
1418 * they are run immediately and then removed from the timer queue.
1419 *
1420 */
1421void hrtimer_peek_ahead_timers(void)
1422{
Thomas Gleixner643bdf62008-10-20 13:38:11 +02001423 unsigned long flags;
Arjan van de Vendc4304f2008-10-13 10:32:15 -04001424
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001425 local_irq_save(flags);
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001426 __hrtimer_peek_ahead_timers();
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001427 local_irq_restore(flags);
1428}
1429
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001430static void run_hrtimer_softirq(struct softirq_action *h)
1431{
1432 hrtimer_peek_ahead_timers();
1433}
1434
Ingo Molnar82c5b7b2009-01-05 14:11:10 +01001435#else /* CONFIG_HIGH_RES_TIMERS */
1436
1437static inline void __hrtimer_peek_ahead_timers(void) { }
1438
1439#endif /* !CONFIG_HIGH_RES_TIMERS */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001440
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001441/*
1442 * Called from timer softirq every jiffy, expire hrtimers:
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001443 *
1444 * For HRT its the fall back code to run the softirq in the timer
1445 * softirq context in case the hrtimer initialization failed or has
1446 * not been done yet.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001447 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001448void hrtimer_run_pending(void)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001449{
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001450 if (hrtimer_hres_active())
1451 return;
1452
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001453 /*
1454 * This _is_ ugly: We have to check in the softirq context,
1455 * whether we can switch to highres and / or nohz mode. The
1456 * clocksource switch happens in the timer interrupt with
1457 * xtime_lock held. Notification from there only sets the
1458 * check bit in the tick_oneshot code, otherwise we might
1459 * deadlock vs. xtime_lock.
1460 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001461 if (tick_check_oneshot_change(!hrtimer_is_hres_enabled()))
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001462 hrtimer_switch_to_hres();
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001463}
1464
1465/*
1466 * Called from hardirq context every jiffy
1467 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001468void hrtimer_run_queues(void)
1469{
John Stultz998adc32010-09-20 19:19:17 -07001470 struct timerqueue_node *node;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001471 struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001472 struct hrtimer_clock_base *base;
1473 int index, gettime = 1;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001474
1475 if (hrtimer_hres_active())
1476 return;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001477
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001478 for (index = 0; index < HRTIMER_MAX_CLOCK_BASES; index++) {
1479 base = &cpu_base->clock_base[index];
John Stultzb007c382010-12-10 22:19:53 -08001480 if (!timerqueue_getnext(&base->active))
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001481 continue;
1482
Mark McLoughlind7cfb602008-09-19 13:13:44 +01001483 if (gettime) {
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001484 hrtimer_get_softirq_time(cpu_base);
1485 gettime = 0;
1486 }
1487
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001488 raw_spin_lock(&cpu_base->lock);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001489
John Stultzb007c382010-12-10 22:19:53 -08001490 while ((node = timerqueue_getnext(&base->active))) {
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001491 struct hrtimer *timer;
1492
John Stultz998adc32010-09-20 19:19:17 -07001493 timer = container_of(node, struct hrtimer, node);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001494 if (base->softirq_time.tv64 <=
1495 hrtimer_get_expires_tv64(timer))
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001496 break;
1497
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001498 __run_hrtimer(timer, &base->softirq_time);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001499 }
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001500 raw_spin_unlock(&cpu_base->lock);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001501 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001502}
1503
1504/*
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001505 * Sleep related functions:
1506 */
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001507static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001508{
1509 struct hrtimer_sleeper *t =
1510 container_of(timer, struct hrtimer_sleeper, timer);
1511 struct task_struct *task = t->task;
1512
1513 t->task = NULL;
1514 if (task)
1515 wake_up_process(task);
1516
1517 return HRTIMER_NORESTART;
1518}
1519
Ingo Molnar36c8b582006-07-03 00:25:41 -07001520void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001521{
1522 sl->timer.function = hrtimer_wakeup;
1523 sl->task = task;
1524}
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07001525EXPORT_SYMBOL_GPL(hrtimer_init_sleeper);
Thomas Gleixner00362e32006-03-31 02:31:17 -08001526
Thomas Gleixner669d7862006-03-31 02:31:19 -08001527static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001528{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001529 hrtimer_init_sleeper(t, current);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001530
Roman Zippel432569b2006-03-26 01:38:08 -08001531 do {
1532 set_current_state(TASK_INTERRUPTIBLE);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001533 hrtimer_start_expires(&t->timer, mode);
Peter Zijlstra37bb6cb2008-01-25 21:08:32 +01001534 if (!hrtimer_active(&t->timer))
1535 t->task = NULL;
Roman Zippel432569b2006-03-26 01:38:08 -08001536
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001537 if (likely(t->task))
Colin Crossb0f8c442013-05-06 23:50:19 +00001538 freezable_schedule();
Roman Zippel432569b2006-03-26 01:38:08 -08001539
Thomas Gleixner669d7862006-03-31 02:31:19 -08001540 hrtimer_cancel(&t->timer);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001541 mode = HRTIMER_MODE_ABS;
Roman Zippel432569b2006-03-26 01:38:08 -08001542
Thomas Gleixner669d7862006-03-31 02:31:19 -08001543 } while (t->task && !signal_pending(current));
1544
Peter Zijlstra3588a082008-02-01 17:45:13 +01001545 __set_current_state(TASK_RUNNING);
1546
Thomas Gleixner669d7862006-03-31 02:31:19 -08001547 return t->task == NULL;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001548}
1549
Oleg Nesterov080344b2008-02-01 17:29:05 +03001550static int update_rmtp(struct hrtimer *timer, struct timespec __user *rmtp)
1551{
1552 struct timespec rmt;
1553 ktime_t rem;
1554
Arjan van de Vencc584b22008-09-01 15:02:30 -07001555 rem = hrtimer_expires_remaining(timer);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001556 if (rem.tv64 <= 0)
1557 return 0;
1558 rmt = ktime_to_timespec(rem);
1559
1560 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
1561 return -EFAULT;
1562
1563 return 1;
1564}
1565
Toyo Abe1711ef32006-09-29 02:00:28 -07001566long __sched hrtimer_nanosleep_restart(struct restart_block *restart)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001567{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001568 struct hrtimer_sleeper t;
Oleg Nesterov080344b2008-02-01 17:29:05 +03001569 struct timespec __user *rmtp;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001570 int ret = 0;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001571
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001572 hrtimer_init_on_stack(&t.timer, restart->nanosleep.clockid,
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001573 HRTIMER_MODE_ABS);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001574 hrtimer_set_expires_tv64(&t.timer, restart->nanosleep.expires);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001575
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001576 if (do_nanosleep(&t, HRTIMER_MODE_ABS))
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001577 goto out;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001578
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001579 rmtp = restart->nanosleep.rmtp;
Roman Zippel432569b2006-03-26 01:38:08 -08001580 if (rmtp) {
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001581 ret = update_rmtp(&t.timer, rmtp);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001582 if (ret <= 0)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001583 goto out;
Roman Zippel432569b2006-03-26 01:38:08 -08001584 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001585
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001586 /* The other values in restart are already filled in */
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001587 ret = -ERESTART_RESTARTBLOCK;
1588out:
1589 destroy_hrtimer_on_stack(&t.timer);
1590 return ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001591}
1592
Oleg Nesterov080344b2008-02-01 17:29:05 +03001593long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001594 const enum hrtimer_mode mode, const clockid_t clockid)
1595{
1596 struct restart_block *restart;
Thomas Gleixner669d7862006-03-31 02:31:19 -08001597 struct hrtimer_sleeper t;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001598 int ret = 0;
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001599 unsigned long slack;
1600
1601 slack = current->timer_slack_ns;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001602 if (dl_task(current) || rt_task(current))
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001603 slack = 0;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001604
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001605 hrtimer_init_on_stack(&t.timer, clockid, mode);
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001606 hrtimer_set_expires_range_ns(&t.timer, timespec_to_ktime(*rqtp), slack);
Roman Zippel432569b2006-03-26 01:38:08 -08001607 if (do_nanosleep(&t, mode))
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001608 goto out;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001609
George Anzinger7978672c2006-02-01 03:05:11 -08001610 /* Absolute timers do not update the rmtp value and restart: */
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001611 if (mode == HRTIMER_MODE_ABS) {
1612 ret = -ERESTARTNOHAND;
1613 goto out;
1614 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001615
Roman Zippel432569b2006-03-26 01:38:08 -08001616 if (rmtp) {
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001617 ret = update_rmtp(&t.timer, rmtp);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001618 if (ret <= 0)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001619 goto out;
Roman Zippel432569b2006-03-26 01:38:08 -08001620 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001621
1622 restart = &current_thread_info()->restart_block;
Toyo Abe1711ef32006-09-29 02:00:28 -07001623 restart->fn = hrtimer_nanosleep_restart;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001624 restart->nanosleep.clockid = t.timer.base->clockid;
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001625 restart->nanosleep.rmtp = rmtp;
Arjan van de Vencc584b22008-09-01 15:02:30 -07001626 restart->nanosleep.expires = hrtimer_get_expires_tv64(&t.timer);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001627
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001628 ret = -ERESTART_RESTARTBLOCK;
1629out:
1630 destroy_hrtimer_on_stack(&t.timer);
1631 return ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001632}
1633
Heiko Carstens58fd3aa2009-01-14 14:14:03 +01001634SYSCALL_DEFINE2(nanosleep, struct timespec __user *, rqtp,
1635 struct timespec __user *, rmtp)
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001636{
Oleg Nesterov080344b2008-02-01 17:29:05 +03001637 struct timespec tu;
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001638
1639 if (copy_from_user(&tu, rqtp, sizeof(tu)))
1640 return -EFAULT;
1641
1642 if (!timespec_valid(&tu))
1643 return -EINVAL;
1644
Oleg Nesterov080344b2008-02-01 17:29:05 +03001645 return hrtimer_nanosleep(&tu, rmtp, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001646}
1647
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001648/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001649 * Functions related to boot-time initialization:
1650 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04001651static void init_hrtimers_cpu(int cpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001652{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001653 struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001654 int i;
1655
John Stultz998adc32010-09-20 19:19:17 -07001656 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001657 cpu_base->clock_base[i].cpu_base = cpu_base;
John Stultz998adc32010-09-20 19:19:17 -07001658 timerqueue_init_head(&cpu_base->clock_base[i].active);
1659 }
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001660
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001661 hrtimer_init_hres(cpu_base);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001662}
1663
1664#ifdef CONFIG_HOTPLUG_CPU
1665
Peter Zijlstraca109492008-11-25 12:43:51 +01001666static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
Peter Zijlstra37810652008-12-04 11:17:10 +01001667 struct hrtimer_clock_base *new_base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001668{
1669 struct hrtimer *timer;
John Stultz998adc32010-09-20 19:19:17 -07001670 struct timerqueue_node *node;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001671
John Stultz998adc32010-09-20 19:19:17 -07001672 while ((node = timerqueue_getnext(&old_base->active))) {
1673 timer = container_of(node, struct hrtimer, node);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001674 BUG_ON(hrtimer_callback_running(timer));
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001675 debug_deactivate(timer);
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +02001676
1677 /*
1678 * Mark it as STATE_MIGRATE not INACTIVE otherwise the
1679 * timer could be seen as !active and just vanish away
1680 * under us on another CPU
1681 */
1682 __remove_hrtimer(timer, old_base, HRTIMER_STATE_MIGRATE, 0);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001683 timer->base = new_base;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001684 /*
Thomas Gleixnere3f1d882009-01-05 11:28:23 +01001685 * Enqueue the timers on the new cpu. This does not
1686 * reprogram the event device in case the timer
1687 * expires before the earliest on this CPU, but we run
1688 * hrtimer_interrupt after we migrated everything to
1689 * sort out already expired timers and reprogram the
1690 * event device.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001691 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001692 enqueue_hrtimer(timer, new_base);
Thomas Gleixner41e10222008-09-29 14:09:39 +02001693
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +02001694 /* Clear the migration state bit */
1695 timer->state &= ~HRTIMER_STATE_MIGRATE;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001696 }
1697}
1698
Thomas Gleixnerd5fd43c2009-01-05 11:28:20 +01001699static void migrate_hrtimers(int scpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001700{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001701 struct hrtimer_cpu_base *old_base, *new_base;
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001702 int i;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001703
Peter Zijlstra37810652008-12-04 11:17:10 +01001704 BUG_ON(cpu_online(scpu));
Peter Zijlstra37810652008-12-04 11:17:10 +01001705 tick_cancel_sched_timer(scpu);
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001706
1707 local_irq_disable();
1708 old_base = &per_cpu(hrtimer_bases, scpu);
1709 new_base = &__get_cpu_var(hrtimer_bases);
Oleg Nesterovd82f0b02008-08-20 16:46:04 -07001710 /*
1711 * The caller is globally serialized and nobody else
1712 * takes two locks at once, deadlock is not possible.
1713 */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001714 raw_spin_lock(&new_base->lock);
1715 raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001716
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001717 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Peter Zijlstraca109492008-11-25 12:43:51 +01001718 migrate_hrtimer_list(&old_base->clock_base[i],
Peter Zijlstra37810652008-12-04 11:17:10 +01001719 &new_base->clock_base[i]);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001720 }
1721
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001722 raw_spin_unlock(&old_base->lock);
1723 raw_spin_unlock(&new_base->lock);
Peter Zijlstra37810652008-12-04 11:17:10 +01001724
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001725 /* Check, if we got expired work to do */
1726 __hrtimer_peek_ahead_timers();
1727 local_irq_enable();
Peter Zijlstra37810652008-12-04 11:17:10 +01001728}
1729
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001730#endif /* CONFIG_HOTPLUG_CPU */
1731
Paul Gortmaker0db06282013-06-19 14:53:51 -04001732static int hrtimer_cpu_notify(struct notifier_block *self,
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001733 unsigned long action, void *hcpu)
1734{
Ingo Molnarb2e3c0a2008-12-19 00:48:27 +01001735 int scpu = (long)hcpu;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001736
1737 switch (action) {
1738
1739 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001740 case CPU_UP_PREPARE_FROZEN:
Peter Zijlstra37810652008-12-04 11:17:10 +01001741 init_hrtimers_cpu(scpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001742 break;
1743
1744#ifdef CONFIG_HOTPLUG_CPU
Sebastien Dugue94df7de2008-12-01 14:09:07 +01001745 case CPU_DYING:
1746 case CPU_DYING_FROZEN:
1747 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DYING, &scpu);
1748 break;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001749 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001750 case CPU_DEAD_FROZEN:
Ingo Molnarb2e3c0a2008-12-19 00:48:27 +01001751 {
Peter Zijlstra37810652008-12-04 11:17:10 +01001752 clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DEAD, &scpu);
Thomas Gleixnerd5fd43c2009-01-05 11:28:20 +01001753 migrate_hrtimers(scpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001754 break;
Ingo Molnarb2e3c0a2008-12-19 00:48:27 +01001755 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001756#endif
1757
1758 default:
1759 break;
1760 }
1761
1762 return NOTIFY_OK;
1763}
1764
Paul Gortmaker0db06282013-06-19 14:53:51 -04001765static struct notifier_block hrtimers_nb = {
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001766 .notifier_call = hrtimer_cpu_notify,
1767};
1768
1769void __init hrtimers_init(void)
1770{
1771 hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
1772 (void *)(long)smp_processor_id());
1773 register_cpu_notifier(&hrtimers_nb);
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001774#ifdef CONFIG_HIGH_RES_TIMERS
1775 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq);
1776#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001777}
1778
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001779/**
Carsten Emde351b3f72010-04-02 22:40:19 +02001780 * schedule_hrtimeout_range_clock - sleep until timeout
1781 * @expires: timeout value (ktime_t)
1782 * @delta: slack in expires timeout (ktime_t)
1783 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1784 * @clock: timer clock, CLOCK_MONOTONIC or CLOCK_REALTIME
1785 */
1786int __sched
1787schedule_hrtimeout_range_clock(ktime_t *expires, unsigned long delta,
1788 const enum hrtimer_mode mode, int clock)
1789{
1790 struct hrtimer_sleeper t;
1791
1792 /*
1793 * Optimize when a zero timeout value is given. It does not
1794 * matter whether this is an absolute or a relative time.
1795 */
1796 if (expires && !expires->tv64) {
1797 __set_current_state(TASK_RUNNING);
1798 return 0;
1799 }
1800
1801 /*
Namhyung Kim43b21012010-12-22 19:01:47 +01001802 * A NULL parameter means "infinite"
Carsten Emde351b3f72010-04-02 22:40:19 +02001803 */
1804 if (!expires) {
1805 schedule();
1806 __set_current_state(TASK_RUNNING);
1807 return -EINTR;
1808 }
1809
1810 hrtimer_init_on_stack(&t.timer, clock, mode);
1811 hrtimer_set_expires_range_ns(&t.timer, *expires, delta);
1812
1813 hrtimer_init_sleeper(&t, current);
1814
1815 hrtimer_start_expires(&t.timer, mode);
1816 if (!hrtimer_active(&t.timer))
1817 t.task = NULL;
1818
1819 if (likely(t.task))
1820 schedule();
1821
1822 hrtimer_cancel(&t.timer);
1823 destroy_hrtimer_on_stack(&t.timer);
1824
1825 __set_current_state(TASK_RUNNING);
1826
1827 return !t.task ? 0 : -EINTR;
1828}
1829
1830/**
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001831 * schedule_hrtimeout_range - sleep until timeout
1832 * @expires: timeout value (ktime_t)
1833 * @delta: slack in expires timeout (ktime_t)
1834 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1835 *
1836 * Make the current task sleep until the given expiry time has
1837 * elapsed. The routine will return immediately unless
1838 * the current task state has been set (see set_current_state()).
1839 *
1840 * The @delta argument gives the kernel the freedom to schedule the
1841 * actual wakeup to a time that is both power and performance friendly.
1842 * The kernel give the normal best effort behavior for "@expires+@delta",
1843 * but may decide to fire the timer earlier, but no earlier than @expires.
1844 *
1845 * You can set the task state as follows -
1846 *
1847 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1848 * pass before the routine returns.
1849 *
1850 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1851 * delivered to the current task.
1852 *
1853 * The current task state is guaranteed to be TASK_RUNNING when this
1854 * routine returns.
1855 *
1856 * Returns 0 when the timer has expired otherwise -EINTR
1857 */
1858int __sched schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
Carsten Emde351b3f72010-04-02 22:40:19 +02001859 const enum hrtimer_mode mode)
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001860{
Carsten Emde351b3f72010-04-02 22:40:19 +02001861 return schedule_hrtimeout_range_clock(expires, delta, mode,
1862 CLOCK_MONOTONIC);
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001863}
1864EXPORT_SYMBOL_GPL(schedule_hrtimeout_range);
1865
1866/**
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001867 * schedule_hrtimeout - sleep until timeout
1868 * @expires: timeout value (ktime_t)
1869 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1870 *
1871 * Make the current task sleep until the given expiry time has
1872 * elapsed. The routine will return immediately unless
1873 * the current task state has been set (see set_current_state()).
1874 *
1875 * You can set the task state as follows -
1876 *
1877 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1878 * pass before the routine returns.
1879 *
1880 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1881 * delivered to the current task.
1882 *
1883 * The current task state is guaranteed to be TASK_RUNNING when this
1884 * routine returns.
1885 *
1886 * Returns 0 when the timer has expired otherwise -EINTR
1887 */
1888int __sched schedule_hrtimeout(ktime_t *expires,
1889 const enum hrtimer_mode mode)
1890{
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001891 return schedule_hrtimeout_range(expires, 0, mode);
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001892}
1893EXPORT_SYMBOL_GPL(schedule_hrtimeout);