Kconfig 2.5 KB

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