diff options
Diffstat (limited to 'drivers/crypto/Kconfig')
-rw-r--r-- | drivers/crypto/Kconfig | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig index 2fb0fdfc87df..800bf41718e1 100644 --- a/drivers/crypto/Kconfig +++ b/drivers/crypto/Kconfig | |||
@@ -391,7 +391,7 @@ config CRYPTO_DEV_ATMEL_SHA | |||
391 | 391 | ||
392 | config CRYPTO_DEV_CCP | 392 | config CRYPTO_DEV_CCP |
393 | bool "Support for AMD Cryptographic Coprocessor" | 393 | bool "Support for AMD Cryptographic Coprocessor" |
394 | depends on (X86 && PCI) || ARM64 | 394 | depends on ((X86 && PCI) || (ARM64 && (OF_ADDRESS || ACPI))) && HAS_IOMEM |
395 | default n | 395 | default n |
396 | help | 396 | help |
397 | The AMD Cryptographic Coprocessor provides hardware support | 397 | The AMD Cryptographic Coprocessor provides hardware support |
@@ -436,4 +436,26 @@ config CRYPTO_DEV_QCE | |||
436 | hardware. To compile this driver as a module, choose M here. The | 436 | hardware. To compile this driver as a module, choose M here. The |
437 | module will be called qcrypto. | 437 | module will be called qcrypto. |
438 | 438 | ||
439 | config CRYPTO_DEV_VMX | ||
440 | bool "Support for VMX cryptographic acceleration instructions" | ||
441 | depends on PPC64 | ||
442 | default n | ||
443 | help | ||
444 | Support for VMX cryptographic acceleration instructions. | ||
445 | |||
446 | source "drivers/crypto/vmx/Kconfig" | ||
447 | |||
448 | config CRYPTO_DEV_IMGTEC_HASH | ||
449 | depends on MIPS || COMPILE_TEST | ||
450 | tristate "Imagination Technologies hardware hash accelerator" | ||
451 | select CRYPTO_ALGAPI | ||
452 | select CRYPTO_MD5 | ||
453 | select CRYPTO_SHA1 | ||
454 | select CRYPTO_SHA256 | ||
455 | select CRYPTO_HASH | ||
456 | help | ||
457 | This driver interfaces with the Imagination Technologies | ||
458 | hardware hash accelerator. Supporting MD5/SHA1/SHA224/SHA256 | ||
459 | hashing algorithms. | ||
460 | |||
439 | endif # CRYPTO_HW | 461 | endif # CRYPTO_HW |