aboutsummaryrefslogtreecommitdiff
path: root/drivers/tee/Kconfig
blob: 835c256e9239493ba66e8335a3313f5c8abbe8c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Generic Trusted Execution Environment Configuration
config TEE
	bool "Trusted Execution Environment support"
	depends on ARM && (ARM64 || CPU_V7A)
	select ARM_SMCCC
	help
	  This implements a generic interface towards a Trusted Execution
	  Environment (TEE). A TEE is a trusted OS running in some secure
	  environment, for example, TrustZone on ARM cpus, or a separate
	  secure co-processor etc. See also:
	  https://en.wikipedia.org/wiki/Trusted_execution_environment

if TEE

menu "TEE drivers"

source "drivers/tee/optee/Kconfig"

endmenu

endif