mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
eadf26f183
Adds a sandbox tee driver which emulates a generic TEE with the OP-TEE AVB TA. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org> [trini: Fix printf warnings in ta_avb_invoke_func, slots is uint] Signed-off-by: Tom Rini <trini@konsulko.com>
27 lines
788 B
Text
27 lines
788 B
Text
# OP-TEE Trusted Execution Environment Configuration
|
|
config OPTEE
|
|
bool "OP-TEE"
|
|
depends on ARM_SMCCC
|
|
help
|
|
This implements the OP-TEE Trusted Execution Environment (TEE)
|
|
driver. OP-TEE is a Trusted OS designed primarily to rely on the
|
|
ARM TrustZone(R) technology as the underlying hardware isolation
|
|
mechanism. This driver can request services from OP-TEE, but also
|
|
handle Remote Procedure Calls (RPC) from OP-TEE needed to
|
|
execute a service. For more information see: https://www.op-tee.org
|
|
|
|
if OPTEE || SANDBOX
|
|
|
|
menu "OP-TEE options"
|
|
|
|
config OPTEE_TA_AVB
|
|
bool "Support AVB TA"
|
|
default y
|
|
help
|
|
Enables support for the AVB Trusted Application (TA) in OP-TEE.
|
|
The TA can support the "avb" subcommands "read_rb", "write"rb"
|
|
and "is_unlocked".
|
|
|
|
endmenu
|
|
|
|
endif
|