Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config CRYPTO_DEV_NX_ENCRYPT
  3. tristate "Encryption acceleration support on pSeries platform"
  4. depends on PPC_PSERIES && IBMVIO && !CPU_LITTLE_ENDIAN
  5. default y
  6. select CRYPTO_AES
  7. select CRYPTO_CCM
  8. help
  9. Support for PowerPC Nest (NX) encryption acceleration. This
  10. module supports acceleration for AES and SHA2 algorithms on
  11. the pSeries platform. If you choose 'M' here, this module
  12. will be called nx_crypto.
  13. config CRYPTO_DEV_NX_COMPRESS
  14. tristate "Compression acceleration support"
  15. default y
  16. select CRYPTO_ALGAPI
  17. select 842_DECOMPRESS
  18. help
  19. Support for PowerPC Nest (NX) compression acceleration. This
  20. module supports acceleration for compressing memory with the 842
  21. algorithm using the cryptographic API. One of the platform
  22. drivers must be selected also. If you choose 'M' here, this
  23. module will be called nx_compress.
  24. if CRYPTO_DEV_NX_COMPRESS
  25. config CRYPTO_DEV_NX_COMPRESS_PSERIES
  26. tristate "Compression acceleration support on pSeries platform"
  27. depends on PPC_PSERIES && IBMVIO
  28. depends on PPC_VAS
  29. default y
  30. help
  31. Support for PowerPC Nest (NX) compression acceleration. This
  32. module supports acceleration for compressing memory with the 842
  33. algorithm. This supports NX hardware on the pSeries platform.
  34. If you choose 'M' here, this module will be called nx_compress_pseries.
  35. config CRYPTO_DEV_NX_COMPRESS_POWERNV
  36. tristate "Compression acceleration support on PowerNV platform"
  37. depends on PPC_POWERNV
  38. depends on PPC_VAS
  39. default y
  40. help
  41. Support for PowerPC Nest (NX) compression acceleration. This
  42. module supports acceleration for compressing memory with the 842
  43. algorithm. This supports NX hardware on the PowerNV platform.
  44. If you choose 'M' here, this module will be called nx_compress_powernv.
  45. endif