mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
12 lines
474 B
Text
12 lines
474 B
Text
|
# 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
|