2 * linux/drivers/media/platform/s5p-mfc/s5p_mfc_dec.c
4 * Copyright (C) 2011 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 * Kamil Debski, <k.debski@samsung.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/clk.h>
15 #include <linux/interrupt.h>
17 #include <linux/module.h>
18 #include <linux/platform_device.h>
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/version.h>
22 #include <linux/videodev2.h>
23 #include <linux/workqueue.h>
24 #include <media/v4l2-ctrls.h>
25 #include <media/v4l2-event.h>
26 #include <media/videobuf2-core.h>
27 #include "s5p_mfc_common.h"
28 #include "s5p_mfc_debug.h"
29 #include "s5p_mfc_dec.h"
30 #include "s5p_mfc_intr.h"
31 #include "s5p_mfc_opr.h"
32 #include "s5p_mfc_pm.h"
34 #define DEF_SRC_FMT_DEC V4L2_PIX_FMT_H264
35 #define DEF_DST_FMT_DEC V4L2_PIX_FMT_NV12MT_16X16
37 static struct s5p_mfc_fmt formats
[] = {
39 .name
= "4:2:0 2 Planes 16x16 Tiles",
40 .fourcc
= V4L2_PIX_FMT_NV12MT_16X16
,
41 .codec_mode
= S5P_MFC_CODEC_NONE
,
46 .name
= "4:2:0 2 Planes 64x32 Tiles",
47 .fourcc
= V4L2_PIX_FMT_NV12MT
,
48 .codec_mode
= S5P_MFC_CODEC_NONE
,
53 .name
= "4:2:0 2 Planes Y/CbCr",
54 .fourcc
= V4L2_PIX_FMT_NV12M
,
55 .codec_mode
= S5P_MFC_CODEC_NONE
,
60 .name
= "4:2:0 2 Planes Y/CrCb",
61 .fourcc
= V4L2_PIX_FMT_NV21M
,
62 .codec_mode
= S5P_MFC_CODEC_NONE
,
67 .name
= "H264 Encoded Stream",
68 .fourcc
= V4L2_PIX_FMT_H264
,
69 .codec_mode
= S5P_MFC_CODEC_H264_DEC
,
74 .name
= "H264/MVC Encoded Stream",
75 .fourcc
= V4L2_PIX_FMT_H264_MVC
,
76 .codec_mode
= S5P_MFC_CODEC_H264_MVC_DEC
,
81 .name
= "H263 Encoded Stream",
82 .fourcc
= V4L2_PIX_FMT_H263
,
83 .codec_mode
= S5P_MFC_CODEC_H263_DEC
,
88 .name
= "MPEG1 Encoded Stream",
89 .fourcc
= V4L2_PIX_FMT_MPEG1
,
90 .codec_mode
= S5P_MFC_CODEC_MPEG2_DEC
,
95 .name
= "MPEG2 Encoded Stream",
96 .fourcc
= V4L2_PIX_FMT_MPEG2
,
97 .codec_mode
= S5P_MFC_CODEC_MPEG2_DEC
,
102 .name
= "MPEG4 Encoded Stream",
103 .fourcc
= V4L2_PIX_FMT_MPEG4
,
104 .codec_mode
= S5P_MFC_CODEC_MPEG4_DEC
,
109 .name
= "XviD Encoded Stream",
110 .fourcc
= V4L2_PIX_FMT_XVID
,
111 .codec_mode
= S5P_MFC_CODEC_MPEG4_DEC
,
116 .name
= "VC1 Encoded Stream",
117 .fourcc
= V4L2_PIX_FMT_VC1_ANNEX_G
,
118 .codec_mode
= S5P_MFC_CODEC_VC1_DEC
,
123 .name
= "VC1 RCV Encoded Stream",
124 .fourcc
= V4L2_PIX_FMT_VC1_ANNEX_L
,
125 .codec_mode
= S5P_MFC_CODEC_VC1RCV_DEC
,
130 .name
= "VP8 Encoded Stream",
131 .fourcc
= V4L2_PIX_FMT_VP8
,
132 .codec_mode
= S5P_MFC_CODEC_VP8_DEC
,
138 #define NUM_FORMATS ARRAY_SIZE(formats)
140 /* Find selected format description */
141 static struct s5p_mfc_fmt
*find_format(struct v4l2_format
*f
, unsigned int t
)
145 for (i
= 0; i
< NUM_FORMATS
; i
++) {
146 if (formats
[i
].fourcc
== f
->fmt
.pix_mp
.pixelformat
&&
147 formats
[i
].type
== t
)
153 static struct mfc_control controls
[] = {
155 .id
= V4L2_CID_MPEG_MFC51_VIDEO_DECODER_H264_DISPLAY_DELAY
,
156 .type
= V4L2_CTRL_TYPE_INTEGER
,
157 .name
= "H264 Display Delay",
164 .id
= V4L2_CID_MPEG_MFC51_VIDEO_DECODER_H264_DISPLAY_DELAY_ENABLE
,
165 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
166 .name
= "H264 Display Delay Enable",
173 .id
= V4L2_CID_MPEG_VIDEO_DECODER_MPEG4_DEBLOCK_FILTER
,
174 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
175 .name
= "Mpeg4 Loop Filter Enable",
182 .id
= V4L2_CID_MPEG_VIDEO_DECODER_SLICE_INTERFACE
,
183 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
184 .name
= "Slice Interface Enable",
191 .id
= V4L2_CID_MIN_BUFFERS_FOR_CAPTURE
,
192 .type
= V4L2_CTRL_TYPE_INTEGER
,
193 .name
= "Minimum number of cap bufs",
202 #define NUM_CTRLS ARRAY_SIZE(controls)
204 /* Check whether a context should be run on hardware */
205 static int s5p_mfc_ctx_ready(struct s5p_mfc_ctx
*ctx
)
207 /* Context is to parse header */
208 if (ctx
->src_queue_cnt
>= 1 && ctx
->state
== MFCINST_GOT_INST
)
210 /* Context is to decode a frame */
211 if (ctx
->src_queue_cnt
>= 1 &&
212 ctx
->state
== MFCINST_RUNNING
&&
213 ctx
->dst_queue_cnt
>= ctx
->dpb_count
)
215 /* Context is to return last frame */
216 if (ctx
->state
== MFCINST_FINISHING
&&
217 ctx
->dst_queue_cnt
>= ctx
->dpb_count
)
219 /* Context is to set buffers */
220 if (ctx
->src_queue_cnt
>= 1 &&
221 ctx
->state
== MFCINST_HEAD_PARSED
&&
222 ctx
->capture_state
== QUEUE_BUFS_MMAPED
)
224 /* Resolution change */
225 if ((ctx
->state
== MFCINST_RES_CHANGE_INIT
||
226 ctx
->state
== MFCINST_RES_CHANGE_FLUSH
) &&
227 ctx
->dst_queue_cnt
>= ctx
->dpb_count
)
229 if (ctx
->state
== MFCINST_RES_CHANGE_END
&&
230 ctx
->src_queue_cnt
>= 1)
232 mfc_debug(2, "ctx is not ready\n");
236 static struct s5p_mfc_codec_ops decoder_codec_ops
= {
237 .pre_seq_start
= NULL
,
238 .post_seq_start
= NULL
,
239 .pre_frame_start
= NULL
,
240 .post_frame_start
= NULL
,
243 /* Query capabilities of the device */
244 static int vidioc_querycap(struct file
*file
, void *priv
,
245 struct v4l2_capability
*cap
)
247 struct s5p_mfc_dev
*dev
= video_drvdata(file
);
249 strncpy(cap
->driver
, dev
->plat_dev
->name
, sizeof(cap
->driver
) - 1);
250 strncpy(cap
->card
, dev
->plat_dev
->name
, sizeof(cap
->card
) - 1);
251 cap
->bus_info
[0] = 0;
252 cap
->version
= KERNEL_VERSION(1, 0, 0);
254 * This is only a mem-to-mem video device. The capture and output
255 * device capability flags are left only for backward compatibility
256 * and are scheduled for removal.
258 cap
->capabilities
= V4L2_CAP_VIDEO_M2M_MPLANE
| V4L2_CAP_STREAMING
|
259 V4L2_CAP_VIDEO_CAPTURE_MPLANE
|
260 V4L2_CAP_VIDEO_OUTPUT_MPLANE
;
264 /* Enumerate format */
265 static int vidioc_enum_fmt(struct v4l2_fmtdesc
*f
, bool mplane
, bool out
)
267 struct s5p_mfc_fmt
*fmt
;
270 for (i
= 0; i
< ARRAY_SIZE(formats
); ++i
) {
271 if (mplane
&& formats
[i
].num_planes
== 1)
273 else if (!mplane
&& formats
[i
].num_planes
> 1)
275 if (out
&& formats
[i
].type
!= MFC_FMT_DEC
)
277 else if (!out
&& formats
[i
].type
!= MFC_FMT_RAW
)
284 if (i
== ARRAY_SIZE(formats
))
287 strlcpy(f
->description
, fmt
->name
, sizeof(f
->description
));
288 f
->pixelformat
= fmt
->fourcc
;
292 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *pirv
,
293 struct v4l2_fmtdesc
*f
)
295 return vidioc_enum_fmt(f
, false, false);
298 static int vidioc_enum_fmt_vid_cap_mplane(struct file
*file
, void *pirv
,
299 struct v4l2_fmtdesc
*f
)
301 return vidioc_enum_fmt(f
, true, false);
304 static int vidioc_enum_fmt_vid_out(struct file
*file
, void *prov
,
305 struct v4l2_fmtdesc
*f
)
307 return vidioc_enum_fmt(f
, false, true);
310 static int vidioc_enum_fmt_vid_out_mplane(struct file
*file
, void *prov
,
311 struct v4l2_fmtdesc
*f
)
313 return vidioc_enum_fmt(f
, true, true);
317 static int vidioc_g_fmt(struct file
*file
, void *priv
, struct v4l2_format
*f
)
319 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
320 struct v4l2_pix_format_mplane
*pix_mp
;
323 pix_mp
= &f
->fmt
.pix_mp
;
324 if (f
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
&&
325 (ctx
->state
== MFCINST_GOT_INST
|| ctx
->state
==
326 MFCINST_RES_CHANGE_END
)) {
327 /* If the MFC is parsing the header,
328 * so wait until it is finished */
329 s5p_mfc_clean_ctx_int_flags(ctx
);
330 s5p_mfc_wait_for_done_ctx(ctx
, S5P_MFC_R2H_CMD_SEQ_DONE_RET
,
333 if (f
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
&&
334 ctx
->state
>= MFCINST_HEAD_PARSED
&&
335 ctx
->state
< MFCINST_ABORT
) {
336 /* This is run on CAPTURE (decode output) */
337 /* Width and height are set to the dimensions
338 of the movie, the buffer is bigger and
339 further processing stages should crop to this
341 pix_mp
->width
= ctx
->buf_width
;
342 pix_mp
->height
= ctx
->buf_height
;
343 pix_mp
->field
= V4L2_FIELD_NONE
;
344 pix_mp
->num_planes
= 2;
345 /* Set pixelformat to the format in which MFC
346 outputs the decoded frame */
347 pix_mp
->pixelformat
= V4L2_PIX_FMT_NV12MT
;
348 pix_mp
->plane_fmt
[0].bytesperline
= ctx
->buf_width
;
349 pix_mp
->plane_fmt
[0].sizeimage
= ctx
->luma_size
;
350 pix_mp
->plane_fmt
[1].bytesperline
= ctx
->buf_width
;
351 pix_mp
->plane_fmt
[1].sizeimage
= ctx
->chroma_size
;
352 } else if (f
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
353 /* This is run on OUTPUT
354 The buffer contains compressed image
355 so width and height have no meaning */
358 pix_mp
->field
= V4L2_FIELD_NONE
;
359 pix_mp
->plane_fmt
[0].bytesperline
= ctx
->dec_src_buf_size
;
360 pix_mp
->plane_fmt
[0].sizeimage
= ctx
->dec_src_buf_size
;
361 pix_mp
->pixelformat
= ctx
->src_fmt
->fourcc
;
362 pix_mp
->num_planes
= ctx
->src_fmt
->num_planes
;
364 mfc_err("Format could not be read\n");
365 mfc_debug(2, "%s-- with error\n", __func__
);
373 static int vidioc_try_fmt(struct file
*file
, void *priv
, struct v4l2_format
*f
)
375 struct s5p_mfc_dev
*dev
= video_drvdata(file
);
376 struct s5p_mfc_fmt
*fmt
;
378 mfc_debug(2, "Type is %d\n", f
->type
);
379 if (f
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
380 fmt
= find_format(f
, MFC_FMT_DEC
);
382 mfc_err("Unsupported format for source.\n");
385 if (!IS_MFCV6(dev
) && (fmt
->fourcc
== V4L2_PIX_FMT_VP8
)) {
386 mfc_err("Not supported format.\n");
389 } else if (f
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
390 fmt
= find_format(f
, MFC_FMT_RAW
);
392 mfc_err("Unsupported format for destination.\n");
395 if (IS_MFCV6(dev
) && (fmt
->fourcc
== V4L2_PIX_FMT_NV12MT
)) {
396 mfc_err("Not supported format.\n");
398 } else if (!IS_MFCV6(dev
) &&
399 (fmt
->fourcc
!= V4L2_PIX_FMT_NV12MT
)) {
400 mfc_err("Not supported format.\n");
409 static int vidioc_s_fmt(struct file
*file
, void *priv
, struct v4l2_format
*f
)
411 struct s5p_mfc_dev
*dev
= video_drvdata(file
);
412 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
414 struct s5p_mfc_fmt
*fmt
;
415 struct v4l2_pix_format_mplane
*pix_mp
;
418 ret
= vidioc_try_fmt(file
, priv
, f
);
419 pix_mp
= &f
->fmt
.pix_mp
;
422 if (ctx
->vq_src
.streaming
|| ctx
->vq_dst
.streaming
) {
423 v4l2_err(&dev
->v4l2_dev
, "%s queue busy\n", __func__
);
427 if (f
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
428 fmt
= find_format(f
, MFC_FMT_RAW
);
430 mfc_err("Unsupported format for source.\n");
433 if (!IS_MFCV6(dev
) && (fmt
->fourcc
!= V4L2_PIX_FMT_NV12MT
)) {
434 mfc_err("Not supported format.\n");
436 } else if (IS_MFCV6(dev
) &&
437 (fmt
->fourcc
== V4L2_PIX_FMT_NV12MT
)) {
438 mfc_err("Not supported format.\n");
444 } else if (f
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
445 mfc_err("Wrong type error for S_FMT : %d", f
->type
);
448 fmt
= find_format(f
, MFC_FMT_DEC
);
449 if (!fmt
|| fmt
->codec_mode
== S5P_MFC_CODEC_NONE
) {
450 mfc_err("Unknown codec\n");
454 if (fmt
->type
!= MFC_FMT_DEC
) {
455 mfc_err("Wrong format selected, you should choose "
456 "format for decoding\n");
460 if (!IS_MFCV6(dev
) && (fmt
->fourcc
== V4L2_PIX_FMT_VP8
)) {
461 mfc_err("Not supported format.\n");
465 ctx
->codec_mode
= fmt
->codec_mode
;
466 mfc_debug(2, "The codec number is: %d\n", ctx
->codec_mode
);
469 if (pix_mp
->plane_fmt
[0].sizeimage
)
470 ctx
->dec_src_buf_size
= pix_mp
->plane_fmt
[0].sizeimage
;
472 pix_mp
->plane_fmt
[0].sizeimage
= ctx
->dec_src_buf_size
=
474 pix_mp
->plane_fmt
[0].bytesperline
= 0;
475 ctx
->state
= MFCINST_INIT
;
481 /* Reqeust buffers */
482 static int vidioc_reqbufs(struct file
*file
, void *priv
,
483 struct v4l2_requestbuffers
*reqbufs
)
485 struct s5p_mfc_dev
*dev
= video_drvdata(file
);
486 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
489 if (reqbufs
->memory
!= V4L2_MEMORY_MMAP
) {
490 mfc_err("Only V4L2_MEMORY_MAP is supported\n");
493 if (reqbufs
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
494 /* Can only request buffers after an instance has been opened.*/
495 if (ctx
->state
== MFCINST_INIT
) {
496 ctx
->src_bufs_cnt
= 0;
497 if (reqbufs
->count
== 0) {
498 mfc_debug(2, "Freeing buffers\n");
500 ret
= vb2_reqbufs(&ctx
->vq_src
, reqbufs
);
505 if (ctx
->output_state
!= QUEUE_FREE
) {
506 mfc_err("Bufs have already been requested\n");
510 ret
= vb2_reqbufs(&ctx
->vq_src
, reqbufs
);
513 mfc_err("vb2_reqbufs on output failed\n");
516 mfc_debug(2, "vb2_reqbufs: %d\n", ret
);
517 ctx
->output_state
= QUEUE_BUFS_REQUESTED
;
519 } else if (reqbufs
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
520 ctx
->dst_bufs_cnt
= 0;
521 if (reqbufs
->count
== 0) {
522 mfc_debug(2, "Freeing buffers\n");
524 ret
= vb2_reqbufs(&ctx
->vq_dst
, reqbufs
);
528 if (ctx
->capture_state
!= QUEUE_FREE
) {
529 mfc_err("Bufs have already been requested\n");
532 ctx
->capture_state
= QUEUE_BUFS_REQUESTED
;
534 ret
= vb2_reqbufs(&ctx
->vq_dst
, reqbufs
);
537 mfc_err("vb2_reqbufs on capture failed\n");
540 if (reqbufs
->count
< ctx
->dpb_count
) {
541 mfc_err("Not enough buffers allocated\n");
544 ret
= vb2_reqbufs(&ctx
->vq_dst
, reqbufs
);
548 ctx
->total_dpb_count
= reqbufs
->count
;
549 ret
= s5p_mfc_hw_call(dev
->mfc_ops
, alloc_codec_buffers
, ctx
);
551 mfc_err("Failed to allocate decoding buffers\n");
554 ret
= vb2_reqbufs(&ctx
->vq_dst
, reqbufs
);
558 if (ctx
->dst_bufs_cnt
== ctx
->total_dpb_count
) {
559 ctx
->capture_state
= QUEUE_BUFS_MMAPED
;
561 mfc_err("Not all buffers passed to buf_init\n");
564 ret
= vb2_reqbufs(&ctx
->vq_dst
, reqbufs
);
565 s5p_mfc_hw_call(dev
->mfc_ops
, release_codec_buffers
,
570 if (s5p_mfc_ctx_ready(ctx
))
571 set_work_bit_irqsave(ctx
);
572 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
573 s5p_mfc_wait_for_done_ctx(ctx
,
574 S5P_MFC_R2H_CMD_INIT_BUFFERS_RET
, 0);
580 static int vidioc_querybuf(struct file
*file
, void *priv
,
581 struct v4l2_buffer
*buf
)
583 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
587 if (buf
->memory
!= V4L2_MEMORY_MMAP
) {
588 mfc_err("Only mmaped buffers can be used\n");
591 mfc_debug(2, "State: %d, buf->type: %d\n", ctx
->state
, buf
->type
);
592 if (ctx
->state
== MFCINST_INIT
&&
593 buf
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
594 ret
= vb2_querybuf(&ctx
->vq_src
, buf
);
595 } else if (ctx
->state
== MFCINST_RUNNING
&&
596 buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
597 ret
= vb2_querybuf(&ctx
->vq_dst
, buf
);
598 for (i
= 0; i
< buf
->length
; i
++)
599 buf
->m
.planes
[i
].m
.mem_offset
+= DST_QUEUE_OFF_BASE
;
601 mfc_err("vidioc_querybuf called in an inappropriate state\n");
609 static int vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*buf
)
611 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
613 if (ctx
->state
== MFCINST_ERROR
) {
614 mfc_err("Call on QBUF after unrecoverable error\n");
617 if (buf
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
)
618 return vb2_qbuf(&ctx
->vq_src
, buf
);
619 else if (buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
620 return vb2_qbuf(&ctx
->vq_dst
, buf
);
624 /* Dequeue a buffer */
625 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*buf
)
627 const struct v4l2_event ev
= {
628 .type
= V4L2_EVENT_EOS
630 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
633 if (ctx
->state
== MFCINST_ERROR
) {
634 mfc_err("Call on DQBUF after unrecoverable error\n");
637 if (buf
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
)
638 ret
= vb2_dqbuf(&ctx
->vq_src
, buf
, file
->f_flags
& O_NONBLOCK
);
639 else if (buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
640 ret
= vb2_dqbuf(&ctx
->vq_dst
, buf
, file
->f_flags
& O_NONBLOCK
);
641 if (ret
== 0 && ctx
->state
== MFCINST_FINISHED
&&
642 list_empty(&ctx
->vq_dst
.done_list
))
643 v4l2_event_queue_fh(&ctx
->fh
, &ev
);
650 /* Export DMA buffer */
651 static int vidioc_expbuf(struct file
*file
, void *priv
,
652 struct v4l2_exportbuffer
*eb
)
654 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
656 if (eb
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
)
657 return vb2_expbuf(&ctx
->vq_src
, eb
);
658 if (eb
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
659 return vb2_expbuf(&ctx
->vq_dst
, eb
);
664 static int vidioc_streamon(struct file
*file
, void *priv
,
665 enum v4l2_buf_type type
)
667 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
668 struct s5p_mfc_dev
*dev
= ctx
->dev
;
672 if (type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
674 if (ctx
->state
== MFCINST_INIT
) {
675 ctx
->dst_bufs_cnt
= 0;
676 ctx
->src_bufs_cnt
= 0;
677 ctx
->capture_state
= QUEUE_FREE
;
678 ctx
->output_state
= QUEUE_FREE
;
679 s5p_mfc_hw_call(dev
->mfc_ops
, alloc_instance_buffer
,
681 s5p_mfc_hw_call(dev
->mfc_ops
, alloc_dec_temp_buffers
,
683 set_work_bit_irqsave(ctx
);
684 s5p_mfc_clean_ctx_int_flags(ctx
);
685 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
687 if (s5p_mfc_wait_for_done_ctx(ctx
,
688 S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET
, 0)) {
689 /* Error or timeout */
690 mfc_err("Error getting instance from hardware\n");
691 s5p_mfc_hw_call(dev
->mfc_ops
,
692 release_instance_buffer
, ctx
);
693 s5p_mfc_hw_call(dev
->mfc_ops
,
694 release_dec_desc_buffer
, ctx
);
697 mfc_debug(2, "Got instance number: %d\n", ctx
->inst_no
);
699 ret
= vb2_streamon(&ctx
->vq_src
, type
);
701 else if (type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
702 ret
= vb2_streamon(&ctx
->vq_dst
, type
);
707 /* Stream off, which equals to a pause */
708 static int vidioc_streamoff(struct file
*file
, void *priv
,
709 enum v4l2_buf_type type
)
711 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
713 if (type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
)
714 return vb2_streamoff(&ctx
->vq_src
, type
);
715 else if (type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
716 return vb2_streamoff(&ctx
->vq_dst
, type
);
720 /* Set controls - v4l2 control framework */
721 static int s5p_mfc_dec_s_ctrl(struct v4l2_ctrl
*ctrl
)
723 struct s5p_mfc_ctx
*ctx
= ctrl_to_ctx(ctrl
);
726 case V4L2_CID_MPEG_MFC51_VIDEO_DECODER_H264_DISPLAY_DELAY
:
727 ctx
->display_delay
= ctrl
->val
;
729 case V4L2_CID_MPEG_MFC51_VIDEO_DECODER_H264_DISPLAY_DELAY_ENABLE
:
730 ctx
->display_delay_enable
= ctrl
->val
;
732 case V4L2_CID_MPEG_VIDEO_DECODER_MPEG4_DEBLOCK_FILTER
:
733 ctx
->loop_filter_mpeg4
= ctrl
->val
;
735 case V4L2_CID_MPEG_VIDEO_DECODER_SLICE_INTERFACE
:
736 ctx
->slice_interface
= ctrl
->val
;
739 mfc_err("Invalid control 0x%08x\n", ctrl
->id
);
745 static int s5p_mfc_dec_g_v_ctrl(struct v4l2_ctrl
*ctrl
)
747 struct s5p_mfc_ctx
*ctx
= ctrl_to_ctx(ctrl
);
748 struct s5p_mfc_dev
*dev
= ctx
->dev
;
751 case V4L2_CID_MIN_BUFFERS_FOR_CAPTURE
:
752 if (ctx
->state
>= MFCINST_HEAD_PARSED
&&
753 ctx
->state
< MFCINST_ABORT
) {
754 ctrl
->val
= ctx
->dpb_count
;
756 } else if (ctx
->state
!= MFCINST_INIT
) {
757 v4l2_err(&dev
->v4l2_dev
, "Decoding not initialised\n");
760 /* Should wait for the header to be parsed */
761 s5p_mfc_clean_ctx_int_flags(ctx
);
762 s5p_mfc_wait_for_done_ctx(ctx
,
763 S5P_MFC_R2H_CMD_SEQ_DONE_RET
, 0);
764 if (ctx
->state
>= MFCINST_HEAD_PARSED
&&
765 ctx
->state
< MFCINST_ABORT
) {
766 ctrl
->val
= ctx
->dpb_count
;
768 v4l2_err(&dev
->v4l2_dev
, "Decoding not initialised\n");
777 static const struct v4l2_ctrl_ops s5p_mfc_dec_ctrl_ops
= {
778 .s_ctrl
= s5p_mfc_dec_s_ctrl
,
779 .g_volatile_ctrl
= s5p_mfc_dec_g_v_ctrl
,
782 /* Get cropping information */
783 static int vidioc_g_crop(struct file
*file
, void *priv
,
784 struct v4l2_crop
*cr
)
786 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
787 struct s5p_mfc_dev
*dev
= ctx
->dev
;
788 u32 left
, right
, top
, bottom
;
790 if (ctx
->state
!= MFCINST_HEAD_PARSED
&&
791 ctx
->state
!= MFCINST_RUNNING
&& ctx
->state
!= MFCINST_FINISHING
792 && ctx
->state
!= MFCINST_FINISHED
) {
793 mfc_err("Cannont set crop\n");
796 if (ctx
->src_fmt
->fourcc
== V4L2_PIX_FMT_H264
) {
797 left
= s5p_mfc_hw_call(dev
->mfc_ops
, get_crop_info_h
, ctx
);
798 right
= left
>> S5P_FIMV_SHARED_CROP_RIGHT_SHIFT
;
799 left
= left
& S5P_FIMV_SHARED_CROP_LEFT_MASK
;
800 top
= s5p_mfc_hw_call(dev
->mfc_ops
, get_crop_info_v
, ctx
);
801 bottom
= top
>> S5P_FIMV_SHARED_CROP_BOTTOM_SHIFT
;
802 top
= top
& S5P_FIMV_SHARED_CROP_TOP_MASK
;
805 cr
->c
.width
= ctx
->img_width
- left
- right
;
806 cr
->c
.height
= ctx
->img_height
- top
- bottom
;
807 mfc_debug(2, "Cropping info [h264]: l=%d t=%d "
808 "w=%d h=%d (r=%d b=%d fw=%d fh=%d\n", left
, top
,
809 cr
->c
.width
, cr
->c
.height
, right
, bottom
,
810 ctx
->buf_width
, ctx
->buf_height
);
814 cr
->c
.width
= ctx
->img_width
;
815 cr
->c
.height
= ctx
->img_height
;
816 mfc_debug(2, "Cropping info: w=%d h=%d fw=%d "
817 "fh=%d\n", cr
->c
.width
, cr
->c
.height
, ctx
->buf_width
,
823 int vidioc_decoder_cmd(struct file
*file
, void *priv
,
824 struct v4l2_decoder_cmd
*cmd
)
826 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
827 struct s5p_mfc_dev
*dev
= ctx
->dev
;
828 struct s5p_mfc_buf
*buf
;
832 case V4L2_ENC_CMD_STOP
:
836 if (!ctx
->vq_src
.streaming
)
839 spin_lock_irqsave(&dev
->irqlock
, flags
);
840 if (list_empty(&ctx
->src_queue
)) {
841 mfc_err("EOS: empty src queue, entering finishing state");
842 ctx
->state
= MFCINST_FINISHING
;
843 if (s5p_mfc_ctx_ready(ctx
))
844 set_work_bit_irqsave(ctx
);
845 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
846 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
848 mfc_err("EOS: marking last buffer of stream");
849 buf
= list_entry(ctx
->src_queue
.prev
,
850 struct s5p_mfc_buf
, list
);
851 if (buf
->flags
& MFC_BUF_FLAG_USED
)
852 ctx
->state
= MFCINST_FINISHING
;
854 buf
->flags
|= MFC_BUF_FLAG_EOS
;
855 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
864 static int vidioc_subscribe_event(struct v4l2_fh
*fh
,
865 const struct v4l2_event_subscription
*sub
)
869 return v4l2_event_subscribe(fh
, sub
, 2, NULL
);
877 static const struct v4l2_ioctl_ops s5p_mfc_dec_ioctl_ops
= {
878 .vidioc_querycap
= vidioc_querycap
,
879 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
880 .vidioc_enum_fmt_vid_cap_mplane
= vidioc_enum_fmt_vid_cap_mplane
,
881 .vidioc_enum_fmt_vid_out
= vidioc_enum_fmt_vid_out
,
882 .vidioc_enum_fmt_vid_out_mplane
= vidioc_enum_fmt_vid_out_mplane
,
883 .vidioc_g_fmt_vid_cap_mplane
= vidioc_g_fmt
,
884 .vidioc_g_fmt_vid_out_mplane
= vidioc_g_fmt
,
885 .vidioc_try_fmt_vid_cap_mplane
= vidioc_try_fmt
,
886 .vidioc_try_fmt_vid_out_mplane
= vidioc_try_fmt
,
887 .vidioc_s_fmt_vid_cap_mplane
= vidioc_s_fmt
,
888 .vidioc_s_fmt_vid_out_mplane
= vidioc_s_fmt
,
889 .vidioc_reqbufs
= vidioc_reqbufs
,
890 .vidioc_querybuf
= vidioc_querybuf
,
891 .vidioc_qbuf
= vidioc_qbuf
,
892 .vidioc_dqbuf
= vidioc_dqbuf
,
893 .vidioc_expbuf
= vidioc_expbuf
,
894 .vidioc_streamon
= vidioc_streamon
,
895 .vidioc_streamoff
= vidioc_streamoff
,
896 .vidioc_g_crop
= vidioc_g_crop
,
897 .vidioc_decoder_cmd
= vidioc_decoder_cmd
,
898 .vidioc_subscribe_event
= vidioc_subscribe_event
,
899 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
902 static int s5p_mfc_queue_setup(struct vb2_queue
*vq
,
903 const struct v4l2_format
*fmt
, unsigned int *buf_count
,
904 unsigned int *plane_count
, unsigned int psize
[],
907 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(vq
->drv_priv
);
908 struct s5p_mfc_dev
*dev
= ctx
->dev
;
910 /* Video output for decoding (source)
911 * this can be set after getting an instance */
912 if (ctx
->state
== MFCINST_INIT
&&
913 vq
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
914 /* A single plane is required for input */
918 if (*buf_count
> MFC_MAX_BUFFERS
)
919 *buf_count
= MFC_MAX_BUFFERS
;
920 /* Video capture for decoding (destination)
921 * this can be set after the header was parsed */
922 } else if (ctx
->state
== MFCINST_HEAD_PARSED
&&
923 vq
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
924 /* Output plane count is 2 - one for Y and one for CbCr */
926 /* Setup buffer count */
927 if (*buf_count
< ctx
->dpb_count
)
928 *buf_count
= ctx
->dpb_count
;
929 if (*buf_count
> ctx
->dpb_count
+ MFC_MAX_EXTRA_DPB
)
930 *buf_count
= ctx
->dpb_count
+ MFC_MAX_EXTRA_DPB
;
931 if (*buf_count
> MFC_MAX_BUFFERS
)
932 *buf_count
= MFC_MAX_BUFFERS
;
934 mfc_err("State seems invalid. State = %d, vq->type = %d\n",
935 ctx
->state
, vq
->type
);
938 mfc_debug(2, "Buffer count=%d, plane count=%d\n",
939 *buf_count
, *plane_count
);
940 if (ctx
->state
== MFCINST_HEAD_PARSED
&&
941 vq
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
942 psize
[0] = ctx
->luma_size
;
943 psize
[1] = ctx
->chroma_size
;
947 ctx
->dev
->alloc_ctx
[MFC_BANK1_ALLOC_CTX
];
950 ctx
->dev
->alloc_ctx
[MFC_BANK2_ALLOC_CTX
];
951 allocators
[1] = ctx
->dev
->alloc_ctx
[MFC_BANK1_ALLOC_CTX
];
952 } else if (vq
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
&&
953 ctx
->state
== MFCINST_INIT
) {
954 psize
[0] = ctx
->dec_src_buf_size
;
955 allocators
[0] = ctx
->dev
->alloc_ctx
[MFC_BANK1_ALLOC_CTX
];
957 mfc_err("This video node is dedicated to decoding. Decoding not initalised\n");
963 static void s5p_mfc_unlock(struct vb2_queue
*q
)
965 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(q
->drv_priv
);
966 struct s5p_mfc_dev
*dev
= ctx
->dev
;
968 mutex_unlock(&dev
->mfc_mutex
);
971 static void s5p_mfc_lock(struct vb2_queue
*q
)
973 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(q
->drv_priv
);
974 struct s5p_mfc_dev
*dev
= ctx
->dev
;
976 mutex_lock(&dev
->mfc_mutex
);
979 static int s5p_mfc_buf_init(struct vb2_buffer
*vb
)
981 struct vb2_queue
*vq
= vb
->vb2_queue
;
982 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(vq
->drv_priv
);
985 if (vq
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
986 if (ctx
->capture_state
== QUEUE_BUFS_MMAPED
)
988 for (i
= 0; i
<= ctx
->src_fmt
->num_planes
; i
++) {
989 if (IS_ERR_OR_NULL(ERR_PTR(
990 vb2_dma_contig_plane_dma_addr(vb
, i
)))) {
991 mfc_err("Plane mem not allocated\n");
995 if (vb2_plane_size(vb
, 0) < ctx
->luma_size
||
996 vb2_plane_size(vb
, 1) < ctx
->chroma_size
) {
997 mfc_err("Plane buffer (CAPTURE) is too small\n");
1000 i
= vb
->v4l2_buf
.index
;
1001 ctx
->dst_bufs
[i
].b
= vb
;
1002 ctx
->dst_bufs
[i
].cookie
.raw
.luma
=
1003 vb2_dma_contig_plane_dma_addr(vb
, 0);
1004 ctx
->dst_bufs
[i
].cookie
.raw
.chroma
=
1005 vb2_dma_contig_plane_dma_addr(vb
, 1);
1006 ctx
->dst_bufs_cnt
++;
1007 } else if (vq
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1008 if (IS_ERR_OR_NULL(ERR_PTR(
1009 vb2_dma_contig_plane_dma_addr(vb
, 0)))) {
1010 mfc_err("Plane memory not allocated\n");
1013 if (vb2_plane_size(vb
, 0) < ctx
->dec_src_buf_size
) {
1014 mfc_err("Plane buffer (OUTPUT) is too small\n");
1018 i
= vb
->v4l2_buf
.index
;
1019 ctx
->src_bufs
[i
].b
= vb
;
1020 ctx
->src_bufs
[i
].cookie
.stream
=
1021 vb2_dma_contig_plane_dma_addr(vb
, 0);
1022 ctx
->src_bufs_cnt
++;
1024 mfc_err("s5p_mfc_buf_init: unknown queue type\n");
1030 static int s5p_mfc_start_streaming(struct vb2_queue
*q
, unsigned int count
)
1032 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(q
->drv_priv
);
1033 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1035 v4l2_ctrl_handler_setup(&ctx
->ctrl_handler
);
1036 if (ctx
->state
== MFCINST_FINISHING
||
1037 ctx
->state
== MFCINST_FINISHED
)
1038 ctx
->state
= MFCINST_RUNNING
;
1039 /* If context is ready then dev = work->data;schedule it to run */
1040 if (s5p_mfc_ctx_ready(ctx
))
1041 set_work_bit_irqsave(ctx
);
1042 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
1046 static int s5p_mfc_stop_streaming(struct vb2_queue
*q
)
1048 unsigned long flags
;
1049 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(q
->drv_priv
);
1050 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1053 if ((ctx
->state
== MFCINST_FINISHING
||
1054 ctx
->state
== MFCINST_RUNNING
) &&
1055 dev
->curr_ctx
== ctx
->num
&& dev
->hw_lock
) {
1056 ctx
->state
= MFCINST_ABORT
;
1057 s5p_mfc_wait_for_done_ctx(ctx
,
1058 S5P_MFC_R2H_CMD_FRAME_DONE_RET
, 0);
1061 if (q
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1062 spin_lock_irqsave(&dev
->irqlock
, flags
);
1063 s5p_mfc_hw_call(dev
->mfc_ops
, cleanup_queue
, &ctx
->dst_queue
,
1065 INIT_LIST_HEAD(&ctx
->dst_queue
);
1066 ctx
->dst_queue_cnt
= 0;
1067 ctx
->dpb_flush_flag
= 1;
1068 ctx
->dec_dst_flag
= 0;
1069 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1070 if (IS_MFCV6(dev
) && (ctx
->state
== MFCINST_RUNNING
)) {
1071 ctx
->state
= MFCINST_FLUSH
;
1072 set_work_bit_irqsave(ctx
);
1073 s5p_mfc_clean_ctx_int_flags(ctx
);
1074 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
1075 if (s5p_mfc_wait_for_done_ctx(ctx
,
1076 S5P_MFC_R2H_CMD_DPB_FLUSH_RET
, 0))
1077 mfc_err("Err flushing buffers\n");
1080 if (q
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1081 spin_lock_irqsave(&dev
->irqlock
, flags
);
1082 s5p_mfc_hw_call(dev
->mfc_ops
, cleanup_queue
, &ctx
->src_queue
,
1084 INIT_LIST_HEAD(&ctx
->src_queue
);
1085 ctx
->src_queue_cnt
= 0;
1086 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1089 ctx
->state
= MFCINST_RUNNING
;
1094 static void s5p_mfc_buf_queue(struct vb2_buffer
*vb
)
1096 struct vb2_queue
*vq
= vb
->vb2_queue
;
1097 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(vq
->drv_priv
);
1098 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1099 unsigned long flags
;
1100 struct s5p_mfc_buf
*mfc_buf
;
1102 if (vq
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1103 mfc_buf
= &ctx
->src_bufs
[vb
->v4l2_buf
.index
];
1104 mfc_buf
->flags
&= ~MFC_BUF_FLAG_USED
;
1105 spin_lock_irqsave(&dev
->irqlock
, flags
);
1106 list_add_tail(&mfc_buf
->list
, &ctx
->src_queue
);
1107 ctx
->src_queue_cnt
++;
1108 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1109 } else if (vq
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1110 mfc_buf
= &ctx
->dst_bufs
[vb
->v4l2_buf
.index
];
1111 mfc_buf
->flags
&= ~MFC_BUF_FLAG_USED
;
1112 /* Mark destination as available for use by MFC */
1113 spin_lock_irqsave(&dev
->irqlock
, flags
);
1114 set_bit(vb
->v4l2_buf
.index
, &ctx
->dec_dst_flag
);
1115 list_add_tail(&mfc_buf
->list
, &ctx
->dst_queue
);
1116 ctx
->dst_queue_cnt
++;
1117 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1119 mfc_err("Unsupported buffer type (%d)\n", vq
->type
);
1121 if (s5p_mfc_ctx_ready(ctx
))
1122 set_work_bit_irqsave(ctx
);
1123 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
1126 static struct vb2_ops s5p_mfc_dec_qops
= {
1127 .queue_setup
= s5p_mfc_queue_setup
,
1128 .wait_prepare
= s5p_mfc_unlock
,
1129 .wait_finish
= s5p_mfc_lock
,
1130 .buf_init
= s5p_mfc_buf_init
,
1131 .start_streaming
= s5p_mfc_start_streaming
,
1132 .stop_streaming
= s5p_mfc_stop_streaming
,
1133 .buf_queue
= s5p_mfc_buf_queue
,
1136 struct s5p_mfc_codec_ops
*get_dec_codec_ops(void)
1138 return &decoder_codec_ops
;
1141 struct vb2_ops
*get_dec_queue_ops(void)
1143 return &s5p_mfc_dec_qops
;
1146 const struct v4l2_ioctl_ops
*get_dec_v4l2_ioctl_ops(void)
1148 return &s5p_mfc_dec_ioctl_ops
;
1151 #define IS_MFC51_PRIV(x) ((V4L2_CTRL_ID2CLASS(x) == V4L2_CTRL_CLASS_MPEG) \
1152 && V4L2_CTRL_DRIVER_PRIV(x))
1154 int s5p_mfc_dec_ctrls_setup(struct s5p_mfc_ctx
*ctx
)
1156 struct v4l2_ctrl_config cfg
;
1159 v4l2_ctrl_handler_init(&ctx
->ctrl_handler
, NUM_CTRLS
);
1160 if (ctx
->ctrl_handler
.error
) {
1161 mfc_err("v4l2_ctrl_handler_init failed\n");
1162 return ctx
->ctrl_handler
.error
;
1165 for (i
= 0; i
< NUM_CTRLS
; i
++) {
1166 if (IS_MFC51_PRIV(controls
[i
].id
)) {
1167 memset(&cfg
, 0, sizeof(struct v4l2_ctrl_config
));
1168 cfg
.ops
= &s5p_mfc_dec_ctrl_ops
;
1169 cfg
.id
= controls
[i
].id
;
1170 cfg
.min
= controls
[i
].minimum
;
1171 cfg
.max
= controls
[i
].maximum
;
1172 cfg
.def
= controls
[i
].default_value
;
1173 cfg
.name
= controls
[i
].name
;
1174 cfg
.type
= controls
[i
].type
;
1176 cfg
.step
= controls
[i
].step
;
1177 cfg
.menu_skip_mask
= 0;
1179 ctx
->ctrls
[i
] = v4l2_ctrl_new_custom(&ctx
->ctrl_handler
,
1182 ctx
->ctrls
[i
] = v4l2_ctrl_new_std(&ctx
->ctrl_handler
,
1183 &s5p_mfc_dec_ctrl_ops
,
1184 controls
[i
].id
, controls
[i
].minimum
,
1185 controls
[i
].maximum
, controls
[i
].step
,
1186 controls
[i
].default_value
);
1188 if (ctx
->ctrl_handler
.error
) {
1189 mfc_err("Adding control (%d) failed\n", i
);
1190 return ctx
->ctrl_handler
.error
;
1192 if (controls
[i
].is_volatile
&& ctx
->ctrls
[i
])
1193 ctx
->ctrls
[i
]->flags
|= V4L2_CTRL_FLAG_VOLATILE
;
1198 void s5p_mfc_dec_ctrls_delete(struct s5p_mfc_ctx
*ctx
)
1202 v4l2_ctrl_handler_free(&ctx
->ctrl_handler
);
1203 for (i
= 0; i
< NUM_CTRLS
; i
++)
1204 ctx
->ctrls
[i
] = NULL
;
1207 void s5p_mfc_dec_init(struct s5p_mfc_ctx
*ctx
)
1209 struct v4l2_format f
;
1210 f
.fmt
.pix_mp
.pixelformat
= DEF_SRC_FMT_DEC
;
1211 ctx
->src_fmt
= find_format(&f
, MFC_FMT_DEC
);
1212 f
.fmt
.pix_mp
.pixelformat
= DEF_DST_FMT_DEC
;
1213 ctx
->dst_fmt
= find_format(&f
, MFC_FMT_RAW
);
1214 mfc_debug(2, "Default src_fmt is %x, dest_fmt is %x\n",
1215 (unsigned int)ctx
->src_fmt
, (unsigned int)ctx
->dst_fmt
);