1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2016 MediaTek Inc.
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"
19 int venc_if_init(struct mtk_vcodec_ctx *ctx, unsigned int fourcc)
24 case V4L2_PIX_FMT_VP8:
25 ctx->enc_if = &venc_vp8_if;
27 case V4L2_PIX_FMT_H264:
28 ctx->enc_if = &venc_h264_if;
35 mtk_vcodec_enc_clock_on(&ctx->dev->pm);
36 ret = ctx->enc_if->init(ctx);
37 mtk_vcodec_enc_clock_off(&ctx->dev->pm);
43 int venc_if_set_param(struct mtk_vcodec_ctx *ctx,
44 enum venc_set_param_type type, struct venc_enc_param *in)
49 mtk_vcodec_enc_clock_on(&ctx->dev->pm);
50 ret = ctx->enc_if->set_param(ctx->drv_handle, type, in);
51 mtk_vcodec_enc_clock_off(&ctx->dev->pm);
57 int venc_if_encode(struct mtk_vcodec_ctx *ctx,
58 enum venc_start_opt opt, struct venc_frm_buf *frm_buf,
59 struct mtk_vcodec_mem *bs_buf,
60 struct venc_done_result *result)
67 spin_lock_irqsave(&ctx->dev->irqlock, flags);
68 ctx->dev->curr_ctx = ctx;
69 spin_unlock_irqrestore(&ctx->dev->irqlock, flags);
71 mtk_vcodec_enc_clock_on(&ctx->dev->pm);
72 ret = ctx->enc_if->encode(ctx->drv_handle, opt, frm_buf,
74 mtk_vcodec_enc_clock_off(&ctx->dev->pm);
76 spin_lock_irqsave(&ctx->dev->irqlock, flags);
77 ctx->dev->curr_ctx = NULL;
78 spin_unlock_irqrestore(&ctx->dev->irqlock, flags);
84 int venc_if_deinit(struct mtk_vcodec_ctx *ctx)
92 mtk_vcodec_enc_clock_on(&ctx->dev->pm);
93 ret = ctx->enc_if->deinit(ctx->drv_handle);
94 mtk_vcodec_enc_clock_off(&ctx->dev->pm);
97 ctx->drv_handle = NULL;