mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 02:15:23 +07:00
04007b0e6c
Another one for the cipher museum: split off DES core processing into a separate module so other drivers (mostly for crypto accelerators) can reuse the code without pulling in the generic DES cipher itself. This will also permit the cipher interface to be made private to the crypto API itself once we move the only user in the kernel (CIFS) to this library interface. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
22 lines
521 B
Plaintext
22 lines
521 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Cavium NITROX Crypto Device configuration
|
|
#
|
|
config CRYPTO_DEV_NITROX
|
|
tristate
|
|
select CRYPTO_BLKCIPHER
|
|
select CRYPTO_AES
|
|
select CRYPTO_LIB_DES
|
|
select FW_LOADER
|
|
|
|
config CRYPTO_DEV_NITROX_CNN55XX
|
|
tristate "Support for Cavium CNN55XX driver"
|
|
depends on PCI_MSI && 64BIT
|
|
select CRYPTO_DEV_NITROX
|
|
help
|
|
Support for Cavium NITROX family CNN55XX driver
|
|
for accelerating crypto workloads.
|
|
|
|
To compile this as a module, choose M here: the module
|
|
will be called n5pf.
|