mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 12:20:52 +07:00
6914f8eb64
Store the timestamp of the current vblank in the new field 'time' of the vblank trace event. If the timestamp is calculated by a driver that supports high-precision vblank timing, set the field 'high-prec' to 'true'. User space can now access actual hardware vblank times via the tracing infrastructure. Tracing applications (such as GPUVis, see [0] for related discussion), can use the newly added information to conduct a more accurate analysis of display timing. v2 Fix author name (missing last name) [0] https://github.com/mikesart/gpuvis/issues/30 Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Heinrich Fink <heinrich.fink@daqri.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20190902142412.27846-2-heinrich.fink@daqri.com
75 lines
2.0 KiB
C
75 lines
2.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#if !defined(_DRM_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _DRM_TRACE_H_
|
|
|
|
#include <linux/stringify.h>
|
|
#include <linux/types.h>
|
|
#include <linux/tracepoint.h>
|
|
|
|
struct drm_file;
|
|
|
|
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM drm
|
|
#define TRACE_INCLUDE_FILE drm_trace
|
|
|
|
TRACE_EVENT(drm_vblank_event,
|
|
TP_PROTO(int crtc, unsigned int seq, ktime_t time, bool high_prec),
|
|
TP_ARGS(crtc, seq, time, high_prec),
|
|
TP_STRUCT__entry(
|
|
__field(int, crtc)
|
|
__field(unsigned int, seq)
|
|
__field(ktime_t, time)
|
|
__field(bool, high_prec)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->crtc = crtc;
|
|
__entry->seq = seq;
|
|
__entry->time = time;
|
|
__entry->high_prec = high_prec;
|
|
),
|
|
TP_printk("crtc=%d, seq=%u, time=%lld, high-prec=%s",
|
|
__entry->crtc, __entry->seq, __entry->time,
|
|
__entry->high_prec ? "true" : "false")
|
|
);
|
|
|
|
TRACE_EVENT(drm_vblank_event_queued,
|
|
TP_PROTO(struct drm_file *file, int crtc, unsigned int seq),
|
|
TP_ARGS(file, crtc, seq),
|
|
TP_STRUCT__entry(
|
|
__field(struct drm_file *, file)
|
|
__field(int, crtc)
|
|
__field(unsigned int, seq)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->file = file;
|
|
__entry->crtc = crtc;
|
|
__entry->seq = seq;
|
|
),
|
|
TP_printk("file=%p, crtc=%d, seq=%u", __entry->file, __entry->crtc, \
|
|
__entry->seq)
|
|
);
|
|
|
|
TRACE_EVENT(drm_vblank_event_delivered,
|
|
TP_PROTO(struct drm_file *file, int crtc, unsigned int seq),
|
|
TP_ARGS(file, crtc, seq),
|
|
TP_STRUCT__entry(
|
|
__field(struct drm_file *, file)
|
|
__field(int, crtc)
|
|
__field(unsigned int, seq)
|
|
),
|
|
TP_fast_assign(
|
|
__entry->file = file;
|
|
__entry->crtc = crtc;
|
|
__entry->seq = seq;
|
|
),
|
|
TP_printk("file=%p, crtc=%d, seq=%u", __entry->file, __entry->crtc, \
|
|
__entry->seq)
|
|
);
|
|
|
|
#endif /* _DRM_TRACE_H_ */
|
|
|
|
/* This part must be outside protection */
|
|
#undef TRACE_INCLUDE_PATH
|
|
#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm
|
|
#include <trace/define_trace.h>
|