summaryrefslogtreecommitdiff
path: root/mali_kbase/mali_power_gpu_work_period_trace.h
blob: 60d341d4ac7c27f112930ce93b31b06ea17633a7 (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
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
 *
 * (C) COPYRIGHT 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_WORK_PERIOD_MALI
#define _TRACE_POWER_GPU_WORK_PERIOD_MALI
#endif

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

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

#include <linux/tracepoint.h>

/**
 * gpu_work_period - Reports GPU work period metrics
 *
 * @gpu_id: Unique GPU Identifier
 * @uid: UID of an application
 * @start_time_ns: Start time of a GPU work period in nanoseconds
 * @end_time_ns: End time of a GPU work period in nanoseconds
 * @total_active_duration_ns: Total amount of time the GPU was running GPU work for given
 *                            UID during the GPU work period, in nanoseconds. This duration does
 *                            not double-account parallel GPU work for the same UID.
 */
TRACE_EVENT(
	gpu_work_period,

	TP_PROTO(u32 gpu_id, u32 uid, u64 start_time_ns, u64 end_time_ns,
		 u64 total_active_duration_ns),

	TP_ARGS(gpu_id, uid, start_time_ns, end_time_ns, total_active_duration_ns),

	TP_STRUCT__entry(__field(u32, gpu_id) __field(u32, uid) __field(u64, start_time_ns)
				 __field(u64, end_time_ns) __field(u64, total_active_duration_ns)),

	TP_fast_assign(__entry->gpu_id = gpu_id; __entry->uid = uid;
		       __entry->start_time_ns = start_time_ns; __entry->end_time_ns = end_time_ns;
		       __entry->total_active_duration_ns = total_active_duration_ns;),

	TP_printk(
		"gpu_id=%u uid=%u start_time_ns=%llu end_time_ns=%llu total_active_duration_ns=%llu",
		__entry->gpu_id, __entry->uid, __entry->start_time_ns, __entry->end_time_ns,
		__entry->total_active_duration_ns));

#endif /* _TRACE_POWER_GPU_WORK_PERIOD_H */

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