lkml.org 
[lkml]   [2023]   [May]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v12 01/10] drm/msm/dpu: set DSC flush bit correctly at MDP CTL flush register
    Date
    DSC flush bit is the bit 22 of CTL flush register. BIT(22) is expected
    to be written to CTL flush register to indicates that DSC is ready for
    flush. However 0x22 (BIT(1) and BIT(5)) was written mistakenly at current
    implementation. Fix this problem by writing BIT(22) to CTL flush register
    for DSC to work properly.

    Changes in V12:
    -- split this patch out of "separate DSC flush update out of interface"

    Fixes: 77f6da90487c ("drm/msm/disp/dpu1: Add DSC support in hw_ctl")
    Signed-off-by: Kuogee Hsieh <quic_khsieh@quicinc.com>
    ---
    drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c
    index 4f7cfa9..69d0ea2 100644
    --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c
    +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c
    @@ -525,7 +525,7 @@ static void dpu_hw_ctl_intf_cfg_v1(struct dpu_hw_ctl *ctx,
    DPU_REG_WRITE(c, CTL_MERGE_3D_ACTIVE,
    BIT(cfg->merge_3d - MERGE_3D_0));
    if (cfg->dsc) {
    - DPU_REG_WRITE(&ctx->hw, CTL_FLUSH, DSC_IDX);
    + DPU_REG_WRITE(&ctx->hw, CTL_FLUSH, BIT(DSC_IDX));
    DPU_REG_WRITE(c, CTL_DSC_ACTIVE, cfg->dsc);
    }
    }
    --
    2.7.4
    \
     
     \ /
      Last update: 2023-05-22 21:33    [W:4.738 / U:0.084 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site