media: mediatek: vcodec: Removing struct 'mtk_vcodec_ctx/dev' for shared interface
authorYunfei Dong <yunfei.dong@mediatek.com>
Sat, 29 Jul 2023 02:55:06 +0000 (10:55 +0800)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Thu, 10 Aug 2023 05:58:33 +0000 (07:58 +0200)
The shared struct 'mtk_vcodec_ctx/dev' will be changed to
'mtk_vcodec_enc_ctx/dev' and 'mtk_vcodec_dec_ctx/dev' in order to separate
encoder and decoder. Removing common struct 'mtk_vcodec_ctx/dev' for shared
interface which encoder and decoder used at the same time. Then encoder and
decoder can call the same interface independently.

Signed-off-by: Yunfei Dong <yunfei.dong@mediatek.com>
Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/platform/mediatek/vcodec/mtk_vcodec_intr.c
drivers/media/platform/mediatek/vcodec/mtk_vcodec_intr.h
drivers/media/platform/mediatek/vcodec/mtk_vcodec_util.c
drivers/media/platform/mediatek/vcodec/mtk_vcodec_util.h
drivers/media/platform/mediatek/vcodec/vdec/vdec_vp8_if.c
drivers/media/platform/mediatek/vcodec/venc/venc_h264_if.c
drivers/media/platform/mediatek/vcodec/venc/venc_vp8_if.c

index 552b4c93d972768bd7a6fdc50a92c2325716adaa..30815ba9bb501640815470cc488fe2e361c35762 100644 (file)
 #include "mtk_vcodec_intr.h"
 #include "mtk_vcodec_util.h"
 
-int mtk_vcodec_wait_for_done_ctx(struct mtk_vcodec_ctx *ctx,
-                                int command, unsigned int timeout_ms,
+int mtk_vcodec_wait_for_done_ctx(void *priv, int command, unsigned int timeout_ms,
                                 unsigned int hw_id)
 {
+       struct mtk_vcodec_ctx *ctx = priv;
        long timeout_jiff, ret;
-       int status = 0;
+       int ctx_id, ctx_type, status = 0;
+       int *ctx_int_cond, *ctx_int_type;
+       wait_queue_head_t *ctx_queue;
+
+       ctx_id = ctx->id;
+       ctx_type = ctx->type;
+       ctx_int_cond = ctx->int_cond;
+       ctx_int_type = ctx->int_type;
+       ctx_queue = ctx->queue;
 
        timeout_jiff = msecs_to_jiffies(timeout_ms);
-       ret = wait_event_interruptible_timeout(ctx->queue[hw_id],
-                                              ctx->int_cond[hw_id],
+       ret = wait_event_interruptible_timeout(ctx_queue[hw_id],
+                                              ctx_int_cond[hw_id],
                                               timeout_jiff);
 
        if (!ret) {
                status = -1;    /* timeout */
                mtk_v4l2_err("[%d] cmd=%d, type=%d, dec timeout=%ums (%d %d)",
-                            ctx->id, command, ctx->type, timeout_ms,
-                            ctx->int_cond[hw_id], ctx->int_type[hw_id]);
+                            ctx_id, command, ctx_type, timeout_ms,
+                            ctx_int_cond[hw_id], ctx_int_type[hw_id]);
        } else if (-ERESTARTSYS == ret) {
                status = -1;
                mtk_v4l2_err("[%d] cmd=%d, type=%d, dec inter fail (%d %d)",
-                            ctx->id, command, ctx->type,
-                            ctx->int_cond[hw_id], ctx->int_type[hw_id]);
+                            ctx_id, command, ctx_type,
+                            ctx_int_cond[hw_id], ctx_int_type[hw_id]);
        }
 
-       ctx->int_cond[hw_id] = 0;
-       ctx->int_type[hw_id] = 0;
+       ctx_int_cond[hw_id] = 0;
+       ctx_int_type[hw_id] = 0;
 
        return status;
 }
index 9681f492813b0c867f2de5930793e53d6c480df5..11bf0ef94d5d32024dea3098f6233aeebd5ccd7c 100644 (file)
@@ -12,8 +12,7 @@
 struct mtk_vcodec_ctx;
 
 /* timeout is ms */
-int mtk_vcodec_wait_for_done_ctx(struct mtk_vcodec_ctx *ctx,
-                                int command, unsigned int timeout_ms,
+int mtk_vcodec_wait_for_done_ctx(void *priv, int command, unsigned int timeout_ms,
                                 unsigned int hw_id);
 
 #endif /* _MTK_VCODEC_INTR_H_ */
index 8981707ce5ddf024c98723738561ecdeac90851e..1545848156c6069f1c5ce9341c1fb5d4bd3027d1 100644 (file)
@@ -21,16 +21,13 @@ int mtk_v4l2_dbg_level;
 EXPORT_SYMBOL(mtk_v4l2_dbg_level);
 #endif
 
-void __iomem *mtk_vcodec_get_reg_addr(struct mtk_vcodec_ctx *data,
-                                       unsigned int reg_idx)
+void __iomem *mtk_vcodec_get_reg_addr(void __iomem **reg_base, unsigned int reg_idx)
 {
-       struct mtk_vcodec_ctx *ctx = (struct mtk_vcodec_ctx *)data;
-
-       if (!data || reg_idx >= NUM_MAX_VCODEC_REG_BASE) {
+       if (reg_idx >= NUM_MAX_VCODEC_REG_BASE) {
                mtk_v4l2_err("Invalid arguments, reg_idx=%d", reg_idx);
                return NULL;
        }
-       return ctx->dev->reg_base[reg_idx];
+       return reg_base[reg_idx];
 }
 EXPORT_SYMBOL(mtk_vcodec_get_reg_addr);
 
@@ -48,11 +45,10 @@ int mtk_vcodec_write_vdecsys(struct mtk_vcodec_ctx *ctx, unsigned int reg,
 }
 EXPORT_SYMBOL(mtk_vcodec_write_vdecsys);
 
-int mtk_vcodec_mem_alloc(struct mtk_vcodec_ctx *data,
-                       struct mtk_vcodec_mem *mem)
+int mtk_vcodec_mem_alloc(void *priv, struct mtk_vcodec_mem *mem)
 {
        unsigned long size = mem->size;
-       struct mtk_vcodec_ctx *ctx = (struct mtk_vcodec_ctx *)data;
+       struct mtk_vcodec_ctx *ctx = priv;
        struct device *dev = &ctx->dev->plat_dev->dev;
 
        mem->va = dma_alloc_coherent(dev, size, &mem->dma_addr, GFP_KERNEL);
@@ -71,11 +67,10 @@ int mtk_vcodec_mem_alloc(struct mtk_vcodec_ctx *data,
 }
 EXPORT_SYMBOL(mtk_vcodec_mem_alloc);
 
-void mtk_vcodec_mem_free(struct mtk_vcodec_ctx *data,
-                       struct mtk_vcodec_mem *mem)
+void mtk_vcodec_mem_free(void *priv, struct mtk_vcodec_mem *mem)
 {
        unsigned long size = mem->size;
-       struct mtk_vcodec_ctx *ctx = (struct mtk_vcodec_ctx *)data;
+       struct mtk_vcodec_ctx *ctx = priv;
        struct device *dev = &ctx->dev->plat_dev->dev;
 
        if (!mem->va) {
index c8bb4fc5153f5e39cfac2f4df150c81533a5c68b..7f12ba82a5f4bf4405b007e0d22ba5c1fba1d12e 100644 (file)
@@ -68,14 +68,10 @@ extern int mtk_vcodec_dbg;
 #define mtk_vcodec_debug_enter(h)  mtk_vcodec_debug(h, "+")
 #define mtk_vcodec_debug_leave(h)  mtk_vcodec_debug(h, "-")
 
-void __iomem *mtk_vcodec_get_reg_addr(struct mtk_vcodec_ctx *data,
-                               unsigned int reg_idx);
-int mtk_vcodec_write_vdecsys(struct mtk_vcodec_ctx *ctx, unsigned int reg,
-                            unsigned int val);
-int mtk_vcodec_mem_alloc(struct mtk_vcodec_ctx *data,
-                               struct mtk_vcodec_mem *mem);
-void mtk_vcodec_mem_free(struct mtk_vcodec_ctx *data,
-                               struct mtk_vcodec_mem *mem);
+void __iomem *mtk_vcodec_get_reg_addr(void __iomem **reg_base, unsigned int reg_idx);
+int mtk_vcodec_write_vdecsys(struct mtk_vcodec_ctx *ctx, unsigned int reg, unsigned int val);
+int mtk_vcodec_mem_alloc(void *priv, struct mtk_vcodec_mem *mem);
+void mtk_vcodec_mem_free(void *priv, struct mtk_vcodec_mem *mem);
 void mtk_vcodec_set_curr_ctx(struct mtk_vcodec_dev *vdec_dev,
                             struct mtk_vcodec_ctx *ctx, int hw_idx);
 struct mtk_vcodec_ctx *mtk_vcodec_get_curr_ctx(struct mtk_vcodec_dev *vdec_dev,
index 2592fa37b4c817df1216c039fd297ca86929ff85..9651f5ee20e442bfc6625f7b2fee784b23f86271 100644 (file)
@@ -165,12 +165,14 @@ struct vdec_vp8_inst {
 
 static void get_hw_reg_base(struct vdec_vp8_inst *inst)
 {
-       inst->reg_base.top = mtk_vcodec_get_reg_addr(inst->ctx, VDEC_TOP);
-       inst->reg_base.cm = mtk_vcodec_get_reg_addr(inst->ctx, VDEC_CM);
-       inst->reg_base.hwd = mtk_vcodec_get_reg_addr(inst->ctx, VDEC_HWD);
-       inst->reg_base.misc = mtk_vcodec_get_reg_addr(inst->ctx, VDEC_MISC);
-       inst->reg_base.ld = mtk_vcodec_get_reg_addr(inst->ctx, VDEC_LD);
-       inst->reg_base.hwb = mtk_vcodec_get_reg_addr(inst->ctx, VDEC_HWB);
+       void __iomem **reg_base = inst->ctx->dev->reg_base;
+
+       inst->reg_base.top = mtk_vcodec_get_reg_addr(reg_base, VDEC_TOP);
+       inst->reg_base.cm = mtk_vcodec_get_reg_addr(reg_base, VDEC_CM);
+       inst->reg_base.hwd = mtk_vcodec_get_reg_addr(reg_base, VDEC_HWD);
+       inst->reg_base.misc = mtk_vcodec_get_reg_addr(reg_base, VDEC_MISC);
+       inst->reg_base.ld = mtk_vcodec_get_reg_addr(reg_base, VDEC_LD);
+       inst->reg_base.hwb = mtk_vcodec_get_reg_addr(reg_base, VDEC_HWB);
 }
 
 static void write_hw_segmentation_data(struct vdec_vp8_inst *inst)
index 60fd165c0d94d9864500dbf2b7c436309db654ee..10365c95ebbea29aa6a00496ae840e75597a278a 100644 (file)
@@ -612,7 +612,7 @@ static int h264_enc_init(struct mtk_vcodec_ctx *ctx)
        inst->ctx = ctx;
        inst->vpu_inst.ctx = ctx;
        inst->vpu_inst.id = is_ext ? SCP_IPI_VENC_H264 : IPI_VENC_H264;
-       inst->hw_base = mtk_vcodec_get_reg_addr(inst->ctx, VENC_SYS);
+       inst->hw_base = mtk_vcodec_get_reg_addr(inst->ctx->dev->reg_base, VENC_SYS);
 
        mtk_vcodec_debug_enter(inst);
 
index 56ce58f761f15eefac1f1f4daa1819cb83a359ce..73ebc35d7c99591bf22704b6c18813acf642f196 100644 (file)
@@ -336,7 +336,7 @@ static int vp8_enc_init(struct mtk_vcodec_ctx *ctx)
        inst->ctx = ctx;
        inst->vpu_inst.ctx = ctx;
        inst->vpu_inst.id = IPI_VENC_VP8;
-       inst->hw_base = mtk_vcodec_get_reg_addr(inst->ctx, VENC_LT_SYS);
+       inst->hw_base = mtk_vcodec_get_reg_addr(inst->ctx->dev->reg_base, VENC_LT_SYS);
 
        mtk_vcodec_debug_enter(inst);