diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2020-01-27 14:31:49 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-01-27 16:46:45 -0500 |
commit | 658c663947b04b1f8a2fd061a3ef767983c880e5 (patch) | |
tree | f4c07604afd43165e46bd8e8017ca773d603b727 /drivers/gpu/drm | |
parent | bb67bfd2e7101bf2ac5327b0b7a847cd9fb9723f (diff) | |
download | linux-658c663947b04b1f8a2fd061a3ef767983c880e5.tar.bz2 |
drm/amdgpu: enable GPU reset by default on Navi
Has been working fine for a while.
Reviewed-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index 990f8e64a4d5..2f15e2f6d336 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -3760,6 +3760,9 @@ bool amdgpu_device_should_recover_gpu(struct amdgpu_device *adev) case CHIP_VEGA12: case CHIP_RAVEN: case CHIP_ARCTURUS: + case CHIP_NAVI10: + case CHIP_NAVI14: + case CHIP_NAVI12: break; default: goto disabled; |