From 5c4635d434365a39d7a6f9993b0ce1eee7da1fa7 Mon Sep 17 00:00:00 2001 From: Yashwanth Date: Fri, 1 May 2020 13:11:15 +0530 Subject: [PATCH] disp: msm: sde: update ctl v1 topology table This change updates split display flag for ctl v1 topology table since it is not required for CTL_ACTIVE targets. Change-Id: Ic669cb6f2c1ca60b2299ebb59a8132a5177ad133 Signed-off-by: Yashwanth Signed-off-by: Steve Cohen --- msm/sde/sde_rm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/msm/sde/sde_rm.c b/msm/sde/sde_rm.c index d796f9af88..9a4d31a50f 100644 --- a/msm/sde/sde_rm.c +++ b/msm/sde/sde_rm.c @@ -75,9 +75,9 @@ static const struct sde_rm_topology_def g_top_table_v1[SDE_RM_TOPOLOGY_MAX] = { MSM_DISPLAY_COMPRESSION_DSC }, { SDE_RM_TOPOLOGY_SINGLEPIPE_VDC, 1, 1, 1, 1, false, MSM_DISPLAY_COMPRESSION_VDC }, - { SDE_RM_TOPOLOGY_DUALPIPE, 2, 0, 2, 1, true, + { SDE_RM_TOPOLOGY_DUALPIPE, 2, 0, 2, 1, false, MSM_DISPLAY_COMPRESSION_NONE }, - { SDE_RM_TOPOLOGY_DUALPIPE_DSC, 2, 2, 2, 1, true, + { SDE_RM_TOPOLOGY_DUALPIPE_DSC, 2, 2, 2, 1, false, MSM_DISPLAY_COMPRESSION_DSC }, { SDE_RM_TOPOLOGY_DUALPIPE_3DMERGE, 2, 0, 1, 1, false, MSM_DISPLAY_COMPRESSION_NONE }, @@ -87,7 +87,7 @@ static const struct sde_rm_topology_def g_top_table_v1[SDE_RM_TOPOLOGY_MAX] = { MSM_DISPLAY_COMPRESSION_VDC }, { SDE_RM_TOPOLOGY_DUALPIPE_DSCMERGE, 2, 2, 1, 1, false, MSM_DISPLAY_COMPRESSION_DSC }, - { SDE_RM_TOPOLOGY_PPSPLIT, 1, 0, 2, 1, true, + { SDE_RM_TOPOLOGY_PPSPLIT, 1, 0, 2, 1, false, MSM_DISPLAY_COMPRESSION_NONE }, { SDE_RM_TOPOLOGY_QUADPIPE_3DMERGE, 4, 0, 2, 1, false, MSM_DISPLAY_COMPRESSION_NONE },