diff options
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 48 | 
1 files changed, 30 insertions, 18 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c index 285534bfc084..ff5361f5c2d4 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c @@ -717,27 +717,30 @@ int amdgpu_ras_feature_enable(struct amdgpu_device *adev,  	if (!con)  		return -EINVAL; -	info = kzalloc(sizeof(union ta_ras_cmd_input), GFP_KERNEL); -	if (!info) -		return -ENOMEM; +	if (head->block == AMDGPU_RAS_BLOCK__GFX) { +		info = kzalloc(sizeof(union ta_ras_cmd_input), GFP_KERNEL); +		if (!info) +			return -ENOMEM; -	if (!enable) { -		info->disable_features = (struct ta_ras_disable_features_input) { -			.block_id =  amdgpu_ras_block_to_ta(head->block), -			.error_type = amdgpu_ras_error_to_ta(head->type), -		}; -	} else { -		info->enable_features = (struct ta_ras_enable_features_input) { -			.block_id =  amdgpu_ras_block_to_ta(head->block), -			.error_type = amdgpu_ras_error_to_ta(head->type), -		}; +		if (!enable) { +			info->disable_features = (struct ta_ras_disable_features_input) { +				.block_id =  amdgpu_ras_block_to_ta(head->block), +				.error_type = amdgpu_ras_error_to_ta(head->type), +			}; +		} else { +			info->enable_features = (struct ta_ras_enable_features_input) { +				.block_id =  amdgpu_ras_block_to_ta(head->block), +				.error_type = amdgpu_ras_error_to_ta(head->type), +			}; +		}  	}  	/* Do not enable if it is not allowed. */  	WARN_ON(enable && !amdgpu_ras_is_feature_allowed(adev, head));  	/* Only enable ras feature operation handle on host side */ -	if (!amdgpu_sriov_vf(adev) && +	if (head->block == AMDGPU_RAS_BLOCK__GFX && +		!amdgpu_sriov_vf(adev) &&  		!amdgpu_ras_intr_triggered()) {  		ret = psp_ras_enable_features(&adev->psp, info, enable);  		if (ret) { @@ -753,7 +756,8 @@ int amdgpu_ras_feature_enable(struct amdgpu_device *adev,  	__amdgpu_ras_feature_enable(adev, head, enable);  	ret = 0;  out: -	kfree(info); +	if (head->block == AMDGPU_RAS_BLOCK__GFX) +		kfree(info);  	return ret;  } @@ -1938,8 +1942,16 @@ static void amdgpu_ras_do_recovery(struct work_struct *work)  		amdgpu_put_xgmi_hive(hive);  	} -	if (amdgpu_device_should_recover_gpu(ras->adev)) -		amdgpu_device_gpu_recover(ras->adev, NULL); +	if (amdgpu_device_should_recover_gpu(ras->adev)) { +		struct amdgpu_reset_context reset_context; +		memset(&reset_context, 0, sizeof(reset_context)); + +		reset_context.method = AMD_RESET_METHOD_NONE; +		reset_context.reset_req_dev = adev; +		clear_bit(AMDGPU_NEED_FULL_RESET, &reset_context.flags); + +		amdgpu_device_gpu_recover(ras->adev, NULL, &reset_context); +	}  	atomic_set(&ras->in_recovery, 0);  } @@ -2150,7 +2162,7 @@ int amdgpu_ras_recovery_init(struct amdgpu_device *adev)  	bool exc_err_limit = false;  	int ret; -	if (!con) +	if (!con || amdgpu_sriov_vf(adev))  		return 0;  	/* Allow access to RAS EEPROM via debugfs, when the ASIC  | 
