]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
imx7ulp: Enable support for cmd blob
authorFranck LENORMAND <franck.lenormand@nxp.com>
Thu, 25 Mar 2021 09:30:24 +0000 (17:30 +0800)
committerStefano Babic <sbabic@denx.de>
Thu, 8 Apr 2021 07:18:29 +0000 (09:18 +0200)
Signed-off-by: Franck LENORMAND <franck.lenormand@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
cmd/Kconfig
cmd/blob.c

index e485dd8bea2971c946ab8e10d2dd6014f39b7dd0..10393eea449c461dc82bda2fcda3f160fc519868 100644 (file)
@@ -1960,8 +1960,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.
 
index 359c8940fb9aa4182244ab1aca151b7c3b6c0651..4e244cd126eec775e1167b486437bd9123656efd 100644 (file)
@@ -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);