1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define TRACE_SYSTEM coda
5 #if !defined(__CODA_TRACE_H__) || defined(TRACE_HEADER_MULTI_READ)
6 #define __CODA_TRACE_H__
8 #include <linux/tracepoint.h>
9 #include <media/videobuf2-v4l2.h>
13 TRACE_EVENT(coda_bit_run
,
14 TP_PROTO(struct coda_ctx
*ctx
, int cmd
),
25 __entry
->minor
= ctx
->fh
.vdev
->minor
;
26 __entry
->ctx
= ctx
->idx
;
30 TP_printk("minor = %d, ctx = %d, cmd = %d",
31 __entry
->minor
, __entry
->ctx
, __entry
->cmd
)
34 TRACE_EVENT(coda_bit_done
,
35 TP_PROTO(struct coda_ctx
*ctx
),
45 __entry
->minor
= ctx
->fh
.vdev
->minor
;
46 __entry
->ctx
= ctx
->idx
;
49 TP_printk("minor = %d, ctx = %d", __entry
->minor
, __entry
->ctx
)
52 DECLARE_EVENT_CLASS(coda_buf_class
,
53 TP_PROTO(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
),
64 __entry
->minor
= ctx
->fh
.vdev
->minor
;
65 __entry
->index
= buf
->vb2_buf
.index
;
66 __entry
->ctx
= ctx
->idx
;
69 TP_printk("minor = %d, index = %d, ctx = %d",
70 __entry
->minor
, __entry
->index
, __entry
->ctx
)
73 DEFINE_EVENT(coda_buf_class
, coda_enc_pic_run
,
74 TP_PROTO(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
),
78 DEFINE_EVENT(coda_buf_class
, coda_enc_pic_done
,
79 TP_PROTO(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
),
83 DECLARE_EVENT_CLASS(coda_buf_meta_class
,
84 TP_PROTO(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
,
85 struct coda_buffer_meta
*meta
),
87 TP_ARGS(ctx
, buf
, meta
),
98 __entry
->minor
= ctx
->fh
.vdev
->minor
;
99 __entry
->index
= buf
->vb2_buf
.index
;
100 __entry
->start
= meta
->start
& ctx
->bitstream_fifo
.kfifo
.mask
;
101 __entry
->end
= meta
->end
& ctx
->bitstream_fifo
.kfifo
.mask
;
102 __entry
->ctx
= ctx
->idx
;
105 TP_printk("minor = %d, index = %d, start = 0x%x, end = 0x%x, ctx = %d",
106 __entry
->minor
, __entry
->index
, __entry
->start
, __entry
->end
,
110 DEFINE_EVENT(coda_buf_meta_class
, coda_bit_queue
,
111 TP_PROTO(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
,
112 struct coda_buffer_meta
*meta
),
113 TP_ARGS(ctx
, buf
, meta
)
116 DECLARE_EVENT_CLASS(coda_meta_class
,
117 TP_PROTO(struct coda_ctx
*ctx
, struct coda_buffer_meta
*meta
),
129 __entry
->minor
= ctx
->fh
.vdev
->minor
;
130 __entry
->start
= meta
? (meta
->start
&
131 ctx
->bitstream_fifo
.kfifo
.mask
) : 0;
132 __entry
->end
= meta
? (meta
->end
&
133 ctx
->bitstream_fifo
.kfifo
.mask
) : 0;
134 __entry
->ctx
= ctx
->idx
;
137 TP_printk("minor = %d, start = 0x%x, end = 0x%x, ctx = %d",
138 __entry
->minor
, __entry
->start
, __entry
->end
, __entry
->ctx
)
141 DEFINE_EVENT(coda_meta_class
, coda_dec_pic_run
,
142 TP_PROTO(struct coda_ctx
*ctx
, struct coda_buffer_meta
*meta
),
146 DEFINE_EVENT(coda_meta_class
, coda_dec_pic_done
,
147 TP_PROTO(struct coda_ctx
*ctx
, struct coda_buffer_meta
*meta
),
151 DEFINE_EVENT(coda_buf_meta_class
, coda_dec_rot_done
,
152 TP_PROTO(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
,
153 struct coda_buffer_meta
*meta
),
154 TP_ARGS(ctx
, buf
, meta
)
157 DEFINE_EVENT(coda_buf_class
, coda_jpeg_run
,
158 TP_PROTO(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
),
162 DEFINE_EVENT(coda_buf_class
, coda_jpeg_done
,
163 TP_PROTO(struct coda_ctx
*ctx
, struct vb2_v4l2_buffer
*buf
),
167 #endif /* __CODA_TRACE_H__ */
169 #undef TRACE_INCLUDE_PATH
170 #define TRACE_INCLUDE_PATH ../../drivers/media/platform/coda
171 #undef TRACE_INCLUDE_FILE
172 #define TRACE_INCLUDE_FILE trace
174 /* This part must be outside protection */
175 #include <trace/define_trace.h>