blob: 02961745fa97ecc0e84f938d74378b7d77bc9278 [file] [log] [blame]
Li Zefand0b6e042009-07-13 10:33:21 +08001#undef TRACE_SYSTEM
2#define TRACE_SYSTEM irq
3
Steven Rostedtea20d922009-04-10 08:54:16 -04004#if !defined(_TRACE_IRQ_H) || defined(TRACE_HEADER_MULTI_READ)
Jason Baronaf392412009-02-26 10:11:05 -05005#define _TRACE_IRQ_H
6
Jason Baronaf392412009-02-26 10:11:05 -05007#include <linux/tracepoint.h>
Lai Jiangshan2bf21602010-08-23 18:42:48 +09008
9struct irqaction;
10struct softirq_action;
Jason Baronaf392412009-02-26 10:11:05 -050011
Steven Rostedt1d080d62009-06-01 12:20:40 -040012#define softirq_name(sirq) { sirq##_SOFTIRQ, #sirq }
Li Zefan5dd4de52009-09-17 17:38:32 +080013#define show_softirq_name(val) \
14 __print_symbolic(val, \
15 softirq_name(HI), \
16 softirq_name(TIMER), \
17 softirq_name(NET_TX), \
18 softirq_name(NET_RX), \
19 softirq_name(BLOCK), \
20 softirq_name(BLOCK_IOPOLL), \
21 softirq_name(TASKLET), \
22 softirq_name(SCHED), \
Shaohua Li09223372011-06-14 13:26:25 +080023 softirq_name(HRTIMER), \
24 softirq_name(RCU))
Steven Rostedtc2adae02009-05-20 19:56:19 -040025
Jason Baron9ee19832009-04-30 13:29:47 -040026/**
27 * irq_handler_entry - called immediately before the irq action handler
28 * @irq: irq number
29 * @action: pointer to struct irqaction
30 *
31 * The struct irqaction pointed to by @action contains various
32 * information about the handler, including the device name,
33 * @action->name, and the device id, @action->dev_id. When used in
34 * conjunction with the irq_handler_exit tracepoint, we can figure
35 * out irq handler latencies.
Steven Rostedtea20d922009-04-10 08:54:16 -040036 */
Steven Rostedt160031b2009-04-24 11:26:55 -040037TRACE_EVENT(irq_handler_entry,
38
Steven Rostedtea20d922009-04-10 08:54:16 -040039 TP_PROTO(int irq, struct irqaction *action),
Steven Rostedt160031b2009-04-24 11:26:55 -040040
Steven Rostedtea20d922009-04-10 08:54:16 -040041 TP_ARGS(irq, action),
Steven Rostedt160031b2009-04-24 11:26:55 -040042
43 TP_STRUCT__entry(
44 __field( int, irq )
45 __string( name, action->name )
Badhri Jagan Sridharana2cd6ea2012-07-18 15:46:01 -070046 __field(void*, handler)
Steven Rostedt160031b2009-04-24 11:26:55 -040047 ),
48
49 TP_fast_assign(
50 __entry->irq = irq;
51 __assign_str(name, action->name);
Badhri Jagan Sridharana2cd6ea2012-07-18 15:46:01 -070052 __entry->handler = action->handler;
Steven Rostedt160031b2009-04-24 11:26:55 -040053 ),
54
Badhri Jagan Sridharana2cd6ea2012-07-18 15:46:01 -070055 TP_printk("irq=%d name=%s handler=%pf",
56 __entry->irq, __get_str(name), __entry->handler)
Steven Rostedt160031b2009-04-24 11:26:55 -040057);
Steven Rostedtea20d922009-04-10 08:54:16 -040058
Jason Baron9ee19832009-04-30 13:29:47 -040059/**
60 * irq_handler_exit - called immediately after the irq action handler returns
61 * @irq: irq number
62 * @action: pointer to struct irqaction
63 * @ret: return value
64 *
65 * If the @ret value is set to IRQ_HANDLED, then we know that the corresponding
66 * @action->handler scuccessully handled this irq. Otherwise, the irq might be
67 * a shared irq line, or the irq was not handled successfully. Can be used in
68 * conjunction with the irq_handler_entry to understand irq handler latencies.
Steven Rostedtea20d922009-04-10 08:54:16 -040069 */
70TRACE_EVENT(irq_handler_exit,
71
72 TP_PROTO(int irq, struct irqaction *action, int ret),
73
74 TP_ARGS(irq, action, ret),
75
76 TP_STRUCT__entry(
77 __field( int, irq )
78 __field( int, ret )
79 ),
80
81 TP_fast_assign(
82 __entry->irq = irq;
83 __entry->ret = ret;
84 ),
85
Ingo Molnar434a83c2009-10-15 11:50:39 +020086 TP_printk("irq=%d ret=%s",
Steven Rostedtea20d922009-04-10 08:54:16 -040087 __entry->irq, __entry->ret ? "handled" : "unhandled")
88);
89
Li Zefanc4673072009-11-26 15:04:31 +080090DECLARE_EVENT_CLASS(softirq,
Steven Rostedtea20d922009-04-10 08:54:16 -040091
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +020092 TP_PROTO(unsigned int vec_nr),
Steven Rostedt160031b2009-04-24 11:26:55 -040093
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +020094 TP_ARGS(vec_nr),
Steven Rostedt160031b2009-04-24 11:26:55 -040095
96 TP_STRUCT__entry(
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +020097 __field( unsigned int, vec )
Steven Rostedt160031b2009-04-24 11:26:55 -040098 ),
99
100 TP_fast_assign(
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200101 __entry->vec = vec_nr;
Steven Rostedt160031b2009-04-24 11:26:55 -0400102 ),
103
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200104 TP_printk("vec=%u [action=%s]", __entry->vec,
Steven Rostedtc2adae02009-05-20 19:56:19 -0400105 show_softirq_name(__entry->vec))
Steven Rostedt160031b2009-04-24 11:26:55 -0400106);
107
Jason Baron9ee19832009-04-30 13:29:47 -0400108/**
Li Zefanc4673072009-11-26 15:04:31 +0800109 * softirq_entry - called immediately before the softirq handler
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200110 * @vec_nr: softirq vector number
Li Zefanc4673072009-11-26 15:04:31 +0800111 *
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200112 * When used in combination with the softirq_exit tracepoint
113 * we can determine the softirq handler runtine.
Li Zefanc4673072009-11-26 15:04:31 +0800114 */
115DEFINE_EVENT(softirq, softirq_entry,
116
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200117 TP_PROTO(unsigned int vec_nr),
Li Zefanc4673072009-11-26 15:04:31 +0800118
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200119 TP_ARGS(vec_nr)
Li Zefanc4673072009-11-26 15:04:31 +0800120);
121
122/**
Jason Baron9ee19832009-04-30 13:29:47 -0400123 * softirq_exit - called immediately after the softirq handler returns
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200124 * @vec_nr: softirq vector number
Jason Baron9ee19832009-04-30 13:29:47 -0400125 *
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200126 * When used in combination with the softirq_entry tracepoint
127 * we can determine the softirq handler runtine.
Jason Baron9ee19832009-04-30 13:29:47 -0400128 */
Li Zefanc4673072009-11-26 15:04:31 +0800129DEFINE_EVENT(softirq, softirq_exit,
Steven Rostedt160031b2009-04-24 11:26:55 -0400130
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200131 TP_PROTO(unsigned int vec_nr),
Steven Rostedt160031b2009-04-24 11:26:55 -0400132
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200133 TP_ARGS(vec_nr)
Steven Rostedt160031b2009-04-24 11:26:55 -0400134);
Jason Baronaf392412009-02-26 10:11:05 -0500135
Lai Jiangshan2bf21602010-08-23 18:42:48 +0900136/**
137 * softirq_raise - called immediately when a softirq is raised
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200138 * @vec_nr: softirq vector number
Lai Jiangshan2bf21602010-08-23 18:42:48 +0900139 *
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200140 * When used in combination with the softirq_entry tracepoint
141 * we can determine the softirq raise to run latency.
Lai Jiangshan2bf21602010-08-23 18:42:48 +0900142 */
143DEFINE_EVENT(softirq, softirq_raise,
144
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200145 TP_PROTO(unsigned int vec_nr),
Lai Jiangshan2bf21602010-08-23 18:42:48 +0900146
Thomas Gleixnerf4bc6bb2010-10-19 15:00:13 +0200147 TP_ARGS(vec_nr)
Lai Jiangshan2bf21602010-08-23 18:42:48 +0900148);
149
Steven Rostedta8d154b2009-04-10 09:36:00 -0400150#endif /* _TRACE_IRQ_H */
151
152/* This part must be outside protection */
153#include <trace/define_trace.h>