diff options
author | Imre Deak <[email protected]> | 2023-10-24 04:09:12 +0300 |
---|---|---|
committer | Imre Deak <[email protected]> | 2023-11-08 17:22:15 +0200 |
commit | b40887f8c8a874acad4158adfa2182b73db1fb31 (patch) | |
tree | c2c87db6fc826dd5183a708ff375439a40100763 | |
parent | aaa80e756e1cd8eb0561d7e244a9937fc23944d2 (diff) |
drm/i915/dp_mst: Add missing DSC compression disabling
Add the missing DSC compression disabling step for MST streams,
similarly to how this is done for SST outputs.
Reviewed-by: Stanislav Lisovskiy <[email protected]>
Signed-off-by: Imre Deak <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_dp_mst.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c index afa6d428cb0c..5214cdb049b3 100644 --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c @@ -730,6 +730,8 @@ static void intel_mst_post_disable_dp(struct intel_atomic_state *state, intel_ddi_disable_transcoder_func(old_crtc_state); + intel_dsc_disable(old_crtc_state); + if (DISPLAY_VER(dev_priv) >= 9) skl_scaler_disable(old_crtc_state); else |