summaryrefslogtreecommitdiff
path: root/mali_kbase/mali_power_gpu_frequency_trace.h
blob: b30ca07136906f665589b6652f28baa1e1dcaea5 (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
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
 *
 * (C) COPYRIGHT 2020-2023 ARM Limited. All rights reserved.
 *
 * This program is free software and is provided to you under the terms of the
 * GNU General Public License version 2 as published by the Free Software
 * Foundation, and any use by you of this program is subject to the terms
 * of such GNU license.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, you can access it online at
 * http://www.gnu.org/licenses/gpl-2.0.html.
 *
 */

#ifndef _TRACE_POWER_GPU_FREQUENCY_MALI
#define _TRACE_POWER_GPU_FREQUENCY_MALI
#endif

#undef TRACE_SYSTEM
#define TRACE_SYSTEM power
#undef TRACE_INCLUDE_FILE
#define TRACE_INCLUDE_FILE mali_power_gpu_frequency_trace
#undef TRACE_INCLUDE_PATH
#define TRACE_INCLUDE_PATH .

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

#include <linux/tracepoint.h>

DECLARE_EVENT_CLASS(gpu,

		    TP_PROTO(unsigned int state, unsigned int gpu_id),

		    TP_ARGS(state, gpu_id),

		    TP_STRUCT__entry(__field(u32, state) __field(u32, gpu_id)),

		    TP_fast_assign(__entry->state = state; __entry->gpu_id = gpu_id;),

		    TP_printk("state=%lu gpu_id=%lu", (unsigned long)__entry->state,
			      (unsigned long)__entry->gpu_id));

DEFINE_EVENT(gpu, gpu_frequency,

	     TP_PROTO(unsigned int frequency, unsigned int gpu_id),

	     TP_ARGS(frequency, gpu_id));

#endif /* _TRACE_POWER_GPU_FREQUENCY_H */

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