blob: 58bca8e9bae11e02926bf835442421c6429a8fd4 [file] [log] [blame]
Thomas Gleixnerc0a31322006-01-09 20:52:32 -08001/*
2 * include/linux/hrtimer.h
3 *
4 * hrtimers - High-resolution kernel timers
5 *
6 * Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de>
7 * Copyright(C) 2005, Red Hat, Inc., Ingo Molnar
8 *
9 * data type definitions, declarations, prototypes
10 *
11 * Started by: Thomas Gleixner and Ingo Molnar
12 *
13 * For licencing details see kernel-base/COPYING
14 */
15#ifndef _LINUX_HRTIMER_H
16#define _LINUX_HRTIMER_H
17
18#include <linux/rbtree.h>
19#include <linux/ktime.h>
20#include <linux/init.h>
21#include <linux/list.h>
22#include <linux/wait.h>
Stephen Rothwell40b86062008-10-15 14:20:28 +110023#include <linux/percpu.h>
24
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080025
Thomas Gleixner3c8aa392007-02-16 01:27:50 -080026struct hrtimer_clock_base;
27struct hrtimer_cpu_base;
28
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080029/*
30 * Mode arguments of xxx_hrtimer functions:
31 */
32enum hrtimer_mode {
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -080033 HRTIMER_MODE_ABS, /* Time value is absolute */
34 HRTIMER_MODE_REL, /* Time value is relative to now */
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080035};
36
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -080037/*
38 * Return values for the callback function
39 */
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080040enum hrtimer_restart {
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -080041 HRTIMER_NORESTART, /* Timer is not restarted */
42 HRTIMER_RESTART, /* Timer must be restarted */
Thomas Gleixnerc0a31322006-01-09 20:52:32 -080043};
44
Thomas Gleixner303e9672007-02-16 01:27:51 -080045/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080046 * hrtimer callback modes:
47 *
48 * HRTIMER_CB_SOFTIRQ: Callback must run in softirq context
49 * HRTIMER_CB_IRQSAFE: Callback may run in hardirq context
50 * HRTIMER_CB_IRQSAFE_NO_RESTART: Callback may run in hardirq context and
51 * does not restart the timer
Thomas Gleixnerccc7dad2008-09-29 15:47:42 +020052 * HRTIMER_CB_IRQSAFE_PERCPU: Callback must run in hardirq context
53 * Special mode for tick emulation and
54 * scheduler timer. Such timers are per
55 * cpu and not allowed to be migrated on
56 * cpu unplug.
57 * HRTIMER_CB_IRQSAFE_UNLOCKED: Callback should run in hardirq context
58 * with timer->base lock unlocked
59 * used for timers which call wakeup to
60 * avoid lock order problems with rq->lock
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080061 */
62enum hrtimer_cb_mode {
63 HRTIMER_CB_SOFTIRQ,
64 HRTIMER_CB_IRQSAFE,
65 HRTIMER_CB_IRQSAFE_NO_RESTART,
Thomas Gleixnerccc7dad2008-09-29 15:47:42 +020066 HRTIMER_CB_IRQSAFE_PERCPU,
67 HRTIMER_CB_IRQSAFE_UNLOCKED,
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080068};
69
70/*
71 * Values to track state of the timer
Thomas Gleixner303e9672007-02-16 01:27:51 -080072 *
73 * Possible states:
74 *
75 * 0x00 inactive
76 * 0x01 enqueued into rbtree
77 * 0x02 callback function running
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -080078 * 0x04 callback pending (high resolution mode)
79 *
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +020080 * Special cases:
Thomas Gleixner303e9672007-02-16 01:27:51 -080081 * 0x03 callback function running and enqueued
82 * (was requeued on another CPU)
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +020083 * 0x09 timer was migrated on CPU hotunplug
Thomas Gleixner303e9672007-02-16 01:27:51 -080084 * The "callback function running and enqueued" status is only possible on
85 * SMP. It happens for example when a posix timer expired and the callback
86 * queued a signal. Between dropping the lock which protects the posix timer
87 * and reacquiring the base lock of the hrtimer, another CPU can deliver the
88 * signal and rearm the timer. We have to preserve the callback running state,
89 * as otherwise the timer could be removed before the softirq code finishes the
90 * the handling of the timer.
91 *
Li Zefan3eb05672008-02-08 04:19:25 -080092 * The HRTIMER_STATE_ENQUEUED bit is always or'ed to the current state to
Thomas Gleixner303e9672007-02-16 01:27:51 -080093 * preserve the HRTIMER_STATE_CALLBACK bit in the above scenario.
94 *
95 * All state transitions are protected by cpu_base->lock.
96 */
97#define HRTIMER_STATE_INACTIVE 0x00
98#define HRTIMER_STATE_ENQUEUED 0x01
99#define HRTIMER_STATE_CALLBACK 0x02
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800100#define HRTIMER_STATE_PENDING 0x04
Thomas Gleixnerb00c1a92008-09-29 15:44:46 +0200101#define HRTIMER_STATE_MIGRATE 0x08
Thomas Gleixner303e9672007-02-16 01:27:51 -0800102
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800103/**
104 * struct hrtimer - the basic hrtimer structure
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800105 * @node: red black tree node for time ordered insertion
Thomas Gleixner592aa992008-10-20 16:38:19 +0200106 * @_expires: the absolute expiry time in the hrtimers internal
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800107 * representation. The time is related to the clock on
Thomas Gleixner592aa992008-10-20 16:38:19 +0200108 * which the timer is based. Is setup by adding
109 * slack to the _softexpires value. For non range timers
110 * identical to _softexpires.
111 * @_softexpires: the absolute earliest expiry time of the hrtimer.
112 * The time which was given as expiry time when the timer
113 * was armed.
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800114 * @function: timer expiry callback function
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800115 * @base: pointer to the timer base (per cpu and per clock)
Thomas Gleixner303e9672007-02-16 01:27:51 -0800116 * @state: state information (See bit values above)
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800117 * @cb_mode: high resolution timer feature to select the callback execution
118 * mode
119 * @cb_entry: list head to enqueue an expired timer into the callback list
120 * @start_site: timer statistics field to store the site where the timer
121 * was started
122 * @start_comm: timer statistics field to store the name of the process which
123 * started the timer
124 * @start_pid: timer statistics field to store the pid of the task which
125 * started the timer
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800126 *
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800127 * The hrtimer structure must be initialized by hrtimer_init()
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800128 */
129struct hrtimer {
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800130 struct rb_node node;
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700131 ktime_t _expires;
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700132 ktime_t _softexpires;
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800133 enum hrtimer_restart (*function)(struct hrtimer *);
134 struct hrtimer_clock_base *base;
Thomas Gleixner303e9672007-02-16 01:27:51 -0800135 unsigned long state;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800136 enum hrtimer_cb_mode cb_mode;
137 struct list_head cb_entry;
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800138#ifdef CONFIG_TIMER_STATS
139 void *start_site;
140 char start_comm[16];
141 int start_pid;
142#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800143};
144
145/**
Thomas Gleixner00362e32006-03-31 02:31:17 -0800146 * struct hrtimer_sleeper - simple sleeper structure
Thomas Gleixner00362e32006-03-31 02:31:17 -0800147 * @timer: embedded timer structure
148 * @task: task to wake up
149 *
150 * task is set to NULL, when the timer expires.
151 */
152struct hrtimer_sleeper {
153 struct hrtimer timer;
154 struct task_struct *task;
155};
156
157/**
Andres Salomond1d67172007-03-06 01:42:07 -0800158 * struct hrtimer_clock_base - the timer base for a specific clock
Randy Dunlap05fb6bf2007-02-28 20:12:13 -0800159 * @cpu_base: per cpu clock base
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800160 * @index: clock type index for per_cpu support when moving a
161 * timer to a base on another cpu.
Thomas Gleixner92127c72006-03-26 01:38:05 -0800162 * @active: red black tree root node for the active timers
163 * @first: pointer to the timer node which expires first
164 * @resolution: the resolution of the clock, in nanoseconds
165 * @get_time: function to retrieve the current time of the clock
Martin Waitza5802902006-04-02 13:59:55 +0200166 * @get_softirq_time: function to retrieve the current time from the softirq
Thomas Gleixner92127c72006-03-26 01:38:05 -0800167 * @softirq_time: the time when running the hrtimer queue in the softirq
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800168 * @offset: offset of this clock to the monotonic base
169 * @reprogram: function to reprogram the timer event
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800170 */
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800171struct hrtimer_clock_base {
172 struct hrtimer_cpu_base *cpu_base;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800173 clockid_t index;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800174 struct rb_root active;
Thomas Gleixner288867e2006-01-12 11:25:54 +0100175 struct rb_node *first;
Thomas Gleixnere2787632006-01-12 11:36:14 +0100176 ktime_t resolution;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800177 ktime_t (*get_time)(void);
Thomas Gleixner92127c72006-03-26 01:38:05 -0800178 ktime_t (*get_softirq_time)(void);
Thomas Gleixner92127c72006-03-26 01:38:05 -0800179 ktime_t softirq_time;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800180#ifdef CONFIG_HIGH_RES_TIMERS
181 ktime_t offset;
182 int (*reprogram)(struct hrtimer *t,
183 struct hrtimer_clock_base *b,
184 ktime_t n);
185#endif
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800186};
187
188#define HRTIMER_MAX_CLOCK_BASES 2
189
190/*
191 * struct hrtimer_cpu_base - the per cpu clock bases
192 * @lock: lock protecting the base and associated clock bases
193 * and timers
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800194 * @clock_base: array of clock bases for this cpu
195 * @curr_timer: the timer which is executing a callback right now
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800196 * @expires_next: absolute time of the next event which was scheduled
197 * via clock_set_next_event()
198 * @hres_active: State of high resolution mode
199 * @check_clocks: Indictator, when set evaluate time source and clock
200 * event devices whether high resolution mode can be
201 * activated.
202 * @cb_pending: Expired timers are moved from the rbtree to this
203 * list in the timer interrupt. The list is processed
204 * in the softirq.
205 * @nr_events: Total number of timer interrupt events
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800206 */
207struct hrtimer_cpu_base {
208 spinlock_t lock;
Thomas Gleixner3c8aa392007-02-16 01:27:50 -0800209 struct hrtimer_clock_base clock_base[HRTIMER_MAX_CLOCK_BASES];
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100210 struct list_head cb_pending;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800211#ifdef CONFIG_HIGH_RES_TIMERS
212 ktime_t expires_next;
213 int hres_active;
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800214 unsigned long nr_events;
215#endif
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800216};
217
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700218static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time)
219{
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700220 timer->_expires = time;
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700221 timer->_softexpires = time;
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700222}
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700223
224static inline void hrtimer_set_expires_range(struct hrtimer *timer, ktime_t time, ktime_t delta)
225{
226 timer->_softexpires = time;
227 timer->_expires = ktime_add_safe(time, delta);
228}
229
230static inline void hrtimer_set_expires_range_ns(struct hrtimer *timer, ktime_t time, unsigned long delta)
231{
232 timer->_softexpires = time;
233 timer->_expires = ktime_add_safe(time, ns_to_ktime(delta));
234}
235
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700236static inline void hrtimer_set_expires_tv64(struct hrtimer *timer, s64 tv64)
237{
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700238 timer->_expires.tv64 = tv64;
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700239 timer->_softexpires.tv64 = tv64;
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700240}
241
242static inline void hrtimer_add_expires(struct hrtimer *timer, ktime_t time)
243{
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700244 timer->_expires = ktime_add_safe(timer->_expires, time);
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700245 timer->_softexpires = ktime_add_safe(timer->_softexpires, time);
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700246}
247
248static inline void hrtimer_add_expires_ns(struct hrtimer *timer, unsigned long ns)
249{
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700250 timer->_expires = ktime_add_ns(timer->_expires, ns);
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700251 timer->_softexpires = ktime_add_ns(timer->_softexpires, ns);
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700252}
253
254static inline ktime_t hrtimer_get_expires(const struct hrtimer *timer)
255{
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700256 return timer->_expires;
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700257}
258
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700259static inline ktime_t hrtimer_get_softexpires(const struct hrtimer *timer)
260{
261 return timer->_softexpires;
262}
263
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700264static inline s64 hrtimer_get_expires_tv64(const struct hrtimer *timer)
265{
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700266 return timer->_expires.tv64;
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700267}
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700268static inline s64 hrtimer_get_softexpires_tv64(const struct hrtimer *timer)
269{
270 return timer->_softexpires.tv64;
271}
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700272
273static inline s64 hrtimer_get_expires_ns(const struct hrtimer *timer)
274{
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700275 return ktime_to_ns(timer->_expires);
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700276}
277
278static inline ktime_t hrtimer_expires_remaining(const struct hrtimer *timer)
279{
Arjan van de Ven799b64d2008-09-01 15:27:58 -0700280 return ktime_sub(timer->_expires, timer->base->get_time());
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700281}
282
Arjan van de Ven584fb4a2008-09-06 08:32:57 -0700283#ifdef CONFIG_HIGH_RES_TIMERS
284struct clock_event_device;
285
286extern void clock_was_set(void);
287extern void hres_timers_resume(void);
288extern void hrtimer_interrupt(struct clock_event_device *dev);
289
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800290/*
Arjan van de Ven2ec022702008-09-06 09:36:56 -0700291 * In high resolution mode the time reference must be read accurate
292 */
293static inline ktime_t hrtimer_cb_get_time(struct hrtimer *timer)
294{
295 return timer->base->get_time();
296}
297
298static inline int hrtimer_is_hres_active(struct hrtimer *timer)
299{
300 return timer->base->cpu_base->hres_active;
301}
302
Arjan van de Ven2075eb82008-10-07 10:57:54 -0700303extern void hrtimer_peek_ahead_timers(void);
304
Arjan van de Ven2ec022702008-09-06 09:36:56 -0700305/*
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800306 * The resolution of the clocks. The resolution value is returned in
307 * the clock_getres() system call to give application programmers an
308 * idea of the (in)accuracy of timers. Timer values are rounded up to
309 * this resolution values.
310 */
Tony Breeds151db1f2008-02-08 09:24:52 +1100311# define HIGH_RES_NSEC 1
312# define KTIME_HIGH_RES (ktime_t) { .tv64 = HIGH_RES_NSEC }
313# define MONOTONIC_RES_NSEC HIGH_RES_NSEC
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800314# define KTIME_MONOTONIC_RES KTIME_HIGH_RES
315
316#else
317
Tony Breeds151db1f2008-02-08 09:24:52 +1100318# define MONOTONIC_RES_NSEC LOW_RES_NSEC
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800319# define KTIME_MONOTONIC_RES KTIME_LOW_RES
320
Thomas Gleixnerbecf8b52006-01-09 20:52:38 -0800321/*
322 * clock_was_set() is a NOP for non- high-resolution systems. The
323 * time-sorted order guarantees that a timer does not expire early and
324 * is expired in the next softirq when the clock was advanced.
325 */
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800326static inline void clock_was_set(void) { }
Arjan van de Ven2075eb82008-10-07 10:57:54 -0700327static inline void hrtimer_peek_ahead_timers(void) { }
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800328
Ingo Molnar995f0542007-04-07 12:05:00 +0200329static inline void hres_timers_resume(void) { }
330
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800331/*
332 * In non high resolution mode the time reference is taken from
333 * the base softirq time variable.
334 */
335static inline ktime_t hrtimer_cb_get_time(struct hrtimer *timer)
336{
337 return timer->base->softirq_time;
338}
339
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100340static inline int hrtimer_is_hres_active(struct hrtimer *timer)
341{
342 return 0;
343}
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800344#endif
345
Thomas Gleixnerd316c572007-02-16 01:28:00 -0800346extern ktime_t ktime_get(void);
347extern ktime_t ktime_get_real(void);
Thomas Gleixnerbecf8b52006-01-09 20:52:38 -0800348
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -0700349
350DECLARE_PER_CPU(struct tick_device, tick_cpu_device);
Arjan van de Ven2e94d1f2008-09-10 16:06:00 -0700351
352
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800353/* Exported timer functions: */
354
355/* Initialize timers: */
George Anzinger7978672c2006-02-01 03:05:11 -0800356extern void hrtimer_init(struct hrtimer *timer, clockid_t which_clock,
357 enum hrtimer_mode mode);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800358
Thomas Gleixner237fc6e2008-04-30 00:55:04 -0700359#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
360extern void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t which_clock,
361 enum hrtimer_mode mode);
362
363extern void destroy_hrtimer_on_stack(struct hrtimer *timer);
364#else
365static inline void hrtimer_init_on_stack(struct hrtimer *timer,
366 clockid_t which_clock,
367 enum hrtimer_mode mode)
368{
369 hrtimer_init(timer, which_clock, mode);
370}
371static inline void destroy_hrtimer_on_stack(struct hrtimer *timer) { }
372#endif
373
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800374/* Basic timer operations: */
375extern int hrtimer_start(struct hrtimer *timer, ktime_t tim,
376 const enum hrtimer_mode mode);
Arjan van de Venda8f2e12008-09-07 10:47:46 -0700377extern int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
378 unsigned long range_ns, const enum hrtimer_mode mode);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800379extern int hrtimer_cancel(struct hrtimer *timer);
380extern int hrtimer_try_to_cancel(struct hrtimer *timer);
381
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700382static inline int hrtimer_start_expires(struct hrtimer *timer,
383 enum hrtimer_mode mode)
384{
Arjan van de Venda8f2e12008-09-07 10:47:46 -0700385 unsigned long delta;
386 ktime_t soft, hard;
387 soft = hrtimer_get_softexpires(timer);
388 hard = hrtimer_get_expires(timer);
389 delta = ktime_to_ns(ktime_sub(hard, soft));
Arjan van de Ven4ce105d2008-09-07 15:31:39 -0700390 return hrtimer_start_range_ns(timer, soft, delta, mode);
Arjan van de Ven63ca2432008-09-01 14:35:02 -0700391}
392
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800393static inline int hrtimer_restart(struct hrtimer *timer)
394{
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700395 return hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800396}
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800397
398/* Query timers: */
399extern ktime_t hrtimer_get_remaining(const struct hrtimer *timer);
400extern int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp);
401
Tony Lindgren69239742006-03-06 15:42:45 -0800402extern ktime_t hrtimer_get_next_event(void);
Tony Lindgren69239742006-03-06 15:42:45 -0800403
Thomas Gleixner303e9672007-02-16 01:27:51 -0800404/*
405 * A timer is active, when it is enqueued into the rbtree or the callback
406 * function is running.
407 */
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800408static inline int hrtimer_active(const struct hrtimer *timer)
409{
Thomas Gleixner303e9672007-02-16 01:27:51 -0800410 return timer->state != HRTIMER_STATE_INACTIVE;
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800411}
412
Thomas Gleixner54cdfdb2007-02-16 01:28:11 -0800413/*
414 * Helper function to check, whether the timer is on one of the queues
415 */
416static inline int hrtimer_is_queued(struct hrtimer *timer)
417{
418 return timer->state &
419 (HRTIMER_STATE_ENQUEUED | HRTIMER_STATE_PENDING);
420}
421
Oliver Hartkopp4346f652008-04-30 23:04:37 +0200422/*
423 * Helper function to check, whether the timer is running the callback
424 * function
425 */
426static inline int hrtimer_callback_running(struct hrtimer *timer)
427{
428 return timer->state & HRTIMER_STATE_CALLBACK;
429}
430
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800431/* Forward a hrtimer so it expires after now: */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800432extern u64
Roman Zippel44f21472006-03-26 01:38:06 -0800433hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800434
Davide Libenzi5e05ad72008-02-04 22:27:25 -0800435/* Forward a hrtimer so it expires after the hrtimer's current now */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800436static inline u64 hrtimer_forward_now(struct hrtimer *timer,
437 ktime_t interval)
Davide Libenzi5e05ad72008-02-04 22:27:25 -0800438{
439 return hrtimer_forward(timer, timer->base->get_time(), interval);
440}
441
Thomas Gleixner10c94ec2006-01-09 20:52:35 -0800442/* Precise sleep: */
443extern long hrtimer_nanosleep(struct timespec *rqtp,
Oleg Nesterov080344b2008-02-01 17:29:05 +0300444 struct timespec __user *rmtp,
Thomas Gleixner10c94ec2006-01-09 20:52:35 -0800445 const enum hrtimer_mode mode,
446 const clockid_t clockid);
Toyo Abe1711ef32006-09-29 02:00:28 -0700447extern long hrtimer_nanosleep_restart(struct restart_block *restart_block);
Thomas Gleixner10c94ec2006-01-09 20:52:35 -0800448
Thomas Gleixner00362e32006-03-31 02:31:17 -0800449extern void hrtimer_init_sleeper(struct hrtimer_sleeper *sl,
450 struct task_struct *tsk);
451
Arjan van de Ven654c8e02008-09-01 15:47:08 -0700452extern int schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
453 const enum hrtimer_mode mode);
Arjan van de Ven7bb67432008-08-31 08:05:58 -0700454extern int schedule_hrtimeout(ktime_t *expires, const enum hrtimer_mode mode);
455
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800456/* Soft interrupt function to run the hrtimer queues: */
457extern void hrtimer_run_queues(void);
Peter Zijlstrad3d74452008-01-25 21:08:31 +0100458extern void hrtimer_run_pending(void);
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800459
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800460/* Bootup initialization: */
461extern void __init hrtimers_init(void);
462
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800463#if BITS_PER_LONG < 64
Davide Libenzi4d672e72008-02-04 22:27:26 -0800464extern u64 ktime_divns(const ktime_t kt, s64 div);
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800465#else /* BITS_PER_LONG < 64 */
Davide Libenzi4d672e72008-02-04 22:27:26 -0800466# define ktime_divns(kt, div) (u64)((kt).tv64 / (div))
Thomas Gleixner79bf2bb2007-02-16 01:28:03 -0800467#endif
468
Ingo Molnar88ad0bf62007-02-16 01:28:16 -0800469/* Show pending timers: */
470extern void sysrq_timer_list_show(void);
471
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800472/*
473 * Timer-statistics info:
474 */
475#ifdef CONFIG_TIMER_STATS
476
477extern void timer_stats_update_stats(void *timer, pid_t pid, void *startf,
Venki Pallipadic5c061b82007-07-15 23:40:30 -0700478 void *timerf, char *comm,
479 unsigned int timer_flag);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800480
481static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
482{
483 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
Venki Pallipadic5c061b82007-07-15 23:40:30 -0700484 timer->function, timer->start_comm, 0);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800485}
486
487extern void __timer_stats_hrtimer_set_start_info(struct hrtimer *timer,
488 void *addr);
489
490static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
491{
492 __timer_stats_hrtimer_set_start_info(timer, __builtin_return_address(0));
493}
494
495static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
496{
497 timer->start_site = NULL;
498}
499#else
500static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
501{
502}
503
504static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
505{
506}
507
508static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
509{
510}
511#endif
512
Thomas Gleixnerc0a31322006-01-09 20:52:32 -0800513#endif