Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Jan Engelhardt | b511431 | 2007-07-15 23:39:36 -0700 | [diff] [blame] | 2 | |
| 3 | menuconfig CRYPTO_HW |
| 4 | bool "Hardware crypto devices" |
| 5 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 6 | help |
Jan Engelhardt | 06bfb7e | 2007-08-18 12:56:21 +0200 | [diff] [blame] | 7 | Say Y here to get to see options for hardware crypto devices and |
| 8 | processors. This option alone does not add any kernel code. |
| 9 | |
| 10 | If you say N, all options in this submenu will be skipped and disabled. |
Jan Engelhardt | b511431 | 2007-07-15 23:39:36 -0700 | [diff] [blame] | 11 | |
| 12 | if CRYPTO_HW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
Corentin Labbe | 3914b93 | 2019-10-23 22:05:03 +0200 | [diff] [blame] | 14 | source "drivers/crypto/allwinner/Kconfig" |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | config CRYPTO_DEV_PADLOCK |
Herbert Xu | d158325 | 2007-05-18 13:17:22 +1000 | [diff] [blame] | 17 | tristate "Support for VIA PadLock ACE" |
Herbert Xu | 2f81741 | 2009-04-22 13:00:15 +0800 | [diff] [blame] | 18 | depends on X86 && !UML |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | help |
| 20 | Some VIA processors come with an integrated crypto engine |
| 21 | (so called VIA PadLock ACE, Advanced Cryptography Engine) |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 22 | that provides instructions for very fast cryptographic |
| 23 | operations with supported algorithms. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | The instructions are used only when the CPU supports them. |
Michal Ludvig | 5644bda | 2006-08-06 22:50:30 +1000 | [diff] [blame] | 26 | Otherwise software encryption is used. |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | config CRYPTO_DEV_PADLOCK_AES |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 29 | tristate "PadLock driver for AES algorithm" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | depends on CRYPTO_DEV_PADLOCK |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 31 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | 8131878 | 2019-07-02 21:41:25 +0200 | [diff] [blame] | 32 | select CRYPTO_LIB_AES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | help |
| 34 | Use VIA PadLock for AES algorithm. |
| 35 | |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 36 | Available in VIA C3 and newer CPUs. |
| 37 | |
| 38 | If unsure say M. The compiled module will be |
Pavel Machek | 4737f09 | 2009-06-05 00:44:53 +0200 | [diff] [blame] | 39 | called padlock-aes. |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 40 | |
Michal Ludvig | 6c83327 | 2006-07-12 12:29:38 +1000 | [diff] [blame] | 41 | config CRYPTO_DEV_PADLOCK_SHA |
| 42 | tristate "PadLock driver for SHA1 and SHA256 algorithms" |
| 43 | depends on CRYPTO_DEV_PADLOCK |
Herbert Xu | bbbee46 | 2009-07-11 18:16:16 +0800 | [diff] [blame] | 44 | select CRYPTO_HASH |
Michal Ludvig | 6c83327 | 2006-07-12 12:29:38 +1000 | [diff] [blame] | 45 | select CRYPTO_SHA1 |
| 46 | select CRYPTO_SHA256 |
Michal Ludvig | 6c83327 | 2006-07-12 12:29:38 +1000 | [diff] [blame] | 47 | help |
| 48 | Use VIA PadLock for SHA1/SHA256 algorithms. |
| 49 | |
| 50 | Available in VIA C7 and newer processors. |
| 51 | |
| 52 | If unsure say M. The compiled module will be |
Pavel Machek | 4737f09 | 2009-06-05 00:44:53 +0200 | [diff] [blame] | 53 | called padlock-sha. |
Michal Ludvig | 6c83327 | 2006-07-12 12:29:38 +1000 | [diff] [blame] | 54 | |
Jordan Crouse | 9fe757b | 2006-10-04 18:48:57 +1000 | [diff] [blame] | 55 | config CRYPTO_DEV_GEODE |
| 56 | tristate "Support for the Geode LX AES engine" |
Simon Arlott | f6259de | 2007-05-02 22:08:26 +1000 | [diff] [blame] | 57 | depends on X86_32 && PCI |
Jordan Crouse | 9fe757b | 2006-10-04 18:48:57 +1000 | [diff] [blame] | 58 | select CRYPTO_ALGAPI |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 59 | select CRYPTO_SKCIPHER |
Jordan Crouse | 9fe757b | 2006-10-04 18:48:57 +1000 | [diff] [blame] | 60 | help |
| 61 | Say 'Y' here to use the AMD Geode LX processor on-board AES |
David Sterba | 3dde6ad | 2007-05-09 07:12:20 +0200 | [diff] [blame] | 62 | engine for the CryptoAPI AES algorithm. |
Jordan Crouse | 9fe757b | 2006-10-04 18:48:57 +1000 | [diff] [blame] | 63 | |
| 64 | To compile this driver as a module, choose M here: the module |
| 65 | will be called geode-aes. |
| 66 | |
Martin Schwidefsky | 61d48c2 | 2007-05-10 15:46:00 +0200 | [diff] [blame] | 67 | config ZCRYPT |
Harald Freudenberger | a3358e3 | 2017-02-20 16:09:51 +0100 | [diff] [blame] | 68 | tristate "Support for s390 cryptographic adapters" |
Martin Schwidefsky | 61d48c2 | 2007-05-10 15:46:00 +0200 | [diff] [blame] | 69 | depends on S390 |
Ralph Wuerthner | 2f7c8bd | 2008-04-17 07:46:15 +0200 | [diff] [blame] | 70 | select HW_RANDOM |
Martin Schwidefsky | 61d48c2 | 2007-05-10 15:46:00 +0200 | [diff] [blame] | 71 | help |
Harald Freudenberger | a3358e3 | 2017-02-20 16:09:51 +0100 | [diff] [blame] | 72 | Select this option if you want to enable support for |
| 73 | s390 cryptographic adapters like: |
Harald Freudenberger | 0ae88cc | 2020-09-23 09:18:38 +0200 | [diff] [blame] | 74 | + Crypto Express 2 up to 7 Coprocessor (CEXxC) |
| 75 | + Crypto Express 2 up to 7 Accelerator (CEXxA) |
| 76 | + Crypto Express 4 up to 7 EP11 Coprocessor (CEXxP) |
| 77 | |
| 78 | config ZCRYPT_DEBUG |
| 79 | bool "Enable debug features for s390 cryptographic adapters" |
| 80 | default n |
| 81 | depends on DEBUG_KERNEL |
| 82 | depends on ZCRYPT |
| 83 | help |
| 84 | Say 'Y' here to enable some additional debug features on the |
| 85 | s390 cryptographic adapters driver. |
| 86 | |
| 87 | There will be some more sysfs attributes displayed for ap cards |
| 88 | and queues and some flags on crypto requests are interpreted as |
| 89 | debugging messages to force error injection. |
| 90 | |
| 91 | Do not enable on production level kernel build. |
| 92 | |
| 93 | If unsure, say N. |
Martin Schwidefsky | 61d48c2 | 2007-05-10 15:46:00 +0200 | [diff] [blame] | 94 | |
Harald Freudenberger | 00fab23 | 2018-09-17 16:18:41 +0200 | [diff] [blame] | 95 | config ZCRYPT_MULTIDEVNODES |
| 96 | bool "Support for multiple zcrypt device nodes" |
| 97 | default y |
| 98 | depends on S390 |
| 99 | depends on ZCRYPT |
| 100 | help |
| 101 | With this option enabled the zcrypt device driver can |
| 102 | provide multiple devices nodes in /dev. Each device |
| 103 | node can get customized to limit access and narrow |
| 104 | down the use of the available crypto hardware. |
| 105 | |
Harald Freudenberger | e80d4af | 2016-11-02 14:37:20 +0100 | [diff] [blame] | 106 | config PKEY |
| 107 | tristate "Kernel API for protected key handling" |
| 108 | depends on S390 |
| 109 | depends on ZCRYPT |
| 110 | help |
| 111 | With this option enabled the pkey kernel module provides an API |
| 112 | for creation and handling of protected keys. Other parts of the |
| 113 | kernel or userspace applications may use these functions. |
| 114 | |
| 115 | Select this option if you want to enable the kernel and userspace |
| 116 | API for proteced key handling. |
| 117 | |
| 118 | Please note that creation of protected keys from secure keys |
| 119 | requires to have at least one CEX card in coprocessor mode |
| 120 | available at runtime. |
Martin Schwidefsky | 61d48c2 | 2007-05-10 15:46:00 +0200 | [diff] [blame] | 121 | |
Harald Freudenberger | c4684f9 | 2017-05-11 17:15:54 +0200 | [diff] [blame] | 122 | config CRYPTO_PAES_S390 |
| 123 | tristate "PAES cipher algorithms" |
| 124 | depends on S390 |
| 125 | depends on ZCRYPT |
| 126 | depends on PKEY |
| 127 | select CRYPTO_ALGAPI |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 128 | select CRYPTO_SKCIPHER |
Harald Freudenberger | c4684f9 | 2017-05-11 17:15:54 +0200 | [diff] [blame] | 129 | help |
| 130 | This is the s390 hardware accelerated implementation of the |
| 131 | AES cipher algorithms for use with protected key. |
| 132 | |
| 133 | Select this option if you want to use the paes cipher |
| 134 | for example to use protected key encrypted devices. |
| 135 | |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 136 | config CRYPTO_SHA1_S390 |
| 137 | tristate "SHA1 digest algorithm" |
| 138 | depends on S390 |
Herbert Xu | 563f346 | 2009-01-18 20:33:33 +1100 | [diff] [blame] | 139 | select CRYPTO_HASH |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 140 | help |
| 141 | This is the s390 hardware accelerated implementation of the |
| 142 | SHA-1 secure hash standard (FIPS 180-1/DFIPS 180-2). |
| 143 | |
Jan Glauber | d393d9b | 2011-04-19 21:29:19 +0200 | [diff] [blame] | 144 | It is available as of z990. |
| 145 | |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 146 | config CRYPTO_SHA256_S390 |
| 147 | tristate "SHA256 digest algorithm" |
| 148 | depends on S390 |
Herbert Xu | 563f346 | 2009-01-18 20:33:33 +1100 | [diff] [blame] | 149 | select CRYPTO_HASH |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 150 | help |
| 151 | This is the s390 hardware accelerated implementation of the |
| 152 | SHA256 secure hash standard (DFIPS 180-2). |
| 153 | |
Jan Glauber | d393d9b | 2011-04-19 21:29:19 +0200 | [diff] [blame] | 154 | It is available as of z9. |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 155 | |
Jan Glauber | 291dc7c | 2008-03-06 19:52:00 +0800 | [diff] [blame] | 156 | config CRYPTO_SHA512_S390 |
Jan Glauber | 4e2c6d7 | 2008-03-06 19:53:50 +0800 | [diff] [blame] | 157 | tristate "SHA384 and SHA512 digest algorithm" |
Jan Glauber | 291dc7c | 2008-03-06 19:52:00 +0800 | [diff] [blame] | 158 | depends on S390 |
Herbert Xu | 563f346 | 2009-01-18 20:33:33 +1100 | [diff] [blame] | 159 | select CRYPTO_HASH |
Jan Glauber | 291dc7c | 2008-03-06 19:52:00 +0800 | [diff] [blame] | 160 | help |
| 161 | This is the s390 hardware accelerated implementation of the |
| 162 | SHA512 secure hash standard. |
| 163 | |
Jan Glauber | d393d9b | 2011-04-19 21:29:19 +0200 | [diff] [blame] | 164 | It is available as of z10. |
Jan Glauber | 291dc7c | 2008-03-06 19:52:00 +0800 | [diff] [blame] | 165 | |
Joerg Schmidbauer | 3c2eb6b | 2019-08-14 14:56:54 +0200 | [diff] [blame] | 166 | config CRYPTO_SHA3_256_S390 |
| 167 | tristate "SHA3_224 and SHA3_256 digest algorithm" |
| 168 | depends on S390 |
| 169 | select CRYPTO_HASH |
| 170 | help |
| 171 | This is the s390 hardware accelerated implementation of the |
| 172 | SHA3_256 secure hash standard. |
| 173 | |
| 174 | It is available as of z14. |
| 175 | |
| 176 | config CRYPTO_SHA3_512_S390 |
| 177 | tristate "SHA3_384 and SHA3_512 digest algorithm" |
| 178 | depends on S390 |
| 179 | select CRYPTO_HASH |
| 180 | help |
| 181 | This is the s390 hardware accelerated implementation of the |
| 182 | SHA3_512 secure hash standard. |
| 183 | |
| 184 | It is available as of z14. |
| 185 | |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 186 | config CRYPTO_DES_S390 |
| 187 | tristate "DES and Triple DES cipher algorithms" |
| 188 | depends on S390 |
| 189 | select CRYPTO_ALGAPI |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 190 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 191 | select CRYPTO_LIB_DES |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 192 | help |
Gerald Schaefer | 0200f3e | 2011-05-04 15:09:44 +1000 | [diff] [blame] | 193 | This is the s390 hardware accelerated implementation of the |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 194 | DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3). |
| 195 | |
Gerald Schaefer | 0200f3e | 2011-05-04 15:09:44 +1000 | [diff] [blame] | 196 | As of z990 the ECB and CBC mode are hardware accelerated. |
| 197 | As of z196 the CTR mode is hardware accelerated. |
| 198 | |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 199 | config CRYPTO_AES_S390 |
| 200 | tristate "AES cipher algorithms" |
| 201 | depends on S390 |
| 202 | select CRYPTO_ALGAPI |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 203 | select CRYPTO_SKCIPHER |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 204 | help |
| 205 | This is the s390 hardware accelerated implementation of the |
Gerald Schaefer | 99d9722 | 2011-04-26 16:12:42 +1000 | [diff] [blame] | 206 | AES cipher algorithms (FIPS-197). |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 207 | |
Gerald Schaefer | 99d9722 | 2011-04-26 16:12:42 +1000 | [diff] [blame] | 208 | As of z9 the ECB and CBC modes are hardware accelerated |
| 209 | for 128 bit keys. |
| 210 | As of z10 the ECB and CBC modes are hardware accelerated |
| 211 | for all AES key sizes. |
Gerald Schaefer | 0200f3e | 2011-05-04 15:09:44 +1000 | [diff] [blame] | 212 | As of z196 the CTR mode is hardware accelerated for all AES |
| 213 | key sizes and XTS mode is hardware accelerated for 256 and |
Gerald Schaefer | 99d9722 | 2011-04-26 16:12:42 +1000 | [diff] [blame] | 214 | 512 bit keys. |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 215 | |
| 216 | config S390_PRNG |
| 217 | tristate "Pseudo random number generator device driver" |
| 218 | depends on S390 |
| 219 | default "m" |
| 220 | help |
| 221 | Select this option if you want to use the s390 pseudo random number |
| 222 | generator. The PRNG is part of the cryptographic processor functions |
| 223 | and uses triple-DES to generate secure random numbers like the |
Jan Glauber | d393d9b | 2011-04-19 21:29:19 +0200 | [diff] [blame] | 224 | ANSI X9.17 standard. User-space programs access the |
| 225 | pseudo-random-number device through the char device /dev/prandom. |
| 226 | |
| 227 | It is available as of z9. |
Jan Glauber | 3f5615e | 2008-01-26 14:11:07 +0100 | [diff] [blame] | 228 | |
Gerald Schaefer | df1309c | 2011-04-19 21:29:18 +0200 | [diff] [blame] | 229 | config CRYPTO_GHASH_S390 |
Eric Biggers | 8dfa20f | 2019-07-19 23:09:18 -0700 | [diff] [blame] | 230 | tristate "GHASH hash function" |
Gerald Schaefer | df1309c | 2011-04-19 21:29:18 +0200 | [diff] [blame] | 231 | depends on S390 |
| 232 | select CRYPTO_HASH |
| 233 | help |
Eric Biggers | 8dfa20f | 2019-07-19 23:09:18 -0700 | [diff] [blame] | 234 | This is the s390 hardware accelerated implementation of GHASH, |
| 235 | the hash function used in GCM (Galois/Counter mode). |
Gerald Schaefer | df1309c | 2011-04-19 21:29:18 +0200 | [diff] [blame] | 236 | |
| 237 | It is available as of z196. |
| 238 | |
Hendrik Brueckner | f848dbd | 2015-04-28 15:52:44 +0200 | [diff] [blame] | 239 | config CRYPTO_CRC32_S390 |
| 240 | tristate "CRC-32 algorithms" |
| 241 | depends on S390 |
| 242 | select CRYPTO_HASH |
| 243 | select CRC32 |
| 244 | help |
| 245 | Select this option if you want to use hardware accelerated |
| 246 | implementations of CRC algorithms. With this option, you |
| 247 | can optimize the computation of CRC-32 (IEEE 802.3 Ethernet) |
| 248 | and CRC-32C (Castagnoli). |
| 249 | |
| 250 | It is available with IBM z13 or later. |
| 251 | |
David S. Miller | 0a625fd2 | 2010-05-19 14:14:04 +1000 | [diff] [blame] | 252 | config CRYPTO_DEV_NIAGARA2 |
Krzysztof Kozlowski | 2452cfd | 2019-11-21 04:20:48 +0100 | [diff] [blame] | 253 | tristate "Niagara2 Stream Processing Unit driver" |
| 254 | select CRYPTO_LIB_DES |
| 255 | select CRYPTO_SKCIPHER |
| 256 | select CRYPTO_HASH |
| 257 | select CRYPTO_MD5 |
| 258 | select CRYPTO_SHA1 |
| 259 | select CRYPTO_SHA256 |
| 260 | depends on SPARC64 |
| 261 | help |
David S. Miller | 0a625fd2 | 2010-05-19 14:14:04 +1000 | [diff] [blame] | 262 | Each core of a Niagara2 processor contains a Stream |
| 263 | Processing Unit, which itself contains several cryptographic |
| 264 | sub-units. One set provides the Modular Arithmetic Unit, |
| 265 | used for SSL offload. The other set provides the Cipher |
| 266 | Group, which can perform encryption, decryption, hashing, |
| 267 | checksumming, and raw copies. |
| 268 | |
Evgeniy Polyakov | f7d0561 | 2007-10-26 21:31:14 +0800 | [diff] [blame] | 269 | config CRYPTO_DEV_HIFN_795X |
| 270 | tristate "Driver HIFN 795x crypto accelerator chips" |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 271 | select CRYPTO_LIB_DES |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 272 | select CRYPTO_SKCIPHER |
Herbert Xu | 946fef4 | 2008-01-26 09:48:44 +1100 | [diff] [blame] | 273 | select HW_RANDOM if CRYPTO_DEV_HIFN_795X_RNG |
Jan Glauber | 2707b93 | 2007-11-12 21:56:38 +0800 | [diff] [blame] | 274 | depends on PCI |
Richard Weinberger | 75b7662 | 2011-10-10 12:55:41 +0200 | [diff] [blame] | 275 | depends on !ARCH_DMA_ADDR_T_64BIT |
Evgeniy Polyakov | f7d0561 | 2007-10-26 21:31:14 +0800 | [diff] [blame] | 276 | help |
| 277 | This option allows you to have support for HIFN 795x crypto adapters. |
| 278 | |
Herbert Xu | 946fef4 | 2008-01-26 09:48:44 +1100 | [diff] [blame] | 279 | config CRYPTO_DEV_HIFN_795X_RNG |
| 280 | bool "HIFN 795x random number generator" |
| 281 | depends on CRYPTO_DEV_HIFN_795X |
| 282 | help |
| 283 | Select this option if you want to enable the random number generator |
| 284 | on the HIFN 795x crypto adapters. |
Evgeniy Polyakov | f7d0561 | 2007-10-26 21:31:14 +0800 | [diff] [blame] | 285 | |
Masahiro Yamada | 8636a1f | 2018-12-11 20:01:04 +0900 | [diff] [blame] | 286 | source "drivers/crypto/caam/Kconfig" |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 287 | |
Kim Phillips | 9c4a796 | 2008-06-23 19:50:15 +0800 | [diff] [blame] | 288 | config CRYPTO_DEV_TALITOS |
| 289 | tristate "Talitos Freescale Security Engine (SEC)" |
Herbert Xu | 596103c | 2015-06-17 14:58:24 +0800 | [diff] [blame] | 290 | select CRYPTO_AEAD |
Kim Phillips | 9c4a796 | 2008-06-23 19:50:15 +0800 | [diff] [blame] | 291 | select CRYPTO_AUTHENC |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 292 | select CRYPTO_SKCIPHER |
Herbert Xu | 596103c | 2015-06-17 14:58:24 +0800 | [diff] [blame] | 293 | select CRYPTO_HASH |
Herbert Xu | dbc2e87 | 2019-11-26 19:28:36 +0800 | [diff] [blame] | 294 | select CRYPTO_LIB_DES |
Kim Phillips | 9c4a796 | 2008-06-23 19:50:15 +0800 | [diff] [blame] | 295 | select HW_RANDOM |
| 296 | depends on FSL_SOC |
| 297 | help |
| 298 | Say 'Y' here to use the Freescale Security Engine (SEC) |
| 299 | to offload cryptographic algorithm computation. |
| 300 | |
| 301 | The Freescale SEC is present on PowerQUICC 'E' processors, such |
| 302 | as the MPC8349E and MPC8548E. |
| 303 | |
| 304 | To compile this driver as a module, choose M here: the module |
| 305 | will be called talitos. |
| 306 | |
LEROY Christophe | 5b841a6 | 2015-04-17 16:32:03 +0200 | [diff] [blame] | 307 | config CRYPTO_DEV_TALITOS1 |
| 308 | bool "SEC1 (SEC 1.0 and SEC Lite 1.2)" |
| 309 | depends on CRYPTO_DEV_TALITOS |
| 310 | depends on PPC_8xx || PPC_82xx |
| 311 | default y |
| 312 | help |
| 313 | Say 'Y' here to use the Freescale Security Engine (SEC) version 1.0 |
| 314 | found on MPC82xx or the Freescale Security Engine (SEC Lite) |
| 315 | version 1.2 found on MPC8xx |
| 316 | |
| 317 | config CRYPTO_DEV_TALITOS2 |
| 318 | bool "SEC2+ (SEC version 2.0 or upper)" |
| 319 | depends on CRYPTO_DEV_TALITOS |
| 320 | default y if !PPC_8xx |
| 321 | help |
| 322 | Say 'Y' here to use the Freescale Security Engine (SEC) |
| 323 | version 2 and following as found on MPC83xx, MPC85xx, etc ... |
| 324 | |
Christian Hohnstaedt | 81bef01 | 2008-06-25 14:38:47 +0800 | [diff] [blame] | 325 | config CRYPTO_DEV_IXP4XX |
| 326 | tristate "Driver for IXP4xx crypto hardware acceleration" |
Krzysztof Hałasa | 9665c52 | 2010-03-25 23:56:05 +0100 | [diff] [blame] | 327 | depends on ARCH_IXP4XX && IXP4XX_QMGR && IXP4XX_NPE |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 328 | select CRYPTO_LIB_DES |
Herbert Xu | 596103c | 2015-06-17 14:58:24 +0800 | [diff] [blame] | 329 | select CRYPTO_AEAD |
Imre Kaloz | 090657e | 2008-07-13 20:12:11 +0800 | [diff] [blame] | 330 | select CRYPTO_AUTHENC |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 331 | select CRYPTO_SKCIPHER |
Christian Hohnstaedt | 81bef01 | 2008-06-25 14:38:47 +0800 | [diff] [blame] | 332 | help |
| 333 | Driver for the IXP4xx NPE crypto engine. |
| 334 | |
James Hsiao | 049359d | 2009-02-05 16:18:13 +1100 | [diff] [blame] | 335 | config CRYPTO_DEV_PPC4XX |
| 336 | tristate "Driver AMCC PPC4xx crypto accelerator" |
| 337 | depends on PPC && 4xx |
| 338 | select CRYPTO_HASH |
Christian Lamparter | a0aae82 | 2017-10-04 01:00:15 +0200 | [diff] [blame] | 339 | select CRYPTO_AEAD |
Christian Lamparter | 298b4c6 | 2019-10-27 16:47:47 +0100 | [diff] [blame] | 340 | select CRYPTO_AES |
Ard Biesheuvel | da3e7a9 | 2019-07-02 21:41:42 +0200 | [diff] [blame] | 341 | select CRYPTO_LIB_AES |
Christian Lamparter | a0aae82 | 2017-10-04 01:00:15 +0200 | [diff] [blame] | 342 | select CRYPTO_CCM |
Christian Lamparter | 98e87e3 | 2018-04-19 18:41:54 +0200 | [diff] [blame] | 343 | select CRYPTO_CTR |
Christian Lamparter | a0aae82 | 2017-10-04 01:00:15 +0200 | [diff] [blame] | 344 | select CRYPTO_GCM |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 345 | select CRYPTO_SKCIPHER |
James Hsiao | 049359d | 2009-02-05 16:18:13 +1100 | [diff] [blame] | 346 | help |
| 347 | This option allows you to have support for AMCC crypto acceleration. |
| 348 | |
Christian Lamparter | 5343e67 | 2016-04-18 12:57:41 +0200 | [diff] [blame] | 349 | config HW_RANDOM_PPC4XX |
| 350 | bool "PowerPC 4xx generic true random number generator support" |
Florian Fainelli | 63b8ee4 | 2021-01-30 14:55:38 -0800 | [diff] [blame] | 351 | depends on CRYPTO_DEV_PPC4XX && HW_RANDOM=y |
Christian Lamparter | 5343e67 | 2016-04-18 12:57:41 +0200 | [diff] [blame] | 352 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 353 | help |
Christian Lamparter | 5343e67 | 2016-04-18 12:57:41 +0200 | [diff] [blame] | 354 | This option provides the kernel-side support for the TRNG hardware |
| 355 | found in the security function of some PowerPC 4xx SoCs. |
| 356 | |
Tero Kristo | 74ed87e | 2017-05-24 10:35:26 +0300 | [diff] [blame] | 357 | config CRYPTO_DEV_OMAP |
| 358 | tristate "Support for OMAP crypto HW accelerators" |
| 359 | depends on ARCH_OMAP2PLUS |
| 360 | help |
| 361 | OMAP processors have various crypto HW accelerators. Select this if |
Krzysztof Kozlowski | 2452cfd | 2019-11-21 04:20:48 +0100 | [diff] [blame] | 362 | you want to use the OMAP modules for any of the crypto algorithms. |
Tero Kristo | 74ed87e | 2017-05-24 10:35:26 +0300 | [diff] [blame] | 363 | |
| 364 | if CRYPTO_DEV_OMAP |
| 365 | |
Dmitry Kasatkin | 8628e7c | 2010-05-03 11:10:59 +0800 | [diff] [blame] | 366 | config CRYPTO_DEV_OMAP_SHAM |
Lokesh Vutla | eaef7e3 | 2013-07-26 12:29:14 +0530 | [diff] [blame] | 367 | tristate "Support for OMAP MD5/SHA1/SHA2 hw accelerator" |
| 368 | depends on ARCH_OMAP2PLUS |
Arnd Bergmann | 3828119 | 2021-01-03 15:03:04 +0100 | [diff] [blame] | 369 | select CRYPTO_ENGINE |
Dmitry Kasatkin | 8628e7c | 2010-05-03 11:10:59 +0800 | [diff] [blame] | 370 | select CRYPTO_SHA1 |
| 371 | select CRYPTO_MD5 |
Lokesh Vutla | eaef7e3 | 2013-07-26 12:29:14 +0530 | [diff] [blame] | 372 | select CRYPTO_SHA256 |
| 373 | select CRYPTO_SHA512 |
| 374 | select CRYPTO_HMAC |
Dmitry Kasatkin | 8628e7c | 2010-05-03 11:10:59 +0800 | [diff] [blame] | 375 | help |
Lokesh Vutla | eaef7e3 | 2013-07-26 12:29:14 +0530 | [diff] [blame] | 376 | OMAP processors have MD5/SHA1/SHA2 hw accelerator. Select this if you |
| 377 | want to use the OMAP module for MD5/SHA1/SHA2 algorithms. |
Dmitry Kasatkin | 8628e7c | 2010-05-03 11:10:59 +0800 | [diff] [blame] | 378 | |
Dmitry Kasatkin | 537559a | 2010-09-03 19:16:02 +0800 | [diff] [blame] | 379 | config CRYPTO_DEV_OMAP_AES |
| 380 | tristate "Support for OMAP AES hw engine" |
Joel Fernandes | 1bbf643 | 2013-08-17 21:42:35 -0500 | [diff] [blame] | 381 | depends on ARCH_OMAP2 || ARCH_OMAP3 || ARCH_OMAP2PLUS |
Dmitry Kasatkin | 537559a | 2010-09-03 19:16:02 +0800 | [diff] [blame] | 382 | select CRYPTO_AES |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 383 | select CRYPTO_SKCIPHER |
Baolin Wang | 0529900 | 2016-01-26 20:25:40 +0800 | [diff] [blame] | 384 | select CRYPTO_ENGINE |
Lokesh Vutla | 9fcb191 | 2016-08-04 13:28:44 +0300 | [diff] [blame] | 385 | select CRYPTO_CBC |
| 386 | select CRYPTO_ECB |
| 387 | select CRYPTO_CTR |
Tero Kristo | ad18cc9 | 2017-05-24 10:35:31 +0300 | [diff] [blame] | 388 | select CRYPTO_AEAD |
Dmitry Kasatkin | 537559a | 2010-09-03 19:16:02 +0800 | [diff] [blame] | 389 | help |
| 390 | OMAP processors have AES module accelerator. Select this if you |
| 391 | want to use the OMAP module for AES algorithms. |
| 392 | |
Joel Fernandes | 701d0f1 | 2014-02-14 10:49:47 -0600 | [diff] [blame] | 393 | config CRYPTO_DEV_OMAP_DES |
Peter Meerwald | 97ee7ed | 2016-03-13 16:15:37 +0100 | [diff] [blame] | 394 | tristate "Support for OMAP DES/3DES hw engine" |
Joel Fernandes | 701d0f1 | 2014-02-14 10:49:47 -0600 | [diff] [blame] | 395 | depends on ARCH_OMAP2PLUS |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 396 | select CRYPTO_LIB_DES |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 397 | select CRYPTO_SKCIPHER |
Baolin Wang | f1b77aa | 2016-04-28 14:11:51 +0800 | [diff] [blame] | 398 | select CRYPTO_ENGINE |
Joel Fernandes | 701d0f1 | 2014-02-14 10:49:47 -0600 | [diff] [blame] | 399 | help |
| 400 | OMAP processors have DES/3DES module accelerator. Select this if you |
| 401 | want to use the OMAP module for DES and 3DES algorithms. Currently |
Peter Meerwald | 97ee7ed | 2016-03-13 16:15:37 +0100 | [diff] [blame] | 402 | the ECB and CBC modes of operation are supported by the driver. Also |
| 403 | accesses made on unaligned boundaries are supported. |
Joel Fernandes | 701d0f1 | 2014-02-14 10:49:47 -0600 | [diff] [blame] | 404 | |
Tero Kristo | 74ed87e | 2017-05-24 10:35:26 +0300 | [diff] [blame] | 405 | endif # CRYPTO_DEV_OMAP |
| 406 | |
Javier Martin | 5de8875 | 2013-03-01 12:37:53 +0100 | [diff] [blame] | 407 | config CRYPTO_DEV_SAHARA |
| 408 | tristate "Support for SAHARA crypto accelerator" |
Paul Bolle | 74d24d8 | 2013-05-12 13:57:19 +0200 | [diff] [blame] | 409 | depends on ARCH_MXC && OF |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 410 | select CRYPTO_SKCIPHER |
Javier Martin | 5de8875 | 2013-03-01 12:37:53 +0100 | [diff] [blame] | 411 | select CRYPTO_AES |
| 412 | select CRYPTO_ECB |
| 413 | help |
| 414 | This option enables support for the SAHARA HW crypto accelerator |
| 415 | found in some Freescale i.MX chips. |
| 416 | |
Krzysztof Kozlowski | c46ea13 | 2017-04-11 20:08:35 +0200 | [diff] [blame] | 417 | config CRYPTO_DEV_EXYNOS_RNG |
Krzysztof Kozlowski | b279997 | 2020-01-04 16:20:59 +0100 | [diff] [blame] | 418 | tristate "Exynos HW pseudo random number generator support" |
Krzysztof Kozlowski | c46ea13 | 2017-04-11 20:08:35 +0200 | [diff] [blame] | 419 | depends on ARCH_EXYNOS || COMPILE_TEST |
| 420 | depends on HAS_IOMEM |
| 421 | select CRYPTO_RNG |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 422 | help |
Krzysztof Kozlowski | c46ea13 | 2017-04-11 20:08:35 +0200 | [diff] [blame] | 423 | This driver provides kernel-side support through the |
| 424 | cryptographic API for the pseudo random number generator hardware |
| 425 | found on Exynos SoCs. |
| 426 | |
| 427 | To compile this driver as a module, choose M here: the |
| 428 | module will be called exynos-rng. |
| 429 | |
| 430 | If unsure, say Y. |
| 431 | |
Vladimir Zapolskiy | a49e490 | 2011-04-08 20:40:51 +0800 | [diff] [blame] | 432 | config CRYPTO_DEV_S5P |
Naveen Krishna Chatradhi | e922e96 | 2014-05-08 21:58:14 +0800 | [diff] [blame] | 433 | tristate "Support for Samsung S5PV210/Exynos crypto accelerator" |
Krzysztof Kozlowski | dc1d9de | 2016-03-14 13:20:18 +0900 | [diff] [blame] | 434 | depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST |
Geert Uytterhoeven | ee1b23d | 2018-04-17 19:49:03 +0200 | [diff] [blame] | 435 | depends on HAS_IOMEM |
Vladimir Zapolskiy | a49e490 | 2011-04-08 20:40:51 +0800 | [diff] [blame] | 436 | select CRYPTO_AES |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 437 | select CRYPTO_SKCIPHER |
Vladimir Zapolskiy | a49e490 | 2011-04-08 20:40:51 +0800 | [diff] [blame] | 438 | help |
| 439 | This option allows you to have support for S5P crypto acceleration. |
Naveen Krishna Chatradhi | e922e96 | 2014-05-08 21:58:14 +0800 | [diff] [blame] | 440 | Select this to offload Samsung S5PV210 or S5PC110, Exynos from AES |
Vladimir Zapolskiy | a49e490 | 2011-04-08 20:40:51 +0800 | [diff] [blame] | 441 | algorithms execution. |
| 442 | |
Kamil Konieczny | c2afad6 | 2017-10-25 17:27:35 +0200 | [diff] [blame] | 443 | config CRYPTO_DEV_EXYNOS_HASH |
| 444 | bool "Support for Samsung Exynos HASH accelerator" |
| 445 | depends on CRYPTO_DEV_S5P |
| 446 | depends on !CRYPTO_DEV_EXYNOS_RNG && CRYPTO_DEV_EXYNOS_RNG!=m |
| 447 | select CRYPTO_SHA1 |
| 448 | select CRYPTO_MD5 |
| 449 | select CRYPTO_SHA256 |
| 450 | help |
| 451 | Select this to offload Exynos from HASH MD5/SHA1/SHA256. |
| 452 | This will select software SHA1, MD5 and SHA256 as they are |
| 453 | needed for small and zero-size messages. |
| 454 | HASH algorithms will be disabled if EXYNOS_RNG |
| 455 | is enabled due to hw conflict. |
| 456 | |
Kent Yoder | aef7b31 | 2012-04-12 05:39:26 +0000 | [diff] [blame] | 457 | config CRYPTO_DEV_NX |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 458 | bool "Support for IBM PowerPC Nest (NX) cryptographic acceleration" |
| 459 | depends on PPC64 |
Kent Yoder | aef7b31 | 2012-04-12 05:39:26 +0000 | [diff] [blame] | 460 | help |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 461 | This enables support for the NX hardware cryptographic accelerator |
| 462 | coprocessor that is in IBM PowerPC P7+ or later processors. This |
| 463 | does not actually enable any drivers, it only allows you to select |
| 464 | which acceleration type (encryption and/or compression) to enable. |
Seth Jennings | 322cacc | 2012-07-19 09:42:38 -0500 | [diff] [blame] | 465 | |
| 466 | if CRYPTO_DEV_NX |
| 467 | source "drivers/crypto/nx/Kconfig" |
| 468 | endif |
Kent Yoder | aef7b31 | 2012-04-12 05:39:26 +0000 | [diff] [blame] | 469 | |
Andreas Westin | 2789c08 | 2012-04-30 10:11:17 +0200 | [diff] [blame] | 470 | config CRYPTO_DEV_UX500 |
| 471 | tristate "Driver for ST-Ericsson UX500 crypto hardware acceleration" |
| 472 | depends on ARCH_U8500 |
Andreas Westin | 2789c08 | 2012-04-30 10:11:17 +0200 | [diff] [blame] | 473 | help |
| 474 | Driver for ST-Ericsson UX500 crypto engine. |
| 475 | |
| 476 | if CRYPTO_DEV_UX500 |
| 477 | source "drivers/crypto/ux500/Kconfig" |
| 478 | endif # if CRYPTO_DEV_UX500 |
| 479 | |
Cyrille Pitchen | 89a82ef | 2017-01-26 17:07:56 +0100 | [diff] [blame] | 480 | config CRYPTO_DEV_ATMEL_AUTHENC |
YueHaibing | aee1f9f | 2019-11-13 17:55:50 +0800 | [diff] [blame] | 481 | bool "Support for Atmel IPSEC/SSL hw accelerator" |
Arnd Bergmann | ceb4afb | 2017-02-06 13:32:15 +0100 | [diff] [blame] | 482 | depends on ARCH_AT91 || COMPILE_TEST |
YueHaibing | aee1f9f | 2019-11-13 17:55:50 +0800 | [diff] [blame] | 483 | depends on CRYPTO_DEV_ATMEL_AES |
Cyrille Pitchen | 89a82ef | 2017-01-26 17:07:56 +0100 | [diff] [blame] | 484 | help |
| 485 | Some Atmel processors can combine the AES and SHA hw accelerators |
| 486 | to enhance support of IPSEC/SSL. |
| 487 | Select this if you want to use the Atmel modules for |
| 488 | authenc(hmac(shaX),Y(cbc)) algorithms. |
| 489 | |
Nicolas Royer | bd3c7b5 | 2012-07-01 19:19:44 +0200 | [diff] [blame] | 490 | config CRYPTO_DEV_ATMEL_AES |
| 491 | tristate "Support for Atmel AES hw accelerator" |
Arnd Bergmann | ceb4afb | 2017-02-06 13:32:15 +0100 | [diff] [blame] | 492 | depends on ARCH_AT91 || COMPILE_TEST |
Nicolas Royer | bd3c7b5 | 2012-07-01 19:19:44 +0200 | [diff] [blame] | 493 | select CRYPTO_AES |
Cyrille Pitchen | d441954 | 2015-12-17 18:13:07 +0100 | [diff] [blame] | 494 | select CRYPTO_AEAD |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 495 | select CRYPTO_SKCIPHER |
YueHaibing | aee1f9f | 2019-11-13 17:55:50 +0800 | [diff] [blame] | 496 | select CRYPTO_AUTHENC if CRYPTO_DEV_ATMEL_AUTHENC |
| 497 | select CRYPTO_DEV_ATMEL_SHA if CRYPTO_DEV_ATMEL_AUTHENC |
Nicolas Royer | bd3c7b5 | 2012-07-01 19:19:44 +0200 | [diff] [blame] | 498 | help |
| 499 | Some Atmel processors have AES hw accelerator. |
| 500 | Select this if you want to use the Atmel module for |
| 501 | AES algorithms. |
| 502 | |
| 503 | To compile this driver as a module, choose M here: the module |
| 504 | will be called atmel-aes. |
| 505 | |
Nicolas Royer | 1380200 | 2012-07-01 19:19:45 +0200 | [diff] [blame] | 506 | config CRYPTO_DEV_ATMEL_TDES |
| 507 | tristate "Support for Atmel DES/TDES hw accelerator" |
Arnd Bergmann | ceb4afb | 2017-02-06 13:32:15 +0100 | [diff] [blame] | 508 | depends on ARCH_AT91 || COMPILE_TEST |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 509 | select CRYPTO_LIB_DES |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 510 | select CRYPTO_SKCIPHER |
Nicolas Royer | 1380200 | 2012-07-01 19:19:45 +0200 | [diff] [blame] | 511 | help |
| 512 | Some Atmel processors have DES/TDES hw accelerator. |
| 513 | Select this if you want to use the Atmel module for |
| 514 | DES/TDES algorithms. |
| 515 | |
| 516 | To compile this driver as a module, choose M here: the module |
| 517 | will be called atmel-tdes. |
| 518 | |
Nicolas Royer | ebc82ef | 2012-07-01 19:19:46 +0200 | [diff] [blame] | 519 | config CRYPTO_DEV_ATMEL_SHA |
Nicolas Royer | d4905b3 | 2013-02-20 17:10:26 +0100 | [diff] [blame] | 520 | tristate "Support for Atmel SHA hw accelerator" |
Arnd Bergmann | ceb4afb | 2017-02-06 13:32:15 +0100 | [diff] [blame] | 521 | depends on ARCH_AT91 || COMPILE_TEST |
Herbert Xu | 596103c | 2015-06-17 14:58:24 +0800 | [diff] [blame] | 522 | select CRYPTO_HASH |
Nicolas Royer | ebc82ef | 2012-07-01 19:19:46 +0200 | [diff] [blame] | 523 | help |
Nicolas Royer | d4905b3 | 2013-02-20 17:10:26 +0100 | [diff] [blame] | 524 | Some Atmel processors have SHA1/SHA224/SHA256/SHA384/SHA512 |
| 525 | hw accelerator. |
Nicolas Royer | ebc82ef | 2012-07-01 19:19:46 +0200 | [diff] [blame] | 526 | Select this if you want to use the Atmel module for |
Nicolas Royer | d4905b3 | 2013-02-20 17:10:26 +0100 | [diff] [blame] | 527 | SHA1/SHA224/SHA256/SHA384/SHA512 algorithms. |
Nicolas Royer | ebc82ef | 2012-07-01 19:19:46 +0200 | [diff] [blame] | 528 | |
| 529 | To compile this driver as a module, choose M here: the module |
| 530 | will be called atmel-sha. |
| 531 | |
Ard Biesheuvel | c34a320 | 2019-05-24 18:26:48 +0200 | [diff] [blame] | 532 | config CRYPTO_DEV_ATMEL_I2C |
| 533 | tristate |
Arnd Bergmann | d33a23b | 2020-12-04 00:20:04 +0100 | [diff] [blame] | 534 | select BITREVERSE |
Ard Biesheuvel | c34a320 | 2019-05-24 18:26:48 +0200 | [diff] [blame] | 535 | |
Tudor-Dan Ambarus | 1110569 | 2017-07-05 13:07:59 +0300 | [diff] [blame] | 536 | config CRYPTO_DEV_ATMEL_ECC |
| 537 | tristate "Support for Microchip / Atmel ECC hw accelerator" |
Tudor-Dan Ambarus | 1110569 | 2017-07-05 13:07:59 +0300 | [diff] [blame] | 538 | depends on I2C |
Ard Biesheuvel | c34a320 | 2019-05-24 18:26:48 +0200 | [diff] [blame] | 539 | select CRYPTO_DEV_ATMEL_I2C |
Tudor-Dan Ambarus | 1110569 | 2017-07-05 13:07:59 +0300 | [diff] [blame] | 540 | select CRYPTO_ECDH |
| 541 | select CRC16 |
| 542 | help |
| 543 | Microhip / Atmel ECC hw accelerator. |
| 544 | Select this if you want to use the Microchip / Atmel module for |
| 545 | ECDH algorithm. |
| 546 | |
| 547 | To compile this driver as a module, choose M here: the module |
| 548 | will be called atmel-ecc. |
| 549 | |
Ard Biesheuvel | da001fb | 2019-05-24 18:26:49 +0200 | [diff] [blame] | 550 | config CRYPTO_DEV_ATMEL_SHA204A |
| 551 | tristate "Support for Microchip / Atmel SHA accelerator and RNG" |
| 552 | depends on I2C |
| 553 | select CRYPTO_DEV_ATMEL_I2C |
| 554 | select HW_RANDOM |
YueHaibing | 4bb02db | 2019-05-31 20:17:49 +0800 | [diff] [blame] | 555 | select CRC16 |
Ard Biesheuvel | da001fb | 2019-05-24 18:26:49 +0200 | [diff] [blame] | 556 | help |
| 557 | Microhip / Atmel SHA accelerator and RNG. |
| 558 | Select this if you want to use the Microchip / Atmel SHA204A |
| 559 | module as a random number generator. (Other functions of the |
| 560 | chip are currently not exposed by this driver) |
| 561 | |
| 562 | To compile this driver as a module, choose M here: the module |
| 563 | will be called atmel-sha204a. |
| 564 | |
Tom Lendacky | f114766 | 2013-11-12 11:46:51 -0600 | [diff] [blame] | 565 | config CRYPTO_DEV_CCP |
Brijesh Singh | 720419f | 2017-07-06 09:59:14 -0500 | [diff] [blame] | 566 | bool "Support for AMD Secure Processor" |
Tom Lendacky | 6c50634 | 2015-02-03 13:07:29 -0600 | [diff] [blame] | 567 | depends on ((X86 && PCI) || (ARM64 && (OF_ADDRESS || ACPI))) && HAS_IOMEM |
Tom Lendacky | f114766 | 2013-11-12 11:46:51 -0600 | [diff] [blame] | 568 | help |
Brijesh Singh | 720419f | 2017-07-06 09:59:14 -0500 | [diff] [blame] | 569 | The AMD Secure Processor provides support for the Cryptographic Coprocessor |
| 570 | (CCP) and the Platform Security Processor (PSP) devices. |
Tom Lendacky | f114766 | 2013-11-12 11:46:51 -0600 | [diff] [blame] | 571 | |
| 572 | if CRYPTO_DEV_CCP |
| 573 | source "drivers/crypto/ccp/Kconfig" |
| 574 | endif |
| 575 | |
Marek Vasut | 15b59e7 | 2013-12-10 20:26:21 +0100 | [diff] [blame] | 576 | config CRYPTO_DEV_MXS_DCP |
| 577 | tristate "Support for Freescale MXS DCP" |
Fabio Estevam | a2712e6 | 2015-09-02 12:05:18 -0300 | [diff] [blame] | 578 | depends on (ARCH_MXS || ARCH_MXC) |
Arnd Bergmann | dc97fa0 | 2015-10-12 15:52:34 +0200 | [diff] [blame] | 579 | select STMP_DEVICE |
Marek Vasut | 15b59e7 | 2013-12-10 20:26:21 +0100 | [diff] [blame] | 580 | select CRYPTO_CBC |
| 581 | select CRYPTO_ECB |
| 582 | select CRYPTO_AES |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 583 | select CRYPTO_SKCIPHER |
Herbert Xu | 596103c | 2015-06-17 14:58:24 +0800 | [diff] [blame] | 584 | select CRYPTO_HASH |
Marek Vasut | 15b59e7 | 2013-12-10 20:26:21 +0100 | [diff] [blame] | 585 | help |
| 586 | The Freescale i.MX23/i.MX28 has SHA1/SHA256 and AES128 CBC/ECB |
| 587 | co-processor on the die. |
| 588 | |
| 589 | To compile this driver as a module, choose M here: the module |
| 590 | will be called mxs-dcp. |
| 591 | |
Tadeusz Struk | cea4001 | 2014-06-05 13:44:39 -0700 | [diff] [blame] | 592 | source "drivers/crypto/qat/Kconfig" |
George Cherian | 62ad8b5 | 2017-02-07 14:51:15 +0000 | [diff] [blame] | 593 | source "drivers/crypto/cavium/cpt/Kconfig" |
Srikanth Jampala | 14fa93c | 2017-05-30 17:28:01 +0530 | [diff] [blame] | 594 | source "drivers/crypto/cavium/nitrox/Kconfig" |
SrujanaChalla | 655ff1a | 2020-03-13 17:17:05 +0530 | [diff] [blame] | 595 | source "drivers/crypto/marvell/Kconfig" |
Stanimir Varbanov | c672752 | 2014-06-25 19:28:58 +0300 | [diff] [blame] | 596 | |
Mahipal Challa | 640035a | 2017-02-15 10:45:08 +0530 | [diff] [blame] | 597 | config CRYPTO_DEV_CAVIUM_ZIP |
| 598 | tristate "Cavium ZIP driver" |
| 599 | depends on PCI && 64BIT && (ARM64 || COMPILE_TEST) |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 600 | help |
Mahipal Challa | 640035a | 2017-02-15 10:45:08 +0530 | [diff] [blame] | 601 | Select this option if you want to enable compression/decompression |
| 602 | acceleration on Cavium's ARM based SoCs |
| 603 | |
Stanimir Varbanov | c672752 | 2014-06-25 19:28:58 +0300 | [diff] [blame] | 604 | config CRYPTO_DEV_QCE |
| 605 | tristate "Qualcomm crypto engine accelerator" |
Geert Uytterhoeven | ee1b23d | 2018-04-17 19:49:03 +0200 | [diff] [blame] | 606 | depends on ARCH_QCOM || COMPILE_TEST |
| 607 | depends on HAS_IOMEM |
Eneas U de Queiroz | 59e056c | 2019-12-20 16:02:18 -0300 | [diff] [blame] | 608 | help |
| 609 | This driver supports Qualcomm crypto engine accelerator |
| 610 | hardware. To compile this driver as a module, choose M here. The |
| 611 | module will be called qcrypto. |
| 612 | |
| 613 | config CRYPTO_DEV_QCE_SKCIPHER |
| 614 | bool |
| 615 | depends on CRYPTO_DEV_QCE |
Stanimir Varbanov | c672752 | 2014-06-25 19:28:58 +0300 | [diff] [blame] | 616 | select CRYPTO_AES |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 617 | select CRYPTO_LIB_DES |
Stanimir Varbanov | c672752 | 2014-06-25 19:28:58 +0300 | [diff] [blame] | 618 | select CRYPTO_ECB |
| 619 | select CRYPTO_CBC |
| 620 | select CRYPTO_XTS |
| 621 | select CRYPTO_CTR |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 622 | select CRYPTO_SKCIPHER |
Eneas U de Queiroz | 59e056c | 2019-12-20 16:02:18 -0300 | [diff] [blame] | 623 | |
| 624 | config CRYPTO_DEV_QCE_SHA |
| 625 | bool |
| 626 | depends on CRYPTO_DEV_QCE |
Sivaprakash Murugesan | 8ac1b9cc | 2020-06-22 11:45:04 +0530 | [diff] [blame] | 627 | select CRYPTO_SHA1 |
| 628 | select CRYPTO_SHA256 |
Eneas U de Queiroz | 59e056c | 2019-12-20 16:02:18 -0300 | [diff] [blame] | 629 | |
| 630 | choice |
| 631 | prompt "Algorithms enabled for QCE acceleration" |
| 632 | default CRYPTO_DEV_QCE_ENABLE_ALL |
| 633 | depends on CRYPTO_DEV_QCE |
Stanimir Varbanov | c672752 | 2014-06-25 19:28:58 +0300 | [diff] [blame] | 634 | help |
Colin Ian King | 2e0e386 | 2020-11-14 12:12:27 +0000 | [diff] [blame] | 635 | This option allows to choose whether to build support for all algorithms |
Eneas U de Queiroz | 59e056c | 2019-12-20 16:02:18 -0300 | [diff] [blame] | 636 | (default), hashes-only, or skciphers-only. |
| 637 | |
| 638 | The QCE engine does not appear to scale as well as the CPU to handle |
| 639 | multiple crypto requests. While the ipq40xx chips have 4-core CPUs, the |
| 640 | QCE handles only 2 requests in parallel. |
| 641 | |
| 642 | Ipsec throughput seems to improve when disabling either family of |
| 643 | algorithms, sharing the load with the CPU. Enabling skciphers-only |
| 644 | appears to work best. |
| 645 | |
| 646 | config CRYPTO_DEV_QCE_ENABLE_ALL |
| 647 | bool "All supported algorithms" |
| 648 | select CRYPTO_DEV_QCE_SKCIPHER |
| 649 | select CRYPTO_DEV_QCE_SHA |
| 650 | help |
| 651 | Enable all supported algorithms: |
| 652 | - AES (CBC, CTR, ECB, XTS) |
| 653 | - 3DES (CBC, ECB) |
| 654 | - DES (CBC, ECB) |
| 655 | - SHA1, HMAC-SHA1 |
| 656 | - SHA256, HMAC-SHA256 |
| 657 | |
| 658 | config CRYPTO_DEV_QCE_ENABLE_SKCIPHER |
| 659 | bool "Symmetric-key ciphers only" |
| 660 | select CRYPTO_DEV_QCE_SKCIPHER |
| 661 | help |
| 662 | Enable symmetric-key ciphers only: |
| 663 | - AES (CBC, CTR, ECB, XTS) |
| 664 | - 3DES (ECB, CBC) |
| 665 | - DES (ECB, CBC) |
| 666 | |
| 667 | config CRYPTO_DEV_QCE_ENABLE_SHA |
| 668 | bool "Hash/HMAC only" |
| 669 | select CRYPTO_DEV_QCE_SHA |
| 670 | help |
| 671 | Enable hashes/HMAC algorithms only: |
| 672 | - SHA1, HMAC-SHA1 |
| 673 | - SHA256, HMAC-SHA256 |
| 674 | |
| 675 | endchoice |
Stanimir Varbanov | c672752 | 2014-06-25 19:28:58 +0300 | [diff] [blame] | 676 | |
Eneas U de Queiroz | ce163ba | 2020-02-07 12:02:26 -0300 | [diff] [blame] | 677 | config CRYPTO_DEV_QCE_SW_MAX_LEN |
| 678 | int "Default maximum request size to use software for AES" |
| 679 | depends on CRYPTO_DEV_QCE && CRYPTO_DEV_QCE_SKCIPHER |
| 680 | default 512 |
| 681 | help |
| 682 | This sets the default maximum request size to perform AES requests |
| 683 | using software instead of the crypto engine. It can be changed by |
| 684 | setting the aes_sw_max_len parameter. |
| 685 | |
| 686 | Small blocks are processed faster in software than hardware. |
| 687 | Considering the 256-bit ciphers, software is 2-3 times faster than |
| 688 | qce at 256-bytes, 30% faster at 512, and about even at 768-bytes. |
| 689 | With 128-bit keys, the break-even point would be around 1024-bytes. |
| 690 | |
| 691 | The default is set a little lower, to 512 bytes, to balance the |
| 692 | cost in CPU usage. The minimum recommended setting is 16-bytes |
| 693 | (1 AES block), since AES-GCM will fail if you set it lower. |
| 694 | Setting this to zero will send all requests to the hardware. |
| 695 | |
| 696 | Note that 192-bit keys are not supported by the hardware and are |
| 697 | always processed by the software fallback, and all DES requests |
| 698 | are done by the hardware. |
| 699 | |
Vinod Koul | ceec5f5 | 2018-07-16 11:20:24 +0530 | [diff] [blame] | 700 | config CRYPTO_DEV_QCOM_RNG |
| 701 | tristate "Qualcomm Random Number Generator Driver" |
| 702 | depends on ARCH_QCOM || COMPILE_TEST |
| 703 | select CRYPTO_RNG |
| 704 | help |
| 705 | This driver provides support for the Random Number |
| 706 | Generator hardware found on Qualcomm SoCs. |
| 707 | |
| 708 | To compile this driver as a module, choose M here. The |
Krzysztof Kozlowski | 2452cfd | 2019-11-21 04:20:48 +0100 | [diff] [blame] | 709 | module will be called qcom-rng. If unsure, say N. |
Vinod Koul | ceec5f5 | 2018-07-16 11:20:24 +0530 | [diff] [blame] | 710 | |
Leonidas S. Barbosa | d2e3ae6 | 2015-02-06 14:59:48 -0200 | [diff] [blame] | 711 | config CRYPTO_DEV_VMX |
| 712 | bool "Support for VMX cryptographic acceleration instructions" |
Michael Ellerman | f1ab428 | 2015-09-09 18:22:35 +1000 | [diff] [blame] | 713 | depends on PPC64 && VSX |
Leonidas S. Barbosa | d2e3ae6 | 2015-02-06 14:59:48 -0200 | [diff] [blame] | 714 | help |
| 715 | Support for VMX cryptographic acceleration instructions. |
| 716 | |
| 717 | source "drivers/crypto/vmx/Kconfig" |
| 718 | |
James Hartley | d358f1a | 2015-03-12 23:17:26 +0000 | [diff] [blame] | 719 | config CRYPTO_DEV_IMGTEC_HASH |
James Hartley | d358f1a | 2015-03-12 23:17:26 +0000 | [diff] [blame] | 720 | tristate "Imagination Technologies hardware hash accelerator" |
Geert Uytterhoeven | 8c98ebd | 2015-04-23 20:03:58 +0200 | [diff] [blame] | 721 | depends on MIPS || COMPILE_TEST |
James Hartley | d358f1a | 2015-03-12 23:17:26 +0000 | [diff] [blame] | 722 | select CRYPTO_MD5 |
| 723 | select CRYPTO_SHA1 |
James Hartley | d358f1a | 2015-03-12 23:17:26 +0000 | [diff] [blame] | 724 | select CRYPTO_SHA256 |
| 725 | select CRYPTO_HASH |
| 726 | help |
| 727 | This driver interfaces with the Imagination Technologies |
| 728 | hardware hash accelerator. Supporting MD5/SHA1/SHA224/SHA256 |
| 729 | hashing algorithms. |
| 730 | |
Zain Wang | 433cd2c | 2015-11-25 13:43:32 +0800 | [diff] [blame] | 731 | config CRYPTO_DEV_ROCKCHIP |
| 732 | tristate "Rockchip's Cryptographic Engine driver" |
| 733 | depends on OF && ARCH_ROCKCHIP |
| 734 | select CRYPTO_AES |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 735 | select CRYPTO_LIB_DES |
Zain Wang | bfd927f | 2016-02-16 10:15:01 +0800 | [diff] [blame] | 736 | select CRYPTO_MD5 |
| 737 | select CRYPTO_SHA1 |
| 738 | select CRYPTO_SHA256 |
| 739 | select CRYPTO_HASH |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 740 | select CRYPTO_SKCIPHER |
Zain Wang | 433cd2c | 2015-11-25 13:43:32 +0800 | [diff] [blame] | 741 | |
| 742 | help |
| 743 | This driver interfaces with the hardware crypto accelerator. |
| 744 | Supporting cbc/ecb chainmode, and aes/des/des3_ede cipher mode. |
| 745 | |
Kalyani Akula | 4d96f7d | 2020-02-17 15:56:43 +0530 | [diff] [blame] | 746 | config CRYPTO_DEV_ZYNQMP_AES |
| 747 | tristate "Support for Xilinx ZynqMP AES hw accelerator" |
| 748 | depends on ZYNQMP_FIRMWARE || COMPILE_TEST |
| 749 | select CRYPTO_AES |
| 750 | select CRYPTO_ENGINE |
| 751 | select CRYPTO_AEAD |
| 752 | help |
| 753 | Xilinx ZynqMP has AES-GCM engine used for symmetric key |
| 754 | encryption and decryption. This driver interfaces with AES hw |
| 755 | accelerator. Select this if you want to use the ZynqMP module |
| 756 | for AES algorithms. |
| 757 | |
Hariprasad Shenai | 02038fd | 2016-08-17 12:33:06 +0530 | [diff] [blame] | 758 | source "drivers/crypto/chelsio/Kconfig" |
| 759 | |
Gonglei | dbaf062 | 2016-12-15 10:03:16 +0800 | [diff] [blame] | 760 | source "drivers/crypto/virtio/Kconfig" |
| 761 | |
Rob Rice | 9d12ba8 | 2017-02-03 12:55:33 -0500 | [diff] [blame] | 762 | config CRYPTO_DEV_BCM_SPU |
| 763 | tristate "Broadcom symmetric crypto/hash acceleration support" |
| 764 | depends on ARCH_BCM_IPROC |
raveendra padasalagi | efc856e | 2017-07-11 15:50:06 +0530 | [diff] [blame] | 765 | depends on MAILBOX |
Rob Rice | 9d12ba8 | 2017-02-03 12:55:33 -0500 | [diff] [blame] | 766 | default m |
Eric Biggers | ab57b33 | 2018-12-16 23:23:23 -0800 | [diff] [blame] | 767 | select CRYPTO_AUTHENC |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 768 | select CRYPTO_LIB_DES |
Rob Rice | 9d12ba8 | 2017-02-03 12:55:33 -0500 | [diff] [blame] | 769 | select CRYPTO_MD5 |
| 770 | select CRYPTO_SHA1 |
| 771 | select CRYPTO_SHA256 |
| 772 | select CRYPTO_SHA512 |
| 773 | help |
| 774 | This driver provides support for Broadcom crypto acceleration using the |
Ard Biesheuvel | a9c01cd | 2019-11-09 18:09:35 +0100 | [diff] [blame] | 775 | Secure Processing Unit (SPU). The SPU driver registers skcipher, |
Rob Rice | 9d12ba8 | 2017-02-03 12:55:33 -0500 | [diff] [blame] | 776 | ahash, and aead algorithms with the kernel cryptographic API. |
| 777 | |
Fabien DESSENNE | b51dbe9 | 2017-03-21 16:13:28 +0100 | [diff] [blame] | 778 | source "drivers/crypto/stm32/Kconfig" |
| 779 | |
Antoine Ténart | 1b44c5a | 2017-05-24 16:10:34 +0200 | [diff] [blame] | 780 | config CRYPTO_DEV_SAFEXCEL |
| 781 | tristate "Inside Secure's SafeXcel cryptographic engine driver" |
Brendan Higgins | 6dc0e31 | 2019-12-11 11:27:39 -0800 | [diff] [blame] | 782 | depends on (OF || PCI || COMPILE_TEST) && HAS_IOMEM |
Ard Biesheuvel | 363a90c | 2019-07-02 21:41:27 +0200 | [diff] [blame] | 783 | select CRYPTO_LIB_AES |
Antoine Tenart | f6beaea | 2018-05-14 15:11:02 +0200 | [diff] [blame] | 784 | select CRYPTO_AUTHENC |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 785 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 786 | select CRYPTO_LIB_DES |
Antoine Ténart | 1b44c5a | 2017-05-24 16:10:34 +0200 | [diff] [blame] | 787 | select CRYPTO_HASH |
| 788 | select CRYPTO_HMAC |
Ofer Heifetz | 293f89c | 2018-06-28 17:21:53 +0200 | [diff] [blame] | 789 | select CRYPTO_MD5 |
Antoine Ténart | 1b44c5a | 2017-05-24 16:10:34 +0200 | [diff] [blame] | 790 | select CRYPTO_SHA1 |
| 791 | select CRYPTO_SHA256 |
| 792 | select CRYPTO_SHA512 |
Pascal van Leeuwen | fc0f82b | 2019-09-18 23:25:58 +0200 | [diff] [blame] | 793 | select CRYPTO_CHACHA20POLY1305 |
Pascal van Leeuwen | 1d448f2 | 2019-09-13 20:56:49 +0200 | [diff] [blame] | 794 | select CRYPTO_SHA3 |
Antoine Ténart | 1b44c5a | 2017-05-24 16:10:34 +0200 | [diff] [blame] | 795 | help |
Pascal van Leeuwen | 0f6e5c8 | 2019-08-19 16:40:23 +0200 | [diff] [blame] | 796 | This driver interfaces with the SafeXcel EIP-97 and EIP-197 cryptographic |
| 797 | engines designed by Inside Secure. It currently accelerates DES, 3DES and |
| 798 | AES block ciphers in ECB and CBC mode, as well as SHA1, SHA224, SHA256, |
| 799 | SHA384 and SHA512 hash algorithms for both basic hash and HMAC. |
| 800 | Additionally, it accelerates combined AES-CBC/HMAC-SHA AEAD operations. |
Antoine Ténart | 1b44c5a | 2017-05-24 16:10:34 +0200 | [diff] [blame] | 801 | |
Lars Persson | a21eb94 | 2017-08-10 14:53:53 +0200 | [diff] [blame] | 802 | config CRYPTO_DEV_ARTPEC6 |
| 803 | tristate "Support for Axis ARTPEC-6/7 hardware crypto acceleration." |
| 804 | depends on ARM && (ARCH_ARTPEC || COMPILE_TEST) |
Lars Persson | a21eb94 | 2017-08-10 14:53:53 +0200 | [diff] [blame] | 805 | depends on OF |
| 806 | select CRYPTO_AEAD |
| 807 | select CRYPTO_AES |
| 808 | select CRYPTO_ALGAPI |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 809 | select CRYPTO_SKCIPHER |
Lars Persson | a21eb94 | 2017-08-10 14:53:53 +0200 | [diff] [blame] | 810 | select CRYPTO_CTR |
| 811 | select CRYPTO_HASH |
| 812 | select CRYPTO_SHA1 |
| 813 | select CRYPTO_SHA256 |
Lars Persson | a21eb94 | 2017-08-10 14:53:53 +0200 | [diff] [blame] | 814 | select CRYPTO_SHA512 |
| 815 | help |
| 816 | Enables the driver for the on-chip crypto accelerator |
| 817 | of Axis ARTPEC SoCs. |
| 818 | |
| 819 | To compile this driver as a module, choose M here. |
| 820 | |
Gilad Ben-Yossef | 4c3f972 | 2018-01-22 09:27:00 +0000 | [diff] [blame] | 821 | config CRYPTO_DEV_CCREE |
| 822 | tristate "Support for ARM TrustZone CryptoCell family of security processors" |
| 823 | depends on CRYPTO && CRYPTO_HW && OF && HAS_DMA |
| 824 | default n |
| 825 | select CRYPTO_HASH |
Eric Biggers | b95bba5 | 2019-10-25 12:41:13 -0700 | [diff] [blame] | 826 | select CRYPTO_SKCIPHER |
Ard Biesheuvel | 04007b0 | 2019-08-15 12:01:09 +0300 | [diff] [blame] | 827 | select CRYPTO_LIB_DES |
Gilad Ben-Yossef | 4c3f972 | 2018-01-22 09:27:00 +0000 | [diff] [blame] | 828 | select CRYPTO_AEAD |
| 829 | select CRYPTO_AUTHENC |
| 830 | select CRYPTO_SHA1 |
| 831 | select CRYPTO_MD5 |
| 832 | select CRYPTO_SHA256 |
| 833 | select CRYPTO_SHA512 |
| 834 | select CRYPTO_HMAC |
| 835 | select CRYPTO_AES |
| 836 | select CRYPTO_CBC |
| 837 | select CRYPTO_ECB |
| 838 | select CRYPTO_CTR |
| 839 | select CRYPTO_XTS |
Gilad Ben-Yossef | 9b8d51f | 2018-10-29 09:50:14 +0000 | [diff] [blame] | 840 | select CRYPTO_SM4 |
Yael Chemla | 927574e | 2018-10-18 13:59:59 +0100 | [diff] [blame] | 841 | select CRYPTO_SM3 |
Gilad Ben-Yossef | 4c3f972 | 2018-01-22 09:27:00 +0000 | [diff] [blame] | 842 | help |
Gilad Ben-Yossef | 27b3b22 | 2018-02-19 14:51:23 +0000 | [diff] [blame] | 843 | Say 'Y' to enable a driver for the REE interface of the Arm |
| 844 | TrustZone CryptoCell family of processors. Currently the |
Gilad Ben-Yossef | 1c876a9 | 2018-11-13 09:40:35 +0000 | [diff] [blame] | 845 | CryptoCell 713, 703, 712, 710 and 630 are supported. |
Gilad Ben-Yossef | 4c3f972 | 2018-01-22 09:27:00 +0000 | [diff] [blame] | 846 | Choose this if you wish to use hardware acceleration of |
| 847 | cryptographic operations on the system REE. |
| 848 | If unsure say Y. |
| 849 | |
Jonathan Cameron | 915e4e8 | 2018-07-23 16:49:54 +0100 | [diff] [blame] | 850 | source "drivers/crypto/hisilicon/Kconfig" |
| 851 | |
Corentin Labbe | 48fe583 | 2019-10-17 05:06:25 +0000 | [diff] [blame] | 852 | source "drivers/crypto/amlogic/Kconfig" |
| 853 | |
Keerthy | 7694b6c | 2020-07-13 11:34:22 +0300 | [diff] [blame] | 854 | config CRYPTO_DEV_SA2UL |
| 855 | tristate "Support for TI security accelerator" |
| 856 | depends on ARCH_K3 || COMPILE_TEST |
| 857 | select ARM64_CRYPTO |
| 858 | select CRYPTO_AES |
| 859 | select CRYPTO_AES_ARM64 |
| 860 | select CRYPTO_ALGAPI |
Herbert Xu | 61f033ba1 | 2020-09-07 16:22:40 +1000 | [diff] [blame] | 861 | select CRYPTO_AUTHENC |
Randy Dunlap | bfe8fe9 | 2020-08-06 08:54:48 -0700 | [diff] [blame] | 862 | select CRYPTO_SHA1 |
| 863 | select CRYPTO_SHA256 |
| 864 | select CRYPTO_SHA512 |
Keerthy | 7694b6c | 2020-07-13 11:34:22 +0300 | [diff] [blame] | 865 | select HW_RANDOM |
| 866 | select SG_SPLIT |
| 867 | help |
| 868 | K3 devices include a security accelerator engine that may be |
| 869 | used for crypto offload. Select this if you want to use hardware |
| 870 | acceleration for cryptographic algorithms on these devices. |
| 871 | |
Mike Healy | 8857433 | 2020-11-26 11:51:48 +0000 | [diff] [blame] | 872 | source "drivers/crypto/keembay/Kconfig" |
| 873 | |
Jan Engelhardt | b511431 | 2007-07-15 23:39:36 -0700 | [diff] [blame] | 874 | endif # CRYPTO_HW |