blob: ae0c8a411fe72bba2e98b54408bd86959e7d5093 [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010046#include <linux/sched/signal.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>
Ingo Molnar370c9132017-02-08 18:51:35 +010050#include <linux/sched/nohz.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010051#include <linux/sched/debug.h>
Arun R Bharadwajeea08f32009-04-16 12:16:41 +053052#include <linux/timer.h>
Colin Crossb0f8c442013-05-06 23:50:19 +000053#include <linux/freezer.h>
Al Viroedbeda42017-06-07 09:42:31 +010054#include <linux/compat.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080055
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080056#include <linux/uaccess.h>
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080057
Xiao Guangrongc6a2a172009-08-10 10:51:23 +080058#include <trace/events/timer.h>
59
Thomas Gleixnerc1797ba2015-03-25 13:07:37 +010060#include "tick-internal.h"
Thomas Gleixner8b094cd2014-07-16 21:04:02 +000061
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080062/*
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +010063 * Masks for selecting the soft and hard context timers from
64 * cpu_base->active
65 */
66#define MASK_SHIFT (HRTIMER_BASE_MONOTONIC_SOFT)
67#define HRTIMER_ACTIVE_HARD ((1U << MASK_SHIFT) - 1)
68#define HRTIMER_ACTIVE_SOFT (HRTIMER_ACTIVE_HARD << MASK_SHIFT)
69#define HRTIMER_ACTIVE_ALL (HRTIMER_ACTIVE_SOFT | HRTIMER_ACTIVE_HARD)
70
71/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080072 * The timer bases:
George Anzinger7978672c2006-02-01 03:05:11 -080073 *
Zhen Lei571af552015-08-25 14:42:53 +080074 * There are more clockids than hrtimer bases. Thus, we index
John Stultze06383d2010-12-14 19:37:07 -080075 * into the timer bases by the hrtimer_base_type enum. When trying
76 * to reach a base using a clockid, hrtimer_clockid_to_base()
77 * is used to convert from clockid to the proper hrtimer_base_type.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080078 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080079DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080080{
Michael Bohan84cc8fd2013-03-19 19:19:25 -070081 .lock = __RAW_SPIN_LOCK_UNLOCKED(hrtimer_bases.lock),
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080082 .clock_base =
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080083 {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080084 {
Thomas Gleixnerab8177b2011-05-20 13:05:15 +020085 .index = HRTIMER_BASE_MONOTONIC,
86 .clockid = CLOCK_MONOTONIC,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080087 .get_time = &ktime_get,
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080088 },
John Stultz70a08cc2011-02-15 10:45:16 -080089 {
Thomas Gleixner68fa61c2011-05-20 23:14:04 +020090 .index = HRTIMER_BASE_REALTIME,
91 .clockid = CLOCK_REALTIME,
92 .get_time = &ktime_get_real,
Thomas Gleixner68fa61c2011-05-20 23:14:04 +020093 },
94 {
Thomas Gleixnerab8177b2011-05-20 13:05:15 +020095 .index = HRTIMER_BASE_BOOTTIME,
96 .clockid = CLOCK_BOOTTIME,
John Stultz70a08cc2011-02-15 10:45:16 -080097 .get_time = &ktime_get_boottime,
John Stultz70a08cc2011-02-15 10:45:16 -080098 },
John Stultz90adda92013-01-21 17:00:11 -080099 {
100 .index = HRTIMER_BASE_TAI,
101 .clockid = CLOCK_TAI,
102 .get_time = &ktime_get_clocktai,
John Stultz90adda92013-01-21 17:00:11 -0800103 },
Anna-Maria Gleixner98ecadd2017-12-21 11:41:55 +0100104 {
105 .index = HRTIMER_BASE_MONOTONIC_SOFT,
106 .clockid = CLOCK_MONOTONIC,
107 .get_time = &ktime_get,
108 },
109 {
110 .index = HRTIMER_BASE_REALTIME_SOFT,
111 .clockid = CLOCK_REALTIME,
112 .get_time = &ktime_get_real,
113 },
114 {
115 .index = HRTIMER_BASE_BOOTTIME_SOFT,
116 .clockid = CLOCK_BOOTTIME,
117 .get_time = &ktime_get_boottime,
118 },
119 {
120 .index = HRTIMER_BASE_TAI_SOFT,
121 .clockid = CLOCK_TAI,
122 .get_time = &ktime_get_clocktai,
123 },
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800124 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800125};
126
Mike Frysinger942c3c52011-05-02 15:24:27 -0400127static const int hrtimer_clock_to_base_table[MAX_CLOCKS] = {
Marc Zyngier336a9cd2016-01-15 17:41:09 +0000128 /* Make sure we catch unsupported clockids */
129 [0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
130
Thomas Gleixnerce313322011-04-29 00:02:00 +0200131 [CLOCK_REALTIME] = HRTIMER_BASE_REALTIME,
132 [CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC,
133 [CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME,
John Stultz90adda92013-01-21 17:00:11 -0800134 [CLOCK_TAI] = HRTIMER_BASE_TAI,
Thomas Gleixnerce313322011-04-29 00:02:00 +0200135};
John Stultze06383d2010-12-14 19:37:07 -0800136
Thomas Gleixner92127c72006-03-26 01:38:05 -0800137/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800138 * Functions and macros which are different for UP/SMP systems are kept in a
139 * single place
140 */
141#ifdef CONFIG_SMP
142
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800143/*
Peter Zijlstra887d9dc2015-06-11 14:46:48 +0200144 * We require the migration_base for lock_hrtimer_base()/switch_hrtimer_base()
145 * such that hrtimer_callback_running() can unconditionally dereference
146 * timer->base->cpu_base
147 */
148static struct hrtimer_cpu_base migration_cpu_base = {
Peter Zijlstra887d9dc2015-06-11 14:46:48 +0200149 .clock_base = { { .cpu_base = &migration_cpu_base, }, },
150};
151
152#define migration_base migration_cpu_base.clock_base[0]
153
154/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800155 * We are using hashed locking: holding per_cpu(hrtimer_bases)[n].lock
156 * means that all timers which are tied to this base via timer->base are
157 * locked, and the base itself is locked too.
158 *
159 * So __run_timers/migrate_timers can safely modify all timers which could
160 * be found on the lists/queues.
161 *
162 * When the timer's base is locked, and the timer removed from list, it is
Peter Zijlstra887d9dc2015-06-11 14:46:48 +0200163 * possible to set timer->base = &migration_base and drop the lock: the timer
164 * remains locked.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800165 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800166static
167struct hrtimer_clock_base *lock_hrtimer_base(const struct hrtimer *timer,
168 unsigned long *flags)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800169{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800170 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800171
172 for (;;) {
173 base = timer->base;
Peter Zijlstra887d9dc2015-06-11 14:46:48 +0200174 if (likely(base != &migration_base)) {
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100175 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800176 if (likely(base == timer->base))
177 return base;
178 /* The timer has migrated to another CPU: */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100179 raw_spin_unlock_irqrestore(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800180 }
181 cpu_relax();
182 }
183}
184
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200185/*
Anna-Maria Gleixner07a9a7e2017-12-21 11:41:44 +0100186 * We do not migrate the timer when it is expiring before the next
187 * event on the target cpu. When high resolution is enabled, we cannot
188 * reprogram the target cpu hardware and we would cause it to fire
189 * late. To keep it simple, we handle the high resolution enabled and
190 * disabled case similar.
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200191 *
192 * Called with cpu_base->lock of target cpu held.
193 */
194static int
195hrtimer_check_target(struct hrtimer *timer, struct hrtimer_clock_base *new_base)
196{
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200197 ktime_t expires;
198
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200199 expires = ktime_sub(hrtimer_get_expires(timer), new_base->offset);
Anna-Maria Gleixner2ac2dcc2017-12-21 11:41:50 +0100200 return expires < new_base->cpu_base->expires_next;
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200201}
202
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +0000203static inline
204struct hrtimer_cpu_base *get_target_base(struct hrtimer_cpu_base *base,
205 int pinned)
206{
Thomas Gleixnerae67bad2018-01-14 23:30:51 +0100207#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
208 if (static_branch_likely(&timers_migration_enabled) && !pinned)
209 return &per_cpu(hrtimer_bases, get_nohz_timer_target());
210#endif
Frederic Weisbecker662b3e12015-08-18 16:18:28 +0200211 return base;
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +0000212}
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +0000213
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800214/*
Frederic Weisbeckerb48362d2015-08-18 16:18:29 +0200215 * We switch the timer base to a power-optimized selected CPU target,
216 * if:
217 * - NO_HZ_COMMON is enabled
218 * - timer migration is enabled
219 * - the timer callback is not running
220 * - the timer is not the first expiring timer on the new target
221 *
222 * If one of the above requirements is not fulfilled we move the timer
223 * to the current CPU or leave it on the previously assigned CPU if
224 * the timer callback is currently running.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800225 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800226static inline struct hrtimer_clock_base *
Arun R Bharadwaj597d0272009-04-16 12:13:26 +0530227switch_hrtimer_base(struct hrtimer *timer, struct hrtimer_clock_base *base,
228 int pinned)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800229{
Frederic Weisbeckerb48362d2015-08-18 16:18:29 +0200230 struct hrtimer_cpu_base *new_cpu_base, *this_cpu_base;
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800231 struct hrtimer_clock_base *new_base;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200232 int basenum = base->index;
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530233
Frederic Weisbeckerb48362d2015-08-18 16:18:29 +0200234 this_cpu_base = this_cpu_ptr(&hrtimer_bases);
235 new_cpu_base = get_target_base(this_cpu_base, pinned);
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530236again:
John Stultze06383d2010-12-14 19:37:07 -0800237 new_base = &new_cpu_base->clock_base[basenum];
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800238
239 if (base != new_base) {
240 /*
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200241 * We are trying to move timer to new_base.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800242 * However we can't change timer's base while it is running,
243 * so we keep it on the same CPU. No hassle vs. reprogramming
244 * the event source in the high resolution case. The softirq
245 * code will take care of this when the timer function has
246 * completed. There is no conflict as we hold the lock until
247 * the timer is enqueued.
248 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800249 if (unlikely(hrtimer_callback_running(timer)))
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800250 return base;
251
Peter Zijlstra887d9dc2015-06-11 14:46:48 +0200252 /* See the comment in lock_hrtimer_base() */
253 timer->base = &migration_base;
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100254 raw_spin_unlock(&base->cpu_base->lock);
255 raw_spin_lock(&new_base->cpu_base->lock);
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530256
Frederic Weisbeckerb48362d2015-08-18 16:18:29 +0200257 if (new_cpu_base != this_cpu_base &&
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +0000258 hrtimer_check_target(timer, new_base)) {
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100259 raw_spin_unlock(&new_base->cpu_base->lock);
260 raw_spin_lock(&base->cpu_base->lock);
Frederic Weisbeckerb48362d2015-08-18 16:18:29 +0200261 new_cpu_base = this_cpu_base;
Thomas Gleixner6ff70412009-07-10 14:57:05 +0200262 timer->base = base;
263 goto again;
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530264 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800265 timer->base = new_base;
Leon Ma012a45e2014-04-30 16:43:10 +0800266 } else {
Frederic Weisbeckerb48362d2015-08-18 16:18:29 +0200267 if (new_cpu_base != this_cpu_base &&
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +0000268 hrtimer_check_target(timer, new_base)) {
Frederic Weisbeckerb48362d2015-08-18 16:18:29 +0200269 new_cpu_base = this_cpu_base;
Leon Ma012a45e2014-04-30 16:43:10 +0800270 goto again;
271 }
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800272 }
273 return new_base;
274}
275
276#else /* CONFIG_SMP */
277
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800278static inline struct hrtimer_clock_base *
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800279lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
280{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800281 struct hrtimer_clock_base *base = timer->base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800282
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100283 raw_spin_lock_irqsave(&base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800284
285 return base;
286}
287
Arun R Bharadwajeea08f32009-04-16 12:16:41 +0530288# define switch_hrtimer_base(t, b, p) (b)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800289
290#endif /* !CONFIG_SMP */
291
292/*
293 * Functions for the union type storage format of ktime_t which are
294 * too large for inlining:
295 */
296#if BITS_PER_LONG < 64
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800297/*
298 * Divide a ktime value by a nanosecond value
299 */
John Stultzf7bcb702015-05-08 13:47:23 -0700300s64 __ktime_divns(const ktime_t kt, s64 div)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800301{
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800302 int sft = 0;
John Stultzf7bcb702015-05-08 13:47:23 -0700303 s64 dclc;
304 u64 tmp;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800305
Carlos R. Mafra900cfa42008-05-22 19:25:11 -0300306 dclc = ktime_to_ns(kt);
John Stultzf7bcb702015-05-08 13:47:23 -0700307 tmp = dclc < 0 ? -dclc : dclc;
308
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800309 /* Make sure the divisor is less than 2^32: */
310 while (div >> 32) {
311 sft++;
312 div >>= 1;
313 }
John Stultzf7bcb702015-05-08 13:47:23 -0700314 tmp >>= sft;
315 do_div(tmp, (unsigned long) div);
316 return dclc < 0 ? -tmp : tmp;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800317}
Nicolas Pitre8b618622014-12-03 14:43:06 -0500318EXPORT_SYMBOL_GPL(__ktime_divns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800319#endif /* BITS_PER_LONG >= 64 */
320
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100321/*
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100322 * Add two ktime values and do a safety check for overflow:
323 */
324ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs)
325{
Vegard Nossum979515c2016-08-13 01:37:04 +0200326 ktime_t res = ktime_add_unsafe(lhs, rhs);
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100327
328 /*
329 * We use KTIME_SEC_MAX here, the maximum timeout which we can
330 * return to user space in a timespec:
331 */
Thomas Gleixner2456e852016-12-25 11:38:40 +0100332 if (res < 0 || res < lhs || res < rhs)
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100333 res = ktime_set(KTIME_SEC_MAX, 0);
334
335 return res;
336}
337
Artem Bityutskiy8daa21e2009-05-28 16:21:24 +0300338EXPORT_SYMBOL_GPL(ktime_add_safe);
339
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700340#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
341
342static struct debug_obj_descr hrtimer_debug_descr;
343
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100344static void *hrtimer_debug_hint(void *addr)
345{
346 return ((struct hrtimer *) addr)->function;
347}
348
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700349/*
350 * fixup_init is called when:
351 * - an active object is initialized
352 */
Du, Changbine3252462016-05-19 17:09:29 -0700353static bool hrtimer_fixup_init(void *addr, enum debug_obj_state state)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700354{
355 struct hrtimer *timer = addr;
356
357 switch (state) {
358 case ODEBUG_STATE_ACTIVE:
359 hrtimer_cancel(timer);
360 debug_object_init(timer, &hrtimer_debug_descr);
Du, Changbine3252462016-05-19 17:09:29 -0700361 return true;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700362 default:
Du, Changbine3252462016-05-19 17:09:29 -0700363 return false;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700364 }
365}
366
367/*
368 * fixup_activate is called when:
369 * - an active object is activated
Du, Changbinb9fdac7f2016-05-19 17:09:41 -0700370 * - an unknown non-static object is activated
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700371 */
Du, Changbine3252462016-05-19 17:09:29 -0700372static bool hrtimer_fixup_activate(void *addr, enum debug_obj_state state)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700373{
374 switch (state) {
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700375 case ODEBUG_STATE_ACTIVE:
376 WARN_ON(1);
377
378 default:
Du, Changbine3252462016-05-19 17:09:29 -0700379 return false;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700380 }
381}
382
383/*
384 * fixup_free is called when:
385 * - an active object is freed
386 */
Du, Changbine3252462016-05-19 17:09:29 -0700387static bool hrtimer_fixup_free(void *addr, enum debug_obj_state state)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700388{
389 struct hrtimer *timer = addr;
390
391 switch (state) {
392 case ODEBUG_STATE_ACTIVE:
393 hrtimer_cancel(timer);
394 debug_object_free(timer, &hrtimer_debug_descr);
Du, Changbine3252462016-05-19 17:09:29 -0700395 return true;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700396 default:
Du, Changbine3252462016-05-19 17:09:29 -0700397 return false;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700398 }
399}
400
401static struct debug_obj_descr hrtimer_debug_descr = {
402 .name = "hrtimer",
Stanislaw Gruszka99777282011-03-07 09:58:33 +0100403 .debug_hint = hrtimer_debug_hint,
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700404 .fixup_init = hrtimer_fixup_init,
405 .fixup_activate = hrtimer_fixup_activate,
406 .fixup_free = hrtimer_fixup_free,
407};
408
409static inline void debug_hrtimer_init(struct hrtimer *timer)
410{
411 debug_object_init(timer, &hrtimer_debug_descr);
412}
413
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100414static inline void debug_hrtimer_activate(struct hrtimer *timer,
415 enum hrtimer_mode mode)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700416{
417 debug_object_activate(timer, &hrtimer_debug_descr);
418}
419
420static inline void debug_hrtimer_deactivate(struct hrtimer *timer)
421{
422 debug_object_deactivate(timer, &hrtimer_debug_descr);
423}
424
425static inline void debug_hrtimer_free(struct hrtimer *timer)
426{
427 debug_object_free(timer, &hrtimer_debug_descr);
428}
429
430static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
431 enum hrtimer_mode mode);
432
433void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t clock_id,
434 enum hrtimer_mode mode)
435{
436 debug_object_init_on_stack(timer, &hrtimer_debug_descr);
437 __hrtimer_init(timer, clock_id, mode);
438}
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700439EXPORT_SYMBOL_GPL(hrtimer_init_on_stack);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700440
441void destroy_hrtimer_on_stack(struct hrtimer *timer)
442{
443 debug_object_free(timer, &hrtimer_debug_descr);
444}
Guenter Roeckc08376a2016-05-26 17:21:05 -0700445EXPORT_SYMBOL_GPL(destroy_hrtimer_on_stack);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700446
447#else
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100448
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700449static inline void debug_hrtimer_init(struct hrtimer *timer) { }
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100450static inline void debug_hrtimer_activate(struct hrtimer *timer,
451 enum hrtimer_mode mode) { }
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700452static inline void debug_hrtimer_deactivate(struct hrtimer *timer) { }
453#endif
454
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800455static inline void
456debug_init(struct hrtimer *timer, clockid_t clockid,
457 enum hrtimer_mode mode)
458{
459 debug_hrtimer_init(timer);
460 trace_hrtimer_init(timer, clockid, mode);
461}
462
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100463static inline void debug_activate(struct hrtimer *timer,
464 enum hrtimer_mode mode)
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800465{
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100466 debug_hrtimer_activate(timer, mode);
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100467 trace_hrtimer_start(timer, mode);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +0800468}
469
470static inline void debug_deactivate(struct hrtimer *timer)
471{
472 debug_hrtimer_deactivate(timer);
473 trace_hrtimer_cancel(timer);
474}
475
Anna-Maria Gleixnerc272ca52017-12-21 11:41:39 +0100476static struct hrtimer_clock_base *
477__next_base(struct hrtimer_cpu_base *cpu_base, unsigned int *active)
478{
479 unsigned int idx;
480
481 if (!*active)
482 return NULL;
483
484 idx = __ffs(*active);
485 *active &= ~(1U << idx);
486
487 return &cpu_base->clock_base[idx];
488}
489
490#define for_each_active_base(base, cpu_base, active) \
491 while ((base = __next_base((cpu_base), &(active))))
492
Anna-Maria Gleixnerad38f592017-12-21 11:41:53 +0100493static ktime_t __hrtimer_next_event_base(struct hrtimer_cpu_base *cpu_base,
494 unsigned int active,
495 ktime_t expires_next)
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100496{
Anna-Maria Gleixnerc272ca52017-12-21 11:41:39 +0100497 struct hrtimer_clock_base *base;
Anna-Maria Gleixnerad38f592017-12-21 11:41:53 +0100498 ktime_t expires;
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100499
Anna-Maria Gleixnerc272ca52017-12-21 11:41:39 +0100500 for_each_active_base(base, cpu_base, active) {
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100501 struct timerqueue_node *next;
502 struct hrtimer *timer;
503
Thomas Gleixner34aee882015-04-14 21:08:41 +0000504 next = timerqueue_getnext(&base->active);
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100505 timer = container_of(next, struct hrtimer, node);
506 expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
Thomas Gleixner2456e852016-12-25 11:38:40 +0100507 if (expires < expires_next) {
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100508 expires_next = expires;
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100509 if (timer->is_soft)
510 cpu_base->softirq_next_timer = timer;
511 else
512 cpu_base->next_timer = timer;
Thomas Gleixner895bdfa2015-04-14 21:08:49 +0000513 }
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100514 }
515 /*
516 * clock_was_set() might have changed base->offset of any of
517 * the clock bases so the result might be negative. Fix it up
518 * to prevent a false positive in clockevents_program_event().
519 */
Thomas Gleixner2456e852016-12-25 11:38:40 +0100520 if (expires_next < 0)
521 expires_next = 0;
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100522 return expires_next;
523}
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100524
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +0100525/*
526 * Recomputes cpu_base::*next_timer and returns the earliest expires_next but
527 * does not set cpu_base::*expires_next, that is done by hrtimer_reprogram.
528 *
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100529 * When a softirq is pending, we can ignore the HRTIMER_ACTIVE_SOFT bases,
530 * those timers will get run whenever the softirq gets handled, at the end of
531 * hrtimer_run_softirq(), hrtimer_update_softirq_timer() will re-add these bases.
532 *
533 * Therefore softirq values are those from the HRTIMER_ACTIVE_SOFT clock bases.
534 * The !softirq values are the minima across HRTIMER_ACTIVE_ALL, unless an actual
535 * softirq is pending, in which case they're the minima of HRTIMER_ACTIVE_HARD.
536 *
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +0100537 * @active_mask must be one of:
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100538 * - HRTIMER_ACTIVE_ALL,
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +0100539 * - HRTIMER_ACTIVE_SOFT, or
540 * - HRTIMER_ACTIVE_HARD.
541 */
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100542static ktime_t
543__hrtimer_get_next_event(struct hrtimer_cpu_base *cpu_base, unsigned int active_mask)
Anna-Maria Gleixnerad38f592017-12-21 11:41:53 +0100544{
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +0100545 unsigned int active;
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100546 struct hrtimer *next_timer = NULL;
Anna-Maria Gleixnerad38f592017-12-21 11:41:53 +0100547 ktime_t expires_next = KTIME_MAX;
548
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100549 if (!cpu_base->softirq_activated && (active_mask & HRTIMER_ACTIVE_SOFT)) {
550 active = cpu_base->active_bases & HRTIMER_ACTIVE_SOFT;
551 cpu_base->softirq_next_timer = NULL;
552 expires_next = __hrtimer_next_event_base(cpu_base, active, KTIME_MAX);
Anna-Maria Gleixnerad38f592017-12-21 11:41:53 +0100553
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100554 next_timer = cpu_base->softirq_next_timer;
555 }
556
557 if (active_mask & HRTIMER_ACTIVE_HARD) {
558 active = cpu_base->active_bases & HRTIMER_ACTIVE_HARD;
559 cpu_base->next_timer = next_timer;
560 expires_next = __hrtimer_next_event_base(cpu_base, active, expires_next);
561 }
Anna-Maria Gleixnerad38f592017-12-21 11:41:53 +0100562
563 return expires_next;
564}
565
Thomas Gleixner21d6d522015-04-14 21:08:35 +0000566static inline ktime_t hrtimer_update_base(struct hrtimer_cpu_base *base)
567{
568 ktime_t *offs_real = &base->clock_base[HRTIMER_BASE_REALTIME].offset;
569 ktime_t *offs_boot = &base->clock_base[HRTIMER_BASE_BOOTTIME].offset;
570 ktime_t *offs_tai = &base->clock_base[HRTIMER_BASE_TAI].offset;
571
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100572 ktime_t now = ktime_get_update_offsets_now(&base->clock_was_set_seq,
Thomas Gleixner868a3e92015-04-14 21:08:37 +0000573 offs_real, offs_boot, offs_tai);
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100574
575 base->clock_base[HRTIMER_BASE_REALTIME_SOFT].offset = *offs_real;
576 base->clock_base[HRTIMER_BASE_BOOTTIME_SOFT].offset = *offs_boot;
577 base->clock_base[HRTIMER_BASE_TAI_SOFT].offset = *offs_tai;
578
579 return now;
Thomas Gleixner21d6d522015-04-14 21:08:35 +0000580}
581
Anna-Maria Gleixner28bfd182017-12-21 11:41:42 +0100582/*
583 * Is the high resolution mode active ?
584 */
585static inline int __hrtimer_hres_active(struct hrtimer_cpu_base *cpu_base)
586{
587 return IS_ENABLED(CONFIG_HIGH_RES_TIMERS) ?
588 cpu_base->hres_active : 0;
589}
590
591static inline int hrtimer_hres_active(void)
592{
593 return __hrtimer_hres_active(this_cpu_ptr(&hrtimer_bases));
594}
595
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800596/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800597 * Reprogram the event source with checking both queues for the
598 * next event
599 * Called with interrupts disabled and base->lock held
600 */
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400601static void
602hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base, int skip_equal)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800603{
Thomas Gleixner21d6d522015-04-14 21:08:35 +0000604 ktime_t expires_next;
605
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100606 /*
607 * Find the current next expiration time.
608 */
609 expires_next = __hrtimer_get_next_event(cpu_base, HRTIMER_ACTIVE_ALL);
610
611 if (cpu_base->next_timer && cpu_base->next_timer->is_soft) {
612 /*
613 * When the softirq is activated, hrtimer has to be
614 * programmed with the first hard hrtimer because soft
615 * timer interrupt could occur too late.
616 */
617 if (cpu_base->softirq_activated)
618 expires_next = __hrtimer_get_next_event(cpu_base,
619 HRTIMER_ACTIVE_HARD);
620 else
621 cpu_base->softirq_expires_next = expires_next;
622 }
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800623
Thomas Gleixner2456e852016-12-25 11:38:40 +0100624 if (skip_equal && expires_next == cpu_base->expires_next)
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400625 return;
626
Thomas Gleixner2456e852016-12-25 11:38:40 +0100627 cpu_base->expires_next = expires_next;
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400628
Stuart Hayes6c6c0d52014-04-29 17:55:02 -0500629 /*
Anna-Maria Gleixner61bb4bc2017-12-21 11:41:48 +0100630 * If hres is not active, hardware does not have to be
631 * reprogrammed yet.
632 *
Stuart Hayes6c6c0d52014-04-29 17:55:02 -0500633 * If a hang was detected in the last timer interrupt then we
634 * leave the hang delay active in the hardware. We want the
635 * system to make progress. That also prevents the following
636 * scenario:
637 * T1 expires 50ms from now
638 * T2 expires 5s from now
639 *
640 * T1 is removed, so this code is called and would reprogram
641 * the hardware to 5s from now. Any hrtimer_start after that
642 * will not reprogram the hardware due to hang_detected being
643 * set. So we'd effectivly block all timers until the T2 event
644 * fires.
645 */
Anna-Maria Gleixner61bb4bc2017-12-21 11:41:48 +0100646 if (!__hrtimer_hres_active(cpu_base) || cpu_base->hang_detected)
Stuart Hayes6c6c0d52014-04-29 17:55:02 -0500647 return;
648
Viresh Kumard25408752015-04-03 09:04:05 +0530649 tick_program_event(cpu_base->expires_next, 1);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800650}
651
Anna-Maria Gleixnerebba2c72017-12-21 11:41:47 +0100652/* High resolution timer related functions */
653#ifdef CONFIG_HIGH_RES_TIMERS
654
655/*
656 * High resolution timer enabled ?
657 */
658static bool hrtimer_hres_enabled __read_mostly = true;
659unsigned int hrtimer_resolution __read_mostly = LOW_RES_NSEC;
660EXPORT_SYMBOL_GPL(hrtimer_resolution);
661
662/*
663 * Enable / Disable high resolution mode
664 */
665static int __init setup_hrtimer_hres(char *str)
666{
667 return (kstrtobool(str, &hrtimer_hres_enabled) == 0);
668}
669
670__setup("highres=", setup_hrtimer_hres);
671
672/*
673 * hrtimer_high_res_enabled - query, if the highres mode is enabled
674 */
675static inline int hrtimer_is_hres_enabled(void)
676{
677 return hrtimer_hres_enabled;
678}
679
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800680/*
Anna-Maria Gleixner11a9fe02017-12-21 11:41:46 +0100681 * Retrigger next event is called after clock was set
682 *
683 * Called with interrupts disabled via on_each_cpu()
684 */
685static void retrigger_next_event(void *arg)
686{
687 struct hrtimer_cpu_base *base = this_cpu_ptr(&hrtimer_bases);
688
689 if (!__hrtimer_hres_active(base))
690 return;
691
692 raw_spin_lock(&base->lock);
693 hrtimer_update_base(base);
694 hrtimer_force_reprogram(base, 0);
695 raw_spin_unlock(&base->lock);
696}
697
698/*
699 * Switch to high resolution mode
700 */
701static void hrtimer_switch_to_hres(void)
702{
703 struct hrtimer_cpu_base *base = this_cpu_ptr(&hrtimer_bases);
704
705 if (tick_init_highres()) {
706 printk(KERN_WARNING "Could not switch to high resolution "
707 "mode on CPU %d\n", base->cpu);
708 return;
709 }
710 base->hres_active = 1;
711 hrtimer_resolution = HIGH_RES_NSEC;
712
713 tick_setup_sched_timer();
714 /* "Retrigger" the interrupt to get things going */
715 retrigger_next_event(NULL);
716}
717
718static void clock_was_set_work(struct work_struct *work)
719{
720 clock_was_set();
721}
722
723static DECLARE_WORK(hrtimer_work, clock_was_set_work);
724
725/*
726 * Called from timekeeping and resume code to reprogram the hrtimer
727 * interrupt device on all cpus.
728 */
729void clock_was_set_delayed(void)
730{
731 schedule_work(&hrtimer_work);
732}
733
734#else
735
736static inline int hrtimer_is_hres_enabled(void) { return 0; }
737static inline void hrtimer_switch_to_hres(void) { }
Anna-Maria Gleixner11a9fe02017-12-21 11:41:46 +0100738static inline void retrigger_next_event(void *arg) { }
739
740#endif /* CONFIG_HIGH_RES_TIMERS */
741
742/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800743 * When a timer is enqueued and expires earlier than the already enqueued
744 * timers, we have to check, whether it expires earlier than the timer for
745 * which the clock event device was armed.
746 *
747 * Called with interrupts disabled and base->cpu_base.lock held
748 */
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100749static void hrtimer_reprogram(struct hrtimer *timer, bool reprogram)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800750{
Christoph Lameterdc5df732014-08-17 12:30:26 -0500751 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
Anna-Maria Gleixner3ec7a3e2017-12-21 11:41:51 +0100752 struct hrtimer_clock_base *base = timer->base;
Arjan van de Vencc584b22008-09-01 15:02:30 -0700753 ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800754
Arjan van de Vencc584b22008-09-01 15:02:30 -0700755 WARN_ON_ONCE(hrtimer_get_expires_tv64(timer) < 0);
Thomas Gleixner63070a72008-02-14 00:58:36 +0100756
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800757 /*
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +0100758 * CLOCK_REALTIME timer might be requested with an absolute
759 * expiry time which is less than base->offset. Set it to 0.
760 */
761 if (expires < 0)
762 expires = 0;
763
764 if (timer->is_soft) {
765 /*
766 * soft hrtimer could be started on a remote CPU. In this
767 * case softirq_expires_next needs to be updated on the
768 * remote CPU. The soft hrtimer will not expire before the
769 * first hard hrtimer on the remote CPU -
770 * hrtimer_check_target() prevents this case.
771 */
772 struct hrtimer_cpu_base *timer_cpu_base = base->cpu_base;
773
774 if (timer_cpu_base->softirq_activated)
775 return;
776
777 if (!ktime_before(expires, timer_cpu_base->softirq_expires_next))
778 return;
779
780 timer_cpu_base->softirq_next_timer = timer;
781 timer_cpu_base->softirq_expires_next = expires;
782
783 if (!ktime_before(expires, timer_cpu_base->expires_next) ||
784 !reprogram)
785 return;
786 }
787
788 /*
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +0000789 * If the timer is not on the current cpu, we cannot reprogram
790 * the other cpus clock event device.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800791 */
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +0000792 if (base->cpu_base != cpu_base)
793 return;
794
795 /*
796 * If the hrtimer interrupt is running, then it will
797 * reevaluate the clock bases and reprogram the clock event
798 * device. The callbacks are always executed in hard interrupt
799 * context so we don't need an extra check for a running
800 * callback.
801 */
802 if (cpu_base->in_hrtirq)
803 return;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800804
Thomas Gleixner2456e852016-12-25 11:38:40 +0100805 if (expires >= cpu_base->expires_next)
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +0000806 return;
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100807
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +0000808 /* Update the pointer to the next expiring timer */
Thomas Gleixner895bdfa2015-04-14 21:08:49 +0000809 cpu_base->next_timer = timer;
Anna-Maria Gleixner14c80342017-12-21 11:41:49 +0100810 cpu_base->expires_next = expires;
Thomas Gleixner9bc749192015-01-20 21:24:10 +0100811
812 /*
Anna-Maria Gleixner14c80342017-12-21 11:41:49 +0100813 * If hres is not active, hardware does not have to be
814 * programmed yet.
815 *
Thomas Gleixner41d2e492009-11-13 17:05:44 +0100816 * If a hang was detected in the last timer interrupt then we
817 * do not schedule a timer which is earlier than the expiry
818 * which we enforced in the hang detection. We want the system
819 * to make progress.
820 */
Anna-Maria Gleixner14c80342017-12-21 11:41:49 +0100821 if (!__hrtimer_hres_active(cpu_base) || cpu_base->hang_detected)
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +0000822 return;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800823
824 /*
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +0000825 * Program the timer hardware. We enforce the expiry for
826 * events which are already in the past.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800827 */
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +0000828 tick_program_event(expires, 1);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800829}
830
Ingo Molnar995f0542007-04-07 12:05:00 +0200831/*
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200832 * Clock realtime was set
833 *
834 * Change the offset of the realtime clock vs. the monotonic
835 * clock.
836 *
837 * We might have to reprogram the high resolution timer interrupt. On
838 * SMP we call the architecture specific code to retrigger _all_ high
839 * resolution timer interrupts. On UP we just disable interrupts and
840 * call the high resolution interrupt code.
841 */
842void clock_was_set(void)
843{
Thomas Gleixner90ff1f32011-05-25 23:08:17 +0200844#ifdef CONFIG_HIGH_RES_TIMERS
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200845 /* Retrigger the CPU local events everywhere */
846 on_each_cpu(retrigger_next_event, NULL, 1);
Thomas Gleixner9ec26902011-05-20 16:18:50 +0200847#endif
848 timerfd_clock_was_set();
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200849}
850
851/*
852 * During resume we might have to reprogram the high resolution timer
David Vrabel7c4c3a02013-06-27 11:35:44 +0100853 * interrupt on all online CPUs. However, all other CPUs will be
854 * stopped with IRQs interrupts disabled so the clock_was_set() call
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200855 * must be deferred.
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200856 */
857void hrtimers_resume(void)
858{
Frederic Weisbecker53bef3f2017-11-06 16:01:21 +0100859 lockdep_assert_irqs_disabled();
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200860 /* Retrigger on the local CPU */
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200861 retrigger_next_event(NULL);
Thomas Gleixner5ec24812013-07-05 12:09:18 +0200862 /* And schedule a retrigger for all others */
863 clock_was_set_delayed();
Thomas Gleixnerb12a03c2011-05-02 16:48:57 +0200864}
865
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800866/*
Uwe Kleine-König6506f2a2007-10-20 01:56:53 +0200867 * Counterpart to lock_hrtimer_base above:
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800868 */
869static inline
870void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
871{
Thomas Gleixnerecb49d12009-11-17 16:36:54 +0100872 raw_spin_unlock_irqrestore(&timer->base->cpu_base->lock, *flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800873}
874
875/**
876 * hrtimer_forward - forward the timer expiry
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800877 * @timer: hrtimer to forward
Roman Zippel44f21472006-03-26 01:38:06 -0800878 * @now: forward past this time
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800879 * @interval: the interval to forward
880 *
881 * Forward the timer expiry so it will expire in the future.
Jonathan Corbet8dca6f32006-01-16 15:58:55 -0700882 * Returns the number of overruns.
Thomas Gleixner91e5a2172015-04-13 21:02:22 +0000883 *
884 * Can be safely called from the callback function of @timer. If
885 * called from other contexts @timer must neither be enqueued nor
886 * running the callback and the caller needs to take care of
887 * serialization.
888 *
889 * Note: This only updates the timer expiry value and does not requeue
890 * the timer.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800891 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800892u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800893{
Davide Libenzi4d672e72008-02-04 22:27:26 -0800894 u64 orun = 1;
Roman Zippel44f21472006-03-26 01:38:06 -0800895 ktime_t delta;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800896
Arjan van de Vencc584b22008-09-01 15:02:30 -0700897 delta = ktime_sub(now, hrtimer_get_expires(timer));
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800898
Thomas Gleixner2456e852016-12-25 11:38:40 +0100899 if (delta < 0)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800900 return 0;
901
Peter Zijlstra5de27552014-05-20 15:49:48 +0200902 if (WARN_ON(timer->state & HRTIMER_STATE_ENQUEUED))
903 return 0;
904
Thomas Gleixner2456e852016-12-25 11:38:40 +0100905 if (interval < hrtimer_resolution)
906 interval = hrtimer_resolution;
Thomas Gleixnerc9db4fa2006-01-12 11:47:34 +0100907
Thomas Gleixner2456e852016-12-25 11:38:40 +0100908 if (unlikely(delta >= interval)) {
Roman Zippeldf869b62006-03-26 01:38:11 -0800909 s64 incr = ktime_to_ns(interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800910
911 orun = ktime_divns(delta, incr);
Arjan van de Vencc584b22008-09-01 15:02:30 -0700912 hrtimer_add_expires_ns(timer, incr * orun);
Thomas Gleixner2456e852016-12-25 11:38:40 +0100913 if (hrtimer_get_expires_tv64(timer) > now)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800914 return orun;
915 /*
916 * This (and the ktime_add() below) is the
917 * correction for exact:
918 */
919 orun++;
920 }
Arjan van de Vencc584b22008-09-01 15:02:30 -0700921 hrtimer_add_expires(timer, interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800922
923 return orun;
924}
Stas Sergeev6bdb6b62007-05-08 00:31:58 -0700925EXPORT_SYMBOL_GPL(hrtimer_forward);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800926
927/*
928 * enqueue_hrtimer - internal function to (re)start a timer
929 *
930 * The timer is inserted in expiry order. Insertion into the
931 * red black tree is O(log(n)). Must hold the base lock.
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100932 *
933 * Returns 1 when the new timer is the leftmost timer in the tree.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800934 */
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100935static int enqueue_hrtimer(struct hrtimer *timer,
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100936 struct hrtimer_clock_base *base,
937 enum hrtimer_mode mode)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800938{
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +0100939 debug_activate(timer, mode);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700940
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200941 base->cpu_base->active_bases |= 1 << base->index;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800942
Peter Zijlstra887d9dc2015-06-11 14:46:48 +0200943 timer->state = HRTIMER_STATE_ENQUEUED;
Peter Zijlstraa6037b62009-01-05 11:28:22 +0100944
Thomas Gleixnerb97f44c2015-04-14 21:08:47 +0000945 return timerqueue_add(&base->active, &timer->node);
Thomas Gleixner288867e2006-01-12 11:25:54 +0100946}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800947
948/*
949 * __remove_hrtimer - internal function to remove a timer
950 *
951 * Caller must hold the base lock.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800952 *
953 * High resolution timer mode reprograms the clock event device when the
954 * timer is the one which expires next. The caller can disable this by setting
955 * reprogram to zero. This is useful, when the context does a reprogramming
956 * anyway (e.g. timer interrupt)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800957 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800958static void __remove_hrtimer(struct hrtimer *timer,
Thomas Gleixner303e9672007-02-16 01:27:51 -0800959 struct hrtimer_clock_base *base,
Thomas Gleixner203cbf772016-01-14 16:54:46 +0000960 u8 newstate, int reprogram)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800961{
Thomas Gleixnere19ffe82015-04-14 21:08:39 +0000962 struct hrtimer_cpu_base *cpu_base = base->cpu_base;
Thomas Gleixner203cbf772016-01-14 16:54:46 +0000963 u8 state = timer->state;
Ashwin Chaugule7403f412009-09-01 23:03:33 -0400964
Thomas Gleixner303e9672007-02-16 01:27:51 -0800965 timer->state = newstate;
Thomas Gleixner895bdfa2015-04-14 21:08:49 +0000966 if (!(state & HRTIMER_STATE_ENQUEUED))
967 return;
David Woodhouseed198cb2006-04-22 02:38:50 +0100968
Thomas Gleixnerb97f44c2015-04-14 21:08:47 +0000969 if (!timerqueue_del(&base->active, &timer->node))
Thomas Gleixnere19ffe82015-04-14 21:08:39 +0000970 cpu_base->active_bases &= ~(1 << base->index);
Viresh Kumard9f0acd2015-04-14 21:08:25 +0000971
Thomas Gleixner895bdfa2015-04-14 21:08:49 +0000972 /*
973 * Note: If reprogram is false we do not update
974 * cpu_base->next_timer. This happens when we remove the first
975 * timer on a remote cpu. No harm as we never dereference
976 * cpu_base->next_timer. So the worst thing what can happen is
977 * an superflous call to hrtimer_force_reprogram() on the
978 * remote cpu later on if the same timer gets enqueued again.
979 */
980 if (reprogram && timer == cpu_base->next_timer)
981 hrtimer_force_reprogram(cpu_base, 1);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800982}
983
984/*
985 * remove hrtimer, called with base lock held
986 */
987static inline int
Peter Zijlstra8edfb032015-06-11 14:46:45 +0200988remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base, bool restart)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800989{
Thomas Gleixner303e9672007-02-16 01:27:51 -0800990 if (hrtimer_is_queued(timer)) {
Thomas Gleixner203cbf772016-01-14 16:54:46 +0000991 u8 state = timer->state;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800992 int reprogram;
993
994 /*
995 * Remove the timer and force reprogramming when high
996 * resolution mode is active and the timer is on the current
997 * CPU. If we remove a timer on another CPU, reprogramming is
998 * skipped. The interrupt event on this CPU is fired and
999 * reprogramming happens in the interrupt handler. This is a
1000 * rare case and less expensive than a smp call.
1001 */
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001002 debug_deactivate(timer);
Christoph Lameterdc5df732014-08-17 12:30:26 -05001003 reprogram = base->cpu_base == this_cpu_ptr(&hrtimer_bases);
Peter Zijlstra8edfb032015-06-11 14:46:45 +02001004
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001005 if (!restart)
1006 state = HRTIMER_STATE_INACTIVE;
1007
Salman Qazif13d4f92010-10-12 07:25:19 -07001008 __remove_hrtimer(timer, base, state, reprogram);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001009 return 1;
1010 }
1011 return 0;
1012}
1013
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001014static inline ktime_t hrtimer_update_lowres(struct hrtimer *timer, ktime_t tim,
1015 const enum hrtimer_mode mode)
1016{
1017#ifdef CONFIG_TIME_LOW_RES
1018 /*
1019 * CONFIG_TIME_LOW_RES indicates that the system has no way to return
1020 * granular time values. For relative timers we add hrtimer_resolution
1021 * (i.e. one jiffie) to prevent short timeouts.
1022 */
1023 timer->is_rel = mode & HRTIMER_MODE_REL;
1024 if (timer->is_rel)
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001025 tim = ktime_add_safe(tim, hrtimer_resolution);
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001026#endif
1027 return tim;
1028}
1029
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001030static void
1031hrtimer_update_softirq_timer(struct hrtimer_cpu_base *cpu_base, bool reprogram)
1032{
1033 ktime_t expires;
1034
1035 /*
1036 * Find the next SOFT expiration.
1037 */
1038 expires = __hrtimer_get_next_event(cpu_base, HRTIMER_ACTIVE_SOFT);
1039
1040 /*
1041 * reprogramming needs to be triggered, even if the next soft
1042 * hrtimer expires at the same time than the next hard
1043 * hrtimer. cpu_base->softirq_expires_next needs to be updated!
1044 */
1045 if (expires == KTIME_MAX)
1046 return;
1047
1048 /*
1049 * cpu_base->*next_timer is recomputed by __hrtimer_get_next_event()
1050 * cpu_base->*expires_next is only set by hrtimer_reprogram()
1051 */
1052 hrtimer_reprogram(cpu_base->softirq_next_timer, reprogram);
1053}
1054
Anna-Maria Gleixner138a6b72017-12-21 11:41:52 +01001055static int __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
1056 u64 delta_ns, const enum hrtimer_mode mode,
1057 struct hrtimer_clock_base *base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001058{
Anna-Maria Gleixner138a6b72017-12-21 11:41:52 +01001059 struct hrtimer_clock_base *new_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001060
1061 /* Remove an active timer from the queue: */
Peter Zijlstra8edfb032015-06-11 14:46:45 +02001062 remove_hrtimer(timer, base, true);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001063
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001064 if (mode & HRTIMER_MODE_REL)
Viresh Kumar84ea7fe2014-05-12 13:42:29 +05301065 tim = ktime_add_safe(tim, base->get_time());
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001066
1067 tim = hrtimer_update_lowres(timer, tim, mode);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001068
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001069 hrtimer_set_expires_range_ns(timer, tim, delta_ns);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001070
Viresh Kumar84ea7fe2014-05-12 13:42:29 +05301071 /* Switch the timer base, if necessary: */
1072 new_base = switch_hrtimer_base(timer, base, mode & HRTIMER_MODE_PINNED);
1073
Anna-Maria Gleixner138a6b72017-12-21 11:41:52 +01001074 return enqueue_hrtimer(timer, new_base, mode);
1075}
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001076
Anna-Maria Gleixner138a6b72017-12-21 11:41:52 +01001077/**
1078 * hrtimer_start_range_ns - (re)start an hrtimer
1079 * @timer: the timer to be added
1080 * @tim: expiry time
1081 * @delta_ns: "slack" range for the timer
1082 * @mode: timer mode: absolute (HRTIMER_MODE_ABS) or
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001083 * relative (HRTIMER_MODE_REL), and pinned (HRTIMER_MODE_PINNED);
1084 * softirq based mode is considered for debug purpose only!
Anna-Maria Gleixner138a6b72017-12-21 11:41:52 +01001085 */
1086void hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
1087 u64 delta_ns, const enum hrtimer_mode mode)
1088{
1089 struct hrtimer_clock_base *base;
1090 unsigned long flags;
Viresh Kumar49a2a072014-06-23 13:39:37 +05301091
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001092 /*
1093 * Check whether the HRTIMER_MODE_SOFT bit and hrtimer.is_soft
1094 * match.
1095 */
1096 WARN_ON_ONCE(!(mode & HRTIMER_MODE_SOFT) ^ !timer->is_soft);
1097
Anna-Maria Gleixner138a6b72017-12-21 11:41:52 +01001098 base = lock_hrtimer_base(timer, &flags);
1099
1100 if (__hrtimer_start_range_ns(timer, tim, delta_ns, mode, base))
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001101 hrtimer_reprogram(timer, true);
Anna-Maria Gleixner138a6b72017-12-21 11:41:52 +01001102
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001103 unlock_hrtimer_base(timer, &flags);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001104}
Arjan van de Venda8f2e12008-09-07 10:47:46 -07001105EXPORT_SYMBOL_GPL(hrtimer_start_range_ns);
1106
1107/**
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001108 * hrtimer_try_to_cancel - try to deactivate a timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001109 * @timer: hrtimer to stop
1110 *
1111 * Returns:
1112 * 0 when the timer was not active
1113 * 1 when the timer was active
Masanari Iida0ba42a52017-03-07 20:48:02 +09001114 * -1 when the timer is currently executing the callback function and
Randy Dunlapfa9799e2006-06-25 05:49:15 -07001115 * cannot be stopped
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001116 */
1117int hrtimer_try_to_cancel(struct hrtimer *timer)
1118{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001119 struct hrtimer_clock_base *base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001120 unsigned long flags;
1121 int ret = -1;
1122
Thomas Gleixner19d9f422015-04-14 21:09:25 +00001123 /*
1124 * Check lockless first. If the timer is not active (neither
1125 * enqueued nor running the callback, nothing to do here. The
1126 * base lock does not serialize against a concurrent enqueue,
1127 * so we can avoid taking it.
1128 */
1129 if (!hrtimer_active(timer))
1130 return 0;
1131
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001132 base = lock_hrtimer_base(timer, &flags);
1133
Thomas Gleixner303e9672007-02-16 01:27:51 -08001134 if (!hrtimer_callback_running(timer))
Peter Zijlstra8edfb032015-06-11 14:46:45 +02001135 ret = remove_hrtimer(timer, base, false);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001136
1137 unlock_hrtimer_base(timer, &flags);
1138
1139 return ret;
1140
1141}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001142EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001143
1144/**
1145 * hrtimer_cancel - cancel a timer and wait for the handler to finish.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001146 * @timer: the timer to be cancelled
1147 *
1148 * Returns:
1149 * 0 when the timer was not active
1150 * 1 when the timer was active
1151 */
1152int hrtimer_cancel(struct hrtimer *timer)
1153{
1154 for (;;) {
1155 int ret = hrtimer_try_to_cancel(timer);
1156
1157 if (ret >= 0)
1158 return ret;
Joe Korty5ef37b12006-04-10 22:54:13 -07001159 cpu_relax();
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001160 }
1161}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001162EXPORT_SYMBOL_GPL(hrtimer_cancel);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001163
1164/**
1165 * hrtimer_get_remaining - get remaining time for the timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001166 * @timer: the timer to read
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001167 * @adjust: adjust relative timers when CONFIG_TIME_LOW_RES=y
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001168 */
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001169ktime_t __hrtimer_get_remaining(const struct hrtimer *timer, bool adjust)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001170{
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001171 unsigned long flags;
1172 ktime_t rem;
1173
Andi Kleenb3bd3de2010-08-10 14:17:51 -07001174 lock_hrtimer_base(timer, &flags);
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001175 if (IS_ENABLED(CONFIG_TIME_LOW_RES) && adjust)
1176 rem = hrtimer_expires_remaining_adjusted(timer);
1177 else
1178 rem = hrtimer_expires_remaining(timer);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001179 unlock_hrtimer_base(timer, &flags);
1180
1181 return rem;
1182}
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001183EXPORT_SYMBOL_GPL(__hrtimer_get_remaining);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001184
Frederic Weisbecker3451d022011-08-10 23:21:01 +02001185#ifdef CONFIG_NO_HZ_COMMON
Tony Lindgren69239742006-03-06 15:42:45 -08001186/**
1187 * hrtimer_get_next_event - get the time until next expiry event
1188 *
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001189 * Returns the next expiry time or KTIME_MAX if no timer is pending.
Tony Lindgren69239742006-03-06 15:42:45 -08001190 */
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001191u64 hrtimer_get_next_event(void)
Tony Lindgren69239742006-03-06 15:42:45 -08001192{
Christoph Lameterdc5df732014-08-17 12:30:26 -05001193 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001194 u64 expires = KTIME_MAX;
Tony Lindgren69239742006-03-06 15:42:45 -08001195 unsigned long flags;
Tony Lindgren69239742006-03-06 15:42:45 -08001196
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001197 raw_spin_lock_irqsave(&cpu_base->lock, flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001198
Thomas Gleixnere19ffe82015-04-14 21:08:39 +00001199 if (!__hrtimer_hres_active(cpu_base))
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001200 expires = __hrtimer_get_next_event(cpu_base, HRTIMER_ACTIVE_ALL);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001201
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001202 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001203
Thomas Gleixnerc1ad3482015-04-14 21:08:58 +00001204 return expires;
Tony Lindgren69239742006-03-06 15:42:45 -08001205}
1206#endif
1207
Marc Zyngier336a9cd2016-01-15 17:41:09 +00001208static inline int hrtimer_clockid_to_base(clockid_t clock_id)
1209{
1210 if (likely(clock_id < MAX_CLOCKS)) {
1211 int base = hrtimer_clock_to_base_table[clock_id];
1212
1213 if (likely(base != HRTIMER_MAX_CLOCK_BASES))
1214 return base;
1215 }
1216 WARN(1, "Invalid clockid %d. Using MONOTONIC\n", clock_id);
1217 return HRTIMER_BASE_MONOTONIC;
1218}
1219
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001220static void __hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1221 enum hrtimer_mode mode)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001222{
Anna-Maria Gleixner42f42da2017-12-21 11:41:58 +01001223 bool softtimer = !!(mode & HRTIMER_MODE_SOFT);
1224 int base = softtimer ? HRTIMER_MAX_CLOCK_BASES / 2 : 0;
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001225 struct hrtimer_cpu_base *cpu_base;
George Anzinger7978672c2006-02-01 03:05:11 -08001226
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001227 memset(timer, 0, sizeof(struct hrtimer));
George Anzinger7978672c2006-02-01 03:05:11 -08001228
Christoph Lameter22127e92014-08-17 12:30:25 -05001229 cpu_base = raw_cpu_ptr(&hrtimer_bases);
George Anzinger7978672c2006-02-01 03:05:11 -08001230
Anna-Maria Gleixner48d0c9b2017-12-21 11:41:35 +01001231 /*
1232 * POSIX magic: Relative CLOCK_REALTIME timers are not affected by
1233 * clock modifications, so they needs to become CLOCK_MONOTONIC to
1234 * ensure POSIX compliance.
1235 */
1236 if (clock_id == CLOCK_REALTIME && mode & HRTIMER_MODE_REL)
George Anzinger7978672c2006-02-01 03:05:11 -08001237 clock_id = CLOCK_MONOTONIC;
1238
Anna-Maria Gleixner42f42da2017-12-21 11:41:58 +01001239 base += hrtimer_clockid_to_base(clock_id);
1240 timer->is_soft = softtimer;
John Stultze06383d2010-12-14 19:37:07 -08001241 timer->base = &cpu_base->clock_base[base];
John Stultz998adc32010-09-20 19:19:17 -07001242 timerqueue_init(&timer->node);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001243}
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001244
1245/**
1246 * hrtimer_init - initialize a timer to the given clock
1247 * @timer: the timer to be initialized
1248 * @clock_id: the clock to be used
Anna-Maria Gleixner42f42da2017-12-21 11:41:58 +01001249 * @mode: The modes which are relevant for intitialization:
1250 * HRTIMER_MODE_ABS, HRTIMER_MODE_REL, HRTIMER_MODE_ABS_SOFT,
1251 * HRTIMER_MODE_REL_SOFT
1252 *
1253 * The PINNED variants of the above can be handed in,
1254 * but the PINNED bit is ignored as pinning happens
1255 * when the hrtimer is started
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001256 */
1257void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
1258 enum hrtimer_mode mode)
1259{
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001260 debug_init(timer, clock_id, mode);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001261 __hrtimer_init(timer, clock_id, mode);
1262}
Stephen Hemminger8d16b762006-05-30 21:26:09 -07001263EXPORT_SYMBOL_GPL(hrtimer_init);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001264
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001265/*
1266 * A timer is active, when it is enqueued into the rbtree or the
1267 * callback function is running or it's in the state of being migrated
1268 * to another cpu.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001269 *
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001270 * It is important for this function to not return a false negative.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001271 */
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001272bool hrtimer_active(const struct hrtimer *timer)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001273{
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001274 struct hrtimer_clock_base *base;
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001275 unsigned int seq;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001276
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001277 do {
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001278 base = READ_ONCE(timer->base);
1279 seq = raw_read_seqcount_begin(&base->seq);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001280
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001281 if (timer->state != HRTIMER_STATE_INACTIVE ||
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001282 base->running == timer)
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001283 return true;
1284
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001285 } while (read_seqcount_retry(&base->seq, seq) ||
1286 base != READ_ONCE(timer->base));
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001287
1288 return false;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001289}
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001290EXPORT_SYMBOL_GPL(hrtimer_active);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001291
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001292/*
1293 * The write_seqcount_barrier()s in __run_hrtimer() split the thing into 3
1294 * distinct sections:
1295 *
1296 * - queued: the timer is queued
1297 * - callback: the timer is being ran
1298 * - post: the timer is inactive or (re)queued
1299 *
1300 * On the read side we ensure we observe timer->state and cpu_base->running
1301 * from the same section, if anything changed while we looked at it, we retry.
1302 * This includes timer->base changing because sequence numbers alone are
1303 * insufficient for that.
1304 *
1305 * The sequence numbers are required because otherwise we could still observe
1306 * a false negative if the read side got smeared over multiple consequtive
1307 * __run_hrtimer() invocations.
1308 */
1309
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001310static void __run_hrtimer(struct hrtimer_cpu_base *cpu_base,
1311 struct hrtimer_clock_base *base,
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001312 struct hrtimer *timer, ktime_t *now,
1313 unsigned long flags)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001314{
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001315 enum hrtimer_restart (*fn)(struct hrtimer *);
1316 int restart;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001317
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001318 lockdep_assert_held(&cpu_base->lock);
Peter Zijlstraca109492008-11-25 12:43:51 +01001319
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001320 debug_deactivate(timer);
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001321 base->running = timer;
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001322
1323 /*
1324 * Separate the ->running assignment from the ->state assignment.
1325 *
1326 * As with a regular write barrier, this ensures the read side in
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001327 * hrtimer_active() cannot observe base->running == NULL &&
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001328 * timer->state == INACTIVE.
1329 */
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001330 raw_write_seqcount_barrier(&base->seq);
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001331
1332 __remove_hrtimer(timer, base, HRTIMER_STATE_INACTIVE, 0);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001333 fn = timer->function;
Peter Zijlstraca109492008-11-25 12:43:51 +01001334
1335 /*
Thomas Gleixner203cbf772016-01-14 16:54:46 +00001336 * Clear the 'is relative' flag for the TIME_LOW_RES case. If the
1337 * timer is restarted with a period then it becomes an absolute
1338 * timer. If its not restarted it does not matter.
1339 */
1340 if (IS_ENABLED(CONFIG_TIME_LOW_RES))
1341 timer->is_rel = false;
1342
1343 /*
Thomas Gleixnerd05ca132017-12-21 11:41:31 +01001344 * The timer is marked as running in the CPU base, so it is
1345 * protected against migration to a different CPU even if the lock
1346 * is dropped.
Peter Zijlstraca109492008-11-25 12:43:51 +01001347 */
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001348 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001349 trace_hrtimer_expire_entry(timer, now);
Peter Zijlstraca109492008-11-25 12:43:51 +01001350 restart = fn(timer);
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001351 trace_hrtimer_expire_exit(timer);
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001352 raw_spin_lock_irq(&cpu_base->lock);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001353
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001354 /*
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001355 * Note: We clear the running state after enqueue_hrtimer and
Pratyush Patelb4d90e92016-06-23 20:50:37 +02001356 * we do not reprogram the event hardware. Happens either in
Thomas Gleixnere3f1d882009-01-05 11:28:23 +01001357 * hrtimer_start_range_ns() or in hrtimer_interrupt()
Peter Zijlstra5de27552014-05-20 15:49:48 +02001358 *
1359 * Note: Because we dropped the cpu_base->lock above,
1360 * hrtimer_start_range_ns() can have popped in and enqueued the timer
1361 * for us already.
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001362 */
Peter Zijlstra5de27552014-05-20 15:49:48 +02001363 if (restart != HRTIMER_NORESTART &&
1364 !(timer->state & HRTIMER_STATE_ENQUEUED))
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +01001365 enqueue_hrtimer(timer, base, HRTIMER_MODE_ABS);
Salman Qazif13d4f92010-10-12 07:25:19 -07001366
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001367 /*
1368 * Separate the ->running assignment from the ->state assignment.
1369 *
1370 * As with a regular write barrier, this ensures the read side in
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001371 * hrtimer_active() cannot observe base->running.timer == NULL &&
Peter Zijlstra887d9dc2015-06-11 14:46:48 +02001372 * timer->state == INACTIVE.
1373 */
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001374 raw_write_seqcount_barrier(&base->seq);
Salman Qazif13d4f92010-10-12 07:25:19 -07001375
Anna-Maria Gleixner3f0b9e82017-12-21 11:41:40 +01001376 WARN_ON_ONCE(base->running != timer);
1377 base->running = NULL;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001378}
1379
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001380static void __hrtimer_run_queues(struct hrtimer_cpu_base *cpu_base, ktime_t now,
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +01001381 unsigned long flags, unsigned int active_mask)
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001382{
Anna-Maria Gleixnerc272ca52017-12-21 11:41:39 +01001383 struct hrtimer_clock_base *base;
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +01001384 unsigned int active = cpu_base->active_bases & active_mask;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001385
Anna-Maria Gleixnerc272ca52017-12-21 11:41:39 +01001386 for_each_active_base(base, cpu_base, active) {
John Stultz998adc32010-09-20 19:19:17 -07001387 struct timerqueue_node *node;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001388 ktime_t basenow;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001389
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001390 basenow = ktime_add(now, base->offset);
1391
John Stultz998adc32010-09-20 19:19:17 -07001392 while ((node = timerqueue_getnext(&base->active))) {
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001393 struct hrtimer *timer;
1394
John Stultz998adc32010-09-20 19:19:17 -07001395 timer = container_of(node, struct hrtimer, node);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001396
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001397 /*
1398 * The immediate goal for using the softexpires is
1399 * minimizing wakeups, not running timers at the
1400 * earliest interrupt after their soft expiration.
1401 * This allows us to avoid using a Priority Search
1402 * Tree, which can answer a stabbing querry for
1403 * overlapping intervals and instead use the simple
1404 * BST we already have.
1405 * We don't add extra wakeups by delaying timers that
1406 * are right-of a not yet expired timer, because that
1407 * timer will have to trigger a wakeup anyway.
1408 */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001409 if (basenow < hrtimer_get_softexpires_tv64(timer))
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001410 break;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001411
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001412 __run_hrtimer(cpu_base, base, timer, &basenow, flags);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001413 }
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001414 }
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001415}
1416
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001417static __latent_entropy void hrtimer_run_softirq(struct softirq_action *h)
1418{
1419 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
1420 unsigned long flags;
1421 ktime_t now;
1422
1423 raw_spin_lock_irqsave(&cpu_base->lock, flags);
1424
1425 now = hrtimer_update_base(cpu_base);
1426 __hrtimer_run_queues(cpu_base, now, flags, HRTIMER_ACTIVE_SOFT);
1427
1428 cpu_base->softirq_activated = 0;
1429 hrtimer_update_softirq_timer(cpu_base, true);
1430
1431 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
1432}
1433
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001434#ifdef CONFIG_HIGH_RES_TIMERS
1435
1436/*
1437 * High resolution timer interrupt
1438 * Called with interrupts disabled
1439 */
1440void hrtimer_interrupt(struct clock_event_device *dev)
1441{
1442 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
1443 ktime_t expires_next, now, entry_time, delta;
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001444 unsigned long flags;
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001445 int retries = 0;
1446
1447 BUG_ON(!cpu_base->hres_active);
1448 cpu_base->nr_events++;
Thomas Gleixner2456e852016-12-25 11:38:40 +01001449 dev->next_event = KTIME_MAX;
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001450
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001451 raw_spin_lock_irqsave(&cpu_base->lock, flags);
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001452 entry_time = now = hrtimer_update_base(cpu_base);
1453retry:
1454 cpu_base->in_hrtirq = 1;
1455 /*
1456 * We set expires_next to KTIME_MAX here with cpu_base->lock
1457 * held to prevent that a timer is enqueued in our queue via
1458 * the migration code. This does not affect enqueueing of
1459 * timers which run their callback and need to be requeued on
1460 * this CPU.
1461 */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001462 cpu_base->expires_next = KTIME_MAX;
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001463
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001464 if (!ktime_before(now, cpu_base->softirq_expires_next)) {
1465 cpu_base->softirq_expires_next = KTIME_MAX;
1466 cpu_base->softirq_activated = 1;
1467 raise_softirq_irqoff(HRTIMER_SOFTIRQ);
1468 }
1469
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +01001470 __hrtimer_run_queues(cpu_base, now, flags, HRTIMER_ACTIVE_HARD);
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001471
Thomas Gleixner9bc749192015-01-20 21:24:10 +01001472 /* Reevaluate the clock bases for the next expiry */
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001473 expires_next = __hrtimer_get_next_event(cpu_base, HRTIMER_ACTIVE_ALL);
Thomas Gleixner6ff70412009-07-10 14:57:05 +02001474 /*
1475 * Store the new expiry value so the migration code can verify
1476 * against it.
1477 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001478 cpu_base->expires_next = expires_next;
Thomas Gleixner9bc749192015-01-20 21:24:10 +01001479 cpu_base->in_hrtirq = 0;
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001480 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001481
1482 /* Reprogramming necessary ? */
Viresh Kumard25408752015-04-03 09:04:05 +05301483 if (!tick_program_event(expires_next, 0)) {
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001484 cpu_base->hang_detected = 0;
1485 return;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001486 }
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001487
1488 /*
1489 * The next timer was already expired due to:
1490 * - tracing
1491 * - long lasting callbacks
1492 * - being scheduled away when running in a VM
1493 *
1494 * We need to prevent that we loop forever in the hrtimer
1495 * interrupt routine. We give it 3 attempts to avoid
1496 * overreacting on some spurious event.
John Stultz5baefd62012-07-10 18:43:25 -04001497 *
1498 * Acquire base lock for updating the offsets and retrieving
1499 * the current time.
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001500 */
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001501 raw_spin_lock_irqsave(&cpu_base->lock, flags);
John Stultz5baefd62012-07-10 18:43:25 -04001502 now = hrtimer_update_base(cpu_base);
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001503 cpu_base->nr_retries++;
1504 if (++retries < 3)
1505 goto retry;
1506 /*
1507 * Give the system a chance to do something else than looping
1508 * here. We stored the entry time, so we know exactly how long
1509 * we spent here. We schedule the next event this amount of
1510 * time away.
1511 */
1512 cpu_base->nr_hangs++;
1513 cpu_base->hang_detected = 1;
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001514 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
1515
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001516 delta = ktime_sub(now, entry_time);
Thomas Gleixner2456e852016-12-25 11:38:40 +01001517 if ((unsigned int)delta > cpu_base->max_hang_time)
1518 cpu_base->max_hang_time = (unsigned int) delta;
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001519 /*
1520 * Limit it to a sensible value as we enforce a longer
1521 * delay. Give the CPU at least 100ms to catch up.
1522 */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001523 if (delta > 100 * NSEC_PER_MSEC)
Thomas Gleixner41d2e492009-11-13 17:05:44 +01001524 expires_next = ktime_add_ns(now, 100 * NSEC_PER_MSEC);
1525 else
1526 expires_next = ktime_add(now, delta);
1527 tick_program_event(expires_next, 1);
1528 printk_once(KERN_WARNING "hrtimer: interrupt took %llu ns\n",
1529 ktime_to_ns(delta));
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001530}
1531
Stephen Boyd016da202017-03-16 18:08:13 -07001532/* called with interrupts disabled */
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +00001533static inline void __hrtimer_peek_ahead_timers(void)
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001534{
1535 struct tick_device *td;
1536
1537 if (!hrtimer_hres_active())
1538 return;
1539
Christoph Lameter22127e92014-08-17 12:30:25 -05001540 td = this_cpu_ptr(&tick_cpu_device);
Thomas Gleixner8bdec952009-01-05 11:28:19 +01001541 if (td && td->evtdev)
1542 hrtimer_interrupt(td->evtdev);
1543}
1544
Ingo Molnar82c5b7b2009-01-05 14:11:10 +01001545#else /* CONFIG_HIGH_RES_TIMERS */
1546
1547static inline void __hrtimer_peek_ahead_timers(void) { }
1548
1549#endif /* !CONFIG_HIGH_RES_TIMERS */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001550
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001551/*
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +00001552 * Called from run_local_timers in hardirq context every jiffy
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001553 */
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001554void hrtimer_run_queues(void)
1555{
Christoph Lameterdc5df732014-08-17 12:30:26 -05001556 struct hrtimer_cpu_base *cpu_base = this_cpu_ptr(&hrtimer_bases);
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001557 unsigned long flags;
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001558 ktime_t now;
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001559
Thomas Gleixnere19ffe82015-04-14 21:08:39 +00001560 if (__hrtimer_hres_active(cpu_base))
Peter Zijlstrad3d74452008-01-25 21:08:31 +01001561 return;
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -08001562
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +00001563 /*
1564 * This _is_ ugly: We have to check periodically, whether we
1565 * can switch to highres and / or nohz mode. The clocksource
1566 * switch happens with xtime_lock held. Notification from
1567 * there only sets the check bit in the tick_oneshot code,
1568 * otherwise we might deadlock vs. xtime_lock.
1569 */
1570 if (tick_check_oneshot_change(!hrtimer_is_hres_enabled())) {
1571 hrtimer_switch_to_hres();
1572 return;
Dimitri Sivanich833883d2008-04-18 13:39:00 -07001573 }
Thomas Gleixnerc6eb3f72015-04-14 21:08:51 +00001574
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001575 raw_spin_lock_irqsave(&cpu_base->lock, flags);
Thomas Gleixner21d6d522015-04-14 21:08:35 +00001576 now = hrtimer_update_base(cpu_base);
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001577
1578 if (!ktime_before(now, cpu_base->softirq_expires_next)) {
1579 cpu_base->softirq_expires_next = KTIME_MAX;
1580 cpu_base->softirq_activated = 1;
1581 raise_softirq_irqoff(HRTIMER_SOFTIRQ);
1582 }
1583
Anna-Maria Gleixnerc458b1d2017-12-21 11:41:56 +01001584 __hrtimer_run_queues(cpu_base, now, flags, HRTIMER_ACTIVE_HARD);
Anna-Maria Gleixnerdd934aa2017-12-21 11:41:54 +01001585 raw_spin_unlock_irqrestore(&cpu_base->lock, flags);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001586}
1587
1588/*
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001589 * Sleep related functions:
1590 */
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001591static enum hrtimer_restart hrtimer_wakeup(struct hrtimer *timer)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001592{
1593 struct hrtimer_sleeper *t =
1594 container_of(timer, struct hrtimer_sleeper, timer);
1595 struct task_struct *task = t->task;
1596
1597 t->task = NULL;
1598 if (task)
1599 wake_up_process(task);
1600
1601 return HRTIMER_NORESTART;
1602}
1603
Ingo Molnar36c8b582006-07-03 00:25:41 -07001604void hrtimer_init_sleeper(struct hrtimer_sleeper *sl, struct task_struct *task)
Thomas Gleixner00362e32006-03-31 02:31:17 -08001605{
1606 sl->timer.function = hrtimer_wakeup;
1607 sl->task = task;
1608}
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07001609EXPORT_SYMBOL_GPL(hrtimer_init_sleeper);
Thomas Gleixner00362e32006-03-31 02:31:17 -08001610
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001611int nanosleep_copyout(struct restart_block *restart, struct timespec64 *ts)
Al Viroce41aaf2017-06-07 09:42:32 +01001612{
1613 switch(restart->nanosleep.type) {
1614#ifdef CONFIG_COMPAT
1615 case TT_COMPAT:
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001616 if (compat_put_timespec64(ts, restart->nanosleep.compat_rmtp))
Al Viroce41aaf2017-06-07 09:42:32 +01001617 return -EFAULT;
1618 break;
1619#endif
1620 case TT_NATIVE:
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001621 if (put_timespec64(ts, restart->nanosleep.rmtp))
Al Viroce41aaf2017-06-07 09:42:32 +01001622 return -EFAULT;
1623 break;
1624 default:
1625 BUG();
1626 }
1627 return -ERESTART_RESTARTBLOCK;
1628}
1629
Thomas Gleixner669d7862006-03-31 02:31:19 -08001630static int __sched do_nanosleep(struct hrtimer_sleeper *t, enum hrtimer_mode mode)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001631{
Al Viroedbeda42017-06-07 09:42:31 +01001632 struct restart_block *restart;
1633
Thomas Gleixner669d7862006-03-31 02:31:19 -08001634 hrtimer_init_sleeper(t, current);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001635
Roman Zippel432569b2006-03-26 01:38:08 -08001636 do {
1637 set_current_state(TASK_INTERRUPTIBLE);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001638 hrtimer_start_expires(&t->timer, mode);
Roman Zippel432569b2006-03-26 01:38:08 -08001639
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001640 if (likely(t->task))
Colin Crossb0f8c442013-05-06 23:50:19 +00001641 freezable_schedule();
Roman Zippel432569b2006-03-26 01:38:08 -08001642
Thomas Gleixner669d7862006-03-31 02:31:19 -08001643 hrtimer_cancel(&t->timer);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001644 mode = HRTIMER_MODE_ABS;
Roman Zippel432569b2006-03-26 01:38:08 -08001645
Thomas Gleixner669d7862006-03-31 02:31:19 -08001646 } while (t->task && !signal_pending(current));
1647
Peter Zijlstra3588a082008-02-01 17:45:13 +01001648 __set_current_state(TASK_RUNNING);
1649
Al Viroa7602682017-06-07 09:42:29 +01001650 if (!t->task)
Oleg Nesterov080344b2008-02-01 17:29:05 +03001651 return 0;
Oleg Nesterov080344b2008-02-01 17:29:05 +03001652
Al Viroedbeda42017-06-07 09:42:31 +01001653 restart = &current->restart_block;
1654 if (restart->nanosleep.type != TT_NONE) {
Al Viroa7602682017-06-07 09:42:29 +01001655 ktime_t rem = hrtimer_expires_remaining(&t->timer);
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001656 struct timespec64 rmt;
Al Viroedbeda42017-06-07 09:42:31 +01001657
Al Viroa7602682017-06-07 09:42:29 +01001658 if (rem <= 0)
1659 return 0;
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001660 rmt = ktime_to_timespec64(rem);
Oleg Nesterov080344b2008-02-01 17:29:05 +03001661
Al Viroce41aaf2017-06-07 09:42:32 +01001662 return nanosleep_copyout(restart, &rmt);
Al Viroa7602682017-06-07 09:42:29 +01001663 }
1664 return -ERESTART_RESTARTBLOCK;
Oleg Nesterov080344b2008-02-01 17:29:05 +03001665}
1666
Al Virofb923c42017-06-07 09:42:33 +01001667static long __sched hrtimer_nanosleep_restart(struct restart_block *restart)
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001668{
Thomas Gleixner669d7862006-03-31 02:31:19 -08001669 struct hrtimer_sleeper t;
Al Viroa7602682017-06-07 09:42:29 +01001670 int ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001671
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001672 hrtimer_init_on_stack(&t.timer, restart->nanosleep.clockid,
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001673 HRTIMER_MODE_ABS);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001674 hrtimer_set_expires_tv64(&t.timer, restart->nanosleep.expires);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001675
Al Viroa7602682017-06-07 09:42:29 +01001676 ret = do_nanosleep(&t, HRTIMER_MODE_ABS);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001677 destroy_hrtimer_on_stack(&t.timer);
1678 return ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001679}
1680
Thomas Gleixner938e7cf2017-06-13 23:34:33 +02001681long hrtimer_nanosleep(const struct timespec64 *rqtp,
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001682 const enum hrtimer_mode mode, const clockid_t clockid)
1683{
Al Viroa7602682017-06-07 09:42:29 +01001684 struct restart_block *restart;
Thomas Gleixner669d7862006-03-31 02:31:19 -08001685 struct hrtimer_sleeper t;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001686 int ret = 0;
John Stultzda8b44d2016-03-17 14:20:51 -07001687 u64 slack;
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001688
1689 slack = current->timer_slack_ns;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001690 if (dl_task(current) || rt_task(current))
Arjan van de Ven3bd01202008-09-08 08:58:59 -07001691 slack = 0;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001692
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001693 hrtimer_init_on_stack(&t.timer, clockid, mode);
Deepa Dinamaniad196382017-03-26 12:04:18 -07001694 hrtimer_set_expires_range_ns(&t.timer, timespec64_to_ktime(*rqtp), slack);
Al Viroa7602682017-06-07 09:42:29 +01001695 ret = do_nanosleep(&t, mode);
1696 if (ret != -ERESTART_RESTARTBLOCK)
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001697 goto out;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001698
George Anzinger7978672c2006-02-01 03:05:11 -08001699 /* Absolute timers do not update the rmtp value and restart: */
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001700 if (mode == HRTIMER_MODE_ABS) {
1701 ret = -ERESTARTNOHAND;
1702 goto out;
1703 }
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001704
Al Viroa7602682017-06-07 09:42:29 +01001705 restart = &current->restart_block;
Toyo Abe1711ef32006-09-29 02:00:28 -07001706 restart->fn = hrtimer_nanosleep_restart;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +02001707 restart->nanosleep.clockid = t.timer.base->clockid;
Arjan van de Vencc584b22008-09-01 15:02:30 -07001708 restart->nanosleep.expires = hrtimer_get_expires_tv64(&t.timer);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001709out:
1710 destroy_hrtimer_on_stack(&t.timer);
1711 return ret;
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001712}
1713
Heiko Carstens58fd3aa2009-01-14 14:14:03 +01001714SYSCALL_DEFINE2(nanosleep, struct timespec __user *, rqtp,
1715 struct timespec __user *, rmtp)
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001716{
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001717 struct timespec64 tu;
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001718
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001719 if (get_timespec64(&tu, rqtp))
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001720 return -EFAULT;
1721
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001722 if (!timespec64_valid(&tu))
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001723 return -EINVAL;
1724
Al Viroedbeda42017-06-07 09:42:31 +01001725 current->restart_block.nanosleep.type = rmtp ? TT_NATIVE : TT_NONE;
Al Viro192a82f2017-06-07 09:42:28 +01001726 current->restart_block.nanosleep.rmtp = rmtp;
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001727 return hrtimer_nanosleep(&tu, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
Thomas Gleixner6ba1b912006-01-09 20:52:36 -08001728}
1729
Al Viroedbeda42017-06-07 09:42:31 +01001730#ifdef CONFIG_COMPAT
1731
1732COMPAT_SYSCALL_DEFINE2(nanosleep, struct compat_timespec __user *, rqtp,
1733 struct compat_timespec __user *, rmtp)
1734{
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001735 struct timespec64 tu;
Al Viroedbeda42017-06-07 09:42:31 +01001736
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001737 if (compat_get_timespec64(&tu, rqtp))
Al Viroedbeda42017-06-07 09:42:31 +01001738 return -EFAULT;
1739
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001740 if (!timespec64_valid(&tu))
Al Viroedbeda42017-06-07 09:42:31 +01001741 return -EINVAL;
1742
1743 current->restart_block.nanosleep.type = rmtp ? TT_COMPAT : TT_NONE;
1744 current->restart_block.nanosleep.compat_rmtp = rmtp;
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -07001745 return hrtimer_nanosleep(&tu, HRTIMER_MODE_REL, CLOCK_MONOTONIC);
Al Viroedbeda42017-06-07 09:42:31 +01001746}
1747#endif
1748
Thomas Gleixner10c94ec2006-01-09 20:52:35 -08001749/*
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001750 * Functions related to boot-time initialization:
1751 */
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001752int hrtimers_prepare_cpu(unsigned int cpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001753{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001754 struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001755 int i;
1756
John Stultz998adc32010-09-20 19:19:17 -07001757 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001758 cpu_base->clock_base[i].cpu_base = cpu_base;
John Stultz998adc32010-09-20 19:19:17 -07001759 timerqueue_init_head(&cpu_base->clock_base[i].active);
1760 }
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001761
Viresh Kumarcddd0242014-06-22 01:29:15 +02001762 cpu_base->cpu = cpu;
Thomas Gleixner303c1462018-01-27 15:35:29 +01001763 cpu_base->active_bases = 0;
Anna-Maria Gleixner28bfd182017-12-21 11:41:42 +01001764 cpu_base->hres_active = 0;
Thomas Gleixner303c1462018-01-27 15:35:29 +01001765 cpu_base->hang_detected = 0;
1766 cpu_base->next_timer = NULL;
1767 cpu_base->softirq_next_timer = NULL;
Anna-Maria Gleixner07a9a7e2017-12-21 11:41:44 +01001768 cpu_base->expires_next = KTIME_MAX;
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001769 cpu_base->softirq_expires_next = KTIME_MAX;
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001770 return 0;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001771}
1772
1773#ifdef CONFIG_HOTPLUG_CPU
1774
Peter Zijlstraca109492008-11-25 12:43:51 +01001775static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
Peter Zijlstra37810652008-12-04 11:17:10 +01001776 struct hrtimer_clock_base *new_base)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001777{
1778 struct hrtimer *timer;
John Stultz998adc32010-09-20 19:19:17 -07001779 struct timerqueue_node *node;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001780
John Stultz998adc32010-09-20 19:19:17 -07001781 while ((node = timerqueue_getnext(&old_base->active))) {
1782 timer = container_of(node, struct hrtimer, node);
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001783 BUG_ON(hrtimer_callback_running(timer));
Xiao Guangrongc6a2a172009-08-10 10:51:23 +08001784 debug_deactivate(timer);
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +02001785
1786 /*
Oleg Nesterovc04dca02015-06-11 14:46:44 +02001787 * Mark it as ENQUEUED not INACTIVE otherwise the
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +02001788 * timer could be seen as !active and just vanish away
1789 * under us on another CPU
1790 */
Oleg Nesterovc04dca02015-06-11 14:46:44 +02001791 __remove_hrtimer(timer, old_base, HRTIMER_STATE_ENQUEUED, 0);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001792 timer->base = new_base;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001793 /*
Thomas Gleixnere3f1d882009-01-05 11:28:23 +01001794 * Enqueue the timers on the new cpu. This does not
1795 * reprogram the event device in case the timer
1796 * expires before the earliest on this CPU, but we run
1797 * hrtimer_interrupt after we migrated everything to
1798 * sort out already expired timers and reprogram the
1799 * event device.
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -08001800 */
Anna-Maria Gleixner63e2ed32017-12-21 11:41:38 +01001801 enqueue_hrtimer(timer, new_base, HRTIMER_MODE_ABS);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001802 }
1803}
1804
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001805int hrtimers_dead_cpu(unsigned int scpu)
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001806{
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001807 struct hrtimer_cpu_base *old_base, *new_base;
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001808 int i;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001809
Peter Zijlstra37810652008-12-04 11:17:10 +01001810 BUG_ON(cpu_online(scpu));
Peter Zijlstra37810652008-12-04 11:17:10 +01001811 tick_cancel_sched_timer(scpu);
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001812
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001813 /*
1814 * this BH disable ensures that raise_softirq_irqoff() does
1815 * not wakeup ksoftirqd (and acquire the pi-lock) while
1816 * holding the cpu_base lock
1817 */
1818 local_bh_disable();
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001819 local_irq_disable();
1820 old_base = &per_cpu(hrtimer_bases, scpu);
Christoph Lameterdc5df732014-08-17 12:30:26 -05001821 new_base = this_cpu_ptr(&hrtimer_bases);
Oleg Nesterovd82f0b02008-08-20 16:46:04 -07001822 /*
1823 * The caller is globally serialized and nobody else
1824 * takes two locks at once, deadlock is not possible.
1825 */
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001826 raw_spin_lock(&new_base->lock);
1827 raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001828
Thomas Gleixner3c8aa392007-02-16 01:27:50 -08001829 for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) {
Peter Zijlstraca109492008-11-25 12:43:51 +01001830 migrate_hrtimer_list(&old_base->clock_base[i],
Peter Zijlstra37810652008-12-04 11:17:10 +01001831 &new_base->clock_base[i]);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001832 }
1833
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001834 /*
1835 * The migration might have changed the first expiring softirq
1836 * timer on this CPU. Update it.
1837 */
1838 hrtimer_update_softirq_timer(new_base, false);
1839
Thomas Gleixnerecb49d12009-11-17 16:36:54 +01001840 raw_spin_unlock(&old_base->lock);
1841 raw_spin_unlock(&new_base->lock);
Peter Zijlstra37810652008-12-04 11:17:10 +01001842
Thomas Gleixner731a55b2009-01-05 11:28:21 +01001843 /* Check, if we got expired work to do */
1844 __hrtimer_peek_ahead_timers();
1845 local_irq_enable();
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001846 local_bh_enable();
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001847 return 0;
Peter Zijlstra37810652008-12-04 11:17:10 +01001848}
1849
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001850#endif /* CONFIG_HOTPLUG_CPU */
1851
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001852void __init hrtimers_init(void)
1853{
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001854 hrtimers_prepare_cpu(smp_processor_id());
Anna-Maria Gleixner5da70162017-12-21 11:41:57 +01001855 open_softirq(HRTIMER_SOFTIRQ, hrtimer_run_softirq);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001856}
1857
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001858/**
Carsten Emde351b3f72010-04-02 22:40:19 +02001859 * schedule_hrtimeout_range_clock - sleep until timeout
1860 * @expires: timeout value (ktime_t)
1861 * @delta: slack in expires timeout (ktime_t)
Anna-Maria Gleixner90777712017-12-21 11:41:33 +01001862 * @mode: timer mode
1863 * @clock_id: timer clock to be used
Carsten Emde351b3f72010-04-02 22:40:19 +02001864 */
1865int __sched
John Stultzda8b44d2016-03-17 14:20:51 -07001866schedule_hrtimeout_range_clock(ktime_t *expires, u64 delta,
Anna-Maria Gleixner90777712017-12-21 11:41:33 +01001867 const enum hrtimer_mode mode, clockid_t clock_id)
Carsten Emde351b3f72010-04-02 22:40:19 +02001868{
1869 struct hrtimer_sleeper t;
1870
1871 /*
1872 * Optimize when a zero timeout value is given. It does not
1873 * matter whether this is an absolute or a relative time.
1874 */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001875 if (expires && *expires == 0) {
Carsten Emde351b3f72010-04-02 22:40:19 +02001876 __set_current_state(TASK_RUNNING);
1877 return 0;
1878 }
1879
1880 /*
Namhyung Kim43b21012010-12-22 19:01:47 +01001881 * A NULL parameter means "infinite"
Carsten Emde351b3f72010-04-02 22:40:19 +02001882 */
1883 if (!expires) {
1884 schedule();
Carsten Emde351b3f72010-04-02 22:40:19 +02001885 return -EINTR;
1886 }
1887
Anna-Maria Gleixner90777712017-12-21 11:41:33 +01001888 hrtimer_init_on_stack(&t.timer, clock_id, mode);
Carsten Emde351b3f72010-04-02 22:40:19 +02001889 hrtimer_set_expires_range_ns(&t.timer, *expires, delta);
1890
1891 hrtimer_init_sleeper(&t, current);
1892
1893 hrtimer_start_expires(&t.timer, mode);
Carsten Emde351b3f72010-04-02 22:40:19 +02001894
1895 if (likely(t.task))
1896 schedule();
1897
1898 hrtimer_cancel(&t.timer);
1899 destroy_hrtimer_on_stack(&t.timer);
1900
1901 __set_current_state(TASK_RUNNING);
1902
1903 return !t.task ? 0 : -EINTR;
1904}
1905
1906/**
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001907 * schedule_hrtimeout_range - sleep until timeout
1908 * @expires: timeout value (ktime_t)
1909 * @delta: slack in expires timeout (ktime_t)
Anna-Maria Gleixner90777712017-12-21 11:41:33 +01001910 * @mode: timer mode
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001911 *
1912 * Make the current task sleep until the given expiry time has
1913 * elapsed. The routine will return immediately unless
1914 * the current task state has been set (see set_current_state()).
1915 *
1916 * The @delta argument gives the kernel the freedom to schedule the
1917 * actual wakeup to a time that is both power and performance friendly.
1918 * The kernel give the normal best effort behavior for "@expires+@delta",
1919 * but may decide to fire the timer earlier, but no earlier than @expires.
1920 *
1921 * You can set the task state as follows -
1922 *
1923 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
Douglas Anderson4b7e9cf2016-10-21 08:58:51 -07001924 * pass before the routine returns unless the current task is explicitly
1925 * woken up, (e.g. by wake_up_process()).
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001926 *
1927 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
Douglas Anderson4b7e9cf2016-10-21 08:58:51 -07001928 * delivered to the current task or the current task is explicitly woken
1929 * up.
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001930 *
1931 * The current task state is guaranteed to be TASK_RUNNING when this
1932 * routine returns.
1933 *
Douglas Anderson4b7e9cf2016-10-21 08:58:51 -07001934 * Returns 0 when the timer has expired. If the task was woken before the
1935 * timer expired by a signal (only possible in state TASK_INTERRUPTIBLE) or
1936 * by an explicit wakeup, it returns -EINTR.
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001937 */
John Stultzda8b44d2016-03-17 14:20:51 -07001938int __sched schedule_hrtimeout_range(ktime_t *expires, u64 delta,
Carsten Emde351b3f72010-04-02 22:40:19 +02001939 const enum hrtimer_mode mode)
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001940{
Carsten Emde351b3f72010-04-02 22:40:19 +02001941 return schedule_hrtimeout_range_clock(expires, delta, mode,
1942 CLOCK_MONOTONIC);
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001943}
1944EXPORT_SYMBOL_GPL(schedule_hrtimeout_range);
1945
1946/**
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001947 * schedule_hrtimeout - sleep until timeout
1948 * @expires: timeout value (ktime_t)
Anna-Maria Gleixner90777712017-12-21 11:41:33 +01001949 * @mode: timer mode
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001950 *
1951 * Make the current task sleep until the given expiry time has
1952 * elapsed. The routine will return immediately unless
1953 * the current task state has been set (see set_current_state()).
1954 *
1955 * You can set the task state as follows -
1956 *
1957 * %TASK_UNINTERRUPTIBLE - at least @timeout time is guaranteed to
Douglas Anderson4b7e9cf2016-10-21 08:58:51 -07001958 * pass before the routine returns unless the current task is explicitly
1959 * woken up, (e.g. by wake_up_process()).
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001960 *
1961 * %TASK_INTERRUPTIBLE - the routine may return early if a signal is
Douglas Anderson4b7e9cf2016-10-21 08:58:51 -07001962 * delivered to the current task or the current task is explicitly woken
1963 * up.
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001964 *
1965 * The current task state is guaranteed to be TASK_RUNNING when this
1966 * routine returns.
1967 *
Douglas Anderson4b7e9cf2016-10-21 08:58:51 -07001968 * Returns 0 when the timer has expired. If the task was woken before the
1969 * timer expired by a signal (only possible in state TASK_INTERRUPTIBLE) or
1970 * by an explicit wakeup, it returns -EINTR.
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001971 */
1972int __sched schedule_hrtimeout(ktime_t *expires,
1973 const enum hrtimer_mode mode)
1974{
Arjan van de Ven654c8e02008-09-01 15:47:08 -07001975 return schedule_hrtimeout_range(expires, 0, mode);
Arjan van de Ven7bb67432008-08-31 08:05:58 -07001976}
1977EXPORT_SYMBOL_GPL(schedule_hrtimeout);