2 * include/linux/hrtimer.h
4 * hrtimers - High-resolution kernel timers
6 * Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de>
7 * Copyright(C) 2005, Red Hat, Inc., Ingo Molnar
9 * data type definitions, declarations, prototypes
11 * Started by: Thomas Gleixner and Ingo Molnar
13 * For licencing details see kernel-base/COPYING
15 #ifndef _LINUX_HRTIMER_H
16 #define _LINUX_HRTIMER_H
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>
25 * Mode arguments of xxx_hrtimer functions:
28 HRTIMER_ABS
, /* Time value is absolute */
29 HRTIMER_REL
, /* Time value is relative to now */
32 enum hrtimer_restart
{
37 #define HRTIMER_INACTIVE ((void *)1UL)
42 * struct hrtimer - the basic hrtimer structure
44 * @node: red black tree node for time ordered insertion
45 * @expires: the absolute expiry time in the hrtimers internal
46 * representation. The time is related to the clock on
47 * which the timer is based.
48 * @function: timer expiry callback function
49 * @base: pointer to the timer base (per cpu and per clock)
51 * The hrtimer structure must be initialized by init_hrtimer_#CLOCKTYPE()
56 int (*function
)(struct hrtimer
*);
57 struct hrtimer_base
*base
;
61 * struct hrtimer_sleeper - simple sleeper structure
63 * @timer: embedded timer structure
64 * @task: task to wake up
66 * task is set to NULL, when the timer expires.
68 struct hrtimer_sleeper
{
70 struct task_struct
*task
;
74 * struct hrtimer_base - the timer base for a specific clock
76 * @index: clock type index for per_cpu support when moving a timer
77 * to a base on another cpu.
78 * @lock: lock protecting the base and associated timers
79 * @active: red black tree root node for the active timers
80 * @first: pointer to the timer node which expires first
81 * @resolution: the resolution of the clock, in nanoseconds
82 * @get_time: function to retrieve the current time of the clock
83 * @get_softirq_time: function to retrieve the current time from the softirq
84 * @curr_timer: the timer which is executing a callback right now
85 * @softirq_time: the time when running the hrtimer queue in the softirq
90 struct rb_root active
;
91 struct rb_node
*first
;
93 ktime_t (*get_time
)(void);
94 ktime_t (*get_softirq_time
)(void);
95 struct hrtimer
*curr_timer
;
100 * clock_was_set() is a NOP for non- high-resolution systems. The
101 * time-sorted order guarantees that a timer does not expire early and
102 * is expired in the next softirq when the clock was advanced.
104 #define clock_was_set() do { } while (0)
106 /* Exported timer functions: */
108 /* Initialize timers: */
109 extern void hrtimer_init(struct hrtimer
*timer
, clockid_t which_clock
,
110 enum hrtimer_mode mode
);
112 /* Basic timer operations: */
113 extern int hrtimer_start(struct hrtimer
*timer
, ktime_t tim
,
114 const enum hrtimer_mode mode
);
115 extern int hrtimer_cancel(struct hrtimer
*timer
);
116 extern int hrtimer_try_to_cancel(struct hrtimer
*timer
);
118 #define hrtimer_restart(timer) hrtimer_start((timer), (timer)->expires, HRTIMER_ABS)
121 extern ktime_t
hrtimer_get_remaining(const struct hrtimer
*timer
);
122 extern int hrtimer_get_res(const clockid_t which_clock
, struct timespec
*tp
);
124 #ifdef CONFIG_NO_IDLE_HZ
125 extern ktime_t
hrtimer_get_next_event(void);
128 static inline int hrtimer_active(const struct hrtimer
*timer
)
130 return timer
->node
.rb_parent
!= HRTIMER_INACTIVE
;
133 /* Forward a hrtimer so it expires after now: */
135 hrtimer_forward(struct hrtimer
*timer
, ktime_t now
, ktime_t interval
);
138 extern long hrtimer_nanosleep(struct timespec
*rqtp
,
139 struct timespec __user
*rmtp
,
140 const enum hrtimer_mode mode
,
141 const clockid_t clockid
);
143 extern void hrtimer_init_sleeper(struct hrtimer_sleeper
*sl
,
144 struct task_struct
*tsk
);
146 /* Soft interrupt function to run the hrtimer queues: */
147 extern void hrtimer_run_queues(void);
149 /* Bootup initialization: */
150 extern void __init
hrtimers_init(void);