Kconfig 2.3 KB

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