aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOfir Bitton <obitton@habana.ai>2022-02-23 13:03:56 +0200
committerOded Gabbay <ogabbay@kernel.org>2022-02-28 14:34:50 +0200
commit655221c56739058ae73a7aabd90847a024dabff6 (patch)
tree9b7366d37aea350db7742427a5608bee444838fd
parentb0106bc6fe5a99490f2a2407025db6f2b514b6dc (diff)
downloadiio-655221c56739058ae73a7aabd90847a024dabff6.tar.gz
habanalabs: remove deprecated firmware states
During driver and F/W handshake, driver waits for F/W to reach certain states in order to progress with the boot flow. Some of the states were deprecated a long time ago and were never present on official firmwares. Therefore, let's remove them from the handshake process. Signed-off-by: Ofir Bitton <obitton@habana.ai> Reviewed-by: Oded Gabbay <ogabbay@kernel.org> Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
-rw-r--r--drivers/misc/habanalabs/common/firmware_if.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/misc/habanalabs/common/firmware_if.c b/drivers/misc/habanalabs/common/firmware_if.c
index 11957d36c6a98e..3262126cc7ca56 100644
--- a/drivers/misc/habanalabs/common/firmware_if.c
+++ b/drivers/misc/habanalabs/common/firmware_if.c
@@ -1207,8 +1207,6 @@ static int hl_fw_read_preboot_caps(struct hl_device *hdev,
hdev,
cpu_boot_status_reg,
status,
- (status == CPU_BOOT_STATUS_IN_UBOOT) ||
- (status == CPU_BOOT_STATUS_DRAM_RDY) ||
(status == CPU_BOOT_STATUS_NIC_FW_RDY) ||
(status == CPU_BOOT_STATUS_READY_TO_BOOT) ||
(status == CPU_BOOT_STATUS_WAITING_FOR_BOOT_FIT),