blob: 979fefdeb86210c15e318cc7eb8986f813181c75 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_TIMER_H
2#define _LINUX_TIMER_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/list.h>
Ingo Molnar82f67cd2007-02-16 01:28:13 -08005#include <linux/ktime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/stddef.h>
7
Pavel Macheka6fa8e52008-01-30 13:30:00 +01008struct tvec_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10struct timer_list {
11 struct list_head entry;
12 unsigned long expires;
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 void (*function)(unsigned long);
15 unsigned long data;
16
Pavel Macheka6fa8e52008-01-30 13:30:00 +010017 struct tvec_base *base;
Ingo Molnar82f67cd2007-02-16 01:28:13 -080018#ifdef CONFIG_TIMER_STATS
19 void *start_site;
20 char start_comm[16];
21 int start_pid;
22#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};
24
Pavel Macheka6fa8e52008-01-30 13:30:00 +010025extern struct tvec_base boot_tvec_bases;
Oleg Nesterov55c888d2005-06-23 00:08:56 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define TIMER_INITIALIZER(_function, _expires, _data) { \
28 .function = (_function), \
29 .expires = (_expires), \
30 .data = (_data), \
Oleg Nesterov3691c512006-03-31 02:30:30 -080031 .base = &boot_tvec_bases, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 }
33
Ingo Molnar8d06afa2005-09-09 13:10:40 -070034#define DEFINE_TIMER(_name, _function, _expires, _data) \
35 struct timer_list _name = \
36 TIMER_INITIALIZER(_function, _expires, _data)
37
Harvey Harrisonec701582008-02-08 04:19:55 -080038void init_timer(struct timer_list *timer);
39void init_timer_deferrable(struct timer_list *timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Oleg Nesterova8db2db2005-10-30 15:01:38 -080041static inline void setup_timer(struct timer_list * timer,
42 void (*function)(unsigned long),
43 unsigned long data)
44{
45 timer->function = function;
46 timer->data = data;
47 init_timer(timer);
48}
49
Robert P. J. Day45f8bde2007-01-26 00:57:09 -080050/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * timer_pending - is a timer pending?
52 * @timer: the timer in question
53 *
54 * timer_pending will tell whether a given timer is currently pending,
55 * or not. Callers must ensure serialization wrt. other operations done
56 * to this timer, eg. interrupt contexts, or other CPUs on SMP.
57 *
58 * return value: 1 if the timer is pending, 0 if not.
59 */
60static inline int timer_pending(const struct timer_list * timer)
61{
Oleg Nesterov55c888d2005-06-23 00:08:56 -070062 return timer->entry.next != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65extern void add_timer_on(struct timer_list *timer, int cpu);
66extern int del_timer(struct timer_list * timer);
67extern int __mod_timer(struct timer_list *timer, unsigned long expires);
68extern int mod_timer(struct timer_list *timer, unsigned long expires);
69
Thomas Gleixnerfd064b92007-02-16 01:27:47 -080070/*
Thomas Gleixnereaad0842007-05-29 23:47:39 +020071 * The jiffies value which is added to now, when there is no timer
72 * in the timer wheel:
73 */
74#define NEXT_TIMER_MAX_DELTA ((1UL << 30) - 1)
75
76/*
Thomas Gleixnerfd064b92007-02-16 01:27:47 -080077 * Return when the next timer-wheel timeout occurs (in absolute jiffies),
78 * locks the timer base:
79 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080extern unsigned long next_timer_interrupt(void);
Thomas Gleixnerfd064b92007-02-16 01:27:47 -080081/*
82 * Return when the next timer-wheel timeout occurs (in absolute jiffies),
83 * locks the timer base and does the comparison against the given
84 * jiffie.
85 */
86extern unsigned long get_next_timer_interrupt(unsigned long now);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Ingo Molnar82f67cd2007-02-16 01:28:13 -080088/*
89 * Timer-statistics info:
90 */
91#ifdef CONFIG_TIMER_STATS
92
Venki Pallipadic5c061b82007-07-15 23:40:30 -070093#define TIMER_STATS_FLAG_DEFERRABLE 0x1
94
Ingo Molnar82f67cd2007-02-16 01:28:13 -080095extern void init_timer_stats(void);
96
97extern void timer_stats_update_stats(void *timer, pid_t pid, void *startf,
Venki Pallipadic5c061b82007-07-15 23:40:30 -070098 void *timerf, char *comm,
99 unsigned int timer_flag);
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800100
101extern void __timer_stats_timer_set_start_info(struct timer_list *timer,
102 void *addr);
103
104static inline void timer_stats_timer_set_start_info(struct timer_list *timer)
105{
106 __timer_stats_timer_set_start_info(timer, __builtin_return_address(0));
107}
108
109static inline void timer_stats_timer_clear_start_info(struct timer_list *timer)
110{
111 timer->start_site = NULL;
112}
113#else
114static inline void init_timer_stats(void)
115{
116}
117
Ingo Molnar82f67cd2007-02-16 01:28:13 -0800118static inline void timer_stats_timer_set_start_info(struct timer_list *timer)
119{
120}
121
122static inline void timer_stats_timer_clear_start_info(struct timer_list *timer)
123{
124}
125#endif
126
Robert P. J. Day45f8bde2007-01-26 00:57:09 -0800127/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * add_timer - start a timer
129 * @timer: the timer to be added
130 *
131 * The kernel will do a ->function(->data) callback from the
Andrzej Zaborowski13fce802006-03-24 18:13:37 +0100132 * timer interrupt at the ->expires point in the future. The
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * current time is 'jiffies'.
134 *
Andrzej Zaborowski13fce802006-03-24 18:13:37 +0100135 * The timer's ->expires, ->function (and if the handler uses it, ->data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * fields must be set prior calling this function.
137 *
Andrzej Zaborowski13fce802006-03-24 18:13:37 +0100138 * Timers with an ->expires field in the past will be executed in the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * timer tick.
140 */
Andrew Morton15d2bac2005-10-30 15:02:24 -0800141static inline void add_timer(struct timer_list *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Andrew Morton15d2bac2005-10-30 15:02:24 -0800143 BUG_ON(timer_pending(timer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 __mod_timer(timer, timer->expires);
145}
146
147#ifdef CONFIG_SMP
Oleg Nesterovfd450b72005-06-23 00:08:59 -0700148 extern int try_to_del_timer_sync(struct timer_list *timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 extern int del_timer_sync(struct timer_list *timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#else
Oleg Nesterovfd450b72005-06-23 00:08:59 -0700151# define try_to_del_timer_sync(t) del_timer(t)
152# define del_timer_sync(t) del_timer(t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#endif
154
Oleg Nesterov55c888d2005-06-23 00:08:56 -0700155#define del_singleshot_timer_sync(t) del_timer_sync(t)
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157extern void init_timers(void);
158extern void run_local_timers(void);
Roman Zippel05cfb612006-03-26 01:38:12 -0800159struct hrtimer;
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -0800160extern enum hrtimer_restart it_real_fn(struct hrtimer *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Arjan van de Ven4c36a5d2006-12-10 02:21:24 -0800162unsigned long __round_jiffies(unsigned long j, int cpu);
163unsigned long __round_jiffies_relative(unsigned long j, int cpu);
164unsigned long round_jiffies(unsigned long j);
165unsigned long round_jiffies_relative(unsigned long j);
166
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168#endif