Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. config 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. config SYS_FSL_HAS_SEC
  8. bool
  9. help
  10. Enable Freescale Secure Boot and Trusted Architecture
  11. config SYS_FSL_SEC_COMPAT_2
  12. bool
  13. help
  14. Secure boot and trust architecture compatible version 2
  15. config SYS_FSL_SEC_COMPAT_4
  16. bool
  17. help
  18. Secure boot and trust architecture compatible version 4
  19. config SYS_FSL_SEC_COMPAT_5
  20. bool
  21. help
  22. Secure boot and trust architecture compatible version 5
  23. config SYS_FSL_SEC_COMPAT_6
  24. bool
  25. help
  26. Secure boot and trust architecture compatible version 6
  27. config SYS_FSL_SEC_BE
  28. bool "Big-endian access to Freescale Secure Boot"
  29. config SYS_FSL_SEC_COMPAT
  30. int "Freescale Secure Boot compatibility"
  31. depends on SYS_FSL_HAS_SEC
  32. default 2 if SYS_FSL_SEC_COMPAT_2
  33. default 4 if SYS_FSL_SEC_COMPAT_4
  34. default 5 if SYS_FSL_SEC_COMPAT_5
  35. default 6 if SYS_FSL_SEC_COMPAT_6
  36. config SYS_FSL_SEC_LE
  37. bool "Little-endian access to Freescale Secure Boot"