Kconfig 1.7 KB

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