Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: d434405aaab7d0ebc516b68a8fc4100922d7f5ef authored by Linus Torvalds on 11 April 2021, 22:16:13 UTC
Linux 5.12-rc7
Tip revision: d434405
Kconfig
# SPDX-License-Identifier: GPL-2.0-only
# Generic Trusted Execution Environment Configuration
config TEE
	tristate "Trusted Execution Environment support"
	depends on HAVE_ARM_SMCCC || COMPILE_TEST || CPU_SUP_AMD
	select CRYPTO
	select CRYPTO_SHA1
	select DMA_SHARED_BUFFER
	select GENERIC_ALLOCATOR
	help
	  This implements a generic interface towards a Trusted Execution
	  Environment (TEE).

if TEE

menu "TEE drivers"

source "drivers/tee/optee/Kconfig"
source "drivers/tee/amdtee/Kconfig"
endmenu

endif
back to top