accel/habanalabs: use lower QM in QM errors handling
authorTomer Tayar <ttayar@habana.ai>
Wed, 10 May 2023 10:34:28 +0000 (13:34 +0300)
committerOded Gabbay <ogabbay@kernel.org>
Thu, 8 Jun 2023 09:35:55 +0000 (12:35 +0300)
The QMAN GLBL_ERR_STS_4 register has indications for errors also in the
lower CQ and the ARC CQ, and not just for errors in the lower CP.
Modify the relevant define/struct and the related print to use "lower
QM" instead of "lower CP".

Signed-off-by: Tomer Tayar <ttayar@habana.ai>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/accel/habanalabs/gaudi2/gaudi2.c

index a6aa17d86820ea6b331bd5b8fa8e98348ae3021c..6e2561ead546d6261b36a777e2249d6f253ffd28 100644 (file)
@@ -57,7 +57,7 @@
 
 #define GAUDI2_NA_EVENT_CAUSE                  0xFF
 #define GAUDI2_NUM_OF_QM_ERR_CAUSE             18
-#define GAUDI2_NUM_OF_QM_LCP_ERR_CAUSE         25
+#define GAUDI2_NUM_OF_LOWER_QM_ERR_CAUSE       25
 #define GAUDI2_NUM_OF_QM_ARB_ERR_CAUSE         3
 #define GAUDI2_NUM_OF_ARC_SEI_ERR_CAUSE                14
 #define GAUDI2_NUM_OF_CPU_SEI_ERR_CAUSE                3
@@ -801,7 +801,7 @@ static const char * const gaudi2_qman_error_cause[GAUDI2_NUM_OF_QM_ERR_CAUSE] =
        "PQC L2H error"
 };
 
-static const char * const gaudi2_qman_lower_cp_error_cause[GAUDI2_NUM_OF_QM_LCP_ERR_CAUSE] = {
+static const char * const gaudi2_lower_qman_error_cause[GAUDI2_NUM_OF_LOWER_QM_ERR_CAUSE] = {
        "RSVD0",
        "CQ AXI HBW error",
        "CP AXI HBW error",
@@ -7895,8 +7895,8 @@ static int gaudi2_handle_qman_err_generic(struct hl_device *hdev, u16 event_type
                        continue;
 
                if (i == QMAN_STREAMS) {
-                       snprintf(reg_desc, ARRAY_SIZE(reg_desc), "LowerCP");
-                       num_error_causes = GAUDI2_NUM_OF_QM_LCP_ERR_CAUSE;
+                       snprintf(reg_desc, ARRAY_SIZE(reg_desc), "LowerQM");
+                       num_error_causes = GAUDI2_NUM_OF_LOWER_QM_ERR_CAUSE;
                } else {
                        snprintf(reg_desc, ARRAY_SIZE(reg_desc), "stream%u", i);
                        num_error_causes = GAUDI2_NUM_OF_QM_ERR_CAUSE;
@@ -7907,7 +7907,7 @@ static int gaudi2_handle_qman_err_generic(struct hl_device *hdev, u16 event_type
                                gaudi2_print_event(hdev, event_type, true,
                                        "%s. err cause: %s", reg_desc,
                                        i == QMAN_STREAMS ?
-                                       gaudi2_qman_lower_cp_error_cause[j] :
+                                       gaudi2_lower_qman_error_cause[j] :
                                        gaudi2_qman_error_cause[j]);
                                error_count++;
                        }