To support high-resolution cases that exceed the width limitation of
a pair of SSPPs, or scenarios that surpass the maximum MDP clock rate,
additional pipes are necessary to enable parallel data processing
within the SSPP width constraints and MDP clock rate.

Request 4 mixers and 4 DSCs for high-resolution cases where both DSC
and dual interfaces are enabled. More use cases can be incorporated
later if quad-pipe capabilities are required.

Signed-off-by: Jun Nie <jun....@linaro.org>
---
 drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c         |  2 +-
 drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h         |  6 ++---
 drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c      | 28 ++++++++++++++++++------
 drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys.h |  2 +-
 drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h   |  2 +-
 drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h      |  2 +-
 6 files changed, 28 insertions(+), 14 deletions(-)

diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c 
b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
index 
852c2ea632f1bb52b3d83ccd45c8afd2e5f8e988..6b306755fceb3973d2063b7983622543b71a723c
 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
@@ -200,7 +200,7 @@ static int dpu_crtc_get_lm_crc(struct drm_crtc *crtc,
                struct dpu_crtc_state *crtc_state)
 {
        struct dpu_crtc_mixer *m;
-       u32 crcs[CRTC_DUAL_MIXERS];
+       u32 crcs[CRTC_QUAD_MIXERS];
 
        int rc = 0;
        int i;
diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h 
b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h
index 
b14bab2754635953da402d09e11a43b9b4cf4153..38820d05edb8b3003971dc6dc675ba8ede847be8
 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h
@@ -210,7 +210,7 @@ struct dpu_crtc_state {
 
        bool bw_control;
        bool bw_split_vote;
-       struct drm_rect lm_bounds[CRTC_DUAL_MIXERS];
+       struct drm_rect lm_bounds[CRTC_QUAD_MIXERS];
 
        uint64_t input_fence_timeout_ns;
 
@@ -218,10 +218,10 @@ struct dpu_crtc_state {
 
        /* HW Resources reserved for the crtc */
        u32 num_mixers;
-       struct dpu_crtc_mixer mixers[CRTC_DUAL_MIXERS];
+       struct dpu_crtc_mixer mixers[CRTC_QUAD_MIXERS];
 
        u32 num_ctls;
-       struct dpu_hw_ctl *hw_ctls[CRTC_DUAL_MIXERS];
+       struct dpu_hw_ctl *hw_ctls[CRTC_QUAD_MIXERS];
 
        enum dpu_crtc_crc_source crc_source;
        int crc_frame_skip_count;
diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c 
b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
index 
c89a5da0fa8321e9082d5aee304fa16402bb4ad9..d4719b45f4cdd5d1f0bd585283c0c16f1df2f1f2
 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
@@ -54,7 +54,7 @@
 #define MAX_PHYS_ENCODERS_PER_VIRTUAL \
        (MAX_H_TILES_PER_DISPLAY * NUM_PHYS_ENCODER_TYPES)
 
-#define MAX_CHANNELS_PER_ENC 2
+#define MAX_CHANNELS_PER_ENC 4
 
 #define IDLE_SHORT_TIMEOUT     1
 
@@ -664,9 +664,13 @@ static struct msm_display_topology 
dpu_encoder_get_topology(
 
        /* Datapath topology selection
         *
-        * Dual display
+        * Dual display without DSC
         * 2 LM, 2 INTF ( Split display using 2 interfaces)
         *
+        * Dual display with DSC
+        * 2 LM, 2 INTF ( Split display using 2 interfaces)
+        * 4 LM, 2 INTF ( Split display using 2 interfaces)
+        *
         * Single display
         * 1 LM, 1 INTF
         * 2 LM, 1 INTF (stream merge to support high resolution interfaces)
@@ -691,10 +695,20 @@ static struct msm_display_topology 
dpu_encoder_get_topology(
                 * 2 DSC encoders, 2 layer mixers and 1 interface
                 * this is power optimal and can drive up to (including) 4k
                 * screens
+                * But for dual display case, we prefer 4 layer mixers. Because
+                * the resolution is always high in the case and 4 DSCs are more
+                * power optimal.
                 */
-               topology.num_dsc = 2;
-               topology.num_lm = 2;
-               topology.num_intf = 1;
+
+               if (intf_count == 2 && dpu_kms->catalog->dsc_count >= 4) {
+                       topology.num_dsc = 4;
+                       topology.num_lm = 4;
+                       topology.num_intf = 2;
+               } else {
+                       topology.num_dsc = 2;
+                       topology.num_lm = 2;
+                       topology.num_intf = 1;
+               }
        }
 
        return topology;
@@ -2189,8 +2203,8 @@ static void dpu_encoder_helper_reset_mixers(struct 
dpu_encoder_phys *phys_enc)
        struct dpu_hw_mixer_cfg mixer;
        int i, num_lm;
        struct dpu_global_state *global_state;
-       struct dpu_hw_blk *hw_lm[2];
-       struct dpu_hw_mixer *hw_mixer[2];
+       struct dpu_hw_blk *hw_lm[MAX_CHANNELS_PER_ENC];
+       struct dpu_hw_mixer *hw_mixer[MAX_CHANNELS_PER_ENC];
        struct dpu_hw_ctl *ctl = phys_enc->hw_ctl;
 
        memset(&mixer, 0, sizeof(mixer));
diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys.h 
b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys.h
index 
63f09857025c2004dcb56bd33e9c51f8e0f80e48..a9e122243dce9006aaa582a1537980c86b6203a4
 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys.h
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys.h
@@ -302,7 +302,7 @@ static inline enum dpu_3d_blend_mode 
dpu_encoder_helper_get_3d_blend_mode(
 
        /* Use merge_3d unless DSC MERGE topology is used */
        if (phys_enc->split_role == ENC_ROLE_SOLO &&
-           dpu_cstate->num_mixers == CRTC_DUAL_MIXERS &&
+           (dpu_cstate->num_mixers != 1) &&
            !dpu_encoder_use_dsc_merge(phys_enc->parent))
                return BLEND_3D_H_ROW_INT;
 
diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h 
b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h
index 
4cea19e1a20380c56ae014f2d33a6884a72e0ca0..77a7a5375d545483edb316e8428df12212191362
 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h
@@ -24,7 +24,7 @@
 #define DPU_MAX_IMG_WIDTH 0x3fff
 #define DPU_MAX_IMG_HEIGHT 0x3fff
 
-#define CRTC_DUAL_MIXERS       2
+#define CRTC_QUAD_MIXERS       4
 
 #define MAX_XIN_COUNT 16
 
diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h 
b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h
index 
64e220987be5682f26d02074505c5474a547a814..804858e69e7da1c8c67c725aa462c1a558d1b402
 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h
@@ -35,8 +35,8 @@
 #endif
 
 #define STAGES_PER_PLANE               2
-#define PIPES_PER_PLANE                        2
 #define PIPES_PER_STAGE                        2
+#define PIPES_PER_PLANE                        (PIPES_PER_STAGE * 
STAGES_PER_PLANE)
 #ifndef DPU_MAX_DE_CURVES
 #define DPU_MAX_DE_CURVES              3
 #endif

-- 
2.34.1

Reply via email to