diff options
author | 2024-02-07 14:48:29 +0800 | |
---|---|---|
committer | 2024-03-07 15:33:25 -0500 | |
commit | 7c5fde53b1a146d77aed3f1a50a68a2904a32b00 (patch) | |
tree | a357436d9a8e58a9ed85e634c092f903944e54af | |
parent | drm/amdgpu: add smu 14.0.1 support (diff) | |
download | wireguard-linux-7c5fde53b1a146d77aed3f1a50a68a2904a32b00.tar.xz wireguard-linux-7c5fde53b1a146d77aed3f1a50a68a2904a32b00.zip |
drm/amdgpu/soc21: add mode2 asic reset for SMU IP v14.0.1
Set the default reset method to mode2 for SMU IP v14.0.1
Signed-off-by: lima1002 <li.ma@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/soc21.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/soc21.c b/drivers/gpu/drm/amd/amdgpu/soc21.c index b92fd6760fa9..581a3bd11481 100644 --- a/drivers/gpu/drm/amd/amdgpu/soc21.c +++ b/drivers/gpu/drm/amd/amdgpu/soc21.c @@ -388,6 +388,7 @@ soc21_asic_reset_method(struct amdgpu_device *adev) case IP_VERSION(13, 0, 4): case IP_VERSION(13, 0, 11): case IP_VERSION(14, 0, 0): + case IP_VERSION(14, 0, 1): return AMD_RESET_METHOD_MODE2; default: if (amdgpu_dpm_is_baco_supported(adev)) |