]> git.baikalelectronics.ru Git - uboot.git/commit
Add UCLASS_TEE for Trusted Execution Environment
authorJens Wiklander <jens.wiklander@linaro.org>
Tue, 25 Sep 2018 14:40:09 +0000 (16:40 +0200)
committerTom Rini <trini@konsulko.com>
Sun, 7 Oct 2018 14:47:38 +0000 (10:47 -0400)
commit148c0443e310a27db94a0cbd95423bc525191971
tree62a85a3de807d32a26da66c59b85b9e55f134234
parenta8748723b6c696e604abd8ce8f492d8ae8753717
Add UCLASS_TEE for Trusted Execution Environment

Adds a uclass to interface with a TEE (Trusted Execution Environment).

A TEE driver is a driver that interfaces with a trusted OS running in
some secure environment, for example, TrustZone on ARM cpus, or a
separate secure co-processor etc.

The TEE subsystem can serve a TEE driver for a Global Platform compliant
TEE, but it's not limited to only Global Platform TEEs.

The over all design is based on the TEE subsystem in the Linux kernel,
tailored for U-Boot.

Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Igor Opaniuk <igor.opaniuk@linaro.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
MAINTAINERS
drivers/Kconfig
drivers/Makefile
drivers/tee/Kconfig [new file with mode: 0644]
drivers/tee/Makefile [new file with mode: 0644]
drivers/tee/tee-uclass.c [new file with mode: 0644]
include/dm/uclass-id.h
include/tee.h [new file with mode: 0644]