Commit da52f579 authored by Yu-Ting Shen's avatar Yu-Ting Shen Committed by Alex Deucher
Browse files

drm/amd/display: disable seamless boot for VSC_SDP



[WHY]
VBIOS will not enable VSC_SDP during pre-OS to lead
MISC1[6] wasn't matched with driver.

[HOW]
disabled seamless boot if sink supports VSC_SDP

Signed-off-by: default avatarYu-Ting Shen <Yu-ting.Shen@amd.com>
Acked-by: default avatarAurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c76b169b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1264,6 +1264,10 @@ bool dc_validate_seamless_boot_timing(const struct dc *dc,
			return false;
	}

	if (link->dpcd_caps.dprx_feature.bits.VSC_SDP_COLORIMETRY_SUPPORTED) {
		return false;
	}

	return true;
}