diff options
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c index c6dc3cd2a9de..4069bce9479f 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c @@ -34,6 +34,7 @@  #include "amdgpu_atomfirmware.h"  #include "amdgpu_xgmi.h"  #include "ivsrcid/nbio/irqsrcs_nbif_7_4.h" +#include "nbio_v4_3.h"  #include "atom.h"  #include "amdgpu_reset.h" @@ -2562,6 +2563,16 @@ int amdgpu_ras_init(struct amdgpu_device *adev)  		if (!adev->gmc.xgmi.connected_to_cpu)  			adev->nbio.ras = &nbio_v7_4_ras;  		break; +	case IP_VERSION(4, 3, 0): +		if (adev->ras_hw_enabled & (1 << AMDGPU_RAS_BLOCK__DF)) +			/* unlike other generation of nbio ras, +			 * nbio v4_3 only support fatal error interrupt +			 * to inform software that DF is freezed due to +			 * system fatal error event. driver should not +			 * enable nbio ras in such case. Instead, +			 * check DF RAS */ +			adev->nbio.ras = &nbio_v4_3_ras; +		break;  	default:  		/* nbio ras is not available */  		break; | 
