Kconfig 993 字节
Newer Older
1
config CRYPTO_DEV_CCP_DD
2
	tristate "Secure Processor device driver"
3
	default m
4 5 6 7 8 9 10 11
	help
	  Provides AMD Secure Processor device driver.
	  If you choose 'M' here, this module will be called ccp.

config CRYPTO_DEV_SP_CCP
	bool "Cryptographic Coprocessor device"
	default y
	depends on CRYPTO_DEV_CCP_DD
T
Tom Lendacky 已提交
12
	select HW_RANDOM
13
	select DMA_ENGINE
14
	select DMADEVICES
15 16
	select CRYPTO_SHA1
	select CRYPTO_SHA256
17
	help
18 19 20
	  Provides the support for AMD Cryptographic Coprocessor (CCP) device
	  which can be used to offload encryption operations such as SHA, AES
	  and more.
21 22

config CRYPTO_DEV_CCP_CRYPTO
23
	tristate "Encryption and hashing offload support"
24
	default m
25 26
	depends on CRYPTO_DEV_CCP_DD
	depends on CRYPTO_DEV_SP_CCP
27 28 29 30 31
	select CRYPTO_HASH
	select CRYPTO_BLKCIPHER
	select CRYPTO_AUTHENC
	help
	  Support for using the cryptographic API with the AMD Cryptographic
32 33
	  Coprocessor. This module supports offload of SHA and AES algorithms.
	  If you choose 'M' here, this module will be called ccp_crypto.