media: ti-vpe: cal: add 'use_pix_proc' field
authorTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Mon, 14 Jun 2021 11:23:28 +0000 (13:23 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Mon, 12 Jul 2021 11:09:10 +0000 (13:09 +0200)
We already have functions to reserve and release a pix proc unit, but we
always reserve such and the code expects the pix proc unit to be used.

Add a new field, 'use_pix_proc', to indicate if the pix prox unit has
been reserved and should be used. Use the flag to skip programming pix
proc unit when not needed.

Note that we still always set the use_pix_proc flag to true.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/ti-vpe/cal.c
drivers/media/platform/ti-vpe/cal.h

index 92240df..fdfa5ad 100644 (file)
@@ -473,13 +473,15 @@ int cal_ctx_prepare(struct cal_ctx *ctx)
        }
 
        ctx->pix_proc = ret;
+       ctx->use_pix_proc = true;
 
        return 0;
 }
 
 void cal_ctx_unprepare(struct cal_ctx *ctx)
 {
-       cal_release_pix_proc(ctx->cal, ctx->pix_proc);
+       if (ctx->use_pix_proc)
+               cal_release_pix_proc(ctx->cal, ctx->pix_proc);
 }
 
 void cal_ctx_start(struct cal_ctx *ctx)
@@ -489,7 +491,8 @@ void cal_ctx_start(struct cal_ctx *ctx)
 
        /* Configure the CSI-2, pixel processing and write DMA contexts. */
        cal_ctx_csi2_config(ctx);
-       cal_ctx_pix_proc_config(ctx);
+       if (ctx->use_pix_proc)
+               cal_ctx_pix_proc_config(ctx);
        cal_ctx_wr_dma_config(ctx);
 
        /* Enable IRQ_WDMA_END and IRQ_WDMA_START. */
@@ -530,7 +533,8 @@ void cal_ctx_stop(struct cal_ctx *ctx)
        cal_write(ctx->cal, CAL_CSI2_CTX(ctx->phy->instance, ctx->csi2_ctx), 0);
 
        /* Disable pix proc */
-       cal_write(ctx->cal, CAL_PIX_PROC(ctx->pix_proc), 0);
+       if (ctx->use_pix_proc)
+               cal_write(ctx->cal, CAL_PIX_PROC(ctx->pix_proc), 0);
 }
 
 /* ------------------------------------------------------------------
index 5d8b319..d7cc399 100644 (file)
@@ -223,6 +223,8 @@ struct cal_ctx {
        u8                      cport;
        u8                      csi2_ctx;
        u8                      pix_proc;
+
+       bool                    use_pix_proc;
 };
 
 extern unsigned int cal_debug;