summaryrefslogtreecommitdiff
path: root/mali_kbase/platform/pixel/pixel_gpu_trace.h
blob: 6c30f1b36aef97c5c10fc77da357c5eb518ed8bc (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
// 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
	)
);

TRACE_EVENT(gpu_gov_rec_violate,
	TP_PROTO(unsigned int recfreq, unsigned int retfreq,
		unsigned int minlvfreq, unsigned int maxlvfreq),
	TP_ARGS(recfreq, retfreq, minlvfreq, maxlvfreq),
	TP_STRUCT__entry(
		__field(unsigned int, recfreq)
		__field(unsigned int, retfreq)
		__field(unsigned int, minlvfreq)
		__field(unsigned int, maxlvfreq)
	),
	TP_fast_assign(
		__entry->recfreq	= recfreq;
		__entry->retfreq	= retfreq;
		__entry->minlvfreq	= minlvfreq;
		__entry->maxlvfreq	= maxlvfreq;
	),
	TP_printk("rec=%u ret=%u min=%u max=%u",
		__entry->recfreq,
		__entry->retfreq,
		__entry->minlvfreq,
		__entry->maxlvfreq
	)
);

#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>