summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorEryk Brol <eryk.brol@amd.com>2021-02-10 01:09:52 +0300
committerAlex Deucher <alexander.deucher@amd.com>2021-02-23 02:05:34 +0300
commit349a19b2f1b01e713268c7de9944ad669ccdf369 (patch)
treeaea0b0142ed411a662706ebac44f786c1f512cff /drivers
parente664609e43bc2d25f1a2b170a5d59e2a8541a0a2 (diff)
downloadlinux-349a19b2f1b01e713268c7de9944ad669ccdf369.tar.xz
drm/amd/display: Check for DSC support instead of ASIC revision
[why] This check for ASIC revision is no longer useful and causes lightup issues after a topology change in MST DSC scenario. In this case, DSC configs should be recalculated for the new topology. This check prevented that from happening on certain ASICs that do, in fact, support DSC. [how] Change the ASIC revision to instead check if DSC is supported. Signed-off-by: Eryk Brol <eryk.brol@amd.com> Acked-by: Bindu Ramamurthy <bindu.r@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index 10ef261ec1ad..a7713c2a3f31 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -9330,7 +9330,7 @@ static int amdgpu_dm_atomic_check(struct drm_device *dev,
}
#if defined(CONFIG_DRM_AMD_DC_DCN)
- if (adev->asic_type >= CHIP_NAVI10) {
+ if (dc_resource_is_dsc_encoding_supported(dc)) {
for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
if (drm_atomic_crtc_needs_modeset(new_crtc_state)) {
ret = add_affected_mst_dsc_crtcs(state, crtc);