mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-09 15:24:32 +08:00
322cacce0a
This patch creates a new submenu for the NX cryptographic hardware accelerator and breaks the NX options into their own Kconfig file under drivers/crypto/nx/Kconfig. This will permit additional NX functionality to be easily and more cleanly added in the future without touching drivers/crypto/Makefile|Kconfig. Signed-off-by: Seth Jennings <sjenning@linux.vnet.ibm.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
18 lines
487 B
Plaintext
18 lines
487 B
Plaintext
config CRYPTO_DEV_NX_ENCRYPT
|
|
tristate "Encryption acceleration support"
|
|
depends on PPC64 && IBMVIO
|
|
default y
|
|
select CRYPTO_AES
|
|
select CRYPTO_CBC
|
|
select CRYPTO_ECB
|
|
select CRYPTO_CCM
|
|
select CRYPTO_GCM
|
|
select CRYPTO_AUTHENC
|
|
select CRYPTO_XCBC
|
|
select CRYPTO_SHA256
|
|
select CRYPTO_SHA512
|
|
help
|
|
Support for Power7+ in-Nest encryption acceleration. This
|
|
module supports acceleration for AES and SHA2 algorithms. If you
|
|
choose 'M' here, this module will be called nx_crypto.
|