2 * linux/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
4 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
7 * Jeongtae Park <jtp.park@samsung.com>
8 * Kamil Debski <k.debski@samsung.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
16 #include <linux/clk.h>
17 #include <linux/interrupt.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/sched.h>
22 #include <linux/version.h>
23 #include <linux/videodev2.h>
24 #include <media/v4l2-event.h>
25 #include <linux/workqueue.h>
26 #include <media/v4l2-ctrls.h>
27 #include <media/videobuf2-core.h>
28 #include "s5p_mfc_common.h"
29 #include "s5p_mfc_debug.h"
30 #include "s5p_mfc_enc.h"
31 #include "s5p_mfc_intr.h"
32 #include "s5p_mfc_opr.h"
34 #define DEF_SRC_FMT_ENC V4L2_PIX_FMT_NV12MT
35 #define DEF_DST_FMT_ENC V4L2_PIX_FMT_H264
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_ENC
,
74 .name
= "MPEG4 Encoded Stream",
75 .fourcc
= V4L2_PIX_FMT_MPEG4
,
76 .codec_mode
= S5P_MFC_CODEC_MPEG4_ENC
,
81 .name
= "H263 Encoded Stream",
82 .fourcc
= V4L2_PIX_FMT_H263
,
83 .codec_mode
= S5P_MFC_CODEC_H263_ENC
,
89 #define NUM_FORMATS ARRAY_SIZE(formats)
90 static struct s5p_mfc_fmt
*find_format(struct v4l2_format
*f
, unsigned int t
)
94 for (i
= 0; i
< NUM_FORMATS
; i
++) {
95 if (formats
[i
].fourcc
== f
->fmt
.pix_mp
.pixelformat
&&
102 static struct mfc_control controls
[] = {
104 .id
= V4L2_CID_MPEG_VIDEO_GOP_SIZE
,
105 .type
= V4L2_CTRL_TYPE_INTEGER
,
107 .maximum
= (1 << 16) - 1,
112 .id
= V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE
,
113 .type
= V4L2_CTRL_TYPE_MENU
,
114 .minimum
= V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE
,
115 .maximum
= V4L2_MPEG_VIDEO_MULTI_SICE_MODE_MAX_BYTES
,
116 .default_value
= V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_SINGLE
,
120 .id
= V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB
,
121 .type
= V4L2_CTRL_TYPE_INTEGER
,
123 .maximum
= (1 << 16) - 1,
128 .id
= V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES
,
129 .type
= V4L2_CTRL_TYPE_INTEGER
,
131 .maximum
= (1 << 30) - 1,
133 .default_value
= 1900,
136 .id
= V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB
,
137 .type
= V4L2_CTRL_TYPE_INTEGER
,
139 .maximum
= (1 << 16) - 1,
144 .id
= V4L2_CID_MPEG_MFC51_VIDEO_PADDING
,
145 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
146 .name
= "Padding Control Enable",
153 .id
= V4L2_CID_MPEG_MFC51_VIDEO_PADDING_YUV
,
154 .type
= V4L2_CTRL_TYPE_INTEGER
,
155 .name
= "Padding Color YUV Value",
157 .maximum
= (1 << 25) - 1,
162 .id
= V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE
,
163 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
170 .id
= V4L2_CID_MPEG_VIDEO_BITRATE
,
171 .type
= V4L2_CTRL_TYPE_INTEGER
,
173 .maximum
= (1 << 30) - 1,
178 .id
= V4L2_CID_MPEG_MFC51_VIDEO_RC_REACTION_COEFF
,
179 .type
= V4L2_CTRL_TYPE_INTEGER
,
180 .name
= "Rate Control Reaction Coeff.",
182 .maximum
= (1 << 16) - 1,
187 .id
= V4L2_CID_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE
,
188 .type
= V4L2_CTRL_TYPE_MENU
,
189 .name
= "Force frame type",
190 .minimum
= V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_DISABLED
,
191 .maximum
= V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_NOT_CODED
,
192 .default_value
= V4L2_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE_DISABLED
,
196 .id
= V4L2_CID_MPEG_VIDEO_VBV_SIZE
,
197 .type
= V4L2_CTRL_TYPE_INTEGER
,
199 .maximum
= (1 << 16) - 1,
204 .id
= V4L2_CID_MPEG_VIDEO_H264_CPB_SIZE
,
205 .type
= V4L2_CTRL_TYPE_INTEGER
,
207 .maximum
= (1 << 16) - 1,
212 .id
= V4L2_CID_MPEG_VIDEO_HEADER_MODE
,
213 .type
= V4L2_CTRL_TYPE_MENU
,
214 .minimum
= V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE
,
215 .maximum
= V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME
,
216 .default_value
= V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE
,
220 .id
= V4L2_CID_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE
,
221 .type
= V4L2_CTRL_TYPE_MENU
,
222 .name
= "Frame Skip Enable",
223 .minimum
= V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_DISABLED
,
224 .maximum
= V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_BUF_LIMIT
,
226 .default_value
= V4L2_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE_DISABLED
,
229 .id
= V4L2_CID_MPEG_MFC51_VIDEO_RC_FIXED_TARGET_BIT
,
230 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
231 .name
= "Fixed Target Bit Enable",
239 .id
= V4L2_CID_MPEG_VIDEO_B_FRAMES
,
240 .type
= V4L2_CTRL_TYPE_INTEGER
,
247 .id
= V4L2_CID_MPEG_VIDEO_H264_PROFILE
,
248 .type
= V4L2_CTRL_TYPE_MENU
,
249 .minimum
= V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE
,
250 .maximum
= V4L2_MPEG_VIDEO_H264_PROFILE_MULTIVIEW_HIGH
,
251 .default_value
= V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE
,
253 (1 << V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE
) |
254 (1 << V4L2_MPEG_VIDEO_H264_PROFILE_MAIN
) |
255 (1 << V4L2_MPEG_VIDEO_H264_PROFILE_HIGH
)
259 .id
= V4L2_CID_MPEG_VIDEO_H264_LEVEL
,
260 .type
= V4L2_CTRL_TYPE_MENU
,
261 .minimum
= V4L2_MPEG_VIDEO_H264_LEVEL_1_0
,
262 .maximum
= V4L2_MPEG_VIDEO_H264_LEVEL_4_0
,
263 .default_value
= V4L2_MPEG_VIDEO_H264_LEVEL_1_0
,
266 .id
= V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL
,
267 .type
= V4L2_CTRL_TYPE_MENU
,
268 .minimum
= V4L2_MPEG_VIDEO_MPEG4_LEVEL_0
,
269 .maximum
= V4L2_MPEG_VIDEO_MPEG4_LEVEL_5
,
270 .default_value
= V4L2_MPEG_VIDEO_MPEG4_LEVEL_0
,
274 .id
= V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE
,
275 .type
= V4L2_CTRL_TYPE_MENU
,
276 .minimum
= V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED
,
277 .maximum
= V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_DISABLED_AT_SLICE_BOUNDARY
,
278 .default_value
= V4L2_MPEG_VIDEO_H264_LOOP_FILTER_MODE_ENABLED
,
282 .id
= V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA
,
283 .type
= V4L2_CTRL_TYPE_INTEGER
,
290 .id
= V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA
,
291 .type
= V4L2_CTRL_TYPE_INTEGER
,
298 .id
= V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE
,
299 .type
= V4L2_CTRL_TYPE_MENU
,
300 .minimum
= V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CAVLC
,
301 .maximum
= V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CABAC
,
302 .default_value
= V4L2_MPEG_VIDEO_H264_ENTROPY_MODE_CAVLC
,
306 .id
= V4L2_CID_MPEG_MFC51_VIDEO_H264_NUM_REF_PIC_FOR_P
,
307 .type
= V4L2_CTRL_TYPE_INTEGER
,
308 .name
= "The Number of Ref. Pic for P",
315 .id
= V4L2_CID_MPEG_VIDEO_H264_8X8_TRANSFORM
,
316 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
323 .id
= V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE
,
324 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
331 .id
= V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP
,
332 .type
= V4L2_CTRL_TYPE_INTEGER
,
339 .id
= V4L2_CID_MPEG_VIDEO_H264_MIN_QP
,
340 .type
= V4L2_CTRL_TYPE_INTEGER
,
347 .id
= V4L2_CID_MPEG_VIDEO_H264_MAX_QP
,
348 .type
= V4L2_CTRL_TYPE_INTEGER
,
355 .id
= V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP
,
356 .type
= V4L2_CTRL_TYPE_INTEGER
,
363 .id
= V4L2_CID_MPEG_VIDEO_H264_B_FRAME_QP
,
364 .type
= V4L2_CTRL_TYPE_INTEGER
,
371 .id
= V4L2_CID_MPEG_VIDEO_H263_I_FRAME_QP
,
372 .type
= V4L2_CTRL_TYPE_INTEGER
,
373 .name
= "H263 I-Frame QP value",
380 .id
= V4L2_CID_MPEG_VIDEO_H263_MIN_QP
,
381 .type
= V4L2_CTRL_TYPE_INTEGER
,
382 .name
= "H263 Minimum QP value",
389 .id
= V4L2_CID_MPEG_VIDEO_H263_MAX_QP
,
390 .type
= V4L2_CTRL_TYPE_INTEGER
,
391 .name
= "H263 Maximum QP value",
398 .id
= V4L2_CID_MPEG_VIDEO_H263_P_FRAME_QP
,
399 .type
= V4L2_CTRL_TYPE_INTEGER
,
400 .name
= "H263 P frame QP value",
407 .id
= V4L2_CID_MPEG_VIDEO_H263_B_FRAME_QP
,
408 .type
= V4L2_CTRL_TYPE_INTEGER
,
409 .name
= "H263 B frame QP value",
416 .id
= V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP
,
417 .type
= V4L2_CTRL_TYPE_INTEGER
,
418 .name
= "MPEG4 I-Frame QP value",
425 .id
= V4L2_CID_MPEG_VIDEO_MPEG4_MIN_QP
,
426 .type
= V4L2_CTRL_TYPE_INTEGER
,
427 .name
= "MPEG4 Minimum QP value",
434 .id
= V4L2_CID_MPEG_VIDEO_MPEG4_MAX_QP
,
435 .type
= V4L2_CTRL_TYPE_INTEGER
,
436 .name
= "MPEG4 Maximum QP value",
443 .id
= V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP
,
444 .type
= V4L2_CTRL_TYPE_INTEGER
,
445 .name
= "MPEG4 P frame QP value",
452 .id
= V4L2_CID_MPEG_VIDEO_MPEG4_B_FRAME_QP
,
453 .type
= V4L2_CTRL_TYPE_INTEGER
,
454 .name
= "MPEG4 B frame QP value",
461 .id
= V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_DARK
,
462 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
463 .name
= "H264 Dark Reg Adaptive RC",
470 .id
= V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_SMOOTH
,
471 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
472 .name
= "H264 Smooth Reg Adaptive RC",
479 .id
= V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_STATIC
,
480 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
481 .name
= "H264 Static Reg Adaptive RC",
488 .id
= V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_ACTIVITY
,
489 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
490 .name
= "H264 Activity Reg Adaptive RC",
497 .id
= V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_ENABLE
,
498 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
505 .id
= V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC
,
506 .type
= V4L2_CTRL_TYPE_MENU
,
507 .minimum
= V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_UNSPECIFIED
,
508 .maximum
= V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_EXTENDED
,
509 .default_value
= V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_UNSPECIFIED
,
513 .id
= V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_WIDTH
,
514 .type
= V4L2_CTRL_TYPE_INTEGER
,
516 .maximum
= (1 << 16) - 1,
521 .id
= V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_HEIGHT
,
522 .type
= V4L2_CTRL_TYPE_INTEGER
,
524 .maximum
= (1 << 16) - 1,
529 .id
= V4L2_CID_MPEG_VIDEO_GOP_CLOSURE
,
530 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
537 .id
= V4L2_CID_MPEG_VIDEO_H264_I_PERIOD
,
538 .type
= V4L2_CTRL_TYPE_INTEGER
,
540 .maximum
= (1 << 16) - 1,
545 .id
= V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE
,
546 .type
= V4L2_CTRL_TYPE_MENU
,
547 .minimum
= V4L2_MPEG_VIDEO_MPEG4_PROFILE_SIMPLE
,
548 .maximum
= V4L2_MPEG_VIDEO_MPEG4_PROFILE_ADVANCED_SIMPLE
,
549 .default_value
= V4L2_MPEG_VIDEO_MPEG4_PROFILE_SIMPLE
,
553 .id
= V4L2_CID_MPEG_VIDEO_MPEG4_QPEL
,
554 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
562 #define NUM_CTRLS ARRAY_SIZE(controls)
563 static const char * const *mfc51_get_menu(u32 id
)
565 static const char * const mfc51_video_frame_skip
[] = {
571 static const char * const mfc51_video_force_frame
[] = {
578 case V4L2_CID_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE
:
579 return mfc51_video_frame_skip
;
580 case V4L2_CID_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE
:
581 return mfc51_video_force_frame
;
586 static int s5p_mfc_ctx_ready(struct s5p_mfc_ctx
*ctx
)
588 mfc_debug(2, "src=%d, dst=%d, state=%d\n",
589 ctx
->src_queue_cnt
, ctx
->dst_queue_cnt
, ctx
->state
);
590 /* context is ready to make header */
591 if (ctx
->state
== MFCINST_GOT_INST
&& ctx
->dst_queue_cnt
>= 1)
593 /* context is ready to encode a frame */
594 if ((ctx
->state
== MFCINST_RUNNING
||
595 ctx
->state
== MFCINST_HEAD_PARSED
) &&
596 ctx
->src_queue_cnt
>= 1 && ctx
->dst_queue_cnt
>= 1)
598 /* context is ready to encode remaining frames */
599 if (ctx
->state
== MFCINST_FINISHING
&&
600 ctx
->dst_queue_cnt
>= 1)
602 mfc_debug(2, "ctx is not ready\n");
606 static void cleanup_ref_queue(struct s5p_mfc_ctx
*ctx
)
608 struct s5p_mfc_buf
*mb_entry
;
609 unsigned long mb_y_addr
, mb_c_addr
;
611 /* move buffers in ref queue to src queue */
612 while (!list_empty(&ctx
->ref_queue
)) {
613 mb_entry
= list_entry((&ctx
->ref_queue
)->next
,
614 struct s5p_mfc_buf
, list
);
615 mb_y_addr
= vb2_dma_contig_plane_dma_addr(mb_entry
->b
, 0);
616 mb_c_addr
= vb2_dma_contig_plane_dma_addr(mb_entry
->b
, 1);
617 list_del(&mb_entry
->list
);
618 ctx
->ref_queue_cnt
--;
619 list_add_tail(&mb_entry
->list
, &ctx
->src_queue
);
620 ctx
->src_queue_cnt
++;
622 mfc_debug(2, "enc src count: %d, enc ref count: %d\n",
623 ctx
->src_queue_cnt
, ctx
->ref_queue_cnt
);
624 INIT_LIST_HEAD(&ctx
->ref_queue
);
625 ctx
->ref_queue_cnt
= 0;
628 static int enc_pre_seq_start(struct s5p_mfc_ctx
*ctx
)
630 struct s5p_mfc_dev
*dev
= ctx
->dev
;
631 struct s5p_mfc_buf
*dst_mb
;
632 unsigned long dst_addr
;
633 unsigned int dst_size
;
636 spin_lock_irqsave(&dev
->irqlock
, flags
);
637 dst_mb
= list_entry(ctx
->dst_queue
.next
, struct s5p_mfc_buf
, list
);
638 dst_addr
= vb2_dma_contig_plane_dma_addr(dst_mb
->b
, 0);
639 dst_size
= vb2_plane_size(dst_mb
->b
, 0);
640 s5p_mfc_hw_call(dev
->mfc_ops
, set_enc_stream_buffer
, ctx
, dst_addr
,
642 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
646 static int enc_post_seq_start(struct s5p_mfc_ctx
*ctx
)
648 struct s5p_mfc_dev
*dev
= ctx
->dev
;
649 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
650 struct s5p_mfc_buf
*dst_mb
;
653 if (p
->seq_hdr_mode
== V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE
) {
654 spin_lock_irqsave(&dev
->irqlock
, flags
);
655 dst_mb
= list_entry(ctx
->dst_queue
.next
,
656 struct s5p_mfc_buf
, list
);
657 list_del(&dst_mb
->list
);
658 ctx
->dst_queue_cnt
--;
659 vb2_set_plane_payload(dst_mb
->b
, 0,
660 s5p_mfc_hw_call(dev
->mfc_ops
, get_enc_strm_size
, dev
));
661 vb2_buffer_done(dst_mb
->b
, VB2_BUF_STATE_DONE
);
662 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
665 ctx
->state
= MFCINST_HEAD_PARSED
; /* for INIT_BUFFER cmd */
667 ctx
->state
= MFCINST_RUNNING
;
668 if (s5p_mfc_ctx_ready(ctx
))
669 set_work_bit_irqsave(ctx
);
670 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
674 ctx
->dpb_count
= s5p_mfc_hw_call(dev
->mfc_ops
,
675 get_enc_dpb_count
, dev
);
680 static int enc_pre_frame_start(struct s5p_mfc_ctx
*ctx
)
682 struct s5p_mfc_dev
*dev
= ctx
->dev
;
683 struct s5p_mfc_buf
*dst_mb
;
684 struct s5p_mfc_buf
*src_mb
;
686 unsigned long src_y_addr
, src_c_addr
, dst_addr
;
687 unsigned int dst_size
;
689 spin_lock_irqsave(&dev
->irqlock
, flags
);
690 src_mb
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
, list
);
691 src_y_addr
= vb2_dma_contig_plane_dma_addr(src_mb
->b
, 0);
692 src_c_addr
= vb2_dma_contig_plane_dma_addr(src_mb
->b
, 1);
693 s5p_mfc_hw_call(dev
->mfc_ops
, set_enc_frame_buffer
, ctx
, src_y_addr
,
695 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
697 spin_lock_irqsave(&dev
->irqlock
, flags
);
698 dst_mb
= list_entry(ctx
->dst_queue
.next
, struct s5p_mfc_buf
, list
);
699 dst_addr
= vb2_dma_contig_plane_dma_addr(dst_mb
->b
, 0);
700 dst_size
= vb2_plane_size(dst_mb
->b
, 0);
701 s5p_mfc_hw_call(dev
->mfc_ops
, set_enc_stream_buffer
, ctx
, dst_addr
,
703 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
708 static int enc_post_frame_start(struct s5p_mfc_ctx
*ctx
)
710 struct s5p_mfc_dev
*dev
= ctx
->dev
;
711 struct s5p_mfc_buf
*mb_entry
;
712 unsigned long enc_y_addr
, enc_c_addr
;
713 unsigned long mb_y_addr
, mb_c_addr
;
715 unsigned int strm_size
;
718 slice_type
= s5p_mfc_hw_call(dev
->mfc_ops
, get_enc_slice_type
, dev
);
719 strm_size
= s5p_mfc_hw_call(dev
->mfc_ops
, get_enc_strm_size
, dev
);
720 mfc_debug(2, "Encoded slice type: %d", slice_type
);
721 mfc_debug(2, "Encoded stream size: %d", strm_size
);
722 mfc_debug(2, "Display order: %d",
723 mfc_read(dev
, S5P_FIMV_ENC_SI_PIC_CNT
));
724 spin_lock_irqsave(&dev
->irqlock
, flags
);
725 if (slice_type
>= 0) {
726 s5p_mfc_hw_call(dev
->mfc_ops
, get_enc_frame_buffer
, ctx
,
727 &enc_y_addr
, &enc_c_addr
);
728 list_for_each_entry(mb_entry
, &ctx
->src_queue
, list
) {
729 mb_y_addr
= vb2_dma_contig_plane_dma_addr(mb_entry
->b
, 0);
730 mb_c_addr
= vb2_dma_contig_plane_dma_addr(mb_entry
->b
, 1);
731 if ((enc_y_addr
== mb_y_addr
) &&
732 (enc_c_addr
== mb_c_addr
)) {
733 list_del(&mb_entry
->list
);
734 ctx
->src_queue_cnt
--;
735 vb2_buffer_done(mb_entry
->b
,
740 list_for_each_entry(mb_entry
, &ctx
->ref_queue
, list
) {
741 mb_y_addr
= vb2_dma_contig_plane_dma_addr(mb_entry
->b
, 0);
742 mb_c_addr
= vb2_dma_contig_plane_dma_addr(mb_entry
->b
, 1);
743 if ((enc_y_addr
== mb_y_addr
) &&
744 (enc_c_addr
== mb_c_addr
)) {
745 list_del(&mb_entry
->list
);
746 ctx
->ref_queue_cnt
--;
747 vb2_buffer_done(mb_entry
->b
,
753 if ((ctx
->src_queue_cnt
> 0) && (ctx
->state
== MFCINST_RUNNING
)) {
754 mb_entry
= list_entry(ctx
->src_queue
.next
, struct s5p_mfc_buf
,
756 if (mb_entry
->flags
& MFC_BUF_FLAG_USED
) {
757 list_del(&mb_entry
->list
);
758 ctx
->src_queue_cnt
--;
759 list_add_tail(&mb_entry
->list
, &ctx
->ref_queue
);
760 ctx
->ref_queue_cnt
++;
762 mfc_debug(2, "enc src count: %d, enc ref count: %d\n",
763 ctx
->src_queue_cnt
, ctx
->ref_queue_cnt
);
766 /* at least one more dest. buffers exist always */
767 mb_entry
= list_entry(ctx
->dst_queue
.next
, struct s5p_mfc_buf
,
769 list_del(&mb_entry
->list
);
770 ctx
->dst_queue_cnt
--;
771 switch (slice_type
) {
772 case S5P_FIMV_ENC_SI_SLICE_TYPE_I
:
773 mb_entry
->b
->v4l2_buf
.flags
|= V4L2_BUF_FLAG_KEYFRAME
;
775 case S5P_FIMV_ENC_SI_SLICE_TYPE_P
:
776 mb_entry
->b
->v4l2_buf
.flags
|= V4L2_BUF_FLAG_PFRAME
;
778 case S5P_FIMV_ENC_SI_SLICE_TYPE_B
:
779 mb_entry
->b
->v4l2_buf
.flags
|= V4L2_BUF_FLAG_BFRAME
;
782 vb2_set_plane_payload(mb_entry
->b
, 0, strm_size
);
783 vb2_buffer_done(mb_entry
->b
, VB2_BUF_STATE_DONE
);
785 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
786 if ((ctx
->src_queue_cnt
== 0) || (ctx
->dst_queue_cnt
== 0))
791 static struct s5p_mfc_codec_ops encoder_codec_ops
= {
792 .pre_seq_start
= enc_pre_seq_start
,
793 .post_seq_start
= enc_post_seq_start
,
794 .pre_frame_start
= enc_pre_frame_start
,
795 .post_frame_start
= enc_post_frame_start
,
798 /* Query capabilities of the device */
799 static int vidioc_querycap(struct file
*file
, void *priv
,
800 struct v4l2_capability
*cap
)
802 struct s5p_mfc_dev
*dev
= video_drvdata(file
);
804 strncpy(cap
->driver
, dev
->plat_dev
->name
, sizeof(cap
->driver
) - 1);
805 strncpy(cap
->card
, dev
->plat_dev
->name
, sizeof(cap
->card
) - 1);
806 cap
->bus_info
[0] = 0;
807 cap
->version
= KERNEL_VERSION(1, 0, 0);
809 * This is only a mem-to-mem video device. The capture and output
810 * device capability flags are left only for backward compatibility
811 * and are scheduled for removal.
813 cap
->capabilities
= V4L2_CAP_VIDEO_M2M_MPLANE
| V4L2_CAP_STREAMING
|
814 V4L2_CAP_VIDEO_CAPTURE_MPLANE
|
815 V4L2_CAP_VIDEO_OUTPUT_MPLANE
;
819 static int vidioc_enum_fmt(struct v4l2_fmtdesc
*f
, bool mplane
, bool out
)
821 struct s5p_mfc_fmt
*fmt
;
824 for (i
= 0; i
< ARRAY_SIZE(formats
); ++i
) {
825 if (mplane
&& formats
[i
].num_planes
== 1)
827 else if (!mplane
&& formats
[i
].num_planes
> 1)
829 if (out
&& formats
[i
].type
!= MFC_FMT_RAW
)
831 else if (!out
&& formats
[i
].type
!= MFC_FMT_ENC
)
835 strlcpy(f
->description
, fmt
->name
,
836 sizeof(f
->description
));
837 f
->pixelformat
= fmt
->fourcc
;
845 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *pirv
,
846 struct v4l2_fmtdesc
*f
)
848 return vidioc_enum_fmt(f
, false, false);
851 static int vidioc_enum_fmt_vid_cap_mplane(struct file
*file
, void *pirv
,
852 struct v4l2_fmtdesc
*f
)
854 return vidioc_enum_fmt(f
, true, false);
857 static int vidioc_enum_fmt_vid_out(struct file
*file
, void *prov
,
858 struct v4l2_fmtdesc
*f
)
860 return vidioc_enum_fmt(f
, false, true);
863 static int vidioc_enum_fmt_vid_out_mplane(struct file
*file
, void *prov
,
864 struct v4l2_fmtdesc
*f
)
866 return vidioc_enum_fmt(f
, true, true);
869 static int vidioc_g_fmt(struct file
*file
, void *priv
, struct v4l2_format
*f
)
871 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
872 struct v4l2_pix_format_mplane
*pix_fmt_mp
= &f
->fmt
.pix_mp
;
874 mfc_debug(2, "f->type = %d ctx->state = %d\n", f
->type
, ctx
->state
);
875 if (f
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
876 /* This is run on output (encoder dest) */
877 pix_fmt_mp
->width
= 0;
878 pix_fmt_mp
->height
= 0;
879 pix_fmt_mp
->field
= V4L2_FIELD_NONE
;
880 pix_fmt_mp
->pixelformat
= ctx
->dst_fmt
->fourcc
;
881 pix_fmt_mp
->num_planes
= ctx
->dst_fmt
->num_planes
;
883 pix_fmt_mp
->plane_fmt
[0].bytesperline
= ctx
->enc_dst_buf_size
;
884 pix_fmt_mp
->plane_fmt
[0].sizeimage
= ctx
->enc_dst_buf_size
;
885 } else if (f
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
886 /* This is run on capture (encoder src) */
887 pix_fmt_mp
->width
= ctx
->img_width
;
888 pix_fmt_mp
->height
= ctx
->img_height
;
890 pix_fmt_mp
->field
= V4L2_FIELD_NONE
;
891 pix_fmt_mp
->pixelformat
= ctx
->src_fmt
->fourcc
;
892 pix_fmt_mp
->num_planes
= ctx
->src_fmt
->num_planes
;
894 pix_fmt_mp
->plane_fmt
[0].bytesperline
= ctx
->buf_width
;
895 pix_fmt_mp
->plane_fmt
[0].sizeimage
= ctx
->luma_size
;
896 pix_fmt_mp
->plane_fmt
[1].bytesperline
= ctx
->buf_width
;
897 pix_fmt_mp
->plane_fmt
[1].sizeimage
= ctx
->chroma_size
;
899 mfc_err("invalid buf type\n");
905 static int vidioc_try_fmt(struct file
*file
, void *priv
, struct v4l2_format
*f
)
907 struct s5p_mfc_fmt
*fmt
;
908 struct v4l2_pix_format_mplane
*pix_fmt_mp
= &f
->fmt
.pix_mp
;
910 if (f
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
911 fmt
= find_format(f
, MFC_FMT_ENC
);
913 mfc_err("failed to try output format\n");
917 if (pix_fmt_mp
->plane_fmt
[0].sizeimage
== 0) {
918 mfc_err("must be set encoding output size\n");
922 pix_fmt_mp
->plane_fmt
[0].bytesperline
=
923 pix_fmt_mp
->plane_fmt
[0].sizeimage
;
924 } else if (f
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
925 fmt
= find_format(f
, MFC_FMT_RAW
);
927 mfc_err("failed to try output format\n");
931 if (fmt
->num_planes
!= pix_fmt_mp
->num_planes
) {
932 mfc_err("failed to try output format\n");
935 v4l_bound_align_image(&pix_fmt_mp
->width
, 8, 1920, 1,
936 &pix_fmt_mp
->height
, 4, 1080, 1, 0);
938 mfc_err("invalid buf type\n");
944 static int vidioc_s_fmt(struct file
*file
, void *priv
, struct v4l2_format
*f
)
946 struct s5p_mfc_dev
*dev
= video_drvdata(file
);
947 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
948 struct s5p_mfc_fmt
*fmt
;
949 struct v4l2_pix_format_mplane
*pix_fmt_mp
= &f
->fmt
.pix_mp
;
952 ret
= vidioc_try_fmt(file
, priv
, f
);
955 if (ctx
->vq_src
.streaming
|| ctx
->vq_dst
.streaming
) {
956 v4l2_err(&dev
->v4l2_dev
, "%s queue busy\n", __func__
);
960 if (f
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
961 fmt
= find_format(f
, MFC_FMT_ENC
);
963 mfc_err("failed to set capture format\n");
966 ctx
->state
= MFCINST_INIT
;
968 ctx
->codec_mode
= ctx
->dst_fmt
->codec_mode
;
969 ctx
->enc_dst_buf_size
= pix_fmt_mp
->plane_fmt
[0].sizeimage
;
970 pix_fmt_mp
->plane_fmt
[0].bytesperline
= 0;
971 ctx
->dst_bufs_cnt
= 0;
972 ctx
->capture_state
= QUEUE_FREE
;
973 s5p_mfc_hw_call(dev
->mfc_ops
, alloc_instance_buffer
, ctx
);
974 set_work_bit_irqsave(ctx
);
975 s5p_mfc_clean_ctx_int_flags(ctx
);
976 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
977 if (s5p_mfc_wait_for_done_ctx(ctx
, \
978 S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET
, 1)) {
979 /* Error or timeout */
980 mfc_err("Error getting instance from hardware\n");
981 s5p_mfc_hw_call(dev
->mfc_ops
, release_instance_buffer
,
986 mfc_debug(2, "Got instance number: %d\n", ctx
->inst_no
);
987 } else if (f
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
988 fmt
= find_format(f
, MFC_FMT_RAW
);
990 mfc_err("failed to set output format\n");
994 if (!IS_MFCV6(dev
) &&
995 (fmt
->fourcc
== V4L2_PIX_FMT_NV12MT_16X16
)) {
996 mfc_err("Not supported format.\n");
998 } else if (IS_MFCV6(dev
) &&
999 (fmt
->fourcc
== V4L2_PIX_FMT_NV12MT
)) {
1000 mfc_err("Not supported format.\n");
1004 if (fmt
->num_planes
!= pix_fmt_mp
->num_planes
) {
1005 mfc_err("failed to set output format\n");
1010 ctx
->img_width
= pix_fmt_mp
->width
;
1011 ctx
->img_height
= pix_fmt_mp
->height
;
1012 mfc_debug(2, "codec number: %d\n", ctx
->src_fmt
->codec_mode
);
1013 mfc_debug(2, "fmt - w: %d, h: %d, ctx - w: %d, h: %d\n",
1014 pix_fmt_mp
->width
, pix_fmt_mp
->height
,
1015 ctx
->img_width
, ctx
->img_height
);
1017 s5p_mfc_hw_call(dev
->mfc_ops
, enc_calc_src_size
, ctx
);
1018 pix_fmt_mp
->plane_fmt
[0].sizeimage
= ctx
->luma_size
;
1019 pix_fmt_mp
->plane_fmt
[0].bytesperline
= ctx
->buf_width
;
1020 pix_fmt_mp
->plane_fmt
[1].sizeimage
= ctx
->chroma_size
;
1021 pix_fmt_mp
->plane_fmt
[1].bytesperline
= ctx
->buf_width
;
1023 ctx
->src_bufs_cnt
= 0;
1024 ctx
->output_state
= QUEUE_FREE
;
1026 mfc_err("invalid buf type\n");
1034 static int vidioc_reqbufs(struct file
*file
, void *priv
,
1035 struct v4l2_requestbuffers
*reqbufs
)
1037 struct s5p_mfc_dev
*dev
= video_drvdata(file
);
1038 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1041 /* if memory is not mmp or userptr return error */
1042 if ((reqbufs
->memory
!= V4L2_MEMORY_MMAP
) &&
1043 (reqbufs
->memory
!= V4L2_MEMORY_USERPTR
))
1045 if (reqbufs
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1046 if (ctx
->capture_state
!= QUEUE_FREE
) {
1047 mfc_err("invalid capture state: %d\n",
1048 ctx
->capture_state
);
1051 ret
= vb2_reqbufs(&ctx
->vq_dst
, reqbufs
);
1053 mfc_err("error in vb2_reqbufs() for E(D)\n");
1056 ctx
->capture_state
= QUEUE_BUFS_REQUESTED
;
1058 if (!IS_MFCV6(dev
)) {
1059 ret
= s5p_mfc_hw_call(ctx
->dev
->mfc_ops
,
1060 alloc_codec_buffers
, ctx
);
1062 mfc_err("Failed to allocate encoding buffers\n");
1064 ret
= vb2_reqbufs(&ctx
->vq_dst
, reqbufs
);
1068 } else if (reqbufs
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1069 if (ctx
->output_state
!= QUEUE_FREE
) {
1070 mfc_err("invalid output state: %d\n",
1074 ret
= vb2_reqbufs(&ctx
->vq_src
, reqbufs
);
1076 mfc_err("error in vb2_reqbufs() for E(S)\n");
1079 ctx
->output_state
= QUEUE_BUFS_REQUESTED
;
1081 mfc_err("invalid buf type\n");
1087 static int vidioc_querybuf(struct file
*file
, void *priv
,
1088 struct v4l2_buffer
*buf
)
1090 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1093 /* if memory is not mmp or userptr return error */
1094 if ((buf
->memory
!= V4L2_MEMORY_MMAP
) &&
1095 (buf
->memory
!= V4L2_MEMORY_USERPTR
))
1097 if (buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1098 if (ctx
->state
!= MFCINST_GOT_INST
) {
1099 mfc_err("invalid context state: %d\n", ctx
->state
);
1102 ret
= vb2_querybuf(&ctx
->vq_dst
, buf
);
1104 mfc_err("error in vb2_querybuf() for E(D)\n");
1107 buf
->m
.planes
[0].m
.mem_offset
+= DST_QUEUE_OFF_BASE
;
1108 } else if (buf
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1109 ret
= vb2_querybuf(&ctx
->vq_src
, buf
);
1111 mfc_err("error in vb2_querybuf() for E(S)\n");
1115 mfc_err("invalid buf type\n");
1121 /* Queue a buffer */
1122 static int vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*buf
)
1124 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1126 if (ctx
->state
== MFCINST_ERROR
) {
1127 mfc_err("Call on QBUF after unrecoverable error\n");
1130 if (buf
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1131 if (ctx
->state
== MFCINST_FINISHING
) {
1132 mfc_err("Call on QBUF after EOS command\n");
1135 return vb2_qbuf(&ctx
->vq_src
, buf
);
1136 } else if (buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1137 return vb2_qbuf(&ctx
->vq_dst
, buf
);
1142 /* Dequeue a buffer */
1143 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*buf
)
1145 const struct v4l2_event ev
= {
1146 .type
= V4L2_EVENT_EOS
1148 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1151 if (ctx
->state
== MFCINST_ERROR
) {
1152 mfc_err("Call on DQBUF after unrecoverable error\n");
1155 if (buf
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1156 ret
= vb2_dqbuf(&ctx
->vq_src
, buf
, file
->f_flags
& O_NONBLOCK
);
1157 } else if (buf
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1158 ret
= vb2_dqbuf(&ctx
->vq_dst
, buf
, file
->f_flags
& O_NONBLOCK
);
1159 if (ret
== 0 && ctx
->state
== MFCINST_FINISHED
1160 && list_empty(&ctx
->vq_dst
.done_list
))
1161 v4l2_event_queue_fh(&ctx
->fh
, &ev
);
1169 /* Export DMA buffer */
1170 static int vidioc_expbuf(struct file
*file
, void *priv
,
1171 struct v4l2_exportbuffer
*eb
)
1173 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1175 if (eb
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
)
1176 return vb2_expbuf(&ctx
->vq_src
, eb
);
1177 if (eb
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
1178 return vb2_expbuf(&ctx
->vq_dst
, eb
);
1183 static int vidioc_streamon(struct file
*file
, void *priv
,
1184 enum v4l2_buf_type type
)
1186 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1188 if (type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
)
1189 return vb2_streamon(&ctx
->vq_src
, type
);
1190 else if (type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
1191 return vb2_streamon(&ctx
->vq_dst
, type
);
1195 /* Stream off, which equals to a pause */
1196 static int vidioc_streamoff(struct file
*file
, void *priv
,
1197 enum v4l2_buf_type type
)
1199 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1201 if (type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
)
1202 return vb2_streamoff(&ctx
->vq_src
, type
);
1203 else if (type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
1204 return vb2_streamoff(&ctx
->vq_dst
, type
);
1208 static inline int h264_level(enum v4l2_mpeg_video_h264_level lvl
)
1210 static unsigned int t
[V4L2_MPEG_VIDEO_H264_LEVEL_4_0
+ 1] = {
1211 /* V4L2_MPEG_VIDEO_H264_LEVEL_1_0 */ 10,
1212 /* V4L2_MPEG_VIDEO_H264_LEVEL_1B */ 9,
1213 /* V4L2_MPEG_VIDEO_H264_LEVEL_1_1 */ 11,
1214 /* V4L2_MPEG_VIDEO_H264_LEVEL_1_2 */ 12,
1215 /* V4L2_MPEG_VIDEO_H264_LEVEL_1_3 */ 13,
1216 /* V4L2_MPEG_VIDEO_H264_LEVEL_2_0 */ 20,
1217 /* V4L2_MPEG_VIDEO_H264_LEVEL_2_1 */ 21,
1218 /* V4L2_MPEG_VIDEO_H264_LEVEL_2_2 */ 22,
1219 /* V4L2_MPEG_VIDEO_H264_LEVEL_3_0 */ 30,
1220 /* V4L2_MPEG_VIDEO_H264_LEVEL_3_1 */ 31,
1221 /* V4L2_MPEG_VIDEO_H264_LEVEL_3_2 */ 32,
1222 /* V4L2_MPEG_VIDEO_H264_LEVEL_4_0 */ 40,
1227 static inline int mpeg4_level(enum v4l2_mpeg_video_mpeg4_level lvl
)
1229 static unsigned int t
[V4L2_MPEG_VIDEO_MPEG4_LEVEL_5
+ 1] = {
1230 /* V4L2_MPEG_VIDEO_MPEG4_LEVEL_0 */ 0,
1231 /* V4L2_MPEG_VIDEO_MPEG4_LEVEL_0B */ 9,
1232 /* V4L2_MPEG_VIDEO_MPEG4_LEVEL_1 */ 1,
1233 /* V4L2_MPEG_VIDEO_MPEG4_LEVEL_2 */ 2,
1234 /* V4L2_MPEG_VIDEO_MPEG4_LEVEL_3 */ 3,
1235 /* V4L2_MPEG_VIDEO_MPEG4_LEVEL_3B */ 7,
1236 /* V4L2_MPEG_VIDEO_MPEG4_LEVEL_4 */ 4,
1237 /* V4L2_MPEG_VIDEO_MPEG4_LEVEL_5 */ 5,
1242 static inline int vui_sar_idc(enum v4l2_mpeg_video_h264_vui_sar_idc sar
)
1244 static unsigned int t
[V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_EXTENDED
+ 1] = {
1245 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_UNSPECIFIED */ 0,
1246 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_1x1 */ 1,
1247 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_12x11 */ 2,
1248 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_10x11 */ 3,
1249 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_16x11 */ 4,
1250 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_40x33 */ 5,
1251 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_24x11 */ 6,
1252 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_20x11 */ 7,
1253 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_32x11 */ 8,
1254 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_80x33 */ 9,
1255 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_18x11 */ 10,
1256 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_15x11 */ 11,
1257 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_64x33 */ 12,
1258 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_160x99 */ 13,
1259 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_4x3 */ 14,
1260 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_3x2 */ 15,
1261 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_2x1 */ 16,
1262 /* V4L2_MPEG_VIDEO_H264_VUI_SAR_IDC_EXTENDED */ 255,
1267 static int s5p_mfc_enc_s_ctrl(struct v4l2_ctrl
*ctrl
)
1269 struct s5p_mfc_ctx
*ctx
= ctrl_to_ctx(ctrl
);
1270 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1271 struct s5p_mfc_enc_params
*p
= &ctx
->enc_params
;
1275 case V4L2_CID_MPEG_VIDEO_GOP_SIZE
:
1276 p
->gop_size
= ctrl
->val
;
1278 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE
:
1279 p
->slice_mode
= ctrl
->val
;
1281 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB
:
1282 p
->slice_mb
= ctrl
->val
;
1284 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES
:
1285 p
->slice_bit
= ctrl
->val
* 8;
1287 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB
:
1288 p
->intra_refresh_mb
= ctrl
->val
;
1290 case V4L2_CID_MPEG_MFC51_VIDEO_PADDING
:
1293 case V4L2_CID_MPEG_MFC51_VIDEO_PADDING_YUV
:
1294 p
->pad_luma
= (ctrl
->val
>> 16) & 0xff;
1295 p
->pad_cb
= (ctrl
->val
>> 8) & 0xff;
1296 p
->pad_cr
= (ctrl
->val
>> 0) & 0xff;
1298 case V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE
:
1299 p
->rc_frame
= ctrl
->val
;
1301 case V4L2_CID_MPEG_VIDEO_BITRATE
:
1302 p
->rc_bitrate
= ctrl
->val
;
1304 case V4L2_CID_MPEG_MFC51_VIDEO_RC_REACTION_COEFF
:
1305 p
->rc_reaction_coeff
= ctrl
->val
;
1307 case V4L2_CID_MPEG_MFC51_VIDEO_FORCE_FRAME_TYPE
:
1308 ctx
->force_frame_type
= ctrl
->val
;
1310 case V4L2_CID_MPEG_VIDEO_VBV_SIZE
:
1311 p
->vbv_size
= ctrl
->val
;
1313 case V4L2_CID_MPEG_VIDEO_H264_CPB_SIZE
:
1314 p
->codec
.h264
.cpb_size
= ctrl
->val
;
1316 case V4L2_CID_MPEG_VIDEO_HEADER_MODE
:
1317 p
->seq_hdr_mode
= ctrl
->val
;
1319 case V4L2_CID_MPEG_MFC51_VIDEO_FRAME_SKIP_MODE
:
1320 p
->frame_skip_mode
= ctrl
->val
;
1322 case V4L2_CID_MPEG_MFC51_VIDEO_RC_FIXED_TARGET_BIT
:
1323 p
->fixed_target_bit
= ctrl
->val
;
1325 case V4L2_CID_MPEG_VIDEO_B_FRAMES
:
1326 p
->num_b_frame
= ctrl
->val
;
1328 case V4L2_CID_MPEG_VIDEO_H264_PROFILE
:
1329 switch (ctrl
->val
) {
1330 case V4L2_MPEG_VIDEO_H264_PROFILE_MAIN
:
1331 p
->codec
.h264
.profile
=
1332 S5P_FIMV_ENC_PROFILE_H264_MAIN
;
1334 case V4L2_MPEG_VIDEO_H264_PROFILE_HIGH
:
1335 p
->codec
.h264
.profile
=
1336 S5P_FIMV_ENC_PROFILE_H264_HIGH
;
1338 case V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE
:
1339 p
->codec
.h264
.profile
=
1340 S5P_FIMV_ENC_PROFILE_H264_BASELINE
;
1342 case V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE
:
1344 p
->codec
.h264
.profile
=
1345 S5P_FIMV_ENC_PROFILE_H264_CONSTRAINED_BASELINE
;
1353 case V4L2_CID_MPEG_VIDEO_H264_LEVEL
:
1354 p
->codec
.h264
.level_v4l2
= ctrl
->val
;
1355 p
->codec
.h264
.level
= h264_level(ctrl
->val
);
1356 if (p
->codec
.h264
.level
< 0) {
1357 mfc_err("Level number is wrong\n");
1358 ret
= p
->codec
.h264
.level
;
1361 case V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL
:
1362 p
->codec
.mpeg4
.level_v4l2
= ctrl
->val
;
1363 p
->codec
.mpeg4
.level
= mpeg4_level(ctrl
->val
);
1364 if (p
->codec
.mpeg4
.level
< 0) {
1365 mfc_err("Level number is wrong\n");
1366 ret
= p
->codec
.mpeg4
.level
;
1369 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE
:
1370 p
->codec
.h264
.loop_filter_mode
= ctrl
->val
;
1372 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA
:
1373 p
->codec
.h264
.loop_filter_alpha
= ctrl
->val
;
1375 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA
:
1376 p
->codec
.h264
.loop_filter_beta
= ctrl
->val
;
1378 case V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE
:
1379 p
->codec
.h264
.entropy_mode
= ctrl
->val
;
1381 case V4L2_CID_MPEG_MFC51_VIDEO_H264_NUM_REF_PIC_FOR_P
:
1382 p
->codec
.h264
.num_ref_pic_4p
= ctrl
->val
;
1384 case V4L2_CID_MPEG_VIDEO_H264_8X8_TRANSFORM
:
1385 p
->codec
.h264
._8x8_transform
= ctrl
->val
;
1387 case V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE
:
1388 p
->rc_mb
= ctrl
->val
;
1390 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP
:
1391 p
->codec
.h264
.rc_frame_qp
= ctrl
->val
;
1393 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP
:
1394 p
->codec
.h264
.rc_min_qp
= ctrl
->val
;
1396 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP
:
1397 p
->codec
.h264
.rc_max_qp
= ctrl
->val
;
1399 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP
:
1400 p
->codec
.h264
.rc_p_frame_qp
= ctrl
->val
;
1402 case V4L2_CID_MPEG_VIDEO_H264_B_FRAME_QP
:
1403 p
->codec
.h264
.rc_b_frame_qp
= ctrl
->val
;
1405 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP
:
1406 case V4L2_CID_MPEG_VIDEO_H263_I_FRAME_QP
:
1407 p
->codec
.mpeg4
.rc_frame_qp
= ctrl
->val
;
1409 case V4L2_CID_MPEG_VIDEO_MPEG4_MIN_QP
:
1410 case V4L2_CID_MPEG_VIDEO_H263_MIN_QP
:
1411 p
->codec
.mpeg4
.rc_min_qp
= ctrl
->val
;
1413 case V4L2_CID_MPEG_VIDEO_MPEG4_MAX_QP
:
1414 case V4L2_CID_MPEG_VIDEO_H263_MAX_QP
:
1415 p
->codec
.mpeg4
.rc_max_qp
= ctrl
->val
;
1417 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP
:
1418 case V4L2_CID_MPEG_VIDEO_H263_P_FRAME_QP
:
1419 p
->codec
.mpeg4
.rc_p_frame_qp
= ctrl
->val
;
1421 case V4L2_CID_MPEG_VIDEO_MPEG4_B_FRAME_QP
:
1422 case V4L2_CID_MPEG_VIDEO_H263_B_FRAME_QP
:
1423 p
->codec
.mpeg4
.rc_b_frame_qp
= ctrl
->val
;
1425 case V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_DARK
:
1426 p
->codec
.h264
.rc_mb_dark
= ctrl
->val
;
1428 case V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_SMOOTH
:
1429 p
->codec
.h264
.rc_mb_smooth
= ctrl
->val
;
1431 case V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_STATIC
:
1432 p
->codec
.h264
.rc_mb_static
= ctrl
->val
;
1434 case V4L2_CID_MPEG_MFC51_VIDEO_H264_ADAPTIVE_RC_ACTIVITY
:
1435 p
->codec
.h264
.rc_mb_activity
= ctrl
->val
;
1437 case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_ENABLE
:
1438 p
->codec
.h264
.vui_sar
= ctrl
->val
;
1440 case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC
:
1441 p
->codec
.h264
.vui_sar_idc
= vui_sar_idc(ctrl
->val
);
1443 case V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_WIDTH
:
1444 p
->codec
.h264
.vui_ext_sar_width
= ctrl
->val
;
1446 case V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_HEIGHT
:
1447 p
->codec
.h264
.vui_ext_sar_height
= ctrl
->val
;
1449 case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE
:
1450 p
->codec
.h264
.open_gop
= !ctrl
->val
;
1452 case V4L2_CID_MPEG_VIDEO_H264_I_PERIOD
:
1453 p
->codec
.h264
.open_gop_size
= ctrl
->val
;
1455 case V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE
:
1456 switch (ctrl
->val
) {
1457 case V4L2_MPEG_VIDEO_MPEG4_PROFILE_SIMPLE
:
1458 p
->codec
.mpeg4
.profile
=
1459 S5P_FIMV_ENC_PROFILE_MPEG4_SIMPLE
;
1461 case V4L2_MPEG_VIDEO_MPEG4_PROFILE_ADVANCED_SIMPLE
:
1462 p
->codec
.mpeg4
.profile
=
1463 S5P_FIMV_ENC_PROFILE_MPEG4_ADVANCED_SIMPLE
;
1469 case V4L2_CID_MPEG_VIDEO_MPEG4_QPEL
:
1470 p
->codec
.mpeg4
.quarter_pixel
= ctrl
->val
;
1473 v4l2_err(&dev
->v4l2_dev
, "Invalid control, id=%d, val=%d\n",
1474 ctrl
->id
, ctrl
->val
);
1480 static const struct v4l2_ctrl_ops s5p_mfc_enc_ctrl_ops
= {
1481 .s_ctrl
= s5p_mfc_enc_s_ctrl
,
1484 static int vidioc_s_parm(struct file
*file
, void *priv
,
1485 struct v4l2_streamparm
*a
)
1487 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1489 if (a
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1490 ctx
->enc_params
.rc_framerate_num
=
1491 a
->parm
.output
.timeperframe
.denominator
;
1492 ctx
->enc_params
.rc_framerate_denom
=
1493 a
->parm
.output
.timeperframe
.numerator
;
1495 mfc_err("Setting FPS is only possible for the output queue\n");
1501 static int vidioc_g_parm(struct file
*file
, void *priv
,
1502 struct v4l2_streamparm
*a
)
1504 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1506 if (a
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT
) {
1507 a
->parm
.output
.timeperframe
.denominator
=
1508 ctx
->enc_params
.rc_framerate_num
;
1509 a
->parm
.output
.timeperframe
.numerator
=
1510 ctx
->enc_params
.rc_framerate_denom
;
1512 mfc_err("Setting FPS is only possible for the output queue\n");
1518 int vidioc_encoder_cmd(struct file
*file
, void *priv
,
1519 struct v4l2_encoder_cmd
*cmd
)
1521 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(priv
);
1522 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1523 struct s5p_mfc_buf
*buf
;
1524 unsigned long flags
;
1527 case V4L2_ENC_CMD_STOP
:
1528 if (cmd
->flags
!= 0)
1531 if (!ctx
->vq_src
.streaming
)
1534 spin_lock_irqsave(&dev
->irqlock
, flags
);
1535 if (list_empty(&ctx
->src_queue
)) {
1536 mfc_debug(2, "EOS: empty src queue, entering finishing state");
1537 ctx
->state
= MFCINST_FINISHING
;
1538 if (s5p_mfc_ctx_ready(ctx
))
1539 set_work_bit_irqsave(ctx
);
1540 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1541 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
1543 mfc_debug(2, "EOS: marking last buffer of stream");
1544 buf
= list_entry(ctx
->src_queue
.prev
,
1545 struct s5p_mfc_buf
, list
);
1546 if (buf
->flags
& MFC_BUF_FLAG_USED
)
1547 ctx
->state
= MFCINST_FINISHING
;
1549 buf
->flags
|= MFC_BUF_FLAG_EOS
;
1550 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1560 static int vidioc_subscribe_event(struct v4l2_fh
*fh
,
1561 const struct v4l2_event_subscription
*sub
)
1563 switch (sub
->type
) {
1564 case V4L2_EVENT_EOS
:
1565 return v4l2_event_subscribe(fh
, sub
, 2, NULL
);
1571 static const struct v4l2_ioctl_ops s5p_mfc_enc_ioctl_ops
= {
1572 .vidioc_querycap
= vidioc_querycap
,
1573 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1574 .vidioc_enum_fmt_vid_cap_mplane
= vidioc_enum_fmt_vid_cap_mplane
,
1575 .vidioc_enum_fmt_vid_out
= vidioc_enum_fmt_vid_out
,
1576 .vidioc_enum_fmt_vid_out_mplane
= vidioc_enum_fmt_vid_out_mplane
,
1577 .vidioc_g_fmt_vid_cap_mplane
= vidioc_g_fmt
,
1578 .vidioc_g_fmt_vid_out_mplane
= vidioc_g_fmt
,
1579 .vidioc_try_fmt_vid_cap_mplane
= vidioc_try_fmt
,
1580 .vidioc_try_fmt_vid_out_mplane
= vidioc_try_fmt
,
1581 .vidioc_s_fmt_vid_cap_mplane
= vidioc_s_fmt
,
1582 .vidioc_s_fmt_vid_out_mplane
= vidioc_s_fmt
,
1583 .vidioc_reqbufs
= vidioc_reqbufs
,
1584 .vidioc_querybuf
= vidioc_querybuf
,
1585 .vidioc_qbuf
= vidioc_qbuf
,
1586 .vidioc_dqbuf
= vidioc_dqbuf
,
1587 .vidioc_expbuf
= vidioc_expbuf
,
1588 .vidioc_streamon
= vidioc_streamon
,
1589 .vidioc_streamoff
= vidioc_streamoff
,
1590 .vidioc_s_parm
= vidioc_s_parm
,
1591 .vidioc_g_parm
= vidioc_g_parm
,
1592 .vidioc_encoder_cmd
= vidioc_encoder_cmd
,
1593 .vidioc_subscribe_event
= vidioc_subscribe_event
,
1594 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1597 static int check_vb_with_fmt(struct s5p_mfc_fmt
*fmt
, struct vb2_buffer
*vb
)
1603 if (fmt
->num_planes
!= vb
->num_planes
) {
1604 mfc_err("invalid plane number for the format\n");
1607 for (i
= 0; i
< fmt
->num_planes
; i
++) {
1608 if (!vb2_dma_contig_plane_dma_addr(vb
, i
)) {
1609 mfc_err("failed to get plane cookie\n");
1612 mfc_debug(2, "index: %d, plane[%d] cookie: 0x%08zx",
1613 vb
->v4l2_buf
.index
, i
,
1614 vb2_dma_contig_plane_dma_addr(vb
, i
));
1619 static int s5p_mfc_queue_setup(struct vb2_queue
*vq
,
1620 const struct v4l2_format
*fmt
,
1621 unsigned int *buf_count
, unsigned int *plane_count
,
1622 unsigned int psize
[], void *allocators
[])
1624 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(vq
->drv_priv
);
1625 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1627 if (ctx
->state
!= MFCINST_GOT_INST
) {
1628 mfc_err("inavlid state: %d\n", ctx
->state
);
1631 if (vq
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1633 *plane_count
= ctx
->dst_fmt
->num_planes
;
1635 *plane_count
= MFC_ENC_CAP_PLANE_COUNT
;
1638 if (*buf_count
> MFC_MAX_BUFFERS
)
1639 *buf_count
= MFC_MAX_BUFFERS
;
1640 psize
[0] = ctx
->enc_dst_buf_size
;
1641 allocators
[0] = ctx
->dev
->alloc_ctx
[MFC_BANK1_ALLOC_CTX
];
1642 } else if (vq
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1644 *plane_count
= ctx
->src_fmt
->num_planes
;
1646 *plane_count
= MFC_ENC_OUT_PLANE_COUNT
;
1650 if (*buf_count
> MFC_MAX_BUFFERS
)
1651 *buf_count
= MFC_MAX_BUFFERS
;
1652 psize
[0] = ctx
->luma_size
;
1653 psize
[1] = ctx
->chroma_size
;
1654 if (IS_MFCV6(dev
)) {
1656 ctx
->dev
->alloc_ctx
[MFC_BANK1_ALLOC_CTX
];
1658 ctx
->dev
->alloc_ctx
[MFC_BANK1_ALLOC_CTX
];
1661 ctx
->dev
->alloc_ctx
[MFC_BANK2_ALLOC_CTX
];
1663 ctx
->dev
->alloc_ctx
[MFC_BANK2_ALLOC_CTX
];
1666 mfc_err("inavlid queue type: %d\n", vq
->type
);
1672 static void s5p_mfc_unlock(struct vb2_queue
*q
)
1674 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(q
->drv_priv
);
1675 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1677 mutex_unlock(&dev
->mfc_mutex
);
1680 static void s5p_mfc_lock(struct vb2_queue
*q
)
1682 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(q
->drv_priv
);
1683 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1685 mutex_lock(&dev
->mfc_mutex
);
1688 static int s5p_mfc_buf_init(struct vb2_buffer
*vb
)
1690 struct vb2_queue
*vq
= vb
->vb2_queue
;
1691 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(vq
->drv_priv
);
1695 if (vq
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1696 ret
= check_vb_with_fmt(ctx
->dst_fmt
, vb
);
1699 i
= vb
->v4l2_buf
.index
;
1700 ctx
->dst_bufs
[i
].b
= vb
;
1701 ctx
->dst_bufs
[i
].cookie
.stream
=
1702 vb2_dma_contig_plane_dma_addr(vb
, 0);
1703 ctx
->dst_bufs_cnt
++;
1704 } else if (vq
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1705 ret
= check_vb_with_fmt(ctx
->src_fmt
, vb
);
1708 i
= vb
->v4l2_buf
.index
;
1709 ctx
->src_bufs
[i
].b
= vb
;
1710 ctx
->src_bufs
[i
].cookie
.raw
.luma
=
1711 vb2_dma_contig_plane_dma_addr(vb
, 0);
1712 ctx
->src_bufs
[i
].cookie
.raw
.chroma
=
1713 vb2_dma_contig_plane_dma_addr(vb
, 1);
1714 ctx
->src_bufs_cnt
++;
1716 mfc_err("inavlid queue type: %d\n", vq
->type
);
1722 static int s5p_mfc_buf_prepare(struct vb2_buffer
*vb
)
1724 struct vb2_queue
*vq
= vb
->vb2_queue
;
1725 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(vq
->drv_priv
);
1728 if (vq
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1729 ret
= check_vb_with_fmt(ctx
->dst_fmt
, vb
);
1732 mfc_debug(2, "plane size: %ld, dst size: %d\n",
1733 vb2_plane_size(vb
, 0), ctx
->enc_dst_buf_size
);
1734 if (vb2_plane_size(vb
, 0) < ctx
->enc_dst_buf_size
) {
1735 mfc_err("plane size is too small for capture\n");
1738 } else if (vq
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1739 ret
= check_vb_with_fmt(ctx
->src_fmt
, vb
);
1742 mfc_debug(2, "plane size: %ld, luma size: %d\n",
1743 vb2_plane_size(vb
, 0), ctx
->luma_size
);
1744 mfc_debug(2, "plane size: %ld, chroma size: %d\n",
1745 vb2_plane_size(vb
, 1), ctx
->chroma_size
);
1746 if (vb2_plane_size(vb
, 0) < ctx
->luma_size
||
1747 vb2_plane_size(vb
, 1) < ctx
->chroma_size
) {
1748 mfc_err("plane size is too small for output\n");
1752 mfc_err("inavlid queue type: %d\n", vq
->type
);
1758 static int s5p_mfc_start_streaming(struct vb2_queue
*q
, unsigned int count
)
1760 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(q
->drv_priv
);
1761 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1763 v4l2_ctrl_handler_setup(&ctx
->ctrl_handler
);
1764 /* If context is ready then dev = work->data;schedule it to run */
1765 if (s5p_mfc_ctx_ready(ctx
))
1766 set_work_bit_irqsave(ctx
);
1767 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
1771 static int s5p_mfc_stop_streaming(struct vb2_queue
*q
)
1773 unsigned long flags
;
1774 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(q
->drv_priv
);
1775 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1777 if ((ctx
->state
== MFCINST_FINISHING
||
1778 ctx
->state
== MFCINST_RUNNING
) &&
1779 dev
->curr_ctx
== ctx
->num
&& dev
->hw_lock
) {
1780 ctx
->state
= MFCINST_ABORT
;
1781 s5p_mfc_wait_for_done_ctx(ctx
, S5P_MFC_R2H_CMD_FRAME_DONE_RET
,
1784 ctx
->state
= MFCINST_FINISHED
;
1785 spin_lock_irqsave(&dev
->irqlock
, flags
);
1786 if (q
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1787 s5p_mfc_hw_call(dev
->mfc_ops
, cleanup_queue
, &ctx
->dst_queue
,
1789 INIT_LIST_HEAD(&ctx
->dst_queue
);
1790 ctx
->dst_queue_cnt
= 0;
1792 if (q
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1793 cleanup_ref_queue(ctx
);
1794 s5p_mfc_hw_call(dev
->mfc_ops
, cleanup_queue
, &ctx
->src_queue
,
1796 INIT_LIST_HEAD(&ctx
->src_queue
);
1797 ctx
->src_queue_cnt
= 0;
1799 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1803 static void s5p_mfc_buf_queue(struct vb2_buffer
*vb
)
1805 struct vb2_queue
*vq
= vb
->vb2_queue
;
1806 struct s5p_mfc_ctx
*ctx
= fh_to_ctx(vq
->drv_priv
);
1807 struct s5p_mfc_dev
*dev
= ctx
->dev
;
1808 unsigned long flags
;
1809 struct s5p_mfc_buf
*mfc_buf
;
1811 if (ctx
->state
== MFCINST_ERROR
) {
1812 vb2_buffer_done(vb
, VB2_BUF_STATE_ERROR
);
1813 cleanup_ref_queue(ctx
);
1816 if (vq
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
1817 mfc_buf
= &ctx
->dst_bufs
[vb
->v4l2_buf
.index
];
1818 mfc_buf
->flags
&= ~MFC_BUF_FLAG_USED
;
1819 /* Mark destination as available for use by MFC */
1820 spin_lock_irqsave(&dev
->irqlock
, flags
);
1821 list_add_tail(&mfc_buf
->list
, &ctx
->dst_queue
);
1822 ctx
->dst_queue_cnt
++;
1823 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1824 } else if (vq
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
1825 mfc_buf
= &ctx
->src_bufs
[vb
->v4l2_buf
.index
];
1826 mfc_buf
->flags
&= ~MFC_BUF_FLAG_USED
;
1827 spin_lock_irqsave(&dev
->irqlock
, flags
);
1828 list_add_tail(&mfc_buf
->list
, &ctx
->src_queue
);
1829 ctx
->src_queue_cnt
++;
1830 spin_unlock_irqrestore(&dev
->irqlock
, flags
);
1832 mfc_err("unsupported buffer type (%d)\n", vq
->type
);
1834 if (s5p_mfc_ctx_ready(ctx
))
1835 set_work_bit_irqsave(ctx
);
1836 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
1839 static struct vb2_ops s5p_mfc_enc_qops
= {
1840 .queue_setup
= s5p_mfc_queue_setup
,
1841 .wait_prepare
= s5p_mfc_unlock
,
1842 .wait_finish
= s5p_mfc_lock
,
1843 .buf_init
= s5p_mfc_buf_init
,
1844 .buf_prepare
= s5p_mfc_buf_prepare
,
1845 .start_streaming
= s5p_mfc_start_streaming
,
1846 .stop_streaming
= s5p_mfc_stop_streaming
,
1847 .buf_queue
= s5p_mfc_buf_queue
,
1850 struct s5p_mfc_codec_ops
*get_enc_codec_ops(void)
1852 return &encoder_codec_ops
;
1855 struct vb2_ops
*get_enc_queue_ops(void)
1857 return &s5p_mfc_enc_qops
;
1860 const struct v4l2_ioctl_ops
*get_enc_v4l2_ioctl_ops(void)
1862 return &s5p_mfc_enc_ioctl_ops
;
1865 #define IS_MFC51_PRIV(x) ((V4L2_CTRL_ID2CLASS(x) == V4L2_CTRL_CLASS_MPEG) \
1866 && V4L2_CTRL_DRIVER_PRIV(x))
1868 int s5p_mfc_enc_ctrls_setup(struct s5p_mfc_ctx
*ctx
)
1870 struct v4l2_ctrl_config cfg
;
1873 v4l2_ctrl_handler_init(&ctx
->ctrl_handler
, NUM_CTRLS
);
1874 if (ctx
->ctrl_handler
.error
) {
1875 mfc_err("v4l2_ctrl_handler_init failed\n");
1876 return ctx
->ctrl_handler
.error
;
1878 for (i
= 0; i
< NUM_CTRLS
; i
++) {
1879 if (IS_MFC51_PRIV(controls
[i
].id
)) {
1880 memset(&cfg
, 0, sizeof(struct v4l2_ctrl_config
));
1881 cfg
.ops
= &s5p_mfc_enc_ctrl_ops
;
1882 cfg
.id
= controls
[i
].id
;
1883 cfg
.min
= controls
[i
].minimum
;
1884 cfg
.max
= controls
[i
].maximum
;
1885 cfg
.def
= controls
[i
].default_value
;
1886 cfg
.name
= controls
[i
].name
;
1887 cfg
.type
= controls
[i
].type
;
1890 if (cfg
.type
== V4L2_CTRL_TYPE_MENU
) {
1892 cfg
.menu_skip_mask
= cfg
.menu_skip_mask
;
1893 cfg
.qmenu
= mfc51_get_menu(cfg
.id
);
1895 cfg
.step
= controls
[i
].step
;
1896 cfg
.menu_skip_mask
= 0;
1898 ctx
->ctrls
[i
] = v4l2_ctrl_new_custom(&ctx
->ctrl_handler
,
1901 if (controls
[i
].type
== V4L2_CTRL_TYPE_MENU
) {
1902 ctx
->ctrls
[i
] = v4l2_ctrl_new_std_menu(
1904 &s5p_mfc_enc_ctrl_ops
, controls
[i
].id
,
1905 controls
[i
].maximum
, 0,
1906 controls
[i
].default_value
);
1908 ctx
->ctrls
[i
] = v4l2_ctrl_new_std(
1910 &s5p_mfc_enc_ctrl_ops
, controls
[i
].id
,
1911 controls
[i
].minimum
,
1912 controls
[i
].maximum
, controls
[i
].step
,
1913 controls
[i
].default_value
);
1916 if (ctx
->ctrl_handler
.error
) {
1917 mfc_err("Adding control (%d) failed\n", i
);
1918 return ctx
->ctrl_handler
.error
;
1920 if (controls
[i
].is_volatile
&& ctx
->ctrls
[i
])
1921 ctx
->ctrls
[i
]->flags
|= V4L2_CTRL_FLAG_VOLATILE
;
1926 void s5p_mfc_enc_ctrls_delete(struct s5p_mfc_ctx
*ctx
)
1930 v4l2_ctrl_handler_free(&ctx
->ctrl_handler
);
1931 for (i
= 0; i
< NUM_CTRLS
; i
++)
1932 ctx
->ctrls
[i
] = NULL
;
1935 void s5p_mfc_enc_init(struct s5p_mfc_ctx
*ctx
)
1937 struct v4l2_format f
;
1938 f
.fmt
.pix_mp
.pixelformat
= DEF_SRC_FMT_ENC
;
1939 ctx
->src_fmt
= find_format(&f
, MFC_FMT_RAW
);
1940 f
.fmt
.pix_mp
.pixelformat
= DEF_DST_FMT_ENC
;
1941 ctx
->dst_fmt
= find_format(&f
, MFC_FMT_ENC
);