aboutsummaryrefslogtreecommitdiff
path: root/include/trace/events/arm-ipi.h
blob: 5d3bd21827be8300d0859fe95ac089cbb1e99391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#undef TRACE_SYSTEM
#define TRACE_SYSTEM arm-ipi

#if !defined(_TRACE_ARM_IPI_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_ARM_IPI_H

#include <linux/tracepoint.h>

#define show_arm_ipi_name(val)				\
	__print_symbolic(val,				\
			 { 0, "IPI_WAKEUP" },		\
			 { 1, "IPI_TIMER" },		\
			 { 2, "IPI_RESCHEDULE" },		\
			 { 3, "IPI_CALL_FUNC" },		\
			 { 4, "IPI_CALL_FUNC_SINGLE" },		\
			 { 5, "IPI_CPU_STOP" },	\
			 { 6, "IPI_COMPLETION" },		\
			 { 7, "IPI_CPU_BACKTRACE" })

DECLARE_EVENT_CLASS(arm_ipi,

	TP_PROTO(unsigned int ipi_nr),

	TP_ARGS(ipi_nr),

	TP_STRUCT__entry(
		__field(	unsigned int,	ipi	)
	),

	TP_fast_assign(
		__entry->ipi = ipi_nr;
	),

	TP_printk("ipi=%u [action=%s]", __entry->ipi,
		show_arm_ipi_name(__entry->ipi))
);

/**
 * arm_ipi_entry - called in the arm-generic ipi handler immediately before
 *                 entering ipi-type handler
 * @ipi_nr:  ipi number
 *
 * When used in combination with the arm_ipi_exit tracepoint
 * we can determine the ipi handler runtine.
 */
DEFINE_EVENT(arm_ipi, arm_ipi_entry,

	TP_PROTO(unsigned int ipi_nr),

	TP_ARGS(ipi_nr)
);

/**
 * arm_ipi_exit - called in the arm-generic ipi handler immediately
 *                after the ipi-type handler returns
 * @ipi_nr:  ipi number
 *
 * When used in combination with the arm_ipi_entry tracepoint
 * we can determine the ipi handler runtine.
 */
DEFINE_EVENT(arm_ipi, arm_ipi_exit,

	TP_PROTO(unsigned int ipi_nr),

	TP_ARGS(ipi_nr)
);

/**
 * arm_ipi_send - called as the ipi target mask is built, immediately
 *                before the register is written
 * @ipi_nr:  ipi number
 * @dest:    cpu to send to
 *
 * When used in combination with the arm_ipi_entry tracepoint
 * we can determine the ipi raise to run latency.
 */
TRACE_EVENT(arm_ipi_send,

	TP_PROTO(unsigned int ipi_nr, int dest),

	TP_ARGS(ipi_nr, dest),

	TP_STRUCT__entry(
		__field(	unsigned int,	ipi	)
		__field(	int			,	dest )
	),

	TP_fast_assign(
		__entry->ipi = ipi_nr;
		__entry->dest = dest;
	),

	TP_printk("dest=%d ipi=%u [action=%s]", __entry->dest,
			__entry->ipi, show_arm_ipi_name(__entry->ipi))
);

#endif /*  _TRACE_ARM_IPI_H */

/* This part must be outside protection */
#include <trace/define_trace.h>