Kconfig 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. menuconfig CRYPTO_HW
  2. bool "Hardware crypto devices"
  3. default y
  4. ---help---
  5. Say Y here to get to see options for hardware crypto devices and
  6. processors. This option alone does not add any kernel code.
  7. If you say N, all options in this submenu will be skipped and disabled.
  8. if CRYPTO_HW
  9. config CRYPTO_DEV_PADLOCK
  10. tristate "Support for VIA PadLock ACE"
  11. depends on X86_32
  12. select CRYPTO_ALGAPI
  13. help
  14. Some VIA processors come with an integrated crypto engine
  15. (so called VIA PadLock ACE, Advanced Cryptography Engine)
  16. that provides instructions for very fast cryptographic
  17. operations with supported algorithms.
  18. The instructions are used only when the CPU supports them.
  19. Otherwise software encryption is used.
  20. config CRYPTO_DEV_PADLOCK_AES
  21. tristate "PadLock driver for AES algorithm"
  22. depends on CRYPTO_DEV_PADLOCK
  23. select CRYPTO_BLKCIPHER
  24. help
  25. Use VIA PadLock for AES algorithm.
  26. Available in VIA C3 and newer CPUs.
  27. If unsure say M. The compiled module will be
  28. called padlock-aes.ko
  29. config CRYPTO_DEV_PADLOCK_SHA
  30. tristate "PadLock driver for SHA1 and SHA256 algorithms"
  31. depends on CRYPTO_DEV_PADLOCK
  32. select CRYPTO_SHA1
  33. select CRYPTO_SHA256
  34. help
  35. Use VIA PadLock for SHA1/SHA256 algorithms.
  36. Available in VIA C7 and newer processors.
  37. If unsure say M. The compiled module will be
  38. called padlock-sha.ko
  39. source "arch/s390/crypto/Kconfig"
  40. config CRYPTO_DEV_GEODE
  41. tristate "Support for the Geode LX AES engine"
  42. depends on X86_32 && PCI
  43. select CRYPTO_ALGAPI
  44. select CRYPTO_BLKCIPHER
  45. help
  46. Say 'Y' here to use the AMD Geode LX processor on-board AES
  47. engine for the CryptoAPI AES algorithm.
  48. To compile this driver as a module, choose M here: the module
  49. will be called geode-aes.
  50. config ZCRYPT
  51. tristate "Support for PCI-attached cryptographic adapters"
  52. depends on S390
  53. select ZCRYPT_MONOLITHIC if ZCRYPT="y"
  54. help
  55. Select this option if you want to use a PCI-attached cryptographic
  56. adapter like:
  57. + PCI Cryptographic Accelerator (PCICA)
  58. + PCI Cryptographic Coprocessor (PCICC)
  59. + PCI-X Cryptographic Coprocessor (PCIXCC)
  60. + Crypto Express2 Coprocessor (CEX2C)
  61. + Crypto Express2 Accelerator (CEX2A)
  62. config ZCRYPT_MONOLITHIC
  63. bool "Monolithic zcrypt module"
  64. depends on ZCRYPT="m"
  65. help
  66. Select this option if you want to have a single module z90crypt.ko
  67. that contains all parts of the crypto device driver (ap bus,
  68. request router and all the card drivers).
  69. endif # CRYPTO_HW