Commit 94254fa0 authored by Roman Li's avatar Roman Li Committed by Alex Deucher
Browse files

drm/amd/display: fix psr panel lightup



[Why]
The change for correct asic type check
caused a psr regression due to incorrect
chip family id for Raven.

[How]
Use correct family id.

Signed-off-by: default avatarRoman Li <roman.li@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 4b39264f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2740,7 +2740,7 @@ bool dc_link_setup_psr(struct dc_link *link,

#if defined(CONFIG_DRM_AMD_DC_DCN)
	/*skip power down the single pipe since it blocks the cstate*/
	if ((link->ctx->asic_id.chip_family == FAMILY_AI) &&
	if ((link->ctx->asic_id.chip_family == FAMILY_RV) &&
	     ASICREV_IS_RAVEN(link->ctx->asic_id.hw_internal_rev))
		psr_context->psr_level.bits.SKIP_CRTC_DISABLE = true;
#endif