Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. config CRYPTO_DEV_CCP_DD
  2. tristate "Secure Processor device driver"
  3. depends on CPU_SUP_AMD || ARM64
  4. default m
  5. help
  6. Provides AMD Secure Processor device driver.
  7. If you choose 'M' here, this module will be called ccp.
  8. config CRYPTO_DEV_SP_CCP
  9. bool "Cryptographic Coprocessor device"
  10. default y
  11. depends on CRYPTO_DEV_CCP_DD && DMADEVICES
  12. select HW_RANDOM
  13. select DMA_ENGINE
  14. select CRYPTO_SHA1
  15. select CRYPTO_SHA256
  16. help
  17. Provides the support for AMD Cryptographic Coprocessor (CCP) device
  18. which can be used to offload encryption operations such as SHA, AES
  19. and more.
  20. config CRYPTO_DEV_CCP_CRYPTO
  21. tristate "Encryption and hashing offload support"
  22. default m
  23. depends on CRYPTO_DEV_CCP_DD
  24. depends on CRYPTO_DEV_SP_CCP
  25. select CRYPTO_HASH
  26. select CRYPTO_BLKCIPHER
  27. select CRYPTO_AUTHENC
  28. select CRYPTO_RSA
  29. help
  30. Support for using the cryptographic API with the AMD Cryptographic
  31. Coprocessor. This module supports offload of SHA and AES algorithms.
  32. If you choose 'M' here, this module will be called ccp_crypto.
  33. config CRYPTO_DEV_SP_PSP
  34. bool "Platform Security Processor (PSP) device"
  35. default y
  36. depends on CRYPTO_DEV_CCP_DD && X86_64
  37. help
  38. Provide support for the AMD Platform Security Processor (PSP).
  39. The PSP is a dedicated processor that provides support for key
  40. management commands in Secure Encrypted Virtualization (SEV) mode,
  41. along with software-based Trusted Execution Environment (TEE) to
  42. enable third-party trusted applications.