mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 21:54:37 +08:00
d4bd3d25d8
Adds a OP-TEE driver. * Targets ARM and ARM64 * Supports using any U-Boot memory as shared memory * Probes OP-TEE version using SMCs * Uses OPTEE message protocol version 2 to communicate with secure world Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Igor Opaniuk <igor.opaniuk@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
22 lines
554 B
Plaintext
22 lines
554 B
Plaintext
# 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
|