Linux Audio

Check our new training course

Loading...
v4.6
 
 1#if !defined(_DRM_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
 2#define _DRM_TRACE_H_
 3
 4#include <linux/stringify.h>
 5#include <linux/types.h>
 6#include <linux/tracepoint.h>
 7
 
 
 8#undef TRACE_SYSTEM
 9#define TRACE_SYSTEM drm
10#define TRACE_INCLUDE_FILE drm_trace
11
12TRACE_EVENT(drm_vblank_event,
13	    TP_PROTO(int crtc, unsigned int seq),
14	    TP_ARGS(crtc, seq),
15	    TP_STRUCT__entry(
16		    __field(int, crtc)
17		    __field(unsigned int, seq)
18		    ),
19	    TP_fast_assign(
20		    __entry->crtc = crtc;
21		    __entry->seq = seq;
22		    ),
23	    TP_printk("crtc=%d, seq=%u", __entry->crtc, __entry->seq)
24);
25
26TRACE_EVENT(drm_vblank_event_queued,
27	    TP_PROTO(pid_t pid, int crtc, unsigned int seq),
28	    TP_ARGS(pid, crtc, seq),
29	    TP_STRUCT__entry(
30		    __field(pid_t, pid)
31		    __field(int, crtc)
32		    __field(unsigned int, seq)
33		    ),
34	    TP_fast_assign(
35		    __entry->pid = pid;
36		    __entry->crtc = crtc;
37		    __entry->seq = seq;
38		    ),
39	    TP_printk("pid=%d, crtc=%d, seq=%u", __entry->pid, __entry->crtc, \
40		      __entry->seq)
41);
42
43TRACE_EVENT(drm_vblank_event_delivered,
44	    TP_PROTO(pid_t pid, int crtc, unsigned int seq),
45	    TP_ARGS(pid, crtc, seq),
46	    TP_STRUCT__entry(
47		    __field(pid_t, pid)
48		    __field(int, crtc)
49		    __field(unsigned int, seq)
50		    ),
51	    TP_fast_assign(
52		    __entry->pid = pid;
53		    __entry->crtc = crtc;
54		    __entry->seq = seq;
55		    ),
56	    TP_printk("pid=%d, crtc=%d, seq=%u", __entry->pid, __entry->crtc, \
57		      __entry->seq)
58);
59
60#endif /* _DRM_TRACE_H_ */
61
62/* This part must be outside protection */
63#undef TRACE_INCLUDE_PATH
64#define TRACE_INCLUDE_PATH .
65#include <trace/define_trace.h>
v5.4
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#if !defined(_DRM_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
 3#define _DRM_TRACE_H_
 4
 5#include <linux/stringify.h>
 6#include <linux/types.h>
 7#include <linux/tracepoint.h>
 8
 9struct drm_file;
10
11#undef TRACE_SYSTEM
12#define TRACE_SYSTEM drm
13#define TRACE_INCLUDE_FILE drm_trace
14
15TRACE_EVENT(drm_vblank_event,
16	    TP_PROTO(int crtc, unsigned int seq),
17	    TP_ARGS(crtc, seq),
18	    TP_STRUCT__entry(
19		    __field(int, crtc)
20		    __field(unsigned int, seq)
21		    ),
22	    TP_fast_assign(
23		    __entry->crtc = crtc;
24		    __entry->seq = seq;
25		    ),
26	    TP_printk("crtc=%d, seq=%u", __entry->crtc, __entry->seq)
27);
28
29TRACE_EVENT(drm_vblank_event_queued,
30	    TP_PROTO(struct drm_file *file, int crtc, unsigned int seq),
31	    TP_ARGS(file, crtc, seq),
32	    TP_STRUCT__entry(
33		    __field(struct drm_file *, file)
34		    __field(int, crtc)
35		    __field(unsigned int, seq)
36		    ),
37	    TP_fast_assign(
38		    __entry->file = file;
39		    __entry->crtc = crtc;
40		    __entry->seq = seq;
41		    ),
42	    TP_printk("file=%p, crtc=%d, seq=%u", __entry->file, __entry->crtc, \
43		      __entry->seq)
44);
45
46TRACE_EVENT(drm_vblank_event_delivered,
47	    TP_PROTO(struct drm_file *file, int crtc, unsigned int seq),
48	    TP_ARGS(file, crtc, seq),
49	    TP_STRUCT__entry(
50		    __field(struct drm_file *, file)
51		    __field(int, crtc)
52		    __field(unsigned int, seq)
53		    ),
54	    TP_fast_assign(
55		    __entry->file = file;
56		    __entry->crtc = crtc;
57		    __entry->seq = seq;
58		    ),
59	    TP_printk("file=%p, crtc=%d, seq=%u", __entry->file, __entry->crtc, \
60		      __entry->seq)
61);
62
63#endif /* _DRM_TRACE_H_ */
64
65/* This part must be outside protection */
66#undef TRACE_INCLUDE_PATH
67#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm
68#include <trace/define_trace.h>