xref: /openbmc/linux/include/trace/events/timer.h (revision 2c82d1be4d9d70b5e3da6e179bb033bd53e95299)
12b022e3dSXiao Guangrong #undef TRACE_SYSTEM
22b022e3dSXiao Guangrong #define TRACE_SYSTEM timer
32b022e3dSXiao Guangrong 
42b022e3dSXiao Guangrong #if !defined(_TRACE_TIMER_H) || defined(TRACE_HEADER_MULTI_READ)
52b022e3dSXiao Guangrong #define _TRACE_TIMER_H
62b022e3dSXiao Guangrong 
72b022e3dSXiao Guangrong #include <linux/tracepoint.h>
8c6a2a177SXiao Guangrong #include <linux/hrtimer.h>
92b022e3dSXiao Guangrong #include <linux/timer.h>
102b022e3dSXiao Guangrong 
11363d0f64SLi Zefan DECLARE_EVENT_CLASS(timer_class,
122b022e3dSXiao Guangrong 
132b022e3dSXiao Guangrong 	TP_PROTO(struct timer_list *timer),
142b022e3dSXiao Guangrong 
152b022e3dSXiao Guangrong 	TP_ARGS(timer),
162b022e3dSXiao Guangrong 
172b022e3dSXiao Guangrong 	TP_STRUCT__entry(
182b022e3dSXiao Guangrong 		__field( void *,	timer	)
192b022e3dSXiao Guangrong 	),
202b022e3dSXiao Guangrong 
212b022e3dSXiao Guangrong 	TP_fast_assign(
222b022e3dSXiao Guangrong 		__entry->timer	= timer;
232b022e3dSXiao Guangrong 	),
242b022e3dSXiao Guangrong 
25434a83c3SIngo Molnar 	TP_printk("timer=%p", __entry->timer)
262b022e3dSXiao Guangrong );
272b022e3dSXiao Guangrong 
282b022e3dSXiao Guangrong /**
29363d0f64SLi Zefan  * timer_init - called when the timer is initialized
30363d0f64SLi Zefan  * @timer:	pointer to struct timer_list
31363d0f64SLi Zefan  */
32363d0f64SLi Zefan DEFINE_EVENT(timer_class, timer_init,
33363d0f64SLi Zefan 
34363d0f64SLi Zefan 	TP_PROTO(struct timer_list *timer),
35363d0f64SLi Zefan 
36363d0f64SLi Zefan 	TP_ARGS(timer)
37363d0f64SLi Zefan );
38363d0f64SLi Zefan 
39363d0f64SLi Zefan /**
402b022e3dSXiao Guangrong  * timer_start - called when the timer is started
412b022e3dSXiao Guangrong  * @timer:	pointer to struct timer_list
422b022e3dSXiao Guangrong  * @expires:	the timers expiry time
432b022e3dSXiao Guangrong  */
442b022e3dSXiao Guangrong TRACE_EVENT(timer_start,
452b022e3dSXiao Guangrong 
462b022e3dSXiao Guangrong 	TP_PROTO(struct timer_list *timer, unsigned long expires),
472b022e3dSXiao Guangrong 
482b022e3dSXiao Guangrong 	TP_ARGS(timer, expires),
492b022e3dSXiao Guangrong 
502b022e3dSXiao Guangrong 	TP_STRUCT__entry(
512b022e3dSXiao Guangrong 		__field( void *,	timer		)
522b022e3dSXiao Guangrong 		__field( void *,	function	)
532b022e3dSXiao Guangrong 		__field( unsigned long,	expires		)
542b022e3dSXiao Guangrong 		__field( unsigned long,	now		)
552b022e3dSXiao Guangrong 	),
562b022e3dSXiao Guangrong 
572b022e3dSXiao Guangrong 	TP_fast_assign(
582b022e3dSXiao Guangrong 		__entry->timer		= timer;
592b022e3dSXiao Guangrong 		__entry->function	= timer->function;
602b022e3dSXiao Guangrong 		__entry->expires	= expires;
612b022e3dSXiao Guangrong 		__entry->now		= jiffies;
622b022e3dSXiao Guangrong 	),
632b022e3dSXiao Guangrong 
64434a83c3SIngo Molnar 	TP_printk("timer=%p function=%pf expires=%lu [timeout=%ld]",
652b022e3dSXiao Guangrong 		  __entry->timer, __entry->function, __entry->expires,
662b022e3dSXiao Guangrong 		  (long)__entry->expires - __entry->now)
672b022e3dSXiao Guangrong );
682b022e3dSXiao Guangrong 
692b022e3dSXiao Guangrong /**
702b022e3dSXiao Guangrong  * timer_expire_entry - called immediately before the timer callback
712b022e3dSXiao Guangrong  * @timer:	pointer to struct timer_list
722b022e3dSXiao Guangrong  *
732b022e3dSXiao Guangrong  * Allows to determine the timer latency.
742b022e3dSXiao Guangrong  */
752b022e3dSXiao Guangrong TRACE_EVENT(timer_expire_entry,
762b022e3dSXiao Guangrong 
772b022e3dSXiao Guangrong 	TP_PROTO(struct timer_list *timer),
782b022e3dSXiao Guangrong 
792b022e3dSXiao Guangrong 	TP_ARGS(timer),
802b022e3dSXiao Guangrong 
812b022e3dSXiao Guangrong 	TP_STRUCT__entry(
822b022e3dSXiao Guangrong 		__field( void *,	timer	)
832b022e3dSXiao Guangrong 		__field( unsigned long,	now	)
84ede1b429SArjan van de Ven 		__field( void *,	function)
852b022e3dSXiao Guangrong 	),
862b022e3dSXiao Guangrong 
872b022e3dSXiao Guangrong 	TP_fast_assign(
882b022e3dSXiao Guangrong 		__entry->timer		= timer;
892b022e3dSXiao Guangrong 		__entry->now		= jiffies;
90ede1b429SArjan van de Ven 		__entry->function	= timer->function;
912b022e3dSXiao Guangrong 	),
922b022e3dSXiao Guangrong 
93ede1b429SArjan van de Ven 	TP_printk("timer=%p function=%pf now=%lu", __entry->timer, __entry->function,__entry->now)
942b022e3dSXiao Guangrong );
952b022e3dSXiao Guangrong 
962b022e3dSXiao Guangrong /**
972b022e3dSXiao Guangrong  * timer_expire_exit - called immediately after the timer callback returns
982b022e3dSXiao Guangrong  * @timer:	pointer to struct timer_list
992b022e3dSXiao Guangrong  *
1002b022e3dSXiao Guangrong  * When used in combination with the timer_expire_entry tracepoint we can
1012b022e3dSXiao Guangrong  * determine the runtime of the timer callback function.
1022b022e3dSXiao Guangrong  *
1032b022e3dSXiao Guangrong  * NOTE: Do NOT derefernce timer in TP_fast_assign. The pointer might
1042b022e3dSXiao Guangrong  * be invalid. We solely track the pointer.
1052b022e3dSXiao Guangrong  */
106363d0f64SLi Zefan DEFINE_EVENT(timer_class, timer_expire_exit,
1072b022e3dSXiao Guangrong 
1082b022e3dSXiao Guangrong 	TP_PROTO(struct timer_list *timer),
1092b022e3dSXiao Guangrong 
110363d0f64SLi Zefan 	TP_ARGS(timer)
1112b022e3dSXiao Guangrong );
1122b022e3dSXiao Guangrong 
1132b022e3dSXiao Guangrong /**
1142b022e3dSXiao Guangrong  * timer_cancel - called when the timer is canceled
1152b022e3dSXiao Guangrong  * @timer:	pointer to struct timer_list
1162b022e3dSXiao Guangrong  */
117363d0f64SLi Zefan DEFINE_EVENT(timer_class, timer_cancel,
1182b022e3dSXiao Guangrong 
1192b022e3dSXiao Guangrong 	TP_PROTO(struct timer_list *timer),
1202b022e3dSXiao Guangrong 
121363d0f64SLi Zefan 	TP_ARGS(timer)
1222b022e3dSXiao Guangrong );
1232b022e3dSXiao Guangrong 
124c6a2a177SXiao Guangrong /**
125c6a2a177SXiao Guangrong  * hrtimer_init - called when the hrtimer is initialized
126c6a2a177SXiao Guangrong  * @timer:	pointer to struct hrtimer
127c6a2a177SXiao Guangrong  * @clockid:	the hrtimers clock
128c6a2a177SXiao Guangrong  * @mode:	the hrtimers mode
129c6a2a177SXiao Guangrong  */
130c6a2a177SXiao Guangrong TRACE_EVENT(hrtimer_init,
131c6a2a177SXiao Guangrong 
132434a83c3SIngo Molnar 	TP_PROTO(struct hrtimer *hrtimer, clockid_t clockid,
133c6a2a177SXiao Guangrong 		 enum hrtimer_mode mode),
134c6a2a177SXiao Guangrong 
135434a83c3SIngo Molnar 	TP_ARGS(hrtimer, clockid, mode),
136c6a2a177SXiao Guangrong 
137c6a2a177SXiao Guangrong 	TP_STRUCT__entry(
138434a83c3SIngo Molnar 		__field( void *,		hrtimer		)
139c6a2a177SXiao Guangrong 		__field( clockid_t,		clockid		)
140c6a2a177SXiao Guangrong 		__field( enum hrtimer_mode,	mode		)
141c6a2a177SXiao Guangrong 	),
142c6a2a177SXiao Guangrong 
143c6a2a177SXiao Guangrong 	TP_fast_assign(
144434a83c3SIngo Molnar 		__entry->hrtimer	= hrtimer;
145c6a2a177SXiao Guangrong 		__entry->clockid	= clockid;
146c6a2a177SXiao Guangrong 		__entry->mode		= mode;
147c6a2a177SXiao Guangrong 	),
148c6a2a177SXiao Guangrong 
149434a83c3SIngo Molnar 	TP_printk("hrtimer=%p clockid=%s mode=%s", __entry->hrtimer,
150c6a2a177SXiao Guangrong 		  __entry->clockid == CLOCK_REALTIME ?
151c6a2a177SXiao Guangrong 			"CLOCK_REALTIME" : "CLOCK_MONOTONIC",
152c6a2a177SXiao Guangrong 		  __entry->mode == HRTIMER_MODE_ABS ?
153c6a2a177SXiao Guangrong 			"HRTIMER_MODE_ABS" : "HRTIMER_MODE_REL")
154c6a2a177SXiao Guangrong );
155c6a2a177SXiao Guangrong 
156c6a2a177SXiao Guangrong /**
157c6a2a177SXiao Guangrong  * hrtimer_start - called when the hrtimer is started
158c6a2a177SXiao Guangrong  * @timer: pointer to struct hrtimer
159c6a2a177SXiao Guangrong  */
160c6a2a177SXiao Guangrong TRACE_EVENT(hrtimer_start,
161c6a2a177SXiao Guangrong 
162434a83c3SIngo Molnar 	TP_PROTO(struct hrtimer *hrtimer),
163c6a2a177SXiao Guangrong 
164434a83c3SIngo Molnar 	TP_ARGS(hrtimer),
165c6a2a177SXiao Guangrong 
166c6a2a177SXiao Guangrong 	TP_STRUCT__entry(
167434a83c3SIngo Molnar 		__field( void *,	hrtimer		)
168c6a2a177SXiao Guangrong 		__field( void *,	function	)
169c6a2a177SXiao Guangrong 		__field( s64,		expires		)
170c6a2a177SXiao Guangrong 		__field( s64,		softexpires	)
171c6a2a177SXiao Guangrong 	),
172c6a2a177SXiao Guangrong 
173c6a2a177SXiao Guangrong 	TP_fast_assign(
174434a83c3SIngo Molnar 		__entry->hrtimer	= hrtimer;
175434a83c3SIngo Molnar 		__entry->function	= hrtimer->function;
176434a83c3SIngo Molnar 		__entry->expires	= hrtimer_get_expires(hrtimer).tv64;
177434a83c3SIngo Molnar 		__entry->softexpires	= hrtimer_get_softexpires(hrtimer).tv64;
178c6a2a177SXiao Guangrong 	),
179c6a2a177SXiao Guangrong 
180434a83c3SIngo Molnar 	TP_printk("hrtimer=%p function=%pf expires=%llu softexpires=%llu",
181434a83c3SIngo Molnar 		  __entry->hrtimer, __entry->function,
182c6a2a177SXiao Guangrong 		  (unsigned long long)ktime_to_ns((ktime_t) {
183c6a2a177SXiao Guangrong 				  .tv64 = __entry->expires }),
184c6a2a177SXiao Guangrong 		  (unsigned long long)ktime_to_ns((ktime_t) {
185c6a2a177SXiao Guangrong 				  .tv64 = __entry->softexpires }))
186c6a2a177SXiao Guangrong );
187c6a2a177SXiao Guangrong 
188c6a2a177SXiao Guangrong /**
189c6a2a177SXiao Guangrong  * htimmer_expire_entry - called immediately before the hrtimer callback
190c6a2a177SXiao Guangrong  * @timer:	pointer to struct hrtimer
191c6a2a177SXiao Guangrong  * @now:	pointer to variable which contains current time of the
192c6a2a177SXiao Guangrong  *		timers base.
193c6a2a177SXiao Guangrong  *
194c6a2a177SXiao Guangrong  * Allows to determine the timer latency.
195c6a2a177SXiao Guangrong  */
196c6a2a177SXiao Guangrong TRACE_EVENT(hrtimer_expire_entry,
197c6a2a177SXiao Guangrong 
198434a83c3SIngo Molnar 	TP_PROTO(struct hrtimer *hrtimer, ktime_t *now),
199c6a2a177SXiao Guangrong 
200434a83c3SIngo Molnar 	TP_ARGS(hrtimer, now),
201c6a2a177SXiao Guangrong 
202c6a2a177SXiao Guangrong 	TP_STRUCT__entry(
203434a83c3SIngo Molnar 		__field( void *,	hrtimer	)
204c6a2a177SXiao Guangrong 		__field( s64,		now	)
205ede1b429SArjan van de Ven 		__field( void *,	function)
206c6a2a177SXiao Guangrong 	),
207c6a2a177SXiao Guangrong 
208c6a2a177SXiao Guangrong 	TP_fast_assign(
209434a83c3SIngo Molnar 		__entry->hrtimer	= hrtimer;
210c6a2a177SXiao Guangrong 		__entry->now		= now->tv64;
211ede1b429SArjan van de Ven 		__entry->function	= hrtimer->function;
212c6a2a177SXiao Guangrong 	),
213c6a2a177SXiao Guangrong 
214ede1b429SArjan van de Ven 	TP_printk("hrtimer=%p function=%pf now=%llu", __entry->hrtimer, __entry->function,
215434a83c3SIngo Molnar 		  (unsigned long long)ktime_to_ns((ktime_t) { .tv64 = __entry->now }))
216c6a2a177SXiao Guangrong  );
217c6a2a177SXiao Guangrong 
218363d0f64SLi Zefan DECLARE_EVENT_CLASS(hrtimer_class,
219c6a2a177SXiao Guangrong 
220434a83c3SIngo Molnar 	TP_PROTO(struct hrtimer *hrtimer),
221c6a2a177SXiao Guangrong 
222434a83c3SIngo Molnar 	TP_ARGS(hrtimer),
223c6a2a177SXiao Guangrong 
224c6a2a177SXiao Guangrong 	TP_STRUCT__entry(
225434a83c3SIngo Molnar 		__field( void *,	hrtimer	)
226c6a2a177SXiao Guangrong 	),
227c6a2a177SXiao Guangrong 
228c6a2a177SXiao Guangrong 	TP_fast_assign(
229434a83c3SIngo Molnar 		__entry->hrtimer	= hrtimer;
230c6a2a177SXiao Guangrong 	),
231c6a2a177SXiao Guangrong 
232434a83c3SIngo Molnar 	TP_printk("hrtimer=%p", __entry->hrtimer)
233c6a2a177SXiao Guangrong );
234c6a2a177SXiao Guangrong 
235c6a2a177SXiao Guangrong /**
236363d0f64SLi Zefan  * hrtimer_expire_exit - called immediately after the hrtimer callback returns
237363d0f64SLi Zefan  * @timer:	pointer to struct hrtimer
238363d0f64SLi Zefan  *
239363d0f64SLi Zefan  * When used in combination with the hrtimer_expire_entry tracepoint we can
240363d0f64SLi Zefan  * determine the runtime of the callback function.
241c6a2a177SXiao Guangrong  */
242363d0f64SLi Zefan DEFINE_EVENT(hrtimer_class, hrtimer_expire_exit,
243c6a2a177SXiao Guangrong 
244434a83c3SIngo Molnar 	TP_PROTO(struct hrtimer *hrtimer),
245c6a2a177SXiao Guangrong 
246363d0f64SLi Zefan 	TP_ARGS(hrtimer)
247363d0f64SLi Zefan );
248c6a2a177SXiao Guangrong 
249363d0f64SLi Zefan /**
250363d0f64SLi Zefan  * hrtimer_cancel - called when the hrtimer is canceled
251363d0f64SLi Zefan  * @hrtimer:	pointer to struct hrtimer
252363d0f64SLi Zefan  */
253363d0f64SLi Zefan DEFINE_EVENT(hrtimer_class, hrtimer_cancel,
254c6a2a177SXiao Guangrong 
255363d0f64SLi Zefan 	TP_PROTO(struct hrtimer *hrtimer),
256c6a2a177SXiao Guangrong 
257363d0f64SLi Zefan 	TP_ARGS(hrtimer)
258c6a2a177SXiao Guangrong );
259c6a2a177SXiao Guangrong 
2603f0a525eSXiao Guangrong /**
2613f0a525eSXiao Guangrong  * itimer_state - called when itimer is started or canceled
2623f0a525eSXiao Guangrong  * @which:	name of the interval timer
2633f0a525eSXiao Guangrong  * @value:	the itimers value, itimer is canceled if value->it_value is
2643f0a525eSXiao Guangrong  *		zero, otherwise it is started
2653f0a525eSXiao Guangrong  * @expires:	the itimers expiry time
2663f0a525eSXiao Guangrong  */
2673f0a525eSXiao Guangrong TRACE_EVENT(itimer_state,
2683f0a525eSXiao Guangrong 
2693f0a525eSXiao Guangrong 	TP_PROTO(int which, const struct itimerval *const value,
2703f0a525eSXiao Guangrong 		 cputime_t expires),
2713f0a525eSXiao Guangrong 
2723f0a525eSXiao Guangrong 	TP_ARGS(which, value, expires),
2733f0a525eSXiao Guangrong 
2743f0a525eSXiao Guangrong 	TP_STRUCT__entry(
2753f0a525eSXiao Guangrong 		__field(	int,		which		)
2763f0a525eSXiao Guangrong 		__field(	cputime_t,	expires		)
2773f0a525eSXiao Guangrong 		__field(	long,		value_sec	)
2783f0a525eSXiao Guangrong 		__field(	long,		value_usec	)
2793f0a525eSXiao Guangrong 		__field(	long,		interval_sec	)
2803f0a525eSXiao Guangrong 		__field(	long,		interval_usec	)
2813f0a525eSXiao Guangrong 	),
2823f0a525eSXiao Guangrong 
2833f0a525eSXiao Guangrong 	TP_fast_assign(
2843f0a525eSXiao Guangrong 		__entry->which		= which;
2853f0a525eSXiao Guangrong 		__entry->expires	= expires;
2863f0a525eSXiao Guangrong 		__entry->value_sec	= value->it_value.tv_sec;
2873f0a525eSXiao Guangrong 		__entry->value_usec	= value->it_value.tv_usec;
2883f0a525eSXiao Guangrong 		__entry->interval_sec	= value->it_interval.tv_sec;
2893f0a525eSXiao Guangrong 		__entry->interval_usec	= value->it_interval.tv_usec;
2903f0a525eSXiao Guangrong 	),
2913f0a525eSXiao Guangrong 
292e9c0748bSThomas Gleixner 	TP_printk("which=%d expires=%llu it_value=%ld.%ld it_interval=%ld.%ld",
293e9c0748bSThomas Gleixner 		  __entry->which, (unsigned long long)__entry->expires,
2943f0a525eSXiao Guangrong 		  __entry->value_sec, __entry->value_usec,
2953f0a525eSXiao Guangrong 		  __entry->interval_sec, __entry->interval_usec)
2963f0a525eSXiao Guangrong );
2973f0a525eSXiao Guangrong 
2983f0a525eSXiao Guangrong /**
2993f0a525eSXiao Guangrong  * itimer_expire - called when itimer expires
3003f0a525eSXiao Guangrong  * @which:	type of the interval timer
3013f0a525eSXiao Guangrong  * @pid:	pid of the process which owns the timer
3023f0a525eSXiao Guangrong  * @now:	current time, used to calculate the latency of itimer
3033f0a525eSXiao Guangrong  */
3043f0a525eSXiao Guangrong TRACE_EVENT(itimer_expire,
3053f0a525eSXiao Guangrong 
3063f0a525eSXiao Guangrong 	TP_PROTO(int which, struct pid *pid, cputime_t now),
3073f0a525eSXiao Guangrong 
3083f0a525eSXiao Guangrong 	TP_ARGS(which, pid, now),
3093f0a525eSXiao Guangrong 
3103f0a525eSXiao Guangrong 	TP_STRUCT__entry(
3113f0a525eSXiao Guangrong 		__field( int ,		which	)
3123f0a525eSXiao Guangrong 		__field( pid_t,		pid	)
3133f0a525eSXiao Guangrong 		__field( cputime_t,	now	)
3143f0a525eSXiao Guangrong 	),
3153f0a525eSXiao Guangrong 
3163f0a525eSXiao Guangrong 	TP_fast_assign(
3173f0a525eSXiao Guangrong 		__entry->which	= which;
3183f0a525eSXiao Guangrong 		__entry->now	= now;
3193f0a525eSXiao Guangrong 		__entry->pid	= pid_nr(pid);
3203f0a525eSXiao Guangrong 	),
3213f0a525eSXiao Guangrong 
322e9c0748bSThomas Gleixner 	TP_printk("which=%d pid=%d now=%llu", __entry->which,
323e9c0748bSThomas Gleixner 		  (int) __entry->pid, (unsigned long long)__entry->now)
3243f0a525eSXiao Guangrong );
3253f0a525eSXiao Guangrong 
326*2c82d1beSFrederic Weisbecker #ifdef CONFIG_NO_HZ_COMMON
327cb41a290SFrederic Weisbecker TRACE_EVENT(tick_stop,
328cb41a290SFrederic Weisbecker 
329cb41a290SFrederic Weisbecker 	TP_PROTO(int success, char *error_msg),
330cb41a290SFrederic Weisbecker 
331cb41a290SFrederic Weisbecker 	TP_ARGS(success, error_msg),
332cb41a290SFrederic Weisbecker 
333cb41a290SFrederic Weisbecker 	TP_STRUCT__entry(
334cb41a290SFrederic Weisbecker 		__field( int ,		success	)
335cb41a290SFrederic Weisbecker 		__string( msg, 		error_msg )
336cb41a290SFrederic Weisbecker 	),
337cb41a290SFrederic Weisbecker 
338cb41a290SFrederic Weisbecker 	TP_fast_assign(
339cb41a290SFrederic Weisbecker 		__entry->success	= success;
340cb41a290SFrederic Weisbecker 		__assign_str(msg, error_msg);
341cb41a290SFrederic Weisbecker 	),
342cb41a290SFrederic Weisbecker 
343cb41a290SFrederic Weisbecker 	TP_printk("success=%s msg=%s",  __entry->success ? "yes" : "no", __get_str(msg))
344cb41a290SFrederic Weisbecker );
345cb41a290SFrederic Weisbecker #endif
346cb41a290SFrederic Weisbecker 
3472b022e3dSXiao Guangrong #endif /*  _TRACE_TIMER_H */
3482b022e3dSXiao Guangrong 
3492b022e3dSXiao Guangrong /* This part must be outside protection */
3502b022e3dSXiao Guangrong #include <trace/define_trace.h>
351