Noc logger doesn't work when handling SMMU fault in driver. Change-Id: I4ac6bca6e015b7f5424be4cb9e6d535877baa410 Signed-off-by: George Shen <[email protected]>
@@ -1338,15 +1338,13 @@ int msm_cvp_noc_error_info(struct msm_cvp_core *core)
return -EINVAL;
}
- if (!core->resources.non_fatal_pagefaults)
- return 0;
-
if (!core->smmu_fault_handled)
return 0;
hdev = core->device;
call_hfi_op(hdev, noc_error_info, hdev->hfi_device_data);
+ BUG_ON(!core->resources.non_fatal_pagefaults);
@@ -56,7 +56,7 @@ static struct msm_cvp_common_data sm8450_common_data[] = {
},
{
.key = "qcom,domain-attr-non-fatal-faults",
- .value = 1,
+ .value = 0,
.key = "qcom,max-secure-instances",
@@ -976,7 +976,6 @@ int msm_cvp_smmu_fault_handler(struct iommu_domain *domain,
msm_cvp_print_inst_bufs(inst);
core->smmu_fault_handled = true;
- msm_cvp_noc_error_info(core);
mutex_unlock(&core->lock);
/*
* Return -EINVAL to elicit the default behaviour of smmu driver.