xref: /linux/drivers/tee/Kconfig (revision 8b4a5c2497fad653bc54ddb037d38eb5bf835857)
1# SPDX-License-Identifier: GPL-2.0-only
2# Generic Trusted Execution Environment Configuration
3menuconfig TEE
4	tristate "Trusted Execution Environment support"
5	depends on HAVE_ARM_SMCCC || COMPILE_TEST || CPU_SUP_AMD
6	select CRYPTO
7	select CRYPTO_SHA1
8	select DMA_SHARED_BUFFER
9	select GENERIC_ALLOCATOR
10	help
11	  This implements a generic interface towards a Trusted Execution
12	  Environment (TEE).
13
14if TEE
15
16source "drivers/tee/optee/Kconfig"
17source "drivers/tee/amdtee/Kconfig"
18source "drivers/tee/tstee/Kconfig"
19
20endif
21