diff options
author | Sumit Garg <sumit.garg@linaro.org> | 2019-01-29 11:19:37 +0530 |
---|---|---|
committer | Jens Wiklander <jens.wiklander@linaro.org> | 2019-02-01 15:12:46 +0100 |
commit | c3fa24af92445c419c19df5981ab4e41a3ae3361 (patch) | |
tree | d868485cdd06f68fffdc9d33450dd6a19878ed0e /drivers/tee/optee/Makefile | |
parent | 0fc1db9d105915021260eb241661b8e96f5c0f1a (diff) | |
download | blackbird-op-linux-c3fa24af92445c419c19df5981ab4e41a3ae3361.tar.gz blackbird-op-linux-c3fa24af92445c419c19df5981ab4e41a3ae3361.zip |
tee: optee: add TEE bus device enumeration support
OP-TEE provides a pseudo TA to enumerate TAs which can act as devices/
services for TEE bus. So implement device enumeration using invoke
function: PTA_CMD_GET_DEVICES provided by pseudo TA to fetch array of
device UUIDs. Also register these enumerated devices with TEE bus as
"optee-clntX" device.
Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
[jw: fix optee_enumerate_devices() with no devices found]
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
Diffstat (limited to 'drivers/tee/optee/Makefile')
-rw-r--r-- | drivers/tee/optee/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tee/optee/Makefile b/drivers/tee/optee/Makefile index 48d262ae2f04..56263ae3b1d7 100644 --- a/drivers/tee/optee/Makefile +++ b/drivers/tee/optee/Makefile @@ -5,3 +5,4 @@ optee-objs += call.o optee-objs += rpc.o optee-objs += supp.o optee-objs += shm_pool.o +optee-objs += device.o |