xref: /linux-6.15/include/linux/hrtimer.h (revision e19ffe8b)
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)
99e2e680fbSViresh Kumar  * @start_pid: timer statistics field to store the pid of the task which
100e2e680fbSViresh Kumar  *		started the timer
10154cdfdb4SThomas Gleixner  * @start_site:	timer statistics field to store the site where the timer
10254cdfdb4SThomas Gleixner  *		was started
10354cdfdb4SThomas Gleixner  * @start_comm: timer statistics field to store the name of the process 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  * @get_time:		function to retrieve the current time of the clock
14154cdfdb4SThomas Gleixner  * @offset:		offset of this clock to the monotonic base
142c0a31329SThomas Gleixner  */
1433c8aa39dSThomas Gleixner struct hrtimer_clock_base {
1443c8aa39dSThomas Gleixner 	struct hrtimer_cpu_base	*cpu_base;
145ab8177bcSThomas Gleixner 	int			index;
146ab8177bcSThomas Gleixner 	clockid_t		clockid;
147998adc3dSJohn Stultz 	struct timerqueue_head	active;
148c0a31329SThomas Gleixner 	ktime_t			(*get_time)(void);
14954cdfdb4SThomas Gleixner 	ktime_t			offset;
1503c8aa39dSThomas Gleixner };
1513c8aa39dSThomas Gleixner 
152e06383dbSJohn Stultz enum  hrtimer_base_type {
153e06383dbSJohn Stultz 	HRTIMER_BASE_MONOTONIC,
15468fa61c0SThomas Gleixner 	HRTIMER_BASE_REALTIME,
15570a08ccaSJohn Stultz 	HRTIMER_BASE_BOOTTIME,
15690adda98SJohn Stultz 	HRTIMER_BASE_TAI,
157e06383dbSJohn Stultz 	HRTIMER_MAX_CLOCK_BASES,
158e06383dbSJohn Stultz };
1593c8aa39dSThomas Gleixner 
1603c8aa39dSThomas Gleixner /*
1613c8aa39dSThomas Gleixner  * struct hrtimer_cpu_base - the per cpu clock bases
1623c8aa39dSThomas Gleixner  * @lock:		lock protecting the base and associated clock bases
1633c8aa39dSThomas Gleixner  *			and timers
164cddd0248SViresh Kumar  * @cpu:		cpu number
165ab8177bcSThomas Gleixner  * @active_bases:	Bitfield to mark bases with active timers
166868a3e91SThomas Gleixner  * @clock_was_set_seq:	Sequence counter of clock was set events
16754cdfdb4SThomas Gleixner  * @expires_next:	absolute time of the next event which was scheduled
16854cdfdb4SThomas Gleixner  *			via clock_set_next_event()
1699bc74919SThomas Gleixner  * @in_hrtirq:		hrtimer_interrupt() is currently executing
17054cdfdb4SThomas Gleixner  * @hres_active:	State of high resolution mode
17141d2e494SThomas Gleixner  * @hang_detected:	The last hrtimer interrupt detected a hang
17241d2e494SThomas Gleixner  * @nr_events:		Total number of hrtimer interrupt events
17341d2e494SThomas Gleixner  * @nr_retries:		Total number of hrtimer interrupt retries
17441d2e494SThomas Gleixner  * @nr_hangs:		Total number of hrtimer interrupt hangs
17541d2e494SThomas Gleixner  * @max_hang_time:	Maximum time spent in hrtimer_interrupt
176ab8177bcSThomas Gleixner  * @clock_base:		array of clock bases for this cpu
1773c8aa39dSThomas Gleixner  */
1783c8aa39dSThomas Gleixner struct hrtimer_cpu_base {
179ecb49d1aSThomas Gleixner 	raw_spinlock_t			lock;
180cddd0248SViresh Kumar 	unsigned int			cpu;
181f55a6faaSJohn Stultz 	unsigned int			active_bases;
182868a3e91SThomas Gleixner 	unsigned int			clock_was_set_seq;
18354cdfdb4SThomas Gleixner #ifdef CONFIG_HIGH_RES_TIMERS
184*e19ffe8bSThomas Gleixner 	unsigned int			in_hrtirq	: 1,
185*e19ffe8bSThomas Gleixner 					hres_active	: 1,
186*e19ffe8bSThomas Gleixner 					hang_detected	: 1;
18754cdfdb4SThomas Gleixner 	ktime_t				expires_next;
188a6ffebceSThomas Gleixner 	unsigned int			nr_events;
189a6ffebceSThomas Gleixner 	unsigned int			nr_retries;
190a6ffebceSThomas Gleixner 	unsigned int			nr_hangs;
191a6ffebceSThomas Gleixner 	unsigned int			max_hang_time;
19254cdfdb4SThomas Gleixner #endif
193f24444b0SThomas Gleixner 	struct hrtimer_clock_base	clock_base[HRTIMER_MAX_CLOCK_BASES];
194c0a31329SThomas Gleixner };
195c0a31329SThomas Gleixner 
19663ca243bSArjan van de Ven static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time)
19763ca243bSArjan van de Ven {
198998adc3dSJohn Stultz 	timer->node.expires = time;
199654c8e0bSArjan van de Ven 	timer->_softexpires = time;
20063ca243bSArjan van de Ven }
201654c8e0bSArjan van de Ven 
202654c8e0bSArjan van de Ven static inline void hrtimer_set_expires_range(struct hrtimer *timer, ktime_t time, ktime_t delta)
203654c8e0bSArjan van de Ven {
204654c8e0bSArjan van de Ven 	timer->_softexpires = time;
205998adc3dSJohn Stultz 	timer->node.expires = ktime_add_safe(time, delta);
206654c8e0bSArjan van de Ven }
207654c8e0bSArjan van de Ven 
208654c8e0bSArjan van de Ven static inline void hrtimer_set_expires_range_ns(struct hrtimer *timer, ktime_t time, unsigned long delta)
209654c8e0bSArjan van de Ven {
210654c8e0bSArjan van de Ven 	timer->_softexpires = time;
211998adc3dSJohn Stultz 	timer->node.expires = ktime_add_safe(time, ns_to_ktime(delta));
212654c8e0bSArjan van de Ven }
213654c8e0bSArjan van de Ven 
21463ca243bSArjan van de Ven static inline void hrtimer_set_expires_tv64(struct hrtimer *timer, s64 tv64)
21563ca243bSArjan van de Ven {
216998adc3dSJohn Stultz 	timer->node.expires.tv64 = tv64;
217654c8e0bSArjan van de Ven 	timer->_softexpires.tv64 = tv64;
21863ca243bSArjan van de Ven }
21963ca243bSArjan van de Ven 
22063ca243bSArjan van de Ven static inline void hrtimer_add_expires(struct hrtimer *timer, ktime_t time)
22163ca243bSArjan van de Ven {
222998adc3dSJohn Stultz 	timer->node.expires = ktime_add_safe(timer->node.expires, time);
223654c8e0bSArjan van de Ven 	timer->_softexpires = ktime_add_safe(timer->_softexpires, time);
22463ca243bSArjan van de Ven }
22563ca243bSArjan van de Ven 
2267597bc94SDavid Howells static inline void hrtimer_add_expires_ns(struct hrtimer *timer, u64 ns)
22763ca243bSArjan van de Ven {
228998adc3dSJohn Stultz 	timer->node.expires = ktime_add_ns(timer->node.expires, ns);
229654c8e0bSArjan van de Ven 	timer->_softexpires = ktime_add_ns(timer->_softexpires, ns);
23063ca243bSArjan van de Ven }
23163ca243bSArjan van de Ven 
23263ca243bSArjan van de Ven static inline ktime_t hrtimer_get_expires(const struct hrtimer *timer)
23363ca243bSArjan van de Ven {
234998adc3dSJohn Stultz 	return timer->node.expires;
23563ca243bSArjan van de Ven }
23663ca243bSArjan van de Ven 
237654c8e0bSArjan van de Ven static inline ktime_t hrtimer_get_softexpires(const struct hrtimer *timer)
238654c8e0bSArjan van de Ven {
239654c8e0bSArjan van de Ven 	return timer->_softexpires;
240654c8e0bSArjan van de Ven }
241654c8e0bSArjan van de Ven 
24263ca243bSArjan van de Ven static inline s64 hrtimer_get_expires_tv64(const struct hrtimer *timer)
24363ca243bSArjan van de Ven {
244998adc3dSJohn Stultz 	return timer->node.expires.tv64;
24563ca243bSArjan van de Ven }
246654c8e0bSArjan van de Ven static inline s64 hrtimer_get_softexpires_tv64(const struct hrtimer *timer)
247654c8e0bSArjan van de Ven {
248654c8e0bSArjan van de Ven 	return timer->_softexpires.tv64;
249654c8e0bSArjan van de Ven }
25063ca243bSArjan van de Ven 
25163ca243bSArjan van de Ven static inline s64 hrtimer_get_expires_ns(const struct hrtimer *timer)
25263ca243bSArjan van de Ven {
253998adc3dSJohn Stultz 	return ktime_to_ns(timer->node.expires);
25463ca243bSArjan van de Ven }
25563ca243bSArjan van de Ven 
25663ca243bSArjan van de Ven static inline ktime_t hrtimer_expires_remaining(const struct hrtimer *timer)
25763ca243bSArjan van de Ven {
258998adc3dSJohn Stultz 	return ktime_sub(timer->node.expires, timer->base->get_time());
25963ca243bSArjan van de Ven }
26063ca243bSArjan van de Ven 
26154cdfdb4SThomas Gleixner static inline ktime_t hrtimer_cb_get_time(struct hrtimer *timer)
26254cdfdb4SThomas Gleixner {
26354cdfdb4SThomas Gleixner 	return timer->base->get_time();
26454cdfdb4SThomas Gleixner }
26554cdfdb4SThomas Gleixner 
26621d6d52aSThomas Gleixner #ifdef CONFIG_HIGH_RES_TIMERS
26721d6d52aSThomas Gleixner struct clock_event_device;
26821d6d52aSThomas Gleixner 
26921d6d52aSThomas Gleixner extern void hrtimer_interrupt(struct clock_event_device *dev);
27021d6d52aSThomas Gleixner 
2718f4d37ecSPeter Zijlstra static inline int hrtimer_is_hres_active(struct hrtimer *timer)
2728f4d37ecSPeter Zijlstra {
2738f4d37ecSPeter Zijlstra 	return timer->base->cpu_base->hres_active;
2748f4d37ecSPeter Zijlstra }
2758f4d37ecSPeter Zijlstra 
2762075eb8dSArjan van de Ven extern void hrtimer_peek_ahead_timers(void);
2772075eb8dSArjan van de Ven 
27854cdfdb4SThomas Gleixner /*
27954cdfdb4SThomas Gleixner  * The resolution of the clocks. The resolution value is returned in
28054cdfdb4SThomas Gleixner  * the clock_getres() system call to give application programmers an
28154cdfdb4SThomas Gleixner  * idea of the (in)accuracy of timers. Timer values are rounded up to
28254cdfdb4SThomas Gleixner  * this resolution values.
28354cdfdb4SThomas Gleixner  */
284151db1fcSTony Breeds # define HIGH_RES_NSEC		1
285151db1fcSTony Breeds # define KTIME_HIGH_RES		(ktime_t) { .tv64 = HIGH_RES_NSEC }
286151db1fcSTony Breeds # define MONOTONIC_RES_NSEC	HIGH_RES_NSEC
28754cdfdb4SThomas Gleixner # define KTIME_MONOTONIC_RES	KTIME_HIGH_RES
28854cdfdb4SThomas Gleixner 
289f55a6faaSJohn Stultz extern void clock_was_set_delayed(void);
290f55a6faaSJohn Stultz 
291398ca17fSThomas Gleixner extern unsigned int hrtimer_resolution;
292398ca17fSThomas Gleixner 
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 
298398ca17fSThomas Gleixner #define hrtimer_resolution	LOW_RES_NSEC
299398ca17fSThomas Gleixner 
3002075eb8dSArjan van de Ven static inline void hrtimer_peek_ahead_timers(void) { }
30154cdfdb4SThomas Gleixner 
3028f4d37ecSPeter Zijlstra static inline int hrtimer_is_hres_active(struct hrtimer *timer)
3038f4d37ecSPeter Zijlstra {
3048f4d37ecSPeter Zijlstra 	return 0;
3058f4d37ecSPeter Zijlstra }
306f55a6faaSJohn Stultz 
307f55a6faaSJohn Stultz static inline void clock_was_set_delayed(void) { }
308f55a6faaSJohn Stultz 
30954cdfdb4SThomas Gleixner #endif
31054cdfdb4SThomas Gleixner 
311b12a03ceSThomas Gleixner extern void clock_was_set(void);
3129ec26907SThomas Gleixner #ifdef CONFIG_TIMERFD
3139ec26907SThomas Gleixner extern void timerfd_clock_was_set(void);
3149ec26907SThomas Gleixner #else
3159ec26907SThomas Gleixner static inline void timerfd_clock_was_set(void) { }
3169ec26907SThomas Gleixner #endif
317b12a03ceSThomas Gleixner extern void hrtimers_resume(void);
318b12a03ceSThomas Gleixner 
3192e94d1f7SArjan van de Ven DECLARE_PER_CPU(struct tick_device, tick_cpu_device);
3202e94d1f7SArjan van de Ven 
3212e94d1f7SArjan van de Ven 
322c0a31329SThomas Gleixner /* Exported timer functions: */
323c0a31329SThomas Gleixner 
324c0a31329SThomas Gleixner /* Initialize timers: */
3257978672cSGeorge Anzinger extern void hrtimer_init(struct hrtimer *timer, clockid_t which_clock,
3267978672cSGeorge Anzinger 			 enum hrtimer_mode mode);
327c0a31329SThomas Gleixner 
328237fc6e7SThomas Gleixner #ifdef CONFIG_DEBUG_OBJECTS_TIMERS
329237fc6e7SThomas Gleixner extern void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t which_clock,
330237fc6e7SThomas Gleixner 				  enum hrtimer_mode mode);
331237fc6e7SThomas Gleixner 
332237fc6e7SThomas Gleixner extern void destroy_hrtimer_on_stack(struct hrtimer *timer);
333237fc6e7SThomas Gleixner #else
334237fc6e7SThomas Gleixner static inline void hrtimer_init_on_stack(struct hrtimer *timer,
335237fc6e7SThomas Gleixner 					 clockid_t which_clock,
336237fc6e7SThomas Gleixner 					 enum hrtimer_mode mode)
337237fc6e7SThomas Gleixner {
338237fc6e7SThomas Gleixner 	hrtimer_init(timer, which_clock, mode);
339237fc6e7SThomas Gleixner }
340237fc6e7SThomas Gleixner static inline void destroy_hrtimer_on_stack(struct hrtimer *timer) { }
341237fc6e7SThomas Gleixner #endif
342237fc6e7SThomas Gleixner 
343c0a31329SThomas Gleixner /* Basic timer operations: */
344c0a31329SThomas Gleixner extern int hrtimer_start(struct hrtimer *timer, ktime_t tim,
345c0a31329SThomas Gleixner 			 const enum hrtimer_mode mode);
346da8f2e17SArjan van de Ven extern int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
347da8f2e17SArjan van de Ven 			unsigned long range_ns, const enum hrtimer_mode mode);
3487f1e2ca9SPeter Zijlstra extern int
3497f1e2ca9SPeter Zijlstra __hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
3507f1e2ca9SPeter Zijlstra 			 unsigned long delta_ns,
3517f1e2ca9SPeter Zijlstra 			 const enum hrtimer_mode mode, int wakeup);
3527f1e2ca9SPeter Zijlstra 
353c0a31329SThomas Gleixner extern int hrtimer_cancel(struct hrtimer *timer);
354c0a31329SThomas Gleixner extern int hrtimer_try_to_cancel(struct hrtimer *timer);
355c0a31329SThomas Gleixner 
35663ca243bSArjan van de Ven static inline int hrtimer_start_expires(struct hrtimer *timer,
35763ca243bSArjan van de Ven 						enum hrtimer_mode mode)
35863ca243bSArjan van de Ven {
359da8f2e17SArjan van de Ven 	unsigned long delta;
360da8f2e17SArjan van de Ven 	ktime_t soft, hard;
361da8f2e17SArjan van de Ven 	soft = hrtimer_get_softexpires(timer);
362da8f2e17SArjan van de Ven 	hard = hrtimer_get_expires(timer);
363da8f2e17SArjan van de Ven 	delta = ktime_to_ns(ktime_sub(hard, soft));
3644ce105d3SArjan van de Ven 	return hrtimer_start_range_ns(timer, soft, delta, mode);
36563ca243bSArjan van de Ven }
36663ca243bSArjan van de Ven 
367c9cb2e3dSThomas Gleixner static inline int hrtimer_restart(struct hrtimer *timer)
368c9cb2e3dSThomas Gleixner {
369654c8e0bSArjan van de Ven 	return hrtimer_start_expires(timer, HRTIMER_MODE_ABS);
370c9cb2e3dSThomas Gleixner }
371c0a31329SThomas Gleixner 
372c0a31329SThomas Gleixner /* Query timers: */
373c0a31329SThomas Gleixner extern ktime_t hrtimer_get_remaining(const struct hrtimer *timer);
374c0a31329SThomas Gleixner 
37569239749STony Lindgren extern ktime_t hrtimer_get_next_event(void);
37669239749STony Lindgren 
377303e967fSThomas Gleixner /*
37853370d2eSThomas Gleixner  * A timer is active, when it is enqueued into the rbtree or the
37953370d2eSThomas Gleixner  * callback function is running or it's in the state of being migrated
38053370d2eSThomas Gleixner  * to another cpu.
381303e967fSThomas Gleixner  */
382c0a31329SThomas Gleixner static inline int hrtimer_active(const struct hrtimer *timer)
383c0a31329SThomas Gleixner {
384303e967fSThomas Gleixner 	return timer->state != HRTIMER_STATE_INACTIVE;
385c0a31329SThomas Gleixner }
386c0a31329SThomas Gleixner 
38754cdfdb4SThomas Gleixner /*
38854cdfdb4SThomas Gleixner  * Helper function to check, whether the timer is on one of the queues
38954cdfdb4SThomas Gleixner  */
39054cdfdb4SThomas Gleixner static inline int hrtimer_is_queued(struct hrtimer *timer)
39154cdfdb4SThomas Gleixner {
392ca109491SPeter Zijlstra 	return timer->state & HRTIMER_STATE_ENQUEUED;
39354cdfdb4SThomas Gleixner }
39454cdfdb4SThomas Gleixner 
3954346f654SOliver Hartkopp /*
3964346f654SOliver Hartkopp  * Helper function to check, whether the timer is running the callback
3974346f654SOliver Hartkopp  * function
3984346f654SOliver Hartkopp  */
3994346f654SOliver Hartkopp static inline int hrtimer_callback_running(struct hrtimer *timer)
4004346f654SOliver Hartkopp {
4014346f654SOliver Hartkopp 	return timer->state & HRTIMER_STATE_CALLBACK;
4024346f654SOliver Hartkopp }
4034346f654SOliver Hartkopp 
404c0a31329SThomas Gleixner /* Forward a hrtimer so it expires after now: */
4054d672e7aSDavide Libenzi extern u64
40644f21475SRoman Zippel hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval);
407c0a31329SThomas Gleixner 
40891e5a217SThomas Gleixner /**
40991e5a217SThomas Gleixner  * hrtimer_forward_now - forward the timer expiry so it expires after now
41091e5a217SThomas Gleixner  * @timer:	hrtimer to forward
41191e5a217SThomas Gleixner  * @interval:	the interval to forward
41291e5a217SThomas Gleixner  *
41391e5a217SThomas Gleixner  * Forward the timer expiry so it will expire after the current time
41491e5a217SThomas Gleixner  * of the hrtimer clock base. Returns the number of overruns.
41591e5a217SThomas Gleixner  *
41691e5a217SThomas Gleixner  * Can be safely called from the callback function of @timer. If
41791e5a217SThomas Gleixner  * called from other contexts @timer must neither be enqueued nor
41891e5a217SThomas Gleixner  * running the callback and the caller needs to take care of
41991e5a217SThomas Gleixner  * serialization.
42091e5a217SThomas Gleixner  *
42191e5a217SThomas Gleixner  * Note: This only updates the timer expiry value and does not requeue
42291e5a217SThomas Gleixner  * the timer.
42391e5a217SThomas Gleixner  */
4244d672e7aSDavide Libenzi static inline u64 hrtimer_forward_now(struct hrtimer *timer,
4255e05ad7dSDavide Libenzi 				      ktime_t interval)
4265e05ad7dSDavide Libenzi {
4275e05ad7dSDavide Libenzi 	return hrtimer_forward(timer, timer->base->get_time(), interval);
4285e05ad7dSDavide Libenzi }
4295e05ad7dSDavide Libenzi 
43010c94ec1SThomas Gleixner /* Precise sleep: */
43110c94ec1SThomas Gleixner extern long hrtimer_nanosleep(struct timespec *rqtp,
432080344b9SOleg Nesterov 			      struct timespec __user *rmtp,
43310c94ec1SThomas Gleixner 			      const enum hrtimer_mode mode,
43410c94ec1SThomas Gleixner 			      const clockid_t clockid);
4351711ef38SToyo Abe extern long hrtimer_nanosleep_restart(struct restart_block *restart_block);
43610c94ec1SThomas Gleixner 
43700362e33SThomas Gleixner extern void hrtimer_init_sleeper(struct hrtimer_sleeper *sl,
43800362e33SThomas Gleixner 				 struct task_struct *tsk);
43900362e33SThomas Gleixner 
440654c8e0bSArjan van de Ven extern int schedule_hrtimeout_range(ktime_t *expires, unsigned long delta,
441654c8e0bSArjan van de Ven 						const enum hrtimer_mode mode);
442351b3f7aSCarsten Emde extern int schedule_hrtimeout_range_clock(ktime_t *expires,
443351b3f7aSCarsten Emde 		unsigned long delta, const enum hrtimer_mode mode, int clock);
4447bb67439SArjan van de Ven extern int schedule_hrtimeout(ktime_t *expires, const enum hrtimer_mode mode);
4457bb67439SArjan van de Ven 
446c0a31329SThomas Gleixner /* Soft interrupt function to run the hrtimer queues: */
447c0a31329SThomas Gleixner extern void hrtimer_run_queues(void);
448d3d74453SPeter Zijlstra extern void hrtimer_run_pending(void);
449c0a31329SThomas Gleixner 
450c0a31329SThomas Gleixner /* Bootup initialization: */
451c0a31329SThomas Gleixner extern void __init hrtimers_init(void);
452c0a31329SThomas Gleixner 
45388ad0bf6SIngo Molnar /* Show pending timers: */
45488ad0bf6SIngo Molnar extern void sysrq_timer_list_show(void);
45588ad0bf6SIngo Molnar 
456c0a31329SThomas Gleixner #endif
457