mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-07 20:43:01 +02:00
25 lines
791 B
Diff
25 lines
791 B
Diff
From 658c663947b04b1f8a2fd061a3ef767983c880e5 Mon Sep 17 00:00:00 2001
|
|
From: Alex Deucher <alexander.deucher@amd.com>
|
|
Date: Mon, 27 Jan 2020 14:31:49 -0500
|
|
Subject: [PATCH] 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>
|
|
---
|
|
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
|
|
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
|
|
@@ -3556,6 +3556,9 @@ bool amdgpu_device_should_recover_gpu(st
|
|
case CHIP_VEGA10:
|
|
case CHIP_VEGA12:
|
|
case CHIP_RAVEN:
|
|
+ case CHIP_NAVI10:
|
|
+ case CHIP_NAVI14:
|
|
+ case CHIP_NAVI12:
|
|
break;
|
|
default:
|
|
goto disabled;
|