summaryrefslogtreecommitdiff
path: root/mali_kbase/platform/pixel/pixel_gpu_trace.h
blob: 1165e7534dd7b15b90c08f027d345ca5157f537f (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
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright 2020 Google LLC.
 */

#ifndef _PIXEL_GPU_TRACE_H_
#define _PIXEL_GPU_TRACE_H_

#endif /* _PIXEL_GPU_TRACE_H_ */

#undef TRACE_SYSTEM
#define TRACE_SYSTEM mali

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

/* Linux includes */
#include <linux/tracepoint.h>

/* Pixel integration includes */
#include "mali_kbase_config_platform.h"

#define GPU_POWER_STATE_SYMBOLIC_STRINGS \
	{GPU_POWER_LEVEL_STACKS,	"STACKS"}, \
	{GPU_POWER_LEVEL_GLOBAL,	"GLOBAL"}, \
	{GPU_POWER_LEVEL_OFF,		"OFF"}

TRACE_EVENT(gpu_power_state,
	TP_PROTO(u64 change_ns, int from, int to),
	TP_ARGS(change_ns, from, to),
	TP_STRUCT__entry(
		__field(u64, change_ns)
		__field(int, from_state)
		__field(int, to_state)
	),
	TP_fast_assign(
		__entry->change_ns	= change_ns;
		__entry->from_state	= from;
		__entry->to_state	= to;
	),
	TP_printk("from=%s to=%s ns=%llu",
		__print_symbolic(__entry->from_state, GPU_POWER_STATE_SYMBOLIC_STRINGS),
		__print_symbolic(__entry->to_state, GPU_POWER_STATE_SYMBOLIC_STRINGS),
		__entry->change_ns
	)
);

#endif /* _TRACE_PIXEL_GPU_H */

/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
#define TRACE_INCLUDE_PATH .
#undef  TRACE_INCLUDE_FILE
#define TRACE_INCLUDE_FILE pixel_gpu_trace
#include <trace/define_trace.h>