]> Git Repo - linux.git/commitdiff
drm/amd/display: Blank stream before destroying HDCP session
authorJaehyun Chung <[email protected]>
Thu, 30 Jul 2020 20:31:29 +0000 (16:31 -0400)
committerAlex Deucher <[email protected]>
Mon, 10 Aug 2020 22:09:31 +0000 (18:09 -0400)
[Why]
Stream disable sequence incorretly destroys HDCP session while stream is
not blanked and while audio is not muted. This sequence causes a flash
of corruption during mode change and an audio click.

[How]
Change sequence to blank stream before destroying HDCP session. Audio will
also be muted by blanking the stream.

Cc: [email protected]
Signed-off-by: Jaehyun Chung <[email protected]>
Reviewed-by: Alvin Lee <[email protected]>
Acked-by: Qingqing Zhuo <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
drivers/gpu/drm/amd/display/dc/core/dc_link.c

index 4bd6e03a7ef37d6bf8afa98e320750dde83dd6a6..117d8aaf2a9bf693336cb8aec20f6d518735782d 100644 (file)
@@ -3286,12 +3286,11 @@ void core_link_disable_stream(struct pipe_ctx *pipe_ctx)
                core_link_set_avmute(pipe_ctx, true);
        }
 
+       dc->hwss.blank_stream(pipe_ctx);
 #if defined(CONFIG_DRM_AMD_DC_HDCP)
        update_psp_stream_config(pipe_ctx, true);
 #endif
 
-       dc->hwss.blank_stream(pipe_ctx);
-
        if (pipe_ctx->stream->signal == SIGNAL_TYPE_DISPLAY_PORT_MST)
                deallocate_mst_payload(pipe_ctx);
 
This page took 0.06275 seconds and 4 git commands to generate.