Commit 65ff8092 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/amdgpu: always force full reset for SOC21



There are cases where soft reset seems to succeed, but
does not, so always use mode1/2 for now.

Reviewed-by: default avatarHarish Kasiviswanathan <Harish.Kasiviswanathan@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
parent 8bdfb4ea
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -457,10 +457,8 @@ static bool soc21_need_full_reset(struct amdgpu_device *adev)
{
	switch (amdgpu_ip_version(adev, GC_HWIP, 0)) {
	case IP_VERSION(11, 0, 0):
		return amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__UMC);
	case IP_VERSION(11, 0, 2):
	case IP_VERSION(11, 0, 3):
		return false;
	default:
		return true;
	}