habanalabs: don't clear previous f/w indications
authorOhad Sharabi <osharabi@habana.ai>
Tue, 26 Oct 2021 07:42:24 +0000 (10:42 +0300)
committerOded Gabbay <ogabbay@kernel.org>
Sun, 26 Dec 2021 06:59:04 +0000 (08:59 +0200)
Once we read indication of whether f/w is doing the reset, we don't
want to clear it, until the next time we read this indication.

Otherwise, we might be in a state of wrong indication.

Signed-off-by: Ohad Sharabi <osharabi@habana.ai>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/misc/habanalabs/common/firmware_if.c

index c68ad4d7b1bbbfb1a61d393bfd18616309acea0c..9addcfba6a8bc7583dd611d307f94b3d7928759d 100644 (file)
@@ -1247,8 +1247,7 @@ static void hl_fw_preboot_update_state(struct hl_device *hdev)
         * 3. FW application - a. Fetch fw application security status
         *                     b. Check whether hard reset is done by fw app
         */
-       prop->hard_reset_done_by_fw =
-               !!(cpu_boot_dev_sts0 & CPU_BOOT_DEV_STS0_FW_HARD_RST_EN);
+       prop->hard_reset_done_by_fw = !!(cpu_boot_dev_sts0 & CPU_BOOT_DEV_STS0_FW_HARD_RST_EN);
 
        dev_dbg(hdev->dev, "Firmware preboot boot device status0 %#x\n",
                                                        cpu_boot_dev_sts0);
@@ -1915,17 +1914,13 @@ static void hl_fw_boot_fit_update_state(struct hl_device *hdev,
 
        hdev->fw_loader.fw_comp_loaded |= FW_TYPE_BOOT_CPU;
 
-       /* Clear reset status since we need to read it again from boot CPU */
-       prop->hard_reset_done_by_fw = false;
-
        /* Read boot_cpu status bits */
        if (prop->fw_preboot_cpu_boot_dev_sts0 & CPU_BOOT_DEV_STS0_ENABLED) {
                prop->fw_bootfit_cpu_boot_dev_sts0 =
                                RREG32(cpu_boot_dev_sts0_reg);
 
-               if (prop->fw_bootfit_cpu_boot_dev_sts0 &
-                               CPU_BOOT_DEV_STS0_FW_HARD_RST_EN)
-                       prop->hard_reset_done_by_fw = true;
+               prop->hard_reset_done_by_fw = !!(prop->fw_bootfit_cpu_boot_dev_sts0 &
+                                                       CPU_BOOT_DEV_STS0_FW_HARD_RST_EN);
 
                dev_dbg(hdev->dev, "Firmware boot CPU status0 %#x\n",
                                        prop->fw_bootfit_cpu_boot_dev_sts0);
@@ -2125,16 +2120,12 @@ static void hl_fw_linux_update_state(struct hl_device *hdev,
 
        hdev->fw_loader.fw_comp_loaded |= FW_TYPE_LINUX;
 
-       /* Clear reset status since we need to read again from app */
-       prop->hard_reset_done_by_fw = false;
-
        /* Read FW application security bits */
        if (prop->fw_cpu_boot_dev_sts0_valid) {
                prop->fw_app_cpu_boot_dev_sts0 = RREG32(cpu_boot_dev_sts0_reg);
 
-               if (prop->fw_app_cpu_boot_dev_sts0 &
-                               CPU_BOOT_DEV_STS0_FW_HARD_RST_EN)
-                       prop->hard_reset_done_by_fw = true;
+               prop->hard_reset_done_by_fw = !!(prop->fw_app_cpu_boot_dev_sts0 &
+                                                       CPU_BOOT_DEV_STS0_FW_HARD_RST_EN);
 
                if (prop->fw_app_cpu_boot_dev_sts0 &
                                CPU_BOOT_DEV_STS0_GIC_PRIVILEGED_EN)