Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 2 | |
Seth Jennings | 322cacc | 2012-07-19 09:42:38 -0500 | [diff] [blame] | 3 | config CRYPTO_DEV_NX_ENCRYPT |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 4 | tristate "Encryption acceleration support on pSeries platform" |
| 5 | depends on PPC_PSERIES && IBMVIO && !CPU_LITTLE_ENDIAN |
Seth Jennings | 322cacc | 2012-07-19 09:42:38 -0500 | [diff] [blame] | 6 | default y |
| 7 | select CRYPTO_AES |
Seth Jennings | 322cacc | 2012-07-19 09:42:38 -0500 | [diff] [blame] | 8 | select CRYPTO_CCM |
Seth Jennings | 322cacc | 2012-07-19 09:42:38 -0500 | [diff] [blame] | 9 | help |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 10 | Support for PowerPC Nest (NX) encryption acceleration. This |
| 11 | module supports acceleration for AES and SHA2 algorithms on |
| 12 | the pSeries platform. If you choose 'M' here, this module |
| 13 | will be called nx_crypto. |
Seth Jennings | 0e16aaf | 2012-07-19 09:42:40 -0500 | [diff] [blame] | 14 | |
| 15 | config CRYPTO_DEV_NX_COMPRESS |
| 16 | tristate "Compression acceleration support" |
Seth Jennings | 0e16aaf | 2012-07-19 09:42:40 -0500 | [diff] [blame] | 17 | default y |
Dan Streetman | d31581a | 2015-07-22 14:26:36 -0400 | [diff] [blame] | 18 | select CRYPTO_ALGAPI |
| 19 | select 842_DECOMPRESS |
Seth Jennings | 0e16aaf | 2012-07-19 09:42:40 -0500 | [diff] [blame] | 20 | help |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 21 | Support for PowerPC Nest (NX) compression acceleration. This |
| 22 | module supports acceleration for compressing memory with the 842 |
Dan Streetman | d31581a | 2015-07-22 14:26:36 -0400 | [diff] [blame] | 23 | algorithm using the cryptographic API. One of the platform |
| 24 | drivers must be selected also. If you choose 'M' here, this |
| 25 | module will be called nx_compress. |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 26 | |
| 27 | if CRYPTO_DEV_NX_COMPRESS |
| 28 | |
| 29 | config CRYPTO_DEV_NX_COMPRESS_PSERIES |
| 30 | tristate "Compression acceleration support on pSeries platform" |
Dan Streetman | c47d630 | 2015-06-18 12:05:30 -0400 | [diff] [blame] | 31 | depends on PPC_PSERIES && IBMVIO |
Haren Myneni | 99cd49b | 2021-06-17 13:39:41 -0700 | [diff] [blame] | 32 | depends on PPC_VAS |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 33 | default y |
| 34 | help |
| 35 | Support for PowerPC Nest (NX) compression acceleration. This |
| 36 | module supports acceleration for compressing memory with the 842 |
| 37 | algorithm. This supports NX hardware on the pSeries platform. |
| 38 | If you choose 'M' here, this module will be called nx_compress_pseries. |
| 39 | |
Dan Streetman | 99182a42 | 2015-05-07 13:49:19 -0400 | [diff] [blame] | 40 | config CRYPTO_DEV_NX_COMPRESS_POWERNV |
| 41 | tristate "Compression acceleration support on PowerNV platform" |
| 42 | depends on PPC_POWERNV |
Haren Myneni | b0d6c9b | 2017-08-31 00:19:07 -0700 | [diff] [blame] | 43 | depends on PPC_VAS |
Dan Streetman | 99182a42 | 2015-05-07 13:49:19 -0400 | [diff] [blame] | 44 | default y |
| 45 | help |
| 46 | Support for PowerPC Nest (NX) compression acceleration. This |
| 47 | module supports acceleration for compressing memory with the 842 |
| 48 | algorithm. This supports NX hardware on the PowerNV platform. |
| 49 | If you choose 'M' here, this module will be called nx_compress_powernv. |
| 50 | |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 51 | endif |