Kconfig 797 B

12345678910111213141516171819202122232425
  1. config CRYPTO_DEV_AMLOGIC_GXL
  2. tristate "Support for amlogic cryptographic offloader"
  3. depends on HAS_IOMEM
  4. default m if ARCH_MESON
  5. select CRYPTO_SKCIPHER
  6. select CRYPTO_ENGINE
  7. select CRYPTO_ECB
  8. select CRYPTO_CBC
  9. select CRYPTO_AES
  10. help
  11. Select y here to have support for the cryptographic offloader
  12. available on Amlogic GXL SoC.
  13. This hardware handles AES ciphers in ECB/CBC mode.
  14. To compile this driver as a module, choose M here: the module
  15. will be called amlogic-gxl-crypto.
  16. config CRYPTO_DEV_AMLOGIC_GXL_DEBUG
  17. bool "Enable amlogic stats"
  18. depends on CRYPTO_DEV_AMLOGIC_GXL
  19. depends on DEBUG_FS
  20. help
  21. Say y to enable amlogic-crypto debug stats.
  22. This will create /sys/kernel/debug/gxl-crypto/stats for displaying
  23. the number of requests per flow and per algorithm.