Commit f2703a35 authored by Martin Leung's avatar Martin Leung Committed by Alex Deucher

drm/amd/display: revert Exit idle optimizations before HDCP execution

why and how:
causes black screen on PNP on DCN 3.5

This reverts commit f30a3bea ("drm/amd/display: Exit idle
optimizations before HDCP execution")

Cc: Mario Limonciello <mario.limonciello@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: default avatarNicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Acked-by: default avatarWayne Lin <wayne.lin@amd.com>
Signed-off-by: default avatarMartin Leung <martin.leung@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent f30a3bea
...@@ -88,14 +88,6 @@ static uint8_t is_cp_desired_hdcp2(struct mod_hdcp *hdcp) ...@@ -88,14 +88,6 @@ static uint8_t is_cp_desired_hdcp2(struct mod_hdcp *hdcp)
!hdcp->connection.is_hdcp2_revoked; !hdcp->connection.is_hdcp2_revoked;
} }
static void exit_idle_optimizations(struct mod_hdcp *hdcp)
{
struct mod_hdcp_dm *dm = &hdcp->config.dm;
if (dm->funcs.exit_idle_optimizations)
dm->funcs.exit_idle_optimizations(dm->handle);
}
static enum mod_hdcp_status execution(struct mod_hdcp *hdcp, static enum mod_hdcp_status execution(struct mod_hdcp *hdcp,
struct mod_hdcp_event_context *event_ctx, struct mod_hdcp_event_context *event_ctx,
union mod_hdcp_transition_input *input) union mod_hdcp_transition_input *input)
...@@ -551,8 +543,6 @@ enum mod_hdcp_status mod_hdcp_process_event(struct mod_hdcp *hdcp, ...@@ -551,8 +543,6 @@ enum mod_hdcp_status mod_hdcp_process_event(struct mod_hdcp *hdcp,
memset(&event_ctx, 0, sizeof(struct mod_hdcp_event_context)); memset(&event_ctx, 0, sizeof(struct mod_hdcp_event_context));
event_ctx.event = event; event_ctx.event = event;
exit_idle_optimizations(hdcp);
/* execute and transition */ /* execute and transition */
exec_status = execution(hdcp, &event_ctx, &hdcp->auth.trans_input); exec_status = execution(hdcp, &event_ctx, &hdcp->auth.trans_input);
trans_status = transition( trans_status = transition(
......
...@@ -156,13 +156,6 @@ struct mod_hdcp_ddc { ...@@ -156,13 +156,6 @@ struct mod_hdcp_ddc {
} funcs; } funcs;
}; };
struct mod_hdcp_dm {
void *handle;
struct {
void (*exit_idle_optimizations)(void *handle);
} funcs;
};
struct mod_hdcp_psp { struct mod_hdcp_psp {
void *handle; void *handle;
void *funcs; void *funcs;
...@@ -279,7 +272,6 @@ struct mod_hdcp_display_query { ...@@ -279,7 +272,6 @@ struct mod_hdcp_display_query {
struct mod_hdcp_config { struct mod_hdcp_config {
struct mod_hdcp_psp psp; struct mod_hdcp_psp psp;
struct mod_hdcp_ddc ddc; struct mod_hdcp_ddc ddc;
struct mod_hdcp_dm dm;
uint8_t index; uint8_t index;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment