summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig4
-rw-r--r--cmd/blob.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 2074ac5fe2..9991b2e29a 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1297,8 +1297,8 @@ config CMD_AES
config CMD_BLOB
bool "Enable the 'blob' command"
- depends on !MX6ULL && !MX6SLL && !MX6SL && !IMX8M
- select SECURE_BOOT if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP
+ depends on !MX6ULL && !MX6SLL && !MX6SL
+ select SECURE_BOOT if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M
help
This is used with the Freescale secure boot mechanism.
diff --git a/cmd/blob.c b/cmd/blob.c
index aea1d36d31..4bb6639a46 100644
--- a/cmd/blob.c
+++ b/cmd/blob.c
@@ -12,7 +12,7 @@
#include <asm/byteorder.h>
#include <linux/compiler.h>
#if defined(CONFIG_ARCH_MX6) || defined(CONFIG_ARCH_MX7) || \
- defined(CONFIG_ARCH_MX7ULP)
+ defined(CONFIG_ARCH_MX7ULP) || defined(CONFIG_ARCH_IMX8M)
#include <fsl_sec.h>
#include <asm/arch/clock.h>
#endif
@@ -83,7 +83,7 @@ static int do_blob(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
dst_ptr = (uint8_t *)(uintptr_t)dst_addr;
#if defined(CONFIG_ARCH_MX6) || defined(CONFIG_ARCH_MX7) || \
- defined(CONFIG_ARCH_MX7ULP)
+ defined(CONFIG_ARCH_MX7ULP) || defined(CONFIG_ARCH_IMX8M)
hab_caam_clock_enable(1);