diff mbox series

[25/37] imx7ulp: Enable support for cmd blob

Message ID 20210325093036.3270101-26-peng.fan@oss.nxp.com
State Accepted
Commit 88e7f5be3871a9002d4fa0fe7c9aabaab7edb0dc
Delegated to: Stefano Babic
Headers show
Series imx: hab/caam new feature and update | expand

Commit Message

Peng Fan (OSS) March 25, 2021, 9:30 a.m. UTC
From: Franck LENORMAND <franck.lenormand@nxp.com>

Signed-off-by: Franck LENORMAND <franck.lenormand@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
---
 cmd/Kconfig | 4 ++--
 cmd/blob.c  | 6 ++++--
 2 files changed, 6 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/cmd/Kconfig b/cmd/Kconfig
index 1da4539baf..00bcc7826b 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1959,8 +1959,8 @@  config CMD_AES
 
 config CMD_BLOB
 	bool "Enable the 'blob' command"
-	depends on !MX6ULL && !MX6SLL && !MX6SL && !IMX8M && !MX7ULP
-	select IMX_HAB if ARCH_MX6 || ARCH_MX7
+	depends on !MX6ULL && !MX6SLL && !MX6SL && !IMX8M
+	select IMX_HAB if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP
 	help
 	  This is used with the Freescale secure boot mechanism.
 
diff --git a/cmd/blob.c b/cmd/blob.c
index 359c8940fb..4e244cd126 100644
--- a/cmd/blob.c
+++ b/cmd/blob.c
@@ -9,7 +9,8 @@ 
 #include <malloc.h>
 #include <asm/byteorder.h>
 #include <linux/compiler.h>
-#if defined(CONFIG_ARCH_MX6) || defined(CONFIG_ARCH_MX7)
+#if defined(CONFIG_ARCH_MX6) || defined(CONFIG_ARCH_MX7) || \
+	defined(CONFIG_ARCH_MX7ULP)
 #include <fsl_sec.h>
 #include <asm/arch/clock.h>
 #endif
@@ -78,7 +79,8 @@  static int do_blob(struct cmd_tbl *cmdtp, int flag, int argc,
 	src_ptr = (uint8_t *)(uintptr_t)src_addr;
 	dst_ptr = (uint8_t *)(uintptr_t)dst_addr;
 
-#if defined(CONFIG_ARCH_MX6) || defined(CONFIG_ARCH_MX7)
+#if defined(CONFIG_ARCH_MX6) || defined(CONFIG_ARCH_MX7) || \
+	defined(CONFIG_ARCH_MX7ULP)
 
 	hab_caam_clock_enable(1);