blob: 76d4bd962b19b3bab345460676954ef6f7c14568 [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 Gleixnerc1797ba2015-03-25 13:07:37 +010057#include "tick-internal.h"
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000058
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080059/*
60 * The timer bases:
George Anzinger7978672c2006-02-01 03:05:11 -080061 *
John Stultze06383d2010-12-14 19:37:07 -080062 * There are more clockids then hrtimer bases. Thus, we index
63 * into the timer bases by the hrtimer_base_type enum. When trying
64 * to reach a base using a clockid, hrtimer_clockid_to_base()
65 * is used to convert from clockid to the proper hrtimer_base_type.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080066 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080067DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080068{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080069
Michael Bohan84cc8fd2013-03-19 19:19:25 -070070 .lock = __RAW_SPIN_LOCK_UNLOCKED(hrtimer_bases.lock),
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080071 .clock_base =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080072 {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080073 {
Thomas Gleixnerab8177b2011-05-20 13:05:15 +020074 .index = HRTIMER_BASE_MONOTONIC,
75 .clockid = CLOCK_MONOTONIC,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080076 .get_time = &ktime_get,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080077 .resolution = KTIME_LOW_RES,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080078 },
John Stultz70a08cc2011-02-15 10:45:16 -080079 {
Thomas Gleixner68fa61c2011-05-20 23:14:04 +020080 .index = HRTIMER_BASE_REALTIME,
81 .clockid = CLOCK_REALTIME,
82 .get_time = &ktime_get_real,
83 .resolution = KTIME_LOW_RES,
84 },
85 {
Thomas Gleixnerab8177b2011-05-20 13:05:15 +020086 .index = HRTIMER_BASE_BOOTTIME,
87 .clockid = CLOCK_BOOTTIME,
John Stultz70a08cc2011-02-15 10:45:16 -080088 .get_time = &ktime_get_boottime,
89 .resolution = KTIME_LOW_RES,
90 },
John Stultz90adda92013-01-21 17:00:11 -080091 {
92 .index = HRTIMER_BASE_TAI,
93 .clockid = CLOCK_TAI,
94 .get_time = &ktime_get_clocktai,
95 .resolution = KTIME_LOW_RES,
96 },
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080097 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080098};
99
Mike Frysinger942c3c52011-05-02 15:24:27 -0400100static const int hrtimer_clock_to_base_table[MAX_CLOCKS] = {
Thomas Gleixnerce313322011-04-29 00:02:00 +0200101 [CLOCK_REALTIME] = HRTIMER_BASE_REALTIME,
102 [CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC,
103 [CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME,
John Stultz90adda92013-01-21 17:00:11 -0800104 [CLOCK_TAI] = HRTIMER_BASE_TAI,
Thomas Gleixnerce313322011-04-29 00:02:00 +0200105};
John Stultze06383d2010-12-14 19:37:07 -0800106
107static inline int hrtimer_clockid_to_base(clockid_t clock_id)
108{
109 return hrtimer_clock_to_base_table[clock_id];
110}
111
112
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800113/*
Thomas Gleixner92127c72006-03-26 01:38:05 -0800114 * Get the coarse grained time at the softirq based on xtime and
115 * wall_to_monotonic.
116 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800117static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
Thomas Gleixner92127c72006-03-26 01:38:05 -0800118{
John Stultz76f41082014-07-16 21:03:52 +0000119 ktime_t xtim, mono, boot, tai;
120 ktime_t off_real, off_boot, off_tai;
Thomas Gleixner92127c72006-03-26 01:38:05 -0800121
John Stultz76f41082014-07-16 21:03:52 +0000122 mono = ktime_get_update_offsets_tick(&off_real, &off_boot, &off_tai);
123 boot = ktime_add(mono, off_boot);
124 xtim = ktime_add(mono, off_real);
John Stultz2d926c12015-02-04 16:45:26 -0800125 tai = ktime_add(mono, off_tai);
Thomas Gleixner92127c72006-03-26 01:38:05 -0800126
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 Stultz76f41082014-07-16 21:03:52 +0000130 base->clock_base[HRTIMER_BASE_TAI].softirq_time = tai;
Thomas Gleixner92127c72006-03-26 01:38:05 -0800131}
132
133/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800134 * Functions and macros which are different for UP/SMP systems are kept in a
135 * single place
136 */
137#ifdef CONFIG_SMP
138
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800139/*
140 * We are using hashed locking: holding per_cpu(hrtimer_bases)[n].lock
141 * means that all timers which are tied to this base via timer->base are
142 * locked, and the base itself is locked too.
143 *
144 * So __run_timers/migrate_timers can safely modify all timers which could
145 * be found on the lists/queues.
146 *
147 * When the timer's base is locked, and the timer removed from list, it is
148 * possible to set timer->base = NULL and drop the lock: the timer remains
149 * locked.
150 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800151static
152struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer,
153 unsigned long *flags)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800154{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800155 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800156
157 for (;;) {
158 base = timer->base;
159 if (likely(base != NULL)) {
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100160 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800161 if (likely(base == timer->base))
162 return base;
163 /* The timer has migrated to another CPU: */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100164 raw_spin_unlock_irqrestore(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800165 }
166 cpu_relax();
167 }
168}
169
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200170/*
171 * With HIGHRES=y we do not migrate the timer when it is expiring
172 * before the next event on the target cpu because we cannot reprogram
173 * the target cpu hardware and we would cause it to fire late.
174 *
175 * Called with cpu_base->lock of target cpu held.
176 */
177static int
178hrtimer_check_target(struct hrtimer *timer, struct hrtimer_clock_base *new_base)
179{
180#ifdef CONFIG_HIGH_RES_TIMERS
181 ktime_t expires;
182
183 if (!new_base->cpu_base->hres_active)
184 return 0;
185
186 expires = ktime_sub(hrtimer_get_expires(timer), new_base->offset);
187 return expires.tv64 <= new_base->cpu_base->expires_next.tv64;
188#else
189 return 0;
190#endif
191}
192
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800193/*
194 * Switch the timer base to the current CPU when possible.
195 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800196static inline struct hrtimer_clock_base *
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530197switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base,
198 int pinned)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800199{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800200 struct hrtimer_clock_base *new_base;
201 struct hrtimer_cpu_base *new_cpu_base;
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200202 int this_cpu = smp_processor_id();
Viresh Kumar6201b4d2014-03-18 16:26:07 +0530203 int cpu = get_nohz_timer_target(pinned);
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200204 int basenum = base->index;
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530205
206again:
207 new_cpu_base = &per_cpu(hrtimer_bases, cpu);
John Stultze06383d2010-12-14 19:37:07 -0800208 new_base = &new_cpu_base->clock_base[basenum];
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800209
210 if (base != new_base) {
211 /*
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200212 * We are trying to move timer to new_base.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800213 * However we can't change timer's base while it is running,
214 * so we keep it on the same CPU. No hassle vs. reprogramming
215 * the event source in the high resolution case. The softirq
216 * code will take care of this when the timer function has
217 * completed. There is no conflict as we hold the lock until
218 * the timer is enqueued.
219 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800220 if (unlikely(hrtimer_callback_running(timer)))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800221 return base;
222
223 /* See the comment in lock_timer_base() */
224 timer->base = NULL;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100225 raw_spin_unlock(&base->cpu_base->lock);
226 raw_spin_lock(&new_base->cpu_base->lock);
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530227
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200228 if (cpu != this_cpu && hrtimer_check_target(timer, new_base)) {
229 cpu = this_cpu;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100230 raw_spin_unlock(&new_base->cpu_base->lock);
231 raw_spin_lock(&base->cpu_base->lock);
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200232 timer->base = base;
233 goto again;
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530234 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800235 timer->base = new_base;
Leon Ma012a45e2014-04-30 16:43:10 +0800236 } else {
237 if (cpu != this_cpu && hrtimer_check_target(timer, new_base)) {
238 cpu = this_cpu;
239 goto again;
240 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800241 }
242 return new_base;
243}
244
245#else /* CONFIG_SMP */
246
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800247static inline struct hrtimer_clock_base *
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800248lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
249{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800250 struct hrtimer_clock_base *base = timer->base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800251
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100252 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800253
254 return base;
255}
256
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530257# define switch_hrtimer_base(t, b, p) (b)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800258
259#endif /* !CONFIG_SMP */
260
261/*
262 * Functions for the union type storage format of ktime_t which are
263 * too large for inlining:
264 */
265#if BITS_PER_LONG < 64
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800266/*
267 * Divide a ktime value by a nanosecond value
268 */
Nicolas Pitre8b618622014-12-03 14:43:06 -0500269u64 __ktime_divns(const ktime_t kt, s64 div)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800270{
Carlos R. Mafra900cfa42008-05-22 19:25:11 -0300271 u64 dclc;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800272 int sft = 0;
273
Carlos R. Mafra900cfa42008-05-22 19:25:11 -0300274 dclc = ktime_to_ns(kt);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800275 /* Make sure the divisor is less than 2^32: */
276 while (div >> 32) {
277 sft++;
278 div >>= 1;
279 }
280 dclc >>= sft;
281 do_div(dclc, (unsigned long) div);
282
Davide Libenzi4d672e72008-02-04 22:27:26 -0800283 return dclc;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800284}
Nicolas Pitre8b618622014-12-03 14:43:06 -0500285EXPORT_SYMBOL_GPL(__ktime_divns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800286#endif /* BITS_PER_LONG >= 64 */
287
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100288/*
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100289 * Add two ktime values and do a safety check for overflow:
290 */
291ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs)
292{
293 ktime_t res = ktime_add(lhs, rhs);
294
295 /*
296 * We use KTIME_SEC_MAX here, the maximum timeout which we can
297 * return to user space in a timespec:
298 */
299 if (res.tv64 < 0 || res.tv64 < lhs.tv64 || res.tv64 < rhs.tv64)
300 res = ktime_set(KTIME_SEC_MAX, 0);
301
302 return res;
303}
304
Artem Bityutskiy8daa21e2009-05-28 16:21:24 +0300305EXPORT_SYMBOL_GPL(ktime_add_safe);
306
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700307#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
308
309static struct debug_obj_descr hrtimer_debug_descr;
310
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100311static void *hrtimer_debug_hint(void *addr)
312{
313 return ((struct hrtimer *) addr)->function;
314}
315
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700316/*
317 * fixup_init is called when:
318 * - an active object is initialized
319 */
320static int hrtimer_fixup_init(void *addr, enum debug_obj_state state)
321{
322 struct hrtimer *timer = addr;
323
324 switch (state) {
325 case ODEBUG_STATE_ACTIVE:
326 hrtimer_cancel(timer);
327 debug_object_init(timer, &hrtimer_debug_descr);
328 return 1;
329 default:
330 return 0;
331 }
332}
333
334/*
335 * fixup_activate is called when:
336 * - an active object is activated
337 * - an unknown object is activated (might be a statically initialized object)
338 */
339static int hrtimer_fixup_activate(void *addr, enum debug_obj_state state)
340{
341 switch (state) {
342
343 case ODEBUG_STATE_NOTAVAILABLE:
344 WARN_ON_ONCE(1);
345 return 0;
346
347 case ODEBUG_STATE_ACTIVE:
348 WARN_ON(1);
349
350 default:
351 return 0;
352 }
353}
354
355/*
356 * fixup_free is called when:
357 * - an active object is freed
358 */
359static int hrtimer_fixup_free(void *addr, enum debug_obj_state state)
360{
361 struct hrtimer *timer = addr;
362
363 switch (state) {
364 case ODEBUG_STATE_ACTIVE:
365 hrtimer_cancel(timer);
366 debug_object_free(timer, &hrtimer_debug_descr);
367 return 1;
368 default:
369 return 0;
370 }
371}
372
373static struct debug_obj_descr hrtimer_debug_descr = {
374 .name = "hrtimer",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100375 .debug_hint = hrtimer_debug_hint,
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700376 .fixup_init = hrtimer_fixup_init,
377 .fixup_activate = hrtimer_fixup_activate,
378 .fixup_free = hrtimer_fixup_free,
379};
380
381static inline void debug_hrtimer_init(struct hrtimer *timer)
382{
383 debug_object_init(timer, &hrtimer_debug_descr);
384}
385
386static inline void debug_hrtimer_activate(struct hrtimer *timer)
387{
388 debug_object_activate(timer, &hrtimer_debug_descr);
389}
390
391static inline void debug_hrtimer_deactivate(struct hrtimer *timer)
392{
393 debug_object_deactivate(timer, &hrtimer_debug_descr);
394}
395
396static inline void debug_hrtimer_free(struct hrtimer *timer)
397{
398 debug_object_free(timer, &hrtimer_debug_descr);
399}
400
401static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
402 enum hrtimer_mode mode);
403
404void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t clock_id,
405 enum hrtimer_mode mode)
406{
407 debug_object_init_on_stack(timer, &hrtimer_debug_descr);
408 __hrtimer_init(timer, clock_id, mode);
409}
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700410EXPORT_SYMBOL_GPL(hrtimer_init_on_stack);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700411
412void destroy_hrtimer_on_stack(struct hrtimer *timer)
413{
414 debug_object_free(timer, &hrtimer_debug_descr);
415}
416
417#else
418static inline void debug_hrtimer_init(struct hrtimer *timer) { }
419static inline void debug_hrtimer_activate(struct hrtimer *timer) { }
420static inline void debug_hrtimer_deactivate(struct hrtimer *timer) { }
421#endif
422
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800423static inline void
424debug_init(struct hrtimer *timer, clockid_t clockid,
425 enum hrtimer_mode mode)
426{
427 debug_hrtimer_init(timer);
428 trace_hrtimer_init(timer, clockid, mode);
429}
430
431static inline void debug_activate(struct hrtimer *timer)
432{
433 debug_hrtimer_activate(timer);
434 trace_hrtimer_start(timer);
435}
436
437static inline void debug_deactivate(struct hrtimer *timer)
438{
439 debug_hrtimer_deactivate(timer);
440 trace_hrtimer_cancel(timer);
441}
442
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100443#if defined(CONFIG_NO_HZ_COMMON) || defined(CONFIG_HIGH_RES_TIMERS)
kbuild test robot4ebbda52015-01-23 20:12:06 +0800444static ktime_t __hrtimer_get_next_event(struct hrtimer_cpu_base *cpu_base)
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100445{
446 struct hrtimer_clock_base *base = cpu_base->clock_base;
447 ktime_t expires, expires_next = { .tv64 = KTIME_MAX };
448 int i;
449
450 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++, base++) {
451 struct timerqueue_node *next;
452 struct hrtimer *timer;
453
454 next = timerqueue_getnext(&base->active);
455 if (!next)
456 continue;
457
458 timer = container_of(next, struct hrtimer, node);
459 expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
460 if (expires.tv64 < expires_next.tv64)
461 expires_next = expires;
462 }
463 /*
464 * clock_was_set() might have changed base->offset of any of
465 * the clock bases so the result might be negative. Fix it up
466 * to prevent a false positive in clockevents_program_event().
467 */
468 if (expires_next.tv64 < 0)
469 expires_next.tv64 = 0;
470 return expires_next;
471}
472#endif
473
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800474/* High resolution timer related functions */
475#ifdef CONFIG_HIGH_RES_TIMERS
476
477/*
478 * High resolution timer enabled ?
479 */
480static int hrtimer_hres_enabled __read_mostly = 1;
481
482/*
483 * Enable / Disable high resolution mode
484 */
485static int __init setup_hrtimer_hres(char *str)
486{
487 if (!strcmp(str, "off"))
488 hrtimer_hres_enabled = 0;
489 else if (!strcmp(str, "on"))
490 hrtimer_hres_enabled = 1;
491 else
492 return 0;
493 return 1;
494}
495
496__setup("highres=", setup_hrtimer_hres);
497
498/*
499 * hrtimer_high_res_enabled - query, if the highres mode is enabled
500 */
501static inline int hrtimer_is_hres_enabled(void)
502{
503 return hrtimer_hres_enabled;
504}
505
506/*
507 * Is the high resolution mode active ?
508 */
509static inline int hrtimer_hres_active(void)
510{
Christoph Lameter909ea962010-12-08 16:22:55 +0100511 return __this_cpu_read(hrtimer_bases.hres_active);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800512}
513
514/*
515 * Reprogram the event source with checking both queues for the
516 * next event
517 * Called with interrupts disabled and base->lock held
518 */
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400519static void
520hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base, int skip_equal)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800521{
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100522 ktime_t expires_next = __hrtimer_get_next_event(cpu_base);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800523
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400524 if (skip_equal && expires_next.tv64 == cpu_base->expires_next.tv64)
525 return;
526
527 cpu_base->expires_next.tv64 = expires_next.tv64;
528
Stuart Hayes6c6c0d52014-04-29 17:55:02 -0500529 /*
530 * If a hang was detected in the last timer interrupt then we
531 * leave the hang delay active in the hardware. We want the
532 * system to make progress. That also prevents the following
533 * scenario:
534 * T1 expires 50ms from now
535 * T2 expires 5s from now
536 *
537 * T1 is removed, so this code is called and would reprogram
538 * the hardware to 5s from now. Any hrtimer_start after that
539 * will not reprogram the hardware due to hang_detected being
540 * set. So we'd effectivly block all timers until the T2 event
541 * fires.
542 */
543 if (cpu_base->hang_detected)
544 return;
545
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800546 if (cpu_base->expires_next.tv64 != KTIME_MAX)
547 tick_program_event(cpu_base->expires_next, 1);
548}
549
550/*
551 * Shared reprogramming for clock_realtime and clock_monotonic
552 *
553 * When a timer is enqueued and expires earlier than the already enqueued
554 * timers, we have to check, whether it expires earlier than the timer for
555 * which the clock event device was armed.
556 *
Viresh Kumar9e1e01d2014-06-22 01:29:17 +0200557 * Note, that in case the state has HRTIMER_STATE_CALLBACK set, no reprogramming
558 * and no expiry check happens. The timer gets enqueued into the rbtree. The
559 * reprogramming and expiry check is done in the hrtimer_interrupt or in the
560 * softirq.
561 *
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800562 * Called with interrupts disabled and base->cpu_base.lock held
563 */
564static int hrtimer_reprogram(struct hrtimer *timer,
565 struct hrtimer_clock_base *base)
566{
Christoph Lameterdc5df732014-08-17 12:30:26 -0500567 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700568 ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800569 int res;
570
Arjan van de Vencc584b22008-09-01 15:02:30 -0700571 WARN_ON_ONCE(hrtimer_get_expires_tv64(timer) < 0);
Thomas Gleixner63070a72008-02-14 00:58:36 +0100572
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800573 /*
574 * When the callback is running, we do not reprogram the clock event
575 * device. The timer callback is either running on a different CPU or
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200576 * the callback is executed in the hrtimer_interrupt context. The
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800577 * reprogramming is handled either by the softirq, which called the
578 * callback or at the end of the hrtimer_interrupt.
579 */
580 if (hrtimer_callback_running(timer))
581 return 0;
582
Thomas Gleixner63070a72008-02-14 00:58:36 +0100583 /*
584 * CLOCK_REALTIME timer might be requested with an absolute
585 * expiry time which is less than base->offset. Nothing wrong
586 * about that, just avoid to call into the tick code, which
587 * has now objections against negative expiry values.
588 */
589 if (expires.tv64 < 0)
590 return -ETIME;
591
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100592 if (expires.tv64 >= cpu_base->expires_next.tv64)
593 return 0;
594
595 /*
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100596 * When the target cpu of the timer is currently executing
597 * hrtimer_interrupt(), then we do not touch the clock event
598 * device. hrtimer_interrupt() will reevaluate all clock bases
599 * before reprogramming the device.
600 */
601 if (cpu_base->in_hrtirq)
602 return 0;
603
604 /*
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100605 * If a hang was detected in the last timer interrupt then we
606 * do not schedule a timer which is earlier than the expiry
607 * which we enforced in the hang detection. We want the system
608 * to make progress.
609 */
610 if (cpu_base->hang_detected)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800611 return 0;
612
613 /*
614 * Clockevents returns -ETIME, when the event was in the past.
615 */
616 res = tick_program_event(expires, 0);
617 if (!IS_ERR_VALUE(res))
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100618 cpu_base->expires_next = expires;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800619 return res;
620}
621
Ingo Molnar995f0542007-04-07 12:05:00 +0200622/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800623 * Initialize the high resolution related parts of cpu_base
624 */
625static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base)
626{
627 base->expires_next.tv64 = KTIME_MAX;
628 base->hres_active = 0;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800629}
630
John Stultz5baefd62012-07-10 18:43:25 -0400631static inline ktime_t hrtimer_update_base(struct hrtimer_cpu_base *base)
632{
633 ktime_t *offs_real = &base->clock_base[HRTIMER_BASE_REALTIME].offset;
634 ktime_t *offs_boot = &base->clock_base[HRTIMER_BASE_BOOTTIME].offset;
John Stultz90adda92013-01-21 17:00:11 -0800635 ktime_t *offs_tai = &base->clock_base[HRTIMER_BASE_TAI].offset;
John Stultz5baefd62012-07-10 18:43:25 -0400636
John Stultz76f41082014-07-16 21:03:52 +0000637 return ktime_get_update_offsets_now(offs_real, offs_boot, offs_tai);
John Stultz5baefd62012-07-10 18:43:25 -0400638}
639
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200640/*
641 * Retrigger next event is called after clock was set
642 *
643 * Called with interrupts disabled via on_each_cpu()
644 */
645static void retrigger_next_event(void *arg)
646{
Christoph Lameterdc5df732014-08-17 12:30:26 -0500647 struct hrtimer_cpu_base *base = this_cpu_ptr(&hrtimer_bases);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200648
649 if (!hrtimer_hres_active())
650 return;
651
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200652 raw_spin_lock(&base->lock);
John Stultz5baefd62012-07-10 18:43:25 -0400653 hrtimer_update_base(base);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200654 hrtimer_force_reprogram(base, 0);
655 raw_spin_unlock(&base->lock);
656}
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200657
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800658/*
659 * Switch to high resolution mode
660 */
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800661static int hrtimer_switch_to_hres(void)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800662{
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200663 int i, cpu = smp_processor_id();
Ingo Molnar820de5c2007-07-21 04:37:36 -0700664 struct hrtimer_cpu_base *base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800665 unsigned long flags;
666
667 if (base->hres_active)
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800668 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800669
670 local_irq_save(flags);
671
672 if (tick_init_highres()) {
673 local_irq_restore(flags);
Ingo Molnar820de5c2007-07-21 04:37:36 -0700674 printk(KERN_WARNING "Could not switch to high resolution "
675 "mode on CPU %d\n", cpu);
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800676 return 0;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800677 }
678 base->hres_active = 1;
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200679 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++)
680 base->clock_base[i].resolution = KTIME_HIGH_RES;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800681
682 tick_setup_sched_timer();
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800683 /* "Retrigger" the interrupt to get things going */
684 retrigger_next_event(NULL);
685 local_irq_restore(flags);
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800686 return 1;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800687}
688
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200689static void clock_was_set_work(struct work_struct *work)
690{
691 clock_was_set();
692}
693
694static DECLARE_WORK(hrtimer_work, clock_was_set_work);
695
John Stultzf55a6fa2012-07-10 18:43:19 -0400696/*
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200697 * Called from timekeeping and resume code to reprogramm the hrtimer
698 * interrupt device on all cpus.
John Stultzf55a6fa2012-07-10 18:43:19 -0400699 */
700void clock_was_set_delayed(void)
701{
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200702 schedule_work(&hrtimer_work);
John Stultzf55a6fa2012-07-10 18:43:19 -0400703}
704
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800705#else
706
707static inline int hrtimer_hres_active(void) { return 0; }
708static inline int hrtimer_is_hres_enabled(void) { return 0; }
Thomas Gleixnerf8953852007-03-06 01:42:08 -0800709static inline int hrtimer_switch_to_hres(void) { return 0; }
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400710static inline void
711hrtimer_force_reprogram(struct hrtimer_cpu_base *base, int skip_equal) { }
Viresh Kumar9e1e01d2014-06-22 01:29:17 +0200712static inline int hrtimer_reprogram(struct hrtimer *timer,
713 struct hrtimer_clock_base *base)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800714{
715 return 0;
716}
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800717static inline void hrtimer_init_hres(struct hrtimer_cpu_base *base) { }
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200718static inline void retrigger_next_event(void *arg) { }
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800719
720#endif /* CONFIG_HIGH_RES_TIMERS */
721
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200722/*
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200723 * Clock realtime was set
724 *
725 * Change the offset of the realtime clock vs. the monotonic
726 * clock.
727 *
728 * We might have to reprogram the high resolution timer interrupt. On
729 * SMP we call the architecture specific code to retrigger _all_ high
730 * resolution timer interrupts. On UP we just disable interrupts and
731 * call the high resolution interrupt code.
732 */
733void clock_was_set(void)
734{
Thomas Gleixner90ff1f32011-05-25 23:08:17 +0200735#ifdef CONFIG_HIGH_RES_TIMERS
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200736 /* Retrigger the CPU local events everywhere */
737 on_each_cpu(retrigger_next_event, NULL, 1);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200738#endif
739 timerfd_clock_was_set();
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200740}
741
742/*
743 * During resume we might have to reprogram the high resolution timer
David Vrabel7c4c3a02013-06-27 11:35:44 +0100744 * interrupt on all online CPUs. However, all other CPUs will be
745 * stopped with IRQs interrupts disabled so the clock_was_set() call
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200746 * must be deferred.
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200747 */
748void hrtimers_resume(void)
749{
750 WARN_ONCE(!irqs_disabled(),
751 KERN_INFO "hrtimers_resume() called with IRQs enabled!");
752
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200753 /* Retrigger on the local CPU */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200754 retrigger_next_event(NULL);
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200755 /* And schedule a retrigger for all others */
756 clock_was_set_delayed();
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200757}
758
Heiko Carstens5f201902009-12-10 10:56:29 +0100759static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800760{
Heiko Carstens5f201902009-12-10 10:56:29 +0100761#ifdef CONFIG_TIMER_STATS
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800762 if (timer->start_site)
763 return;
Heiko Carstens5f201902009-12-10 10:56:29 +0100764 timer->start_site = __builtin_return_address(0);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800765 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
766 timer->start_pid = current->pid;
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800767#endif
Heiko Carstens5f201902009-12-10 10:56:29 +0100768}
769
770static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
771{
772#ifdef CONFIG_TIMER_STATS
773 timer->start_site = NULL;
774#endif
775}
776
777static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
778{
779#ifdef CONFIG_TIMER_STATS
780 if (likely(!timer_stats_active))
781 return;
782 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
783 timer->function, timer->start_comm, 0);
784#endif
785}
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800786
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800787/*
Uwe Kleine-König6506f2a2007-10-20 01:56:53 +0200788 * Counterpart to lock_hrtimer_base above:
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800789 */
790static inline
791void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
792{
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100793 raw_spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800794}
795
796/**
797 * hrtimer_forward - forward the timer expiry
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800798 * @timer: hrtimer to forward
Roman Zippel44f21472006-03-26 01:38:06 -0800799 * @now: forward past this time
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800800 * @interval: the interval to forward
801 *
802 * Forward the timer expiry so it will expire in the future.
Jonathan Corbet8dca6f32006-01-16 15:58:55 -0700803 * Returns the number of overruns.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800804 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800805u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800806{
Davide Libenzi4d672e72008-02-04 22:27:26 -0800807 u64 orun = 1;
Roman Zippel44f21472006-03-26 01:38:06 -0800808 ktime_t delta;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800809
Arjan van de Vencc584b22008-09-01 15:02:30 -0700810 delta = ktime_sub(now, hrtimer_get_expires(timer));
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800811
812 if (delta.tv64 < 0)
813 return 0;
814
Thomas Gleixnerc9db4fa2006-01-12 11:47:34 +0100815 if (interval.tv64 < timer->base->resolution.tv64)
816 interval.tv64 = timer->base->resolution.tv64;
817
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800818 if (unlikely(delta.tv64 >= interval.tv64)) {
Roman Zippeldf869b62006-03-26 01:38:11 -0800819 s64 incr = ktime_to_ns(interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800820
821 orun = ktime_divns(delta, incr);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700822 hrtimer_add_expires_ns(timer, incr * orun);
823 if (hrtimer_get_expires_tv64(timer) > now.tv64)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800824 return orun;
825 /*
826 * This (and the ktime_add() below) is the
827 * correction for exact:
828 */
829 orun++;
830 }
Arjan van de Vencc584b22008-09-01 15:02:30 -0700831 hrtimer_add_expires(timer, interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800832
833 return orun;
834}
Stas Sergeev6bdb6b62007-05-08 00:31:58 -0700835EXPORT_SYMBOL_GPL(hrtimer_forward);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800836
837/*
838 * enqueue_hrtimer - internal function to (re)start a timer
839 *
840 * The timer is inserted in expiry order. Insertion into the
841 * red black tree is O(log(n)). Must hold the base lock.
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100842 *
843 * Returns 1 when the new timer is the leftmost timer in the tree.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800844 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100845static int enqueue_hrtimer(struct hrtimer *timer,
846 struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800847{
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800848 debug_activate(timer);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700849
John Stultz998adc32010-09-20 19:19:17 -0700850 timerqueue_add(&base->active, &timer->node);
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200851 base->cpu_base->active_bases |= 1 << base->index;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800852
853 /*
Thomas Gleixner303e9672007-02-16 01:27:51 -0800854 * HRTIMER_STATE_ENQUEUED is or'ed to the current state to preserve the
855 * state of a possibly running callback.
856 */
857 timer->state |= HRTIMER_STATE_ENQUEUED;
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100858
John Stultz998adc32010-09-20 19:19:17 -0700859 return (&timer->node == base->active.next);
Thomas Gleixner288867e2006-01-12 11:25:54 +0100860}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800861
862/*
863 * __remove_hrtimer - internal function to remove a timer
864 *
865 * Caller must hold the base lock.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800866 *
867 * High resolution timer mode reprograms the clock event device when the
868 * timer is the one which expires next. The caller can disable this by setting
869 * reprogram to zero. This is useful, when the context does a reprogramming
870 * anyway (e.g. timer interrupt)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800871 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800872static void __remove_hrtimer(struct hrtimer *timer,
Thomas Gleixner303e9672007-02-16 01:27:51 -0800873 struct hrtimer_clock_base *base,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800874 unsigned long newstate, int reprogram)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800875{
Jeff Ohlstein27c9cd72011-11-18 15:47:10 -0800876 struct timerqueue_node *next_timer;
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400877 if (!(timer->state & HRTIMER_STATE_ENQUEUED))
878 goto out;
879
Jeff Ohlstein27c9cd72011-11-18 15:47:10 -0800880 next_timer = timerqueue_getnext(&base->active);
881 timerqueue_del(&base->active, &timer->node);
882 if (&timer->node == next_timer) {
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400883#ifdef CONFIG_HIGH_RES_TIMERS
884 /* Reprogram the clock event device. if enabled */
885 if (reprogram && hrtimer_hres_active()) {
886 ktime_t expires;
887
888 expires = ktime_sub(hrtimer_get_expires(timer),
889 base->offset);
890 if (base->cpu_base->expires_next.tv64 == expires.tv64)
891 hrtimer_force_reprogram(base->cpu_base, 1);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800892 }
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400893#endif
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800894 }
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200895 if (!timerqueue_getnext(&base->active))
896 base->cpu_base->active_bases &= ~(1 << base->index);
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400897out:
Thomas Gleixner303e9672007-02-16 01:27:51 -0800898 timer->state = newstate;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800899}
900
901/*
902 * remove hrtimer, called with base lock held
903 */
904static inline int
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800905remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800906{
Thomas Gleixner303e9672007-02-16 01:27:51 -0800907 if (hrtimer_is_queued(timer)) {
Salman Qazif13d4f92010-10-12 07:25:19 -0700908 unsigned long state;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800909 int reprogram;
910
911 /*
912 * Remove the timer and force reprogramming when high
913 * resolution mode is active and the timer is on the current
914 * CPU. If we remove a timer on another CPU, reprogramming is
915 * skipped. The interrupt event on this CPU is fired and
916 * reprogramming happens in the interrupt handler. This is a
917 * rare case and less expensive than a smp call.
918 */
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800919 debug_deactivate(timer);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800920 timer_stats_hrtimer_clear_start_info(timer);
Christoph Lameterdc5df732014-08-17 12:30:26 -0500921 reprogram = base->cpu_base == this_cpu_ptr(&hrtimer_bases);
Salman Qazif13d4f92010-10-12 07:25:19 -0700922 /*
923 * We must preserve the CALLBACK state flag here,
924 * otherwise we could move the timer base in
925 * switch_hrtimer_base.
926 */
927 state = timer->state & HRTIMER_STATE_CALLBACK;
928 __remove_hrtimer(timer, base, state, reprogram);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800929 return 1;
930 }
931 return 0;
932}
933
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100934int __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
935 unsigned long delta_ns, const enum hrtimer_mode mode,
936 int wakeup)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800937{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800938 struct hrtimer_clock_base *base, *new_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800939 unsigned long flags;
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100940 int ret, leftmost;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800941
942 base = lock_hrtimer_base(timer, &flags);
943
944 /* Remove an active timer from the queue: */
945 ret = remove_hrtimer(timer, base);
946
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530947 if (mode & HRTIMER_MODE_REL) {
Viresh Kumar84ea7fe2014-05-12 13:42:29 +0530948 tim = ktime_add_safe(tim, base->get_time());
Ingo Molnar06027bd2006-02-14 13:53:15 -0800949 /*
950 * CONFIG_TIME_LOW_RES is a temporary way for architectures
951 * to signal that they simply return xtime in
952 * do_gettimeoffset(). In this case we want to round up by
953 * resolution when starting a relative timer, to avoid short
954 * timeouts. This will go away with the GTOD framework.
955 */
956#ifdef CONFIG_TIME_LOW_RES
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100957 tim = ktime_add_safe(tim, base->resolution);
Ingo Molnar06027bd2006-02-14 13:53:15 -0800958#endif
959 }
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700960
Arjan van de Venda8f2e12008-09-07 10:47:46 -0700961 hrtimer_set_expires_range_ns(timer, tim, delta_ns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800962
Viresh Kumar84ea7fe2014-05-12 13:42:29 +0530963 /* Switch the timer base, if necessary: */
964 new_base = switch_hrtimer_base(timer, base, mode & HRTIMER_MODE_PINNED);
965
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800966 timer_stats_hrtimer_set_start_info(timer);
967
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100968 leftmost = enqueue_hrtimer(timer, new_base);
969
Viresh Kumar49a2a072014-06-23 13:39:37 +0530970 if (!leftmost) {
971 unlock_hrtimer_base(timer, &flags);
972 return ret;
973 }
974
975 if (!hrtimer_is_hres_active(timer)) {
976 /*
977 * Kick to reschedule the next tick to handle the new timer
978 * on dynticks target.
979 */
980 wake_up_nohz_cpu(new_base->cpu_base->cpu);
Christoph Lameterdc5df732014-08-17 12:30:26 -0500981 } else if (new_base->cpu_base == this_cpu_ptr(&hrtimer_bases) &&
Viresh Kumar9e1e01d2014-06-22 01:29:17 +0200982 hrtimer_reprogram(timer, new_base)) {
Viresh Kumar49a2a072014-06-23 13:39:37 +0530983 /*
984 * Only allow reprogramming if the new base is on this CPU.
985 * (it might still be on another CPU if the timer was pending)
986 *
987 * XXX send_remote_softirq() ?
988 */
Leonid Shatzb22affe2013-02-04 14:33:37 +0200989 if (wakeup) {
990 /*
991 * We need to drop cpu_base->lock to avoid a
992 * lock ordering issue vs. rq->lock.
993 */
994 raw_spin_unlock(&new_base->cpu_base->lock);
995 raise_softirq_irqoff(HRTIMER_SOFTIRQ);
996 local_irq_restore(flags);
997 return ret;
998 } else {
999 __raise_softirq_irqoff(HRTIMER_SOFTIRQ);
1000 }
1001 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001002
1003 unlock_hrtimer_base(timer, &flags);
1004
1005 return ret;
1006}
Yan, Zheng8588a2bb2014-03-18 16:56:42 +08001007EXPORT_SYMBOL_GPL(__hrtimer_start_range_ns);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001008
1009/**
1010 * hrtimer_start_range_ns - (re)start an hrtimer on the current CPU
1011 * @timer: the timer to be added
1012 * @tim: expiry time
1013 * @delta_ns: "slack" range for the timer
David Daney8ffbc7d2013-03-13 12:20:38 -07001014 * @mode: expiry mode: absolute (HRTIMER_MODE_ABS) or
1015 * relative (HRTIMER_MODE_REL)
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001016 *
1017 * Returns:
1018 * 0 on success
1019 * 1 when the timer was active
1020 */
1021int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
1022 unsigned long delta_ns, const enum hrtimer_mode mode)
1023{
1024 return __hrtimer_start_range_ns(timer, tim, delta_ns, mode, 1);
1025}
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001026EXPORT_SYMBOL_GPL(hrtimer_start_range_ns);
1027
1028/**
Thomas Gleixnere1dd7bc2008-10-20 13:33:36 +02001029 * hrtimer_start - (re)start an hrtimer on the current CPU
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001030 * @timer: the timer to be added
1031 * @tim: expiry time
David Daney8ffbc7d2013-03-13 12:20:38 -07001032 * @mode: expiry mode: absolute (HRTIMER_MODE_ABS) or
1033 * relative (HRTIMER_MODE_REL)
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001034 *
1035 * Returns:
1036 * 0 on success
1037 * 1 when the timer was active
1038 */
1039int
1040hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
1041{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001042 return __hrtimer_start_range_ns(timer, tim, 0, mode, 1);
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001043}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001044EXPORT_SYMBOL_GPL(hrtimer_start);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001045
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001046
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001047/**
1048 * hrtimer_try_to_cancel - try to deactivate a timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001049 * @timer: hrtimer to stop
1050 *
1051 * Returns:
1052 * 0 when the timer was not active
1053 * 1 when the timer was active
1054 * -1 when the timer is currently excuting the callback function and
Randy Dunlapfa9799e2006-06-25 05:49:15 -07001055 * cannot be stopped
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001056 */
1057int hrtimer_try_to_cancel(struct hrtimer *timer)
1058{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001059 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001060 unsigned long flags;
1061 int ret = -1;
1062
1063 base = lock_hrtimer_base(timer, &flags);
1064
Thomas Gleixner303e9672007-02-16 01:27:51 -08001065 if (!hrtimer_callback_running(timer))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001066 ret = remove_hrtimer(timer, base);
1067
1068 unlock_hrtimer_base(timer, &flags);
1069
1070 return ret;
1071
1072}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001073EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001074
1075/**
1076 * hrtimer_cancel - cancel a timer and wait for the handler to finish.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001077 * @timer: the timer to be cancelled
1078 *
1079 * Returns:
1080 * 0 when the timer was not active
1081 * 1 when the timer was active
1082 */
1083int hrtimer_cancel(struct hrtimer *timer)
1084{
1085 for (;;) {
1086 int ret = hrtimer_try_to_cancel(timer);
1087
1088 if (ret >= 0)
1089 return ret;
Joe Korty5ef37b12006-04-10 22:54:13 -07001090 cpu_relax();
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001091 }
1092}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001093EXPORT_SYMBOL_GPL(hrtimer_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001094
1095/**
1096 * hrtimer_get_remaining - get remaining time for the timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001097 * @timer: the timer to read
1098 */
1099ktime_t hrtimer_get_remaining(const struct hrtimer *timer)
1100{
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001101 unsigned long flags;
1102 ktime_t rem;
1103
Andi Kleenb3bd3de2010-08-10 14:17:51 -07001104 lock_hrtimer_base(timer, &flags);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001105 rem = hrtimer_expires_remaining(timer);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001106 unlock_hrtimer_base(timer, &flags);
1107
1108 return rem;
1109}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001110EXPORT_SYMBOL_GPL(hrtimer_get_remaining);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001111
Frederic Weisbecker3451d022011-08-10 23:21:01 +02001112#ifdef CONFIG_NO_HZ_COMMON
Tony Lindgren69239742006-03-06 15:42:45 -08001113/**
1114 * hrtimer_get_next_event - get the time until next expiry event
1115 *
1116 * Returns the delta to the next expiry event or KTIME_MAX if no timer
1117 * is pending.
1118 */
1119ktime_t hrtimer_get_next_event(void)
1120{
Christoph Lameterdc5df732014-08-17 12:30:26 -05001121 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
Thomas Gleixner9bc749192015-01-20 21:24:10 +01001122 ktime_t mindelta = { .tv64 = KTIME_MAX };
Tony Lindgren69239742006-03-06 15:42:45 -08001123 unsigned long flags;
Tony Lindgren69239742006-03-06 15:42:45 -08001124
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001125 raw_spin_lock_irqsave(&cpu_base->lock, flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001126
Thomas Gleixner9bc749192015-01-20 21:24:10 +01001127 if (!hrtimer_hres_active())
1128 mindelta = ktime_sub(__hrtimer_get_next_event(cpu_base),
1129 ktime_get());
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001130
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001131 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001132
Tony Lindgren69239742006-03-06 15:42:45 -08001133 if (mindelta.tv64 < 0)
1134 mindelta.tv64 = 0;
1135 return mindelta;
1136}
1137#endif
1138
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001139static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1140 enum hrtimer_mode mode)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001141{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001142 struct hrtimer_cpu_base *cpu_base;
John Stultze06383d2010-12-14 19:37:07 -08001143 int base;
George Anzinger7978672c2006-02-01 03:05:11 -08001144
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001145 memset(timer, 0, sizeof(struct hrtimer));
George Anzinger7978672c2006-02-01 03:05:11 -08001146
Christoph Lameter22127e92014-08-17 12:30:25 -05001147 cpu_base = raw_cpu_ptr(&hrtimer_bases);
George Anzinger7978672c2006-02-01 03:05:11 -08001148
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001149 if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS)
George Anzinger7978672c2006-02-01 03:05:11 -08001150 clock_id = CLOCK_MONOTONIC;
1151
John Stultze06383d2010-12-14 19:37:07 -08001152 base = hrtimer_clockid_to_base(clock_id);
1153 timer->base = &cpu_base->clock_base[base];
John Stultz998adc32010-09-20 19:19:17 -07001154 timerqueue_init(&timer->node);
Ingo Molnar82f67cd2007-02-16 01:28:13 -08001155
1156#ifdef CONFIG_TIMER_STATS
1157 timer->start_site = NULL;
1158 timer->start_pid = -1;
1159 memset(timer->start_comm, 0, TASK_COMM_LEN);
1160#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001161}
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001162
1163/**
1164 * hrtimer_init - initialize a timer to the given clock
1165 * @timer: the timer to be initialized
1166 * @clock_id: the clock to be used
1167 * @mode: timer mode abs/rel
1168 */
1169void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1170 enum hrtimer_mode mode)
1171{
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001172 debug_init(timer, clock_id, mode);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001173 __hrtimer_init(timer, clock_id, mode);
1174}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001175EXPORT_SYMBOL_GPL(hrtimer_init);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001176
1177/**
1178 * hrtimer_get_res - get the timer resolution for a clock
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001179 * @which_clock: which clock to query
1180 * @tp: pointer to timespec variable to store the resolution
1181 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001182 * Store the resolution of the clock selected by @which_clock in the
1183 * variable pointed to by @tp.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001184 */
1185int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)
1186{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001187 struct hrtimer_cpu_base *cpu_base;
John Stultze06383d2010-12-14 19:37:07 -08001188 int base = hrtimer_clockid_to_base(which_clock);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001189
Christoph Lameter22127e92014-08-17 12:30:25 -05001190 cpu_base = raw_cpu_ptr(&hrtimer_bases);
John Stultze06383d2010-12-14 19:37:07 -08001191 *tp = ktime_to_timespec(cpu_base->clock_base[base].resolution);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001192
1193 return 0;
1194}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001195EXPORT_SYMBOL_GPL(hrtimer_get_res);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001196
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001197static void __run_hrtimer(struct hrtimer *timer, ktime_t *now)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001198{
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001199 struct hrtimer_clock_base *base = timer->base;
1200 struct hrtimer_cpu_base *cpu_base = base->cpu_base;
1201 enum hrtimer_restart (*fn)(struct hrtimer *);
1202 int restart;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001203
Peter Zijlstraca109492008-11-25 12:43:51 +01001204 WARN_ON(!irqs_disabled());
1205
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001206 debug_deactivate(timer);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001207 __remove_hrtimer(timer, base, HRTIMER_STATE_CALLBACK, 0);
1208 timer_stats_account_hrtimer(timer);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001209 fn = timer->function;
Peter Zijlstraca109492008-11-25 12:43:51 +01001210
1211 /*
1212 * Because we run timers from hardirq context, there is no chance
1213 * they get migrated to another cpu, therefore its safe to unlock
1214 * the timer base.
1215 */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001216 raw_spin_unlock(&cpu_base->lock);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001217 trace_hrtimer_expire_entry(timer, now);
Peter Zijlstraca109492008-11-25 12:43:51 +01001218 restart = fn(timer);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001219 trace_hrtimer_expire_exit(timer);
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001220 raw_spin_lock(&cpu_base->lock);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001221
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001222 /*
Thomas Gleixnere3f1d882009-01-05 11:28:23 +01001223 * Note: We clear the CALLBACK bit after enqueue_hrtimer and
1224 * we do not reprogramm the event hardware. Happens either in
1225 * hrtimer_start_range_ns() or in hrtimer_interrupt()
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001226 */
1227 if (restart != HRTIMER_NORESTART) {
1228 BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001229 enqueue_hrtimer(timer, base);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001230 }
Salman Qazif13d4f92010-10-12 07:25:19 -07001231
1232 WARN_ON_ONCE(!(timer->state & HRTIMER_STATE_CALLBACK));
1233
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001234 timer->state &= ~HRTIMER_STATE_CALLBACK;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001235}
1236
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001237#ifdef CONFIG_HIGH_RES_TIMERS
1238
1239/*
1240 * High resolution timer interrupt
1241 * Called with interrupts disabled
1242 */
1243void hrtimer_interrupt(struct clock_event_device *dev)
1244{
Christoph Lameterdc5df732014-08-17 12:30:26 -05001245 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001246 ktime_t expires_next, now, entry_time, delta;
1247 int i, retries = 0;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001248
1249 BUG_ON(!cpu_base->hres_active);
1250 cpu_base->nr_events++;
1251 dev->next_event.tv64 = KTIME_MAX;
1252
Thomas Gleixner196951e2012-07-10 18:43:23 -04001253 raw_spin_lock(&cpu_base->lock);
John Stultz5baefd62012-07-10 18:43:25 -04001254 entry_time = now = hrtimer_update_base(cpu_base);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001255retry:
Thomas Gleixner9bc749192015-01-20 21:24:10 +01001256 cpu_base->in_hrtirq = 1;
Thomas Gleixner6ff70412009-07-10 14:57:05 +02001257 /*
1258 * We set expires_next to KTIME_MAX here with cpu_base->lock
1259 * held to prevent that a timer is enqueued in our queue via
1260 * the migration code. This does not affect enqueueing of
1261 * timers which run their callback and need to be requeued on
1262 * this CPU.
1263 */
1264 cpu_base->expires_next.tv64 = KTIME_MAX;
1265
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001266 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001267 struct hrtimer_clock_base *base;
John Stultz998adc32010-09-20 19:19:17 -07001268 struct timerqueue_node *node;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001269 ktime_t basenow;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001270
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001271 if (!(cpu_base->active_bases & (1 << i)))
1272 continue;
1273
1274 base = cpu_base->clock_base + i;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001275 basenow = ktime_add(now, base->offset);
1276
John Stultz998adc32010-09-20 19:19:17 -07001277 while ((node = timerqueue_getnext(&base->active))) {
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001278 struct hrtimer *timer;
1279
John Stultz998adc32010-09-20 19:19:17 -07001280 timer = container_of(node, struct hrtimer, node);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001281
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001282 /*
1283 * The immediate goal for using the softexpires is
1284 * minimizing wakeups, not running timers at the
1285 * earliest interrupt after their soft expiration.
1286 * This allows us to avoid using a Priority Search
1287 * Tree, which can answer a stabbing querry for
1288 * overlapping intervals and instead use the simple
1289 * BST we already have.
1290 * We don't add extra wakeups by delaying timers that
1291 * are right-of a not yet expired timer, because that
1292 * timer will have to trigger a wakeup anyway.
1293 */
Thomas Gleixner9bc749192015-01-20 21:24:10 +01001294 if (basenow.tv64 < hrtimer_get_softexpires_tv64(timer))
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001295 break;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001296
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001297 __run_hrtimer(timer, &basenow);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001298 }
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001299 }
Thomas Gleixner9bc749192015-01-20 21:24:10 +01001300 /* Reevaluate the clock bases for the next expiry */
1301 expires_next = __hrtimer_get_next_event(cpu_base);
Thomas Gleixner6ff70412009-07-10 14:57:05 +02001302 /*
1303 * Store the new expiry value so the migration code can verify
1304 * against it.
1305 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001306 cpu_base->expires_next = expires_next;
Thomas Gleixner9bc749192015-01-20 21:24:10 +01001307 cpu_base->in_hrtirq = 0;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001308 raw_spin_unlock(&cpu_base->lock);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001309
1310 /* Reprogramming necessary ? */
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001311 if (expires_next.tv64 == KTIME_MAX ||
1312 !tick_program_event(expires_next, 0)) {
1313 cpu_base->hang_detected = 0;
1314 return;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001315 }
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001316
1317 /*
1318 * The next timer was already expired due to:
1319 * - tracing
1320 * - long lasting callbacks
1321 * - being scheduled away when running in a VM
1322 *
1323 * We need to prevent that we loop forever in the hrtimer
1324 * interrupt routine. We give it 3 attempts to avoid
1325 * overreacting on some spurious event.
John Stultz5baefd62012-07-10 18:43:25 -04001326 *
1327 * Acquire base lock for updating the offsets and retrieving
1328 * the current time.
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001329 */
Thomas Gleixner196951e2012-07-10 18:43:23 -04001330 raw_spin_lock(&cpu_base->lock);
John Stultz5baefd62012-07-10 18:43:25 -04001331 now = hrtimer_update_base(cpu_base);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001332 cpu_base->nr_retries++;
1333 if (++retries < 3)
1334 goto retry;
1335 /*
1336 * Give the system a chance to do something else than looping
1337 * here. We stored the entry time, so we know exactly how long
1338 * we spent here. We schedule the next event this amount of
1339 * time away.
1340 */
1341 cpu_base->nr_hangs++;
1342 cpu_base->hang_detected = 1;
Thomas Gleixner196951e2012-07-10 18:43:23 -04001343 raw_spin_unlock(&cpu_base->lock);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001344 delta = ktime_sub(now, entry_time);
1345 if (delta.tv64 > cpu_base->max_hang_time.tv64)
1346 cpu_base->max_hang_time = delta;
1347 /*
1348 * Limit it to a sensible value as we enforce a longer
1349 * delay. Give the CPU at least 100ms to catch up.
1350 */
1351 if (delta.tv64 > 100 * NSEC_PER_MSEC)
1352 expires_next = ktime_add_ns(now, 100 * NSEC_PER_MSEC);
1353 else
1354 expires_next = ktime_add(now, delta);
1355 tick_program_event(expires_next, 1);
1356 printk_once(KERN_WARNING "hrtimer: interrupt took %llu ns\n",
1357 ktime_to_ns(delta));
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001358}
1359
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001360/*
1361 * local version of hrtimer_peek_ahead_timers() called with interrupts
1362 * disabled.
1363 */
1364static void __hrtimer_peek_ahead_timers(void)
1365{
1366 struct tick_device *td;
1367
1368 if (!hrtimer_hres_active())
1369 return;
1370
Christoph Lameter22127e92014-08-17 12:30:25 -05001371 td = this_cpu_ptr(&tick_cpu_device);
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001372 if (td && td->evtdev)
1373 hrtimer_interrupt(td->evtdev);
1374}
1375
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001376/**
1377 * hrtimer_peek_ahead_timers -- run soft-expired timers now
1378 *
1379 * hrtimer_peek_ahead_timers will peek at the timer queue of
1380 * the current cpu and check if there are any timers for which
1381 * the soft expires time has passed. If any such timers exist,
1382 * they are run immediately and then removed from the timer queue.
1383 *
1384 */
1385void hrtimer_peek_ahead_timers(void)
1386{
Thomas Gleixner643bdf62008-10-20 13:38:11 +02001387 unsigned long flags;
Arjan van de Vendc4304f2008-10-13 10:32:15 -04001388
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001389 local_irq_save(flags);
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001390 __hrtimer_peek_ahead_timers();
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -07001391 local_irq_restore(flags);
1392}
1393
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001394static void run_hrtimer_softirq(struct softirq_action *h)
1395{
1396 hrtimer_peek_ahead_timers();
1397}
1398
Ingo Molnar82c5b7b2009-01-05 14:11:10 +01001399#else /* CONFIG_HIGH_RES_TIMERS */
1400
1401static inline void __hrtimer_peek_ahead_timers(void) { }
1402
1403#endif /* !CONFIG_HIGH_RES_TIMERS */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001404
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001405/*
1406 * Called from timer softirq every jiffy, expire hrtimers:
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001407 *
1408 * For HRT its the fall back code to run the softirq in the timer
1409 * softirq context in case the hrtimer initialization failed or has
1410 * not been done yet.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001411 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001412void hrtimer_run_pending(void)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001413{
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001414 if (hrtimer_hres_active())
1415 return;
1416
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001417 /*
1418 * This _is_ ugly: We have to check in the softirq context,
1419 * whether we can switch to highres and / or nohz mode. The
1420 * clocksource switch happens in the timer interrupt with
1421 * xtime_lock held. Notification from there only sets the
1422 * check bit in the tick_oneshot code, otherwise we might
1423 * deadlock vs. xtime_lock.
1424 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001425 if (tick_check_oneshot_change(!hrtimer_is_hres_enabled()))
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001426 hrtimer_switch_to_hres();
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001427}
1428
1429/*
1430 * Called from hardirq context every jiffy
1431 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001432void hrtimer_run_queues(void)
1433{
John Stultz998adc32010-09-20 19:19:17 -07001434 struct timerqueue_node *node;
Christoph Lameterdc5df732014-08-17 12:30:26 -05001435 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001436 struct hrtimer_clock_base *base;
1437 int index, gettime = 1;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001438
1439 if (hrtimer_hres_active())
1440 return;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001441
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001442 for (index = 0; index < HRTIMER_MAX_CLOCK_BASES; index++) {
1443 base = &cpu_base->clock_base[index];
John Stultzb007c382010-12-10 22:19:53 -08001444 if (!timerqueue_getnext(&base->active))
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001445 continue;
1446
Mark McLoughlind7cfb602008-09-19 13:13:44 +01001447 if (gettime) {
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001448 hrtimer_get_softirq_time(cpu_base);
1449 gettime = 0;
1450 }
1451
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001452 raw_spin_lock(&cpu_base->lock);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001453
John Stultzb007c382010-12-10 22:19:53 -08001454 while ((node = timerqueue_getnext(&base->active))) {
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001455 struct hrtimer *timer;
1456
John Stultz998adc32010-09-20 19:19:17 -07001457 timer = container_of(node, struct hrtimer, node);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001458 if (base->softirq_time.tv64 <=
1459 hrtimer_get_expires_tv64(timer))
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001460 break;
1461
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001462 __run_hrtimer(timer, &base->softirq_time);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001463 }
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001464 raw_spin_unlock(&cpu_base->lock);
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001465 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001466}
1467
1468/*
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001469 * Sleep related functions:
1470 */
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001471static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001472{
1473 struct hrtimer_sleeper *t =
1474 container_of(timer, struct hrtimer_sleeper, timer);
1475 struct task_struct *task = t->task;
1476
1477 t->task = NULL;
1478 if (task)
1479 wake_up_process(task);
1480
1481 return HRTIMER_NORESTART;
1482}
1483
Ingo Molnar36c8b582006-07-03 00:25:41 -07001484void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001485{
1486 sl->timer.function = hrtimer_wakeup;
1487 sl->task = task;
1488}
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07001489EXPORT_SYMBOL_GPL(hrtimer_init_sleeper);
Thomas Gleixner00362e32006-03-31 02:31:17 -08001490
Thomas Gleixner669d7862006-03-31 02:31:19 -08001491static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001492{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001493 hrtimer_init_sleeper(t, current);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001494
Roman Zippel432569b2006-03-26 01:38:08 -08001495 do {
1496 set_current_state(TASK_INTERRUPTIBLE);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001497 hrtimer_start_expires(&t->timer, mode);
Peter Zijlstra37bb6cb2008-01-25 21:08:32 +01001498 if (!hrtimer_active(&t->timer))
1499 t->task = NULL;
Roman Zippel432569b2006-03-26 01:38:08 -08001500
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001501 if (likely(t->task))
Colin Crossb0f8c442013-05-06 23:50:19 +00001502 freezable_schedule();
Roman Zippel432569b2006-03-26 01:38:08 -08001503
Thomas Gleixner669d7862006-03-31 02:31:19 -08001504 hrtimer_cancel(&t->timer);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001505 mode = HRTIMER_MODE_ABS;
Roman Zippel432569b2006-03-26 01:38:08 -08001506
Thomas Gleixner669d7862006-03-31 02:31:19 -08001507 } while (t->task && !signal_pending(current));
1508
Peter Zijlstra3588a082008-02-01 17:45:13 +01001509 __set_current_state(TASK_RUNNING);
1510
Thomas Gleixner669d7862006-03-31 02:31:19 -08001511 return t->task == NULL;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001512}
1513
Oleg Nesterov080344b2008-02-01 17:29:05 +03001514static int update_rmtp(struct hrtimer *timer, struct timespec __user *rmtp)
1515{
1516 struct timespec rmt;
1517 ktime_t rem;
1518
Arjan van de Vencc584b22008-09-01 15:02:30 -07001519 rem = hrtimer_expires_remaining(timer);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001520 if (rem.tv64 <= 0)
1521 return 0;
1522 rmt = ktime_to_timespec(rem);
1523
1524 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
1525 return -EFAULT;
1526
1527 return 1;
1528}
1529
Toyo Abe1711ef32006-09-29 02:00:28 -07001530long __sched hrtimer_nanosleep_restart(struct restart_block *restart)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001531{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001532 struct hrtimer_sleeper t;
Oleg Nesterov080344b2008-02-01 17:29:05 +03001533 struct timespec __user *rmtp;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001534 int ret = 0;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001535
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001536 hrtimer_init_on_stack(&t.timer, restart->nanosleep.clockid,
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001537 HRTIMER_MODE_ABS);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001538 hrtimer_set_expires_tv64(&t.timer, restart->nanosleep.expires);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001539
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001540 if (do_nanosleep(&t, HRTIMER_MODE_ABS))
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001541 goto out;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001542
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001543 rmtp = restart->nanosleep.rmtp;
Roman Zippel432569b2006-03-26 01:38:08 -08001544 if (rmtp) {
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001545 ret = update_rmtp(&t.timer, rmtp);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001546 if (ret <= 0)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001547 goto out;
Roman Zippel432569b2006-03-26 01:38:08 -08001548 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001549
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001550 /* The other values in restart are already filled in */
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001551 ret = -ERESTART_RESTARTBLOCK;
1552out:
1553 destroy_hrtimer_on_stack(&t.timer);
1554 return ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001555}
1556
Oleg Nesterov080344b2008-02-01 17:29:05 +03001557long hrtimer_nanosleep(struct timespec *rqtp, struct timespec __user *rmtp,
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001558 const enum hrtimer_mode mode, const clockid_t clockid)
1559{
1560 struct restart_block *restart;
Thomas Gleixner669d7862006-03-31 02:31:19 -08001561 struct hrtimer_sleeper t;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001562 int ret = 0;
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001563 unsigned long slack;
1564
1565 slack = current->timer_slack_ns;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001566 if (dl_task(current) || rt_task(current))
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001567 slack = 0;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001568
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001569 hrtimer_init_on_stack(&t.timer, clockid, mode);
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001570 hrtimer_set_expires_range_ns(&t.timer, timespec_to_ktime(*rqtp), slack);
Roman Zippel432569b2006-03-26 01:38:08 -08001571 if (do_nanosleep(&t, mode))
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001572 goto out;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001573
George Anzinger7978672c2006-02-01 03:05:11 -08001574 /* Absolute timers do not update the rmtp value and restart: */
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001575 if (mode == HRTIMER_MODE_ABS) {
1576 ret = -ERESTARTNOHAND;
1577 goto out;
1578 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001579
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
Andy Lutomirskif56141e2015-02-12 15:01:14 -08001586 restart = &current->restart_block;
Toyo Abe1711ef32006-09-29 02:00:28 -07001587 restart->fn = hrtimer_nanosleep_restart;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001588 restart->nanosleep.clockid = t.timer.base->clockid;
Thomas Gleixner029a07e2008-02-10 09:17:43 +01001589 restart->nanosleep.rmtp = rmtp;
Arjan van de Vencc584b22008-09-01 15:02:30 -07001590 restart->nanosleep.expires = hrtimer_get_expires_tv64(&t.timer);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001591
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001592 ret = -ERESTART_RESTARTBLOCK;
1593out:
1594 destroy_hrtimer_on_stack(&t.timer);
1595 return ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001596}
1597
Heiko Carstens58fd3aa2009-01-14 14:14:03 +01001598SYSCALL_DEFINE2(nanosleep, struct timespec __user *, rqtp,
1599 struct timespec __user *, rmtp)
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001600{
Oleg Nesterov080344b2008-02-01 17:29:05 +03001601 struct timespec tu;
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001602
1603 if (copy_from_user(&tu, rqtp, sizeof(tu)))
1604 return -EFAULT;
1605
1606 if (!timespec_valid(&tu))
1607 return -EINVAL;
1608
Oleg Nesterov080344b2008-02-01 17:29:05 +03001609 return hrtimer_nanosleep(&tu, rmtp, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001610}
1611
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001612/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001613 * Functions related to boot-time initialization:
1614 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04001615static void init_hrtimers_cpu(int cpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001616{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001617 struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001618 int i;
1619
John Stultz998adc32010-09-20 19:19:17 -07001620 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001621 cpu_base->clock_base[i].cpu_base = cpu_base;
John Stultz998adc32010-09-20 19:19:17 -07001622 timerqueue_init_head(&cpu_base->clock_base[i].active);
1623 }
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001624
Viresh Kumarcddd0242014-06-22 01:29:15 +02001625 cpu_base->cpu = cpu;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001626 hrtimer_init_hres(cpu_base);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001627}
1628
1629#ifdef CONFIG_HOTPLUG_CPU
1630
Peter Zijlstraca109492008-11-25 12:43:51 +01001631static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
Peter Zijlstra37810652008-12-04 11:17:10 +01001632 struct hrtimer_clock_base *new_base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001633{
1634 struct hrtimer *timer;
John Stultz998adc32010-09-20 19:19:17 -07001635 struct timerqueue_node *node;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001636
John Stultz998adc32010-09-20 19:19:17 -07001637 while ((node = timerqueue_getnext(&old_base->active))) {
1638 timer = container_of(node, struct hrtimer, node);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001639 BUG_ON(hrtimer_callback_running(timer));
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001640 debug_deactivate(timer);
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +02001641
1642 /*
1643 * Mark it as STATE_MIGRATE not INACTIVE otherwise the
1644 * timer could be seen as !active and just vanish away
1645 * under us on another CPU
1646 */
1647 __remove_hrtimer(timer, old_base, HRTIMER_STATE_MIGRATE, 0);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001648 timer->base = new_base;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001649 /*
Thomas Gleixnere3f1d882009-01-05 11:28:23 +01001650 * Enqueue the timers on the new cpu. This does not
1651 * reprogram the event device in case the timer
1652 * expires before the earliest on this CPU, but we run
1653 * hrtimer_interrupt after we migrated everything to
1654 * sort out already expired timers and reprogram the
1655 * event device.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001656 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001657 enqueue_hrtimer(timer, new_base);
Thomas Gleixner41e10222008-09-29 14:09:39 +02001658
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +02001659 /* Clear the migration state bit */
1660 timer->state &= ~HRTIMER_STATE_MIGRATE;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001661 }
1662}
1663
Thomas Gleixnerd5fd43c2009-01-05 11:28:20 +01001664static void migrate_hrtimers(int scpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001665{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001666 struct hrtimer_cpu_base *old_base, *new_base;
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001667 int i;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001668
Peter Zijlstra37810652008-12-04 11:17:10 +01001669 BUG_ON(cpu_online(scpu));
Peter Zijlstra37810652008-12-04 11:17:10 +01001670 tick_cancel_sched_timer(scpu);
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001671
1672 local_irq_disable();
1673 old_base = &per_cpu(hrtimer_bases, scpu);
Christoph Lameterdc5df732014-08-17 12:30:26 -05001674 new_base = this_cpu_ptr(&hrtimer_bases);
Oleg Nesterovd82f0b02008-08-20 16:46:04 -07001675 /*
1676 * The caller is globally serialized and nobody else
1677 * takes two locks at once, deadlock is not possible.
1678 */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001679 raw_spin_lock(&new_base->lock);
1680 raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001681
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001682 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Peter Zijlstraca109492008-11-25 12:43:51 +01001683 migrate_hrtimer_list(&old_base->clock_base[i],
Peter Zijlstra37810652008-12-04 11:17:10 +01001684 &new_base->clock_base[i]);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001685 }
1686
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001687 raw_spin_unlock(&old_base->lock);
1688 raw_spin_unlock(&new_base->lock);
Peter Zijlstra37810652008-12-04 11:17:10 +01001689
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001690 /* Check, if we got expired work to do */
1691 __hrtimer_peek_ahead_timers();
1692 local_irq_enable();
Peter Zijlstra37810652008-12-04 11:17:10 +01001693}
1694
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001695#endif /* CONFIG_HOTPLUG_CPU */
1696
Paul Gortmaker0db06282013-06-19 14:53:51 -04001697static int hrtimer_cpu_notify(struct notifier_block *self,
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001698 unsigned long action, void *hcpu)
1699{
Ingo Molnarb2e3c0a2008-12-19 00:48:27 +01001700 int scpu = (long)hcpu;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001701
1702 switch (action) {
1703
1704 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001705 case CPU_UP_PREPARE_FROZEN:
Peter Zijlstra37810652008-12-04 11:17:10 +01001706 init_hrtimers_cpu(scpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001707 break;
1708
1709#ifdef CONFIG_HOTPLUG_CPU
1710 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001711 case CPU_DEAD_FROZEN:
Thomas Gleixnerd5fd43c2009-01-05 11:28:20 +01001712 migrate_hrtimers(scpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001713 break;
1714#endif
1715
1716 default:
1717 break;
1718 }
1719
1720 return NOTIFY_OK;
1721}
1722
Paul Gortmaker0db06282013-06-19 14:53:51 -04001723static struct notifier_block hrtimers_nb = {
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001724 .notifier_call = hrtimer_cpu_notify,
1725};
1726
1727void __init hrtimers_init(void)
1728{
1729 hrtimer_cpu_notify(&hrtimers_nb, (unsigned long)CPU_UP_PREPARE,
1730 (void *)(long)smp_processor_id());
1731 register_cpu_notifier(&hrtimers_nb);
Peter Zijlstraa6037b62009-01-05 11:28:22 +01001732#ifdef CONFIG_HIGH_RES_TIMERS
1733 open_softirq(HRTIMER_SOFTIRQ, run_hrtimer_softirq);
1734#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001735}
1736
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001737/**
Carsten Emde351b3f72010-04-02 22:40:19 +02001738 * schedule_hrtimeout_range_clock - sleep until timeout
1739 * @expires: timeout value (ktime_t)
1740 * @delta: slack in expires timeout (ktime_t)
1741 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1742 * @clock: timer clock, CLOCK_MONOTONIC or CLOCK_REALTIME
1743 */
1744int __sched
1745schedule_hrtimeout_range_clock(ktime_t *expires, unsigned long delta,
1746 const enum hrtimer_mode mode, int clock)
1747{
1748 struct hrtimer_sleeper t;
1749
1750 /*
1751 * Optimize when a zero timeout value is given. It does not
1752 * matter whether this is an absolute or a relative time.
1753 */
1754 if (expires && !expires->tv64) {
1755 __set_current_state(TASK_RUNNING);
1756 return 0;
1757 }
1758
1759 /*
Namhyung Kim43b21012010-12-22 19:01:47 +01001760 * A NULL parameter means "infinite"
Carsten Emde351b3f72010-04-02 22:40:19 +02001761 */
1762 if (!expires) {
1763 schedule();
Carsten Emde351b3f72010-04-02 22:40:19 +02001764 return -EINTR;
1765 }
1766
1767 hrtimer_init_on_stack(&t.timer, clock, mode);
1768 hrtimer_set_expires_range_ns(&t.timer, *expires, delta);
1769
1770 hrtimer_init_sleeper(&t, current);
1771
1772 hrtimer_start_expires(&t.timer, mode);
1773 if (!hrtimer_active(&t.timer))
1774 t.task = NULL;
1775
1776 if (likely(t.task))
1777 schedule();
1778
1779 hrtimer_cancel(&t.timer);
1780 destroy_hrtimer_on_stack(&t.timer);
1781
1782 __set_current_state(TASK_RUNNING);
1783
1784 return !t.task ? 0 : -EINTR;
1785}
1786
1787/**
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001788 * schedule_hrtimeout_range - sleep until timeout
1789 * @expires: timeout value (ktime_t)
1790 * @delta: slack in expires timeout (ktime_t)
1791 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1792 *
1793 * Make the current task sleep until the given expiry time has
1794 * elapsed. The routine will return immediately unless
1795 * the current task state has been set (see set_current_state()).
1796 *
1797 * The @delta argument gives the kernel the freedom to schedule the
1798 * actual wakeup to a time that is both power and performance friendly.
1799 * The kernel give the normal best effort behavior for "@expires+@delta",
1800 * but may decide to fire the timer earlier, but no earlier than @expires.
1801 *
1802 * You can set the task state as follows -
1803 *
1804 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1805 * pass before the routine returns.
1806 *
1807 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1808 * delivered to the current task.
1809 *
1810 * The current task state is guaranteed to be TASK_RUNNING when this
1811 * routine returns.
1812 *
1813 * Returns 0 when the timer has expired otherwise -EINTR
1814 */
1815int __sched schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
Carsten Emde351b3f72010-04-02 22:40:19 +02001816 const enum hrtimer_mode mode)
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001817{
Carsten Emde351b3f72010-04-02 22:40:19 +02001818 return schedule_hrtimeout_range_clock(expires, delta, mode,
1819 CLOCK_MONOTONIC);
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001820}
1821EXPORT_SYMBOL_GPL(schedule_hrtimeout_range);
1822
1823/**
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001824 * schedule_hrtimeout - sleep until timeout
1825 * @expires: timeout value (ktime_t)
1826 * @mode: timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL
1827 *
1828 * Make the current task sleep until the given expiry time has
1829 * elapsed. The routine will return immediately unless
1830 * the current task state has been set (see set_current_state()).
1831 *
1832 * You can set the task state as follows -
1833 *
1834 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
1835 * pass before the routine returns.
1836 *
1837 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
1838 * delivered to the current task.
1839 *
1840 * The current task state is guaranteed to be TASK_RUNNING when this
1841 * routine returns.
1842 *
1843 * Returns 0 when the timer has expired otherwise -EINTR
1844 */
1845int __sched schedule_hrtimeout(ktime_t *expires,
1846 const enum hrtimer_mode mode)
1847{
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001848 return schedule_hrtimeout_range(expires, 0, mode);
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001849}
1850EXPORT_SYMBOL_GPL(schedule_hrtimeout);