This includes the TEE driver api implementation for OP-TEE. It provides an interface to the OP-TEE TrustZone from the Normal space to start sessions and request functions of the TA. - targets ARM and ARM64; - use SMC to connect to OP-TEE; - accepts requests on privileged and unprivileged device. Signed-off-by: Oleksii Moisieiev <oleksii_moisieiev@epam.com>
18 lines
284 B
Text
18 lines
284 B
Text
# Copyright (c) 2023 EPAM Systems
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig TEE
|
|
bool "Trusted Environment Drivers"
|
|
help
|
|
Include TEE drivers in system config
|
|
|
|
if TEE
|
|
|
|
module = TEE
|
|
module-str = tee
|
|
|
|
comment "Device Drivers"
|
|
|
|
source "drivers/tee/optee/Kconfig"
|
|
|
|
endif # TEE
|