diff options
author | Jia Jie Ho <jiajie.ho@starfivetech.com> | 2023-05-15 14:53:53 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-05-19 10:46:22 +0200 |
commit | 42ef0e944b0119e9987819af0a5a04d32d5e5edf (patch) | |
tree | e854baac0abfa4b68c6a0d2efe1243ec84cdde8b /drivers/crypto/starfive/Kconfig | |
parent | dt-bindings: crypto: Add StarFive crypto module (diff) | |
download | linux-42ef0e944b0119e9987819af0a5a04d32d5e5edf.tar.xz linux-42ef0e944b0119e9987819af0a5a04d32d5e5edf.zip |
crypto: starfive - Add crypto engine support
Adding device probe and DMA init for StarFive cryptographic module.
Co-developed-by: Huan Feng <huan.feng@starfivetech.com>
Signed-off-by: Huan Feng <huan.feng@starfivetech.com>
Signed-off-by: Jia Jie Ho <jiajie.ho@starfivetech.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/starfive/Kconfig')
-rw-r--r-- | drivers/crypto/starfive/Kconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/crypto/starfive/Kconfig b/drivers/crypto/starfive/Kconfig new file mode 100644 index 000000000000..7a5a5d9f90ed --- /dev/null +++ b/drivers/crypto/starfive/Kconfig @@ -0,0 +1,17 @@ +# +# StarFive crypto drivers configuration +# + +config CRYPTO_DEV_JH7110 + tristate "StarFive JH7110 cryptographic engine driver" + depends on SOC_STARFIVE || COMPILE_TEST + select CRYPTO_ENGINE + select ARM_AMBA + select DMADEVICES + select AMBA_PL08X + help + Support for StarFive JH7110 crypto hardware acceleration engine. + This module provides acceleration for public key algo, + skciphers, AEAD and hash functions. + + If you choose 'M' here, this module will be called jh7110-crypto. |