diff options
author | Jens Wiklander <jens.wiklander@linaro.org> | 2018-09-25 16:40:11 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-10-07 10:47:38 -0400 |
commit | d4bd3d25d8b032da8de9c79cbe103d47a3d160df (patch) | |
tree | 93c4c2d181803ca73fb0997624e2bbf63c6bc860 /drivers/tee/Makefile | |
parent | 53b6aac7b1a1fa057403a619e3716b7f8baed211 (diff) |
tee: add OP-TEE driver
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>
Diffstat (limited to 'drivers/tee/Makefile')
-rw-r--r-- | drivers/tee/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tee/Makefile b/drivers/tee/Makefile index b6d8e16e62..19633b60f2 100644 --- a/drivers/tee/Makefile +++ b/drivers/tee/Makefile @@ -1,3 +1,4 @@ # SPDX-License-Identifier: GPL-2.0+ obj-y += tee-uclass.o +obj-$(CONFIG_OPTEE) += optee/ |