Commit bd8acfcf authored by Jesse.Zhang's avatar Jesse.Zhang Committed by Alex Deucher
Browse files

drm/amd/pm: Disable VCN queue reset on SMU v13.0.6 due to regression



Disable VCN reset capability for the program 4 as it's
causing regressions.

Fixes: 9d20f37a ("drm/amd/pm: Add VCN reset support for SMU v13.0.6")
Reviewed-by: default avatarLijo Lazar <lijo.lazar@amd.com>
Signed-off-by: default avatarJesse Zhang <jesse.zhang@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 8d557eab
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -450,8 +450,7 @@ static void smu_v13_0_6_init_caps(struct smu_context *smu)
	    ((pgm == 4) && (fw_ver >= 0x4557000)))
		smu_v13_0_6_cap_set(smu, SMU_CAP(SDMA_RESET));

	if (((pgm == 0) && (fw_ver >= 0x00558200)) ||
	    ((pgm == 4) && (fw_ver >= 0x04557100)))
	if ((pgm == 0) && (fw_ver >= 0x00558200))
		smu_v13_0_6_cap_set(smu, SMU_CAP(VCN_RESET));
}