1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2016 MediaTek Inc.
4 * Author: Daniel Hsiao <daniel.hsiao@mediatek.com>
5 * Jungchang Tsao <jungchang.tsao@mediatek.com>
6 * Tiffany Lin <tiffany.lin@mediatek.com>
9 #include <linux/interrupt.h>
10 #include <linux/kernel.h>
11 #include <linux/slab.h>
13 #include "venc_drv_base.h"
14 #include "venc_drv_if.h"
16 #include "mtk_vcodec_enc.h"
17 #include "mtk_vcodec_enc_pm.h"
20 int venc_if_init(struct mtk_vcodec_ctx
*ctx
, unsigned int fourcc
)
25 case V4L2_PIX_FMT_VP8
:
26 ctx
->enc_if
= &venc_vp8_if
;
28 case V4L2_PIX_FMT_H264
:
29 ctx
->enc_if
= &venc_h264_if
;
36 mtk_vcodec_enc_clock_on(&ctx
->dev
->pm
);
37 ret
= ctx
->enc_if
->init(ctx
);
38 mtk_vcodec_enc_clock_off(&ctx
->dev
->pm
);
44 int venc_if_set_param(struct mtk_vcodec_ctx
*ctx
,
45 enum venc_set_param_type type
, struct venc_enc_param
*in
)
50 mtk_vcodec_enc_clock_on(&ctx
->dev
->pm
);
51 ret
= ctx
->enc_if
->set_param(ctx
->drv_handle
, type
, in
);
52 mtk_vcodec_enc_clock_off(&ctx
->dev
->pm
);
58 int venc_if_encode(struct mtk_vcodec_ctx
*ctx
,
59 enum venc_start_opt opt
, struct venc_frm_buf
*frm_buf
,
60 struct mtk_vcodec_mem
*bs_buf
,
61 struct venc_done_result
*result
)
68 spin_lock_irqsave(&ctx
->dev
->irqlock
, flags
);
69 ctx
->dev
->curr_ctx
= ctx
;
70 spin_unlock_irqrestore(&ctx
->dev
->irqlock
, flags
);
72 mtk_vcodec_enc_clock_on(&ctx
->dev
->pm
);
73 ret
= ctx
->enc_if
->encode(ctx
->drv_handle
, opt
, frm_buf
,
75 mtk_vcodec_enc_clock_off(&ctx
->dev
->pm
);
77 spin_lock_irqsave(&ctx
->dev
->irqlock
, flags
);
78 ctx
->dev
->curr_ctx
= NULL
;
79 spin_unlock_irqrestore(&ctx
->dev
->irqlock
, flags
);
85 int venc_if_deinit(struct mtk_vcodec_ctx
*ctx
)
93 mtk_vcodec_enc_clock_on(&ctx
->dev
->pm
);
94 ret
= ctx
->enc_if
->deinit(ctx
->drv_handle
);
95 mtk_vcodec_enc_clock_off(&ctx
->dev
->pm
);
98 ctx
->drv_handle
= NULL
;