summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorOfir Bitton <obitton@habana.ai>2022-06-22 15:10:08 +0300
committerOded Gabbay <ogabbay@kernel.org>2022-07-12 09:09:24 +0300
commit856fe7b0aa510d2342b01405e7d21c95c7a906fc (patch)
tree9513fac77257ce1313498701f30f99c647ae2548 /drivers
parent17ab47d2d6d4b79734e3f2092b316fa5792eff97 (diff)
downloadlinux-856fe7b0aa510d2342b01405e7d21c95c7a906fc.tar.bz2
habanalabs: print if firmware is secured during load
For easier debug, it is desirable to have a simple way to know whether the device is secured or not, hence we dump this indication during boot. Signed-off-by: Ofir Bitton <obitton@habana.ai> Reviewed-by: Oded Gabbay <ogabbay@kernel.org> Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/misc/habanalabs/common/firmware_if.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/habanalabs/common/firmware_if.c b/drivers/misc/habanalabs/common/firmware_if.c
index bd66e4f84156..42dfbfff92fd 100644
--- a/drivers/misc/habanalabs/common/firmware_if.c
+++ b/drivers/misc/habanalabs/common/firmware_if.c
@@ -2425,7 +2425,8 @@ static int hl_fw_dynamic_init_cpu(struct hl_device *hdev,
int rc;
dev_info(hdev->dev,
- "Loading firmware to device, may take some time...\n");
+ "Loading %sfirmware to device, may take some time...\n",
+ hdev->asic_prop.fw_security_enabled ? "secured " : "");
/* initialize FW descriptor as invalid */
fw_loader->dynamic_loader.fw_desc_valid = false;