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