drm/msm/dpu: Disable MDP vsync source selection on DPU 5.0.0 and above
authorMarijn Suijten <marijn.suijten@somainline.org>
Wed, 26 Apr 2023 22:37:29 +0000 (00:37 +0200)
committerDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Mon, 22 May 2023 07:14:18 +0000 (10:14 +0300)
Since hardware revision 5.0.0 the TE configuration moved out of the
PINGPONG block into the INTF block, including vsync source selection
that was previously part of MDP top.  Writing to the MDP_VSYNC_SEL
register has no effect anymore and is omitted downstream via the
DPU/SDE_MDP_VSYNC_SEL feature flag.  This flag is only added to INTF
blocks used by hardware prior to 5.0.0.

The code that writes to these registers in the INTF block will follow in
subsequent patches.

Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/534220/
Link: https://lore.kernel.org/r/20230411-dpu-intf-te-v4-15-27ce1a5ab5c6@somainline.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_3_0_msm8998.h
drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_4_0_sdm845.h
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_top.c

index 3d01840..dc2c897 100644 (file)
@@ -30,7 +30,7 @@ static const struct dpu_mdp_cfg msm8998_mdp[] = {
        {
        .name = "top_0", .id = MDP_TOP,
        .base = 0x0, .len = 0x458,
-       .features = 0,
+       .features = BIT(DPU_MDP_VSYNC_SEL),
        .clk_ctrls[DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 },
        .clk_ctrls[DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 },
        .clk_ctrls[DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 },
index 84159f8..41e4c1e 100644 (file)
@@ -30,7 +30,7 @@ static const struct dpu_mdp_cfg sdm845_mdp[] = {
        {
        .name = "top_0", .id = MDP_TOP,
        .base = 0x0, .len = 0x45c,
-       .features = BIT(DPU_MDP_AUDIO_SELECT),
+       .features = BIT(DPU_MDP_AUDIO_SELECT) | BIT(DPU_MDP_VSYNC_SEL),
        .clk_ctrls[DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 },
        .clk_ctrls[DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 },
        .clk_ctrls[DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 },
index c6eb5a8..917272f 100644 (file)
@@ -48,6 +48,8 @@ enum {
  * @DPU_MDP_UBWC_1_5,      Universal Bandwidth compression version 1.5
  * @DPU_MDP_PERIPH_0_REMOVED Indicates that access to periph top0 block results
  *                        in a failure
+ * @DPU_MDP_VSYNC_SEL      Enables vsync source selection via MDP_VSYNC_SEL register
+ *                         (moved into INTF block since DPU 5.0.0)
  * @DPU_MDP_MAX            Maximum value
 
  */
@@ -59,6 +61,7 @@ enum {
        DPU_MDP_UBWC_1_5,
        DPU_MDP_AUDIO_SELECT,
        DPU_MDP_PERIPH_0_REMOVED,
+       DPU_MDP_VSYNC_SEL,
        DPU_MDP_MAX
 };
 
index 2bb02e1..963bdb5 100644 (file)
@@ -130,24 +130,12 @@ static void dpu_hw_setup_vsync_source(struct dpu_hw_mdp *mdp,
                struct dpu_vsync_source_cfg *cfg)
 {
        struct dpu_hw_blk_reg_map *c;
-       u32 reg, wd_load_value, wd_ctl, wd_ctl2, i;
-       static const u32 pp_offset[PINGPONG_MAX] = {0xC, 0x8, 0x4, 0x13, 0x18};
+       u32 reg, wd_load_value, wd_ctl, wd_ctl2;
 
-       if (!mdp || !cfg || (cfg->pp_count > ARRAY_SIZE(cfg->ppnumber)))
+       if (!mdp || !cfg)
                return;
 
        c = &mdp->hw;
-       reg = DPU_REG_READ(c, MDP_VSYNC_SEL);
-       for (i = 0; i < cfg->pp_count; i++) {
-               int pp_idx = cfg->ppnumber[i] - PINGPONG_0;
-
-               if (pp_idx >= ARRAY_SIZE(pp_offset))
-                       continue;
-
-               reg &= ~(0xf << pp_offset[pp_idx]);
-               reg |= (cfg->vsync_source & 0xf) << pp_offset[pp_idx];
-       }
-       DPU_REG_WRITE(c, MDP_VSYNC_SEL, reg);
 
        if (cfg->vsync_source >= DPU_VSYNC_SOURCE_WD_TIMER_4 &&
                        cfg->vsync_source <= DPU_VSYNC_SOURCE_WD_TIMER_0) {
@@ -194,6 +182,33 @@ static void dpu_hw_setup_vsync_source(struct dpu_hw_mdp *mdp,
        }
 }
 
+static void dpu_hw_setup_vsync_source_and_vsync_sel(struct dpu_hw_mdp *mdp,
+               struct dpu_vsync_source_cfg *cfg)
+{
+       struct dpu_hw_blk_reg_map *c;
+       u32 reg, i;
+       static const u32 pp_offset[PINGPONG_MAX] = {0xC, 0x8, 0x4, 0x13, 0x18};
+
+       if (!mdp || !cfg || (cfg->pp_count > ARRAY_SIZE(cfg->ppnumber)))
+               return;
+
+       c = &mdp->hw;
+
+       reg = DPU_REG_READ(c, MDP_VSYNC_SEL);
+       for (i = 0; i < cfg->pp_count; i++) {
+               int pp_idx = cfg->ppnumber[i] - PINGPONG_0;
+
+               if (pp_idx >= ARRAY_SIZE(pp_offset))
+                       continue;
+
+               reg &= ~(0xf << pp_offset[pp_idx]);
+               reg |= (cfg->vsync_source & 0xf) << pp_offset[pp_idx];
+       }
+       DPU_REG_WRITE(c, MDP_VSYNC_SEL, reg);
+
+       dpu_hw_setup_vsync_source(mdp, cfg);
+}
+
 static void dpu_hw_get_safe_status(struct dpu_hw_mdp *mdp,
                struct dpu_danger_safe_status *status)
 {
@@ -241,7 +256,12 @@ static void _setup_mdp_ops(struct dpu_hw_mdp_ops *ops,
        ops->setup_split_pipe = dpu_hw_setup_split_pipe;
        ops->setup_clk_force_ctrl = dpu_hw_setup_clk_force_ctrl;
        ops->get_danger_status = dpu_hw_get_danger_status;
-       ops->setup_vsync_source = dpu_hw_setup_vsync_source;
+
+       if (cap & BIT(DPU_MDP_VSYNC_SEL))
+               ops->setup_vsync_source = dpu_hw_setup_vsync_source_and_vsync_sel;
+       else
+               ops->setup_vsync_source = dpu_hw_setup_vsync_source;
+
        ops->get_safe_status = dpu_hw_get_safe_status;
 
        if (cap & BIT(DPU_MDP_AUDIO_SELECT))