summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/dcn303
diff options
context:
space:
mode:
authorZhikai Zhai <zhikai.zhai@amd.com>2023-06-30 11:35:14 +0800
committerAlex Deucher <alexander.deucher@amd.com>2023-07-18 11:15:11 -0400
commitdfa7a18303917214934f9b2c3dabb7315744033b (patch)
tree1790bef4a562df5db877bc78f98c87a032b4df57 /drivers/gpu/drm/amd/display/dc/dcn303
parentb97089b88c7f8359a772cc2a31e0a87d9441243a (diff)
downloadlinux-stable-dfa7a18303917214934f9b2c3dabb7315744033b.tar.gz
linux-stable-dfa7a18303917214934f9b2c3dabb7315744033b.tar.bz2
linux-stable-dfa7a18303917214934f9b2c3dabb7315744033b.zip
drm/amd/display: Disable MPC split by default on special asic
[WHY] All of pipes will be used when the MPC split enable on the dcn which just has 2 pipes. Then MPO enter will trigger the minimal transition which need programe dcn from 2 pipes MPC split to 2 pipes MPO. This action will cause lag if happen frequently. [HOW] Disable the MPC split for the platform which dcn resource is limited Cc: Mario Limonciello <mario.limonciello@amd.com> Cc: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org Reviewed-by: Alvin Lee <alvin.lee2@amd.com> Acked-by: Alan Liu <haoping.liu@amd.com> Signed-off-by: Zhikai Zhai <zhikai.zhai@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dcn303')
-rw-r--r--drivers/gpu/drm/amd/display/dc/dcn303/dcn303_resource.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn303/dcn303_resource.c b/drivers/gpu/drm/amd/display/dc/dcn303/dcn303_resource.c
index 45956ef6f3f9..131b8b82afc0 100644
--- a/drivers/gpu/drm/amd/display/dc/dcn303/dcn303_resource.c
+++ b/drivers/gpu/drm/amd/display/dc/dcn303/dcn303_resource.c
@@ -65,7 +65,7 @@ static const struct dc_debug_options debug_defaults_drv = {
.timing_trace = false,
.clock_trace = true,
.disable_pplib_clock_request = true,
- .pipe_split_policy = MPC_SPLIT_DYNAMIC,
+ .pipe_split_policy = MPC_SPLIT_AVOID,
.force_single_disp_pipe_split = false,
.disable_dcc = DCC_ENABLE,
.vsr_support = true,