diff options
| author | Fabio Estevam <[email protected]> | 2022-06-09 17:13:31 -0300 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2022-06-28 15:24:31 +0200 |
| commit | b5023254b88a67fcbca913e212e3401dea521fc9 (patch) | |
| tree | c6cf81c6dd0371ad54fa32deb2685a4f2356ae30 /arch | |
| parent | 66af2c3e95bec055c29f139ad200e4bb4f9756f7 (diff) | |
kontron-sl-mx8mm: Add CAAM support
Add CAAM support, which is required when enabling HAB secure boot.
Select CONFIG_SPL_DRIVERS_MISC so that CONFIG_IMX_HAB could
build successfully, if selected.
Signed-off-by: Fabio Estevam <[email protected]>
Acked-by: Frieder Schrempf <[email protected]>
Tested-by: Frieder Schrempf <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/dts/imx8mm-kontron-n801x-u-boot.dtsi | 17 | ||||
| -rw-r--r-- | arch/arm/mach-imx/imx8m/Kconfig | 3 |
2 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/dts/imx8mm-kontron-n801x-u-boot.dtsi b/arch/arm/dts/imx8mm-kontron-n801x-u-boot.dtsi index 4eadcc9899e..8cd3b23793c 100644 --- a/arch/arm/dts/imx8mm-kontron-n801x-u-boot.dtsi +++ b/arch/arm/dts/imx8mm-kontron-n801x-u-boot.dtsi @@ -25,6 +25,23 @@ }; }; +&crypto { + u-boot,dm-spl; +}; + +&sec_jr0 { + u-boot,dm-spl; +}; + +&sec_jr1 { + u-boot,dm-spl; +}; + +&sec_jr2 { + u-boot,dm-spl; +}; + + &i2c1 { u-boot,dm-spl; u-boot,dm-pre-reloc; diff --git a/arch/arm/mach-imx/imx8m/Kconfig b/arch/arm/mach-imx/imx8m/Kconfig index ef8518c06bd..09b9d5603d0 100644 --- a/arch/arm/mach-imx/imx8m/Kconfig +++ b/arch/arm/mach-imx/imx8m/Kconfig @@ -107,6 +107,9 @@ config TARGET_KONTRON_MX8MM select IMX8MM select SUPPORT_SPL select IMX8M_LPDDR4 + select FSL_CAAM + select ARCH_MISC_INIT + select SPL_CRYPTO if SPL config TARGET_IMX8MN_BSH_SMM_S2 bool "imx8mn-bsh-smm-s2" |
