1config FSL_CAAM 2 bool "Freescale Crypto Driver Support" 3 help 4 Enables the Freescale's Cryptographic Accelerator and Assurance 5 Module (CAAM), also known as the SEC version 4 (SEC4). The driver uses 6 Job Ring as interface to communicate with CAAM. 7 8config SYS_FSL_HAS_SEC 9 bool 10 help 11 Enable Freescale Secure Boot and Trusted Architecture 12 13config SYS_FSL_SEC_COMPAT_2 14 bool 15 help 16 Secure boot and trust architecture compatible version 2 17 18config SYS_FSL_SEC_COMPAT_4 19 bool 20 help 21 Secure boot and trust architecture compatible version 4 22 23config SYS_FSL_SEC_COMPAT_5 24 bool 25 help 26 Secure boot and trust architecture compatible version 5 27 28config SYS_FSL_SEC_COMPAT_6 29 bool 30 help 31 Secure boot and trust architecture compatible version 6 32 33config SYS_FSL_SEC_COMPAT 34 int "Freescale Secure Boot compatibility" 35 depends on SYS_FSL_HAS_SEC 36 default 2 if SYS_FSL_SEC_COMPAT_2 37 default 4 if SYS_FSL_SEC_COMPAT_4 38 default 5 if SYS_FSL_SEC_COMPAT_5 39 default 6 if SYS_FSL_SEC_COMPAT_6 40