2 #define TRACE_SYSTEM regulator
4 #if !defined(_TRACE_REGULATOR_H) || defined(TRACE_HEADER_MULTI_READ)
5 #define _TRACE_REGULATOR_H
7 #include <linux/ktime.h>
8 #include <linux/tracepoint.h>
11 * Events which just log themselves and the regulator name for enable/disable
14 DECLARE_EVENT_CLASS(regulator_basic
,
16 TP_PROTO(const char *name
),
21 __string( name
, name
)
25 __assign_str(name
, name
);
28 TP_printk("name=%s", __get_str(name
))
32 DEFINE_EVENT(regulator_basic
, regulator_enable
,
34 TP_PROTO(const char *name
),
40 DEFINE_EVENT(regulator_basic
, regulator_enable_delay
,
42 TP_PROTO(const char *name
),
48 DEFINE_EVENT(regulator_basic
, regulator_enable_complete
,
50 TP_PROTO(const char *name
),
56 DEFINE_EVENT(regulator_basic
, regulator_disable
,
58 TP_PROTO(const char *name
),
64 DEFINE_EVENT(regulator_basic
, regulator_disable_complete
,
66 TP_PROTO(const char *name
),
73 * Events that take a range of numerical values, mostly for voltages
76 DECLARE_EVENT_CLASS(regulator_range
,
78 TP_PROTO(const char *name
, int min
, int max
),
80 TP_ARGS(name
, min
, max
),
83 __string( name
, name
)
89 __assign_str(name
, name
);
94 TP_printk("name=%s (%d-%d)", __get_str(name
),
95 (int)__entry
->min
, (int)__entry
->max
)
98 DEFINE_EVENT(regulator_range
, regulator_set_voltage
,
100 TP_PROTO(const char *name
, int min
, int max
),
102 TP_ARGS(name
, min
, max
)
108 * Events that take a single value, mostly for readback and refcounts.
110 DECLARE_EVENT_CLASS(regulator_value
,
112 TP_PROTO(const char *name
, unsigned int val
),
117 __string( name
, name
)
118 __field( unsigned int, val
)
122 __assign_str(name
, name
);
126 TP_printk("name=%s, val=%u", __get_str(name
),
130 DEFINE_EVENT(regulator_value
, regulator_set_voltage_complete
,
132 TP_PROTO(const char *name
, unsigned int value
),
138 #endif /* _TRACE_POWER_H */
140 /* This part must be outside protection */
141 #include <trace/define_trace.h>