Commit d0dcd4bb authored by Ofir Bitton's avatar Ofir Bitton Committed by Oded Gabbay
Browse files

accel/habanalabs: always fetch pci addr_dec error info



Due to missing indication of address decode source (LBW/HBW bus),
we should always try and fetch extended information.

Signed-off-by: default avatarOfir Bitton <obitton@habana.ai>
Reviewed-by: default avatarOded Gabbay <ogabbay@kernel.org>
Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent 7d212963
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -8892,14 +8892,12 @@ static int gaudi2_print_pcie_addr_dec_info(struct hl_device *hdev, u16 event_typ
			"err cause: %s", gaudi2_pcie_addr_dec_error_cause[i]);
		error_count++;

		switch (intr_cause_data & BIT_ULL(i)) {
		case PCIE_WRAP_PCIE_IC_SEI_INTR_IND_AXI_LBW_ERR_INTR_MASK:
		/*
		 * Always check for LBW and HBW additional info as the indication itself is
		 * sometimes missing
		 */
		hl_check_for_glbl_errors(hdev);
			break;
		case PCIE_WRAP_PCIE_IC_SEI_INTR_IND_BAD_ACCESS_INTR_MASK:
		gaudi2_print_pcie_mstr_rr_mstr_if_razwi_info(hdev, event_mask);
			break;
		}
	}

	return error_count;