aboutsummaryrefslogblamecommitdiffstats
path: root/include/trace/power.h
blob: 2c733e58e89cca26e1ec27b0da7c5264bfccfeb0 (plain) (tree)
1
2
3
4
5



                        
                             















                                      










                                                                               

                           
#ifndef _TRACE_POWER_H
#define _TRACE_POWER_H

#include <linux/ktime.h>
#include <linux/tracepoint.h>

enum {
	POWER_NONE = 0,
	POWER_CSTATE = 1,
	POWER_PSTATE = 2,
};

struct power_trace {
#ifdef CONFIG_POWER_TRACER
	ktime_t			stamp;
	ktime_t			end;
	int			type;
	int			state;
#endif
};

DECLARE_TRACE(power_start,
	TPPROTO(struct power_trace *it, unsigned int type, unsigned int state),
		TPARGS(it, type, state));

DECLARE_TRACE(power_mark,
	TPPROTO(struct power_trace *it, unsigned int type, unsigned int state),
		TPARGS(it, type, state));

DECLARE_TRACE(power_end,
	TPPROTO(struct power_trace *it),
		TPARGS(it));

#endif /* _TRACE_POWER_H */