Skip to content

Commit da9168d

Browse files
Abel Vesalumag
authored andcommitted
Revert "drm/msm/dpu: Enable quad-pipe for DSC and dual-DSI case"
This reverts commit d7ec936. The dual-DSI dual-DSC scenario seems to be broken by this commit. Reported-by: Marijn Suijten <marijn.suijten@somainline.org> Closes: https://lore.kernel.org/r/aUR2b3FOSisTfDFj@SoMainline.org Signed-off-by: Abel Vesa <abel.vesa@oss.qualcomm.com> Fixes: d7ec936 ("drm/msm/dpu: Enable quad-pipe for DSC and dual-DSI case") Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Patchwork: https://patchwork.freedesktop.org/patch/695550/ Link: https://lore.kernel.org/r/20251219-drm-msm-dpu-revert-quad-pipe-broken-v1-2-654b46505f84@oss.qualcomm.com Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
1 parent 35ab512 commit da9168d

6 files changed

Lines changed: 33 additions & 35 deletions

File tree

drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ static int dpu_crtc_get_lm_crc(struct drm_crtc *crtc,
200200
struct dpu_crtc_state *crtc_state)
201201
{
202202
struct dpu_crtc_mixer *m;
203-
u32 crcs[CRTC_QUAD_MIXERS];
203+
u32 crcs[CRTC_DUAL_MIXERS];
204204

205205
int rc = 0;
206206
int i;
@@ -1328,7 +1328,6 @@ static struct msm_display_topology dpu_crtc_get_topology(
13281328
struct drm_display_mode *mode = &crtc_state->adjusted_mode;
13291329
struct msm_display_topology topology = {0};
13301330
struct drm_encoder *drm_enc;
1331-
u32 num_rt_intf;
13321331

13331332
drm_for_each_encoder_mask(drm_enc, crtc->dev, crtc_state->encoder_mask)
13341333
dpu_encoder_update_topology(drm_enc, &topology, crtc_state->state,
@@ -1342,14 +1341,11 @@ static struct msm_display_topology dpu_crtc_get_topology(
13421341
* Dual display
13431342
* 2 LM, 2 INTF ( Split display using 2 interfaces)
13441343
*
1345-
* If DSC is enabled, try to use 4:4:2 topology if there is enough
1346-
* resource. Otherwise, use 2:2:2 topology.
1347-
*
13481344
* Single display
13491345
* 1 LM, 1 INTF
13501346
* 2 LM, 1 INTF (stream merge to support high resolution interfaces)
13511347
*
1352-
* If DSC is enabled, use 2:2:1 topology
1348+
* If DSC is enabled, use 2 LMs for 2:2:1 topology
13531349
*
13541350
* Add dspps to the reservation requirements if ctm is requested
13551351
*
@@ -1361,23 +1357,14 @@ static struct msm_display_topology dpu_crtc_get_topology(
13611357
* (mode->hdisplay > MAX_HDISPLAY_SPLIT) check.
13621358
*/
13631359

1364-
num_rt_intf = topology.num_intf;
1365-
if (topology.cwb_enabled)
1366-
num_rt_intf--;
1367-
1368-
if (topology.num_dsc) {
1369-
if (dpu_kms->catalog->dsc_count >= num_rt_intf * 2)
1370-
topology.num_dsc = num_rt_intf * 2;
1371-
else
1372-
topology.num_dsc = num_rt_intf;
1373-
topology.num_lm = topology.num_dsc;
1374-
} else if (num_rt_intf == 2) {
1360+
if (topology.num_intf == 2 && !topology.cwb_enabled)
1361+
topology.num_lm = 2;
1362+
else if (topology.num_dsc == 2)
13751363
topology.num_lm = 2;
1376-
} else if (dpu_kms->catalog->caps->has_3d_merge) {
1364+
else if (dpu_kms->catalog->caps->has_3d_merge)
13771365
topology.num_lm = (mode->hdisplay > MAX_HDISPLAY_SPLIT) ? 2 : 1;
1378-
} else {
1366+
else
13791367
topology.num_lm = 1;
1380-
}
13811368

13821369
if (crtc_state->ctm)
13831370
topology.num_dspp = topology.num_lm;

drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,18 +210,18 @@ struct dpu_crtc_state {
210210

211211
bool bw_control;
212212
bool bw_split_vote;
213-
struct drm_rect lm_bounds[CRTC_QUAD_MIXERS];
213+
struct drm_rect lm_bounds[CRTC_DUAL_MIXERS];
214214

215215
uint64_t input_fence_timeout_ns;
216216

217217
struct dpu_core_perf_params new_perf;
218218

219219
/* HW Resources reserved for the crtc */
220220
u32 num_mixers;
221-
struct dpu_crtc_mixer mixers[CRTC_QUAD_MIXERS];
221+
struct dpu_crtc_mixer mixers[CRTC_DUAL_MIXERS];
222222

223223
u32 num_ctls;
224-
struct dpu_hw_ctl *hw_ctls[CRTC_QUAD_MIXERS];
224+
struct dpu_hw_ctl *hw_ctls[CRTC_DUAL_MIXERS];
225225

226226
enum dpu_crtc_crc_source crc_source;
227227
int crc_frame_skip_count;

drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
#define MAX_PHYS_ENCODERS_PER_VIRTUAL \
5656
(MAX_H_TILES_PER_DISPLAY * NUM_PHYS_ENCODER_TYPES)
5757

58-
#define MAX_CHANNELS_PER_ENC 4
58+
#define MAX_CHANNELS_PER_ENC 2
5959
#define MAX_CWB_PER_ENC 2
6060

6161
#define IDLE_SHORT_TIMEOUT 1
@@ -661,6 +661,7 @@ void dpu_encoder_update_topology(struct drm_encoder *drm_enc,
661661
struct dpu_encoder_virt *dpu_enc = to_dpu_encoder_virt(drm_enc);
662662
struct msm_drm_private *priv = dpu_enc->base.dev->dev_private;
663663
struct msm_display_info *disp_info = &dpu_enc->disp_info;
664+
struct dpu_kms *dpu_kms = to_dpu_kms(priv->kms);
664665
struct drm_connector *connector;
665666
struct drm_connector_state *conn_state;
666667
struct drm_framebuffer *fb;
@@ -674,12 +675,22 @@ void dpu_encoder_update_topology(struct drm_encoder *drm_enc,
674675

675676
dsc = dpu_encoder_get_dsc_config(drm_enc);
676677

677-
/*
678-
* Set DSC number as 1 to mark the enabled status, will be adjusted
679-
* in dpu_crtc_get_topology()
680-
*/
681-
if (dsc)
682-
topology->num_dsc = 1;
678+
/* We only support 2 DSC mode (with 2 LM and 1 INTF) */
679+
if (dsc) {
680+
/*
681+
* Use 2 DSC encoders, 2 layer mixers and 1 or 2 interfaces
682+
* when Display Stream Compression (DSC) is enabled,
683+
* and when enough DSC blocks are available.
684+
* This is power-optimal and can drive up to (including) 4k
685+
* screens.
686+
*/
687+
WARN(topology->num_intf > 2,
688+
"DSC topology cannot support more than 2 interfaces\n");
689+
if (topology->num_intf >= 2 || dpu_kms->catalog->dsc_count >= 2)
690+
topology->num_dsc = 2;
691+
else
692+
topology->num_dsc = 1;
693+
}
683694

684695
connector = drm_atomic_get_new_connector_for_encoder(state, drm_enc);
685696
if (!connector)
@@ -2169,8 +2180,8 @@ static void dpu_encoder_helper_reset_mixers(struct dpu_encoder_phys *phys_enc)
21692180
{
21702181
int i, num_lm;
21712182
struct dpu_global_state *global_state;
2172-
struct dpu_hw_blk *hw_lm[MAX_CHANNELS_PER_ENC];
2173-
struct dpu_hw_mixer *hw_mixer[MAX_CHANNELS_PER_ENC];
2183+
struct dpu_hw_blk *hw_lm[2];
2184+
struct dpu_hw_mixer *hw_mixer[2];
21742185
struct dpu_hw_ctl *ctl = phys_enc->hw_ctl;
21752186

21762187
/* reset all mixers for this encoder */

drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ static inline enum dpu_3d_blend_mode dpu_encoder_helper_get_3d_blend_mode(
302302

303303
/* Use merge_3d unless DSC MERGE topology is used */
304304
if (phys_enc->split_role == ENC_ROLE_SOLO &&
305-
(dpu_cstate->num_mixers != 1) &&
305+
dpu_cstate->num_mixers == CRTC_DUAL_MIXERS &&
306306
!dpu_encoder_use_dsc_merge(phys_enc->parent))
307307
return BLEND_3D_H_ROW_INT;
308308

drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#define DPU_MAX_IMG_WIDTH 0x3fff
2525
#define DPU_MAX_IMG_HEIGHT 0x3fff
2626

27-
#define CRTC_QUAD_MIXERS 4
27+
#define CRTC_DUAL_MIXERS 2
2828

2929
#define MAX_XIN_COUNT 16
3030

drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#define DPU_MAX_PLANES 4
3535
#endif
3636

37-
#define STAGES_PER_PLANE 2
37+
#define STAGES_PER_PLANE 1
3838
#define PIPES_PER_STAGE 2
3939
#define PIPES_PER_PLANE (PIPES_PER_STAGE * STAGES_PER_PLANE)
4040
#ifndef DPU_MAX_DE_CURVES

0 commit comments

Comments
 (0)