xref: /linux-6.15/include/linux/hrtimer.h (revision f55a6faa)
1c0a31329SThomas Gleixner /*
2c0a31329SThomas Gleixner  *  include/linux/hrtimer.h
3c0a31329SThomas Gleixner  *
4c0a31329SThomas Gleixner  *  hrtimers - High-resolution kernel timers
5c0a31329SThomas Gleixner  *
6c0a31329SThomas Gleixner  *   Copyright(C) 2005, Thomas Gleixner <[email protected]>
7c0a31329SThomas Gleixner  *   Copyright(C) 2005, Red Hat, Inc., Ingo Molnar
8c0a31329SThomas Gleixner  *
9c0a31329SThomas Gleixner  *  data type definitions, declarations, prototypes
10c0a31329SThomas Gleixner  *
11c0a31329SThomas Gleixner  *  Started by: Thomas Gleixner and Ingo Molnar
12c0a31329SThomas Gleixner  *
13c0a31329SThomas Gleixner  *  For licencing details see kernel-base/COPYING
14c0a31329SThomas Gleixner  */
15c0a31329SThomas Gleixner #ifndef _LINUX_HRTIMER_H
16c0a31329SThomas Gleixner #define _LINUX_HRTIMER_H
17c0a31329SThomas Gleixner 
18c0a31329SThomas Gleixner #include <linux/rbtree.h>
19c0a31329SThomas Gleixner #include <linux/ktime.h>
20c0a31329SThomas Gleixner #include <linux/init.h>
21c0a31329SThomas Gleixner #include <linux/list.h>
22c0a31329SThomas Gleixner #include <linux/wait.h>
2340b86062SStephen Rothwell #include <linux/percpu.h>
24507e1231SHeiko Carstens #include <linux/timer.h>
25998adc3dSJohn Stultz #include <linux/timerqueue.h>
26c0a31329SThomas Gleixner 
273c8aa39dSThomas Gleixner struct hrtimer_clock_base;
283c8aa39dSThomas Gleixner struct hrtimer_cpu_base;
293c8aa39dSThomas Gleixner 
30c0a31329SThomas Gleixner /*
31c0a31329SThomas Gleixner  * Mode arguments of xxx_hrtimer functions:
32c0a31329SThomas Gleixner  */
33c0a31329SThomas Gleixner enum hrtimer_mode {
34597d0275SArun R Bharadwaj 	HRTIMER_MODE_ABS = 0x0,		/* Time value is absolute */
35597d0275SArun R Bharadwaj 	HRTIMER_MODE_REL = 0x1,		/* Time value is relative to now */
36597d0275SArun R Bharadwaj 	HRTIMER_MODE_PINNED = 0x02,	/* Timer is bound to CPU */
37597d0275SArun R Bharadwaj 	HRTIMER_MODE_ABS_PINNED = 0x02,
38597d0275SArun R Bharadwaj 	HRTIMER_MODE_REL_PINNED = 0x03,
39c0a31329SThomas Gleixner };
40c0a31329SThomas Gleixner 
41c9cb2e3dSThomas Gleixner /*
42c9cb2e3dSThomas Gleixner  * Return values for the callback function
43c9cb2e3dSThomas Gleixner  */
44c0a31329SThomas Gleixner enum hrtimer_restart {
45c9cb2e3dSThomas Gleixner 	HRTIMER_NORESTART,	/* Timer is not restarted */
46c9cb2e3dSThomas Gleixner 	HRTIMER_RESTART,	/* Timer must be restarted */
47c0a31329SThomas Gleixner };
48c0a31329SThomas Gleixner 
49303e967fSThomas Gleixner /*
5054cdfdb4SThomas Gleixner  * Values to track state of the timer
51303e967fSThomas Gleixner  *
52303e967fSThomas Gleixner  * Possible states:
53303e967fSThomas Gleixner  *
54303e967fSThomas Gleixner  * 0x00		inactive
55303e967fSThomas Gleixner  * 0x01		enqueued into rbtree
56303e967fSThomas Gleixner  * 0x02		callback function running
5753370d2eSThomas Gleixner  * 0x04		timer is migrated to another cpu
5854cdfdb4SThomas Gleixner  *
59b00c1a99SThomas Gleixner  * Special cases:
60303e967fSThomas Gleixner  * 0x03		callback function running and enqueued
61303e967fSThomas Gleixner  *		(was requeued on another CPU)
6253370d2eSThomas Gleixner  * 0x05		timer was migrated on CPU hotunplug
6353370d2eSThomas Gleixner  *
64303e967fSThomas Gleixner  * The "callback function running and enqueued" status is only possible on
65303e967fSThomas Gleixner  * SMP. It happens for example when a posix timer expired and the callback
66303e967fSThomas Gleixner  * queued a signal. Between dropping the lock which protects the posix timer
67303e967fSThomas Gleixner  * and reacquiring the base lock of the hrtimer, another CPU can deliver the
68303e967fSThomas Gleixner  * signal and rearm the timer. We have to preserve the callback running state,
69303e967fSThomas Gleixner  * as otherwise the timer could be removed before the softirq code finishes the
70303e967fSThomas Gleixner  * the handling of the timer.
71303e967fSThomas Gleixner  *
7253370d2eSThomas Gleixner  * The HRTIMER_STATE_ENQUEUED bit is always or'ed to the current state
7353370d2eSThomas Gleixner  * to preserve the HRTIMER_STATE_CALLBACK in the above scenario. This
7453370d2eSThomas Gleixner  * also affects HRTIMER_STATE_MIGRATE where the preservation is not
7553370d2eSThomas Gleixner  * necessary. HRTIMER_STATE_MIGRATE is cleared after the timer is
7653370d2eSThomas Gleixner  * enqueued on the new cpu.
77303e967fSThomas Gleixner  *
78303e967fSThomas Gleixner  * All state transitions are protected by cpu_base->lock.
79303e967fSThomas Gleixner  */
80303e967fSThomas Gleixner #define HRTIMER_STATE_INACTIVE	0x00
81303e967fSThomas Gleixner #define HRTIMER_STATE_ENQUEUED	0x01
82303e967fSThomas Gleixner #define HRTIMER_STATE_CALLBACK	0x02
83ca109491SPeter Zijlstra #define HRTIMER_STATE_MIGRATE	0x04
84303e967fSThomas Gleixner 
85c0a31329SThomas Gleixner /**
86c0a31329SThomas Gleixner  * struct hrtimer - the basic hrtimer structure
87998adc3dSJohn Stultz  * @node:	timerqueue node, which also manages node.expires,
88998adc3dSJohn Stultz  *		the absolute expiry time in the hrtimers internal
89c0a31329SThomas Gleixner  *		representation. The time is related to the clock on
90592aa999SThomas Gleixner  *		which the timer is based. Is setup by adding
91592aa999SThomas Gleixner  *		slack to the _softexpires value. For non range timers
92592aa999SThomas Gleixner  *		identical to _softexpires.
93592aa999SThomas Gleixner  * @_softexpires: the absolute earliest expiry time of the hrtimer.
94592aa999SThomas Gleixner  *		The time which was given as expiry time when the timer
95592aa999SThomas Gleixner  *		was armed.
96c0a31329SThomas Gleixner  * @function:	timer expiry callback function
97c0a31329SThomas Gleixner  * @base:	pointer to the timer base (per cpu and per clock)
98303e967fSThomas Gleixner  * @state:	state information (See bit values above)
9954cdfdb4SThomas Gleixner  * @start_site:	timer statistics field to store the site where the timer
10054cdfdb4SThomas Gleixner  *		was started
10154cdfdb4SThomas Gleixner  * @start_comm: timer statistics field to store the name of the process which
10254cdfdb4SThomas Gleixner  *		started the timer
10354cdfdb4SThomas Gleixner  * @start_pid: timer statistics field to store the pid of the task which
10454cdfdb4SThomas Gleixner  *		started the timer
105c0a31329SThomas Gleixner  *
10654cdfdb4SThomas Gleixner  * The hrtimer structure must be initialized by hrtimer_init()
107c0a31329SThomas Gleixner  */
108c0a31329SThomas Gleixner struct hrtimer {
109998adc3dSJohn Stultz 	struct timerqueue_node		node;
110654c8e0bSArjan van de Ven 	ktime_t				_softexpires;
111c9cb2e3dSThomas Gleixner 	enum hrtimer_restart		(*function)(struct hrtimer *);
1123c8aa39dSThomas Gleixner 	struct hrtimer_clock_base	*base;
113303e967fSThomas Gleixner 	unsigned long			state;
11482f67cd9SIngo Molnar #ifdef CONFIG_TIMER_STATS
1151b024690SRichard Kennedy 	int				start_pid;
11682f67cd9SIngo Molnar 	void				*start_site;
11782f67cd9SIngo Molnar 	char				start_comm[16];
11882f67cd9SIngo Molnar #endif
119c0a31329SThomas Gleixner };
120c0a31329SThomas Gleixner 
121c0a31329SThomas Gleixner /**
12200362e33SThomas Gleixner  * struct hrtimer_sleeper - simple sleeper structure
12300362e33SThomas Gleixner  * @timer:	embedded timer structure
12400362e33SThomas Gleixner  * @task:	task to wake up
12500362e33SThomas Gleixner  *
12600362e33SThomas Gleixner  * task is set to NULL, when the timer expires.
12700362e33SThomas Gleixner  */
12800362e33SThomas Gleixner struct hrtimer_sleeper {
12900362e33SThomas Gleixner 	struct hrtimer timer;
13000362e33SThomas Gleixner 	struct task_struct *task;
13100362e33SThomas Gleixner };
13200362e33SThomas Gleixner 
13300362e33SThomas Gleixner /**
134d1d67174SAndres Salomon  * struct hrtimer_clock_base - the timer base for a specific clock
13505fb6bf0SRandy Dunlap  * @cpu_base:		per cpu clock base
1363c8aa39dSThomas Gleixner  * @index:		clock type index for per_cpu support when moving a
1373c8aa39dSThomas Gleixner  *			timer to a base on another cpu.
1384d258b25SVitaliy Ivanov  * @clockid:		clock id for per_cpu support
139c0a31329SThomas Gleixner  * @active:		red black tree root node for the active timers
140c0a31329SThomas Gleixner  * @resolution:		the resolution of the clock, in nanoseconds
141c0a31329SThomas Gleixner  * @get_time:		function to retrieve the current time of the clock
14292127c7aSThomas Gleixner  * @softirq_time:	the time when running the hrtimer queue in the softirq
14354cdfdb4SThomas Gleixner  * @offset:		offset of this clock to the monotonic base
144c0a31329SThomas Gleixner  */
1453c8aa39dSThomas Gleixner struct hrtimer_clock_base {
1463c8aa39dSThomas Gleixner 	struct hrtimer_cpu_base	*cpu_base;
147ab8177bcSThomas Gleixner 	int			index;
148ab8177bcSThomas Gleixner 	clockid_t		clockid;
149998adc3dSJohn Stultz 	struct timerqueue_head	active;
150e2787630SThomas Gleixner 	ktime_t			resolution;
151c0a31329SThomas Gleixner 	ktime_t			(*get_time)(void);
15292127c7aSThomas Gleixner 	ktime_t			softirq_time;
15354cdfdb4SThomas Gleixner 	ktime_t			offset;
1543c8aa39dSThomas Gleixner };
1553c8aa39dSThomas Gleixner 
156e06383dbSJohn Stultz enum  hrtimer_base_type {
157e06383dbSJohn Stultz 	HRTIMER_BASE_MONOTONIC,
15868fa61c0SThomas Gleixner 	HRTIMER_BASE_REALTIME,
15970a08ccaSJohn Stultz 	HRTIMER_BASE_BOOTTIME,
160e06383dbSJohn Stultz 	HRTIMER_MAX_CLOCK_BASES,
161e06383dbSJohn Stultz };
1623c8aa39dSThomas Gleixner 
1633c8aa39dSThomas Gleixner /*
1643c8aa39dSThomas Gleixner  * struct hrtimer_cpu_base - the per cpu clock bases
1653c8aa39dSThomas Gleixner  * @lock:		lock protecting the base and associated clock bases
1663c8aa39dSThomas Gleixner  *			and timers
167ab8177bcSThomas Gleixner  * @active_bases:	Bitfield to mark bases with active timers
168*f55a6faaSJohn Stultz  * @clock_was_set:	Indicates that clock was set from irq context.
16954cdfdb4SThomas Gleixner  * @expires_next:	absolute time of the next event which was scheduled
17054cdfdb4SThomas Gleixner  *			via clock_set_next_event()
17154cdfdb4SThomas Gleixner  * @hres_active:	State of high resolution mode
17241d2e494SThomas Gleixner  * @hang_detected:	The last hrtimer interrupt detected a hang
17341d2e494SThomas Gleixner  * @nr_events:		Total number of hrtimer interrupt events
17441d2e494SThomas Gleixner  * @nr_retries:		Total number of hrtimer interrupt retries
17541d2e494SThomas Gleixner  * @nr_hangs:		Total number of hrtimer interrupt hangs
17641d2e494SThomas Gleixner  * @max_hang_time:	Maximum time spent in hrtimer_interrupt
177ab8177bcSThomas Gleixner  * @clock_base:		array of clock bases for this cpu
1783c8aa39dSThomas Gleixner  */
1793c8aa39dSThomas Gleixner struct hrtimer_cpu_base {
180ecb49d1aSThomas Gleixner 	raw_spinlock_t			lock;
181*f55a6faaSJohn Stultz 	unsigned int			active_bases;
182*f55a6faaSJohn Stultz 	unsigned int			clock_was_set;
18354cdfdb4SThomas Gleixner #ifdef CONFIG_HIGH_RES_TIMERS
18454cdfdb4SThomas Gleixner 	ktime_t				expires_next;
18554cdfdb4SThomas Gleixner 	int				hres_active;
18641d2e494SThomas Gleixner 	int				hang_detected;
18754cdfdb4SThomas Gleixner 	unsigned long			nr_events;
18841d2e494SThomas Gleixner 	unsigned long			nr_retries;
18941d2e494SThomas Gleixner 	unsigned long			nr_hangs;
19041d2e494SThomas Gleixner 	ktime_t				max_hang_time;
19154cdfdb4SThomas Gleixner #endif
192f24444b0SThomas Gleixner 	struct hrtimer_clock_base	clock_base[HRTIMER_MAX_CLOCK_BASES];
193c0a31329SThomas Gleixner };
194c0a31329SThomas Gleixner 
19563ca243bSArjan van de Ven static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time)
19663ca243bSArjan van de Ven {
197998adc3dSJohn Stultz 	timer->node.expires = time;
198654c8e0bSArjan van de Ven 	timer->_softexpires = time;
19963ca243bSArjan van de Ven }
200654c8e0bSArjan van de Ven 
201654c8e0bSArjan van de Ven static inline void hrtimer_set_expires_range(struct hrtimer *timer, ktime_t time, ktime_t delta)
202654c8e0bSArjan van de Ven {
203654c8e0bSArjan van de Ven 	timer->_softexpires = time;
204998adc3dSJohn Stultz 	timer->node.expires = ktime_add_safe(time, delta);
205654c8e0bSArjan van de Ven }
206654c8e0bSArjan van de Ven 
207654c8e0bSArjan van de Ven static inline void hrtimer_set_expires_range_ns(struct hrtimer *timer, ktime_t time, unsigned long delta)
208654c8e0bSArjan van de Ven {
209654c8e0bSArjan van de Ven 	timer->_softexpires = time;
210998adc3dSJohn Stultz 	timer->node.expires = ktime_add_safe(time, ns_to_ktime(delta));
211654c8e0bSArjan van de Ven }
212654c8e0bSArjan van de Ven 
21363ca243bSArjan van de Ven static inline void hrtimer_set_expires_tv64(struct hrtimer *timer, s64 tv64)
21463ca243bSArjan van de Ven {
215998adc3dSJohn Stultz 	timer->node.expires.tv64 = tv64;
216654c8e0bSArjan van de Ven 	timer->_softexpires.tv64 = tv64;
21763ca243bSArjan van de Ven }
21863ca243bSArjan van de Ven 
21963ca243bSArjan van de Ven static inline void hrtimer_add_expires(struct hrtimer *timer, ktime_t time)
22063ca243bSArjan van de Ven {
221998adc3dSJohn Stultz 	timer->node.expires = ktime_add_safe(timer->node.expires, time);
222654c8e0bSArjan van de Ven 	timer->_softexpires = ktime_add_safe(timer->_softexpires, time);
22363ca243bSArjan van de Ven }
22463ca243bSArjan van de Ven 
2257597bc94SDavid Howells static inline void hrtimer_add_expires_ns(struct hrtimer *timer, u64 ns)
22663ca243bSArjan van de Ven {
227998adc3dSJohn Stultz 	timer->node.expires = ktime_add_ns(timer->node.expires, ns);
228654c8e0bSArjan van de Ven 	timer->_softexpires = ktime_add_ns(timer->_softexpires, ns);
22963ca243bSArjan van de Ven }
23063ca243bSArjan van de Ven 
23163ca243bSArjan van de Ven static inline ktime_t hrtimer_get_expires(const struct hrtimer *timer)
23263ca243bSArjan van de Ven {
233998adc3dSJohn Stultz 	return timer->node.expires;
23463ca243bSArjan van de Ven }
23563ca243bSArjan van de Ven 
236654c8e0bSArjan van de Ven static inline ktime_t hrtimer_get_softexpires(const struct hrtimer *timer)
237654c8e0bSArjan van de Ven {
238654c8e0bSArjan van de Ven 	return timer->_softexpires;
239654c8e0bSArjan van de Ven }
240654c8e0bSArjan van de Ven 
24163ca243bSArjan van de Ven static inline s64 hrtimer_get_expires_tv64(const struct hrtimer *timer)
24263ca243bSArjan van de Ven {
243998adc3dSJohn Stultz 	return timer->node.expires.tv64;
24463ca243bSArjan van de Ven }
245654c8e0bSArjan van de Ven static inline s64 hrtimer_get_softexpires_tv64(const struct hrtimer *timer)
246654c8e0bSArjan van de Ven {
247654c8e0bSArjan van de Ven 	return timer->_softexpires.tv64;
248654c8e0bSArjan van de Ven }
24963ca243bSArjan van de Ven 
25063ca243bSArjan van de Ven static inline s64 hrtimer_get_expires_ns(const struct hrtimer *timer)
25163ca243bSArjan van de Ven {
252998adc3dSJohn Stultz 	return ktime_to_ns(timer->node.expires);
25363ca243bSArjan van de Ven }
25463ca243bSArjan van de Ven 
25563ca243bSArjan van de Ven static inline ktime_t hrtimer_expires_remaining(const struct hrtimer *timer)
25663ca243bSArjan van de Ven {
257998adc3dSJohn Stultz 	return ktime_sub(timer->node.expires, timer->base->get_time());
25863ca243bSArjan van de Ven }
25963ca243bSArjan van de Ven 
26054cdfdb4SThomas Gleixner #ifdef CONFIG_HIGH_RES_TIMERS
26154cdfdb4SThomas Gleixner struct clock_event_device;
26254cdfdb4SThomas Gleixner 
26354cdfdb4SThomas Gleixner extern void hrtimer_interrupt(struct clock_event_device *dev);
26454cdfdb4SThomas Gleixner 
26554cdfdb4SThomas Gleixner /*
26654cdfdb4SThomas Gleixner  * In high resolution mode the time reference must be read accurate
26754cdfdb4SThomas Gleixner  */
26854cdfdb4SThomas Gleixner static inline ktime_t hrtimer_cb_get_time(struct hrtimer *timer)
26954cdfdb4SThomas Gleixner {
27054cdfdb4SThomas Gleixner 	return timer->base->get_time();
27154cdfdb4SThomas Gleixner }
27254cdfdb4SThomas Gleixner 
2738f4d37ecSPeter Zijlstra static inline int hrtimer_is_hres_active(struct hrtimer *timer)
2748f4d37ecSPeter Zijlstra {
2758f4d37ecSPeter Zijlstra 	return timer->base->cpu_base->hres_active;
2768f4d37ecSPeter Zijlstra }
2778f4d37ecSPeter Zijlstra 
2782075eb8dSArjan van de Ven extern void hrtimer_peek_ahead_timers(void);
2792075eb8dSArjan van de Ven 
28054cdfdb4SThomas Gleixner /*
28154cdfdb4SThomas Gleixner  * The resolution of the clocks. The resolution value is returned in
28254cdfdb4SThomas Gleixner  * the clock_getres() system call to give application programmers an
28354cdfdb4SThomas Gleixner  * idea of the (in)accuracy of timers. Timer values are rounded up to
28454cdfdb4SThomas Gleixner  * this resolution values.
28554cdfdb4SThomas Gleixner  */
286151db1fcSTony Breeds # define HIGH_RES_NSEC		1
287151db1fcSTony Breeds # define KTIME_HIGH_RES		(ktime_t) { .tv64 = HIGH_RES_NSEC }
288151db1fcSTony Breeds # define MONOTONIC_RES_NSEC	HIGH_RES_NSEC
28954cdfdb4SThomas Gleixner # define KTIME_MONOTONIC_RES	KTIME_HIGH_RES
29054cdfdb4SThomas Gleixner 
291*f55a6faaSJohn Stultz extern void clock_was_set_delayed(void);
292*f55a6faaSJohn Stultz 
29354cdfdb4SThomas Gleixner #else
29454cdfdb4SThomas Gleixner 
295151db1fcSTony Breeds # define MONOTONIC_RES_NSEC	LOW_RES_NSEC
29654cdfdb4SThomas Gleixner # define KTIME_MONOTONIC_RES	KTIME_LOW_RES
29754cdfdb4SThomas Gleixner 
2982075eb8dSArjan van de Ven static inline void hrtimer_peek_ahead_timers(void) { }
29954cdfdb4SThomas Gleixner 
30054cdfdb4SThomas Gleixner /*
30154cdfdb4SThomas Gleixner  * In non high resolution mode the time reference is taken from
30254cdfdb4SThomas Gleixner  * the base softirq time variable.
30354cdfdb4SThomas Gleixner  */
30454cdfdb4SThomas Gleixner static inline ktime_t hrtimer_cb_get_time(struct hrtimer *timer)
30554cdfdb4SThomas Gleixner {
30654cdfdb4SThomas Gleixner 	return timer->base->softirq_time;
30754cdfdb4SThomas Gleixner }
30854cdfdb4SThomas Gleixner 
3098f4d37ecSPeter Zijlstra static inline int hrtimer_is_hres_active(struct hrtimer *timer)
3108f4d37ecSPeter Zijlstra {
3118f4d37ecSPeter Zijlstra 	return 0;
3128f4d37ecSPeter Zijlstra }
313*f55a6faaSJohn Stultz 
314*f55a6faaSJohn Stultz static inline void clock_was_set_delayed(void) { }
315*f55a6faaSJohn Stultz 
31654cdfdb4SThomas Gleixner #endif
31754cdfdb4SThomas Gleixner 
318b12a03ceSThomas Gleixner extern void clock_was_set(void);
3199ec26907SThomas Gleixner #ifdef CONFIG_TIMERFD
3209ec26907SThomas Gleixner extern void timerfd_clock_was_set(void);
3219ec26907SThomas Gleixner #else
3229ec26907SThomas Gleixner static inline void timerfd_clock_was_set(void) { }
3239ec26907SThomas Gleixner #endif
324b12a03ceSThomas Gleixner extern void hrtimers_resume(void);
325b12a03ceSThomas Gleixner 
326d316c57fSThomas Gleixner extern ktime_t ktime_get(void);
327d316c57fSThomas Gleixner extern ktime_t ktime_get_real(void);
328abb3a4eaSJohn Stultz extern ktime_t ktime_get_boottime(void);
32999ee5315SThomas Gleixner extern ktime_t ktime_get_monotonic_offset(void);
330becf8b5dSThomas Gleixner 
3312e94d1f7SArjan van de Ven DECLARE_PER_CPU(struct tick_device, tick_cpu_device);
3322e94d1f7SArjan van de Ven 
3332e94d1f7SArjan van de Ven 
334c0a31329SThomas Gleixner /* Exported timer functions: */
335c0a31329SThomas Gleixner 
336c0a31329SThomas Gleixner /* Initialize timers: */
3377978672cSGeorge Anzinger extern void hrtimer_init(struct hrtimer *timer, clockid_t which_clock,
3387978672cSGeorge Anzinger 			 enum hrtimer_mode mode);
339c0a31329SThomas Gleixner 
340237fc6e7SThomas Gleixner #ifdef CONFIG_DEBUG_OBJECTS_TIMERS
341237fc6e7SThomas Gleixner extern void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t which_clock,
342237fc6e7SThomas Gleixner 				  enum hrtimer_mode mode);
343237fc6e7SThomas Gleixner 
344237fc6e7SThomas Gleixner extern void destroy_hrtimer_on_stack(struct hrtimer *timer);
345237fc6e7SThomas Gleixner #else
346237fc6e7SThomas Gleixner static inline void hrtimer_init_on_stack(struct hrtimer *timer,
347237fc6e7SThomas Gleixner 					 clockid_t which_clock,
348237fc6e7SThomas Gleixner 					 enum hrtimer_mode mode)
349237fc6e7SThomas Gleixner {
350237fc6e7SThomas Gleixner 	hrtimer_init(timer, which_clock, mode);
351237fc6e7SThomas Gleixner }
352237fc6e7SThomas Gleixner static inline void destroy_hrtimer_on_stack(struct hrtimer *timer) { }
353237fc6e7SThomas Gleixner #endif
354237fc6e7SThomas Gleixner 
355c0a31329SThomas Gleixner /* Basic timer operations: */
356c0a31329SThomas Gleixner extern int hrtimer_start(struct hrtimer *timer, ktime_t tim,
357c0a31329SThomas Gleixner 			 const enum hrtimer_mode mode);
358da8f2e17SArjan van de Ven extern int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
359da8f2e17SArjan van de Ven 			unsigned long range_ns, const enum hrtimer_mode mode);
3607f1e2ca9SPeter Zijlstra extern int
3617f1e2ca9SPeter Zijlstra __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
3627f1e2ca9SPeter Zijlstra 			 unsigned long delta_ns,
3637f1e2ca9SPeter Zijlstra 			 const enum hrtimer_mode mode, int wakeup);
3647f1e2ca9SPeter Zijlstra 
365c0a31329SThomas Gleixner extern int hrtimer_cancel(struct hrtimer *timer);
366c0a31329SThomas Gleixner extern int hrtimer_try_to_cancel(struct hrtimer *timer);
367c0a31329SThomas Gleixner 
36863ca243bSArjan van de Ven static inline int hrtimer_start_expires(struct hrtimer *timer,
36963ca243bSArjan van de Ven 						enum hrtimer_mode mode)
37063ca243bSArjan van de Ven {
371da8f2e17SArjan van de Ven 	unsigned long delta;
372da8f2e17SArjan van de Ven 	ktime_t soft, hard;
373da8f2e17SArjan van de Ven 	soft = hrtimer_get_softexpires(timer);
374da8f2e17SArjan van de Ven 	hard = hrtimer_get_expires(timer);
375da8f2e17SArjan van de Ven 	delta = ktime_to_ns(ktime_sub(hard, soft));
3764ce105d3SArjan van de Ven 	return hrtimer_start_range_ns(timer, soft, delta, mode);
37763ca243bSArjan van de Ven }
37863ca243bSArjan van de Ven 
379c9cb2e3dSThomas Gleixner static inline int hrtimer_restart(struct hrtimer *timer)
380c9cb2e3dSThomas Gleixner {
381654c8e0bSArjan van de Ven 	return hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
382c9cb2e3dSThomas Gleixner }
383c0a31329SThomas Gleixner 
384c0a31329SThomas Gleixner /* Query timers: */
385c0a31329SThomas Gleixner extern ktime_t hrtimer_get_remaining(const struct hrtimer *timer);
386c0a31329SThomas Gleixner extern int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp);
387c0a31329SThomas Gleixner 
38869239749STony Lindgren extern ktime_t hrtimer_get_next_event(void);
38969239749STony Lindgren 
390303e967fSThomas Gleixner /*
39153370d2eSThomas Gleixner  * A timer is active, when it is enqueued into the rbtree or the
39253370d2eSThomas Gleixner  * callback function is running or it's in the state of being migrated
39353370d2eSThomas Gleixner  * to another cpu.
394303e967fSThomas Gleixner  */
395c0a31329SThomas Gleixner static inline int hrtimer_active(const struct hrtimer *timer)
396c0a31329SThomas Gleixner {
397303e967fSThomas Gleixner 	return timer->state != HRTIMER_STATE_INACTIVE;
398c0a31329SThomas Gleixner }
399c0a31329SThomas Gleixner 
40054cdfdb4SThomas Gleixner /*
40154cdfdb4SThomas Gleixner  * Helper function to check, whether the timer is on one of the queues
40254cdfdb4SThomas Gleixner  */
40354cdfdb4SThomas Gleixner static inline int hrtimer_is_queued(struct hrtimer *timer)
40454cdfdb4SThomas Gleixner {
405ca109491SPeter Zijlstra 	return timer->state & HRTIMER_STATE_ENQUEUED;
40654cdfdb4SThomas Gleixner }
40754cdfdb4SThomas Gleixner 
4084346f654SOliver Hartkopp /*
4094346f654SOliver Hartkopp  * Helper function to check, whether the timer is running the callback
4104346f654SOliver Hartkopp  * function
4114346f654SOliver Hartkopp  */
4124346f654SOliver Hartkopp static inline int hrtimer_callback_running(struct hrtimer *timer)
4134346f654SOliver Hartkopp {
4144346f654SOliver Hartkopp 	return timer->state & HRTIMER_STATE_CALLBACK;
4154346f654SOliver Hartkopp }
4164346f654SOliver Hartkopp 
417c0a31329SThomas Gleixner /* Forward a hrtimer so it expires after now: */
4184d672e7aSDavide Libenzi extern u64
41944f21475SRoman Zippel hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval);
420c0a31329SThomas Gleixner 
4215e05ad7dSDavide Libenzi /* Forward a hrtimer so it expires after the hrtimer's current now */
4224d672e7aSDavide Libenzi static inline u64 hrtimer_forward_now(struct hrtimer *timer,
4235e05ad7dSDavide Libenzi 				      ktime_t interval)
4245e05ad7dSDavide Libenzi {
4255e05ad7dSDavide Libenzi 	return hrtimer_forward(timer, timer->base->get_time(), interval);
4265e05ad7dSDavide Libenzi }
4275e05ad7dSDavide Libenzi 
42810c94ec1SThomas Gleixner /* Precise sleep: */
42910c94ec1SThomas Gleixner extern long hrtimer_nanosleep(struct timespec *rqtp,
430080344b9SOleg Nesterov 			      struct timespec __user *rmtp,
43110c94ec1SThomas Gleixner 			      const enum hrtimer_mode mode,
43210c94ec1SThomas Gleixner 			      const clockid_t clockid);
4331711ef38SToyo Abe extern long hrtimer_nanosleep_restart(struct restart_block *restart_block);
43410c94ec1SThomas Gleixner 
43500362e33SThomas Gleixner extern void hrtimer_init_sleeper(struct hrtimer_sleeper *sl,
43600362e33SThomas Gleixner 				 struct task_struct *tsk);
43700362e33SThomas Gleixner 
438654c8e0bSArjan van de Ven extern int schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
439654c8e0bSArjan van de Ven 						const enum hrtimer_mode mode);
440351b3f7aSCarsten Emde extern int schedule_hrtimeout_range_clock(ktime_t *expires,
441351b3f7aSCarsten Emde 		unsigned long delta, const enum hrtimer_mode mode, int clock);
4427bb67439SArjan van de Ven extern int schedule_hrtimeout(ktime_t *expires, const enum hrtimer_mode mode);
4437bb67439SArjan van de Ven 
444c0a31329SThomas Gleixner /* Soft interrupt function to run the hrtimer queues: */
445c0a31329SThomas Gleixner extern void hrtimer_run_queues(void);
446d3d74453SPeter Zijlstra extern void hrtimer_run_pending(void);
447c0a31329SThomas Gleixner 
448c0a31329SThomas Gleixner /* Bootup initialization: */
449c0a31329SThomas Gleixner extern void __init hrtimers_init(void);
450c0a31329SThomas Gleixner 
45179bf2bb3SThomas Gleixner #if BITS_PER_LONG < 64
4524d672e7aSDavide Libenzi extern u64 ktime_divns(const ktime_t kt, s64 div);
45379bf2bb3SThomas Gleixner #else /* BITS_PER_LONG < 64 */
4544d672e7aSDavide Libenzi # define ktime_divns(kt, div)		(u64)((kt).tv64 / (div))
45579bf2bb3SThomas Gleixner #endif
45679bf2bb3SThomas Gleixner 
45788ad0bf6SIngo Molnar /* Show pending timers: */
45888ad0bf6SIngo Molnar extern void sysrq_timer_list_show(void);
45988ad0bf6SIngo Molnar 
460c0a31329SThomas Gleixner #endif
461