Commit d885cc5e authored by Volodymyr Babchuk's avatar Volodymyr Babchuk Committed by Jens Wiklander

tee: optee: store OP-TEE capabilities in private data

Those capabilities will be used in subsequent patches.
Signed-off-by: default avatarVolodymyr Babchuk <vlad.babchuk@gmail.com>
Signed-off-by: default avatarJens Wiklander <jens.wiklander@linaro.org>
parent 53a107c8
...@@ -545,6 +545,7 @@ static struct optee *optee_probe(struct device_node *np) ...@@ -545,6 +545,7 @@ static struct optee *optee_probe(struct device_node *np)
} }
optee->invoke_fn = invoke_fn; optee->invoke_fn = invoke_fn;
optee->sec_caps = sec_caps;
teedev = tee_device_alloc(&optee_desc, NULL, pool, optee); teedev = tee_device_alloc(&optee_desc, NULL, pool, optee);
if (IS_ERR(teedev)) { if (IS_ERR(teedev)) {
......
...@@ -96,6 +96,8 @@ struct optee_supp { ...@@ -96,6 +96,8 @@ struct optee_supp {
* @supp: supplicant synchronization struct for RPC to supplicant * @supp: supplicant synchronization struct for RPC to supplicant
* @pool: shared memory pool * @pool: shared memory pool
* @memremaped_shm virtual address of memory in shared memory pool * @memremaped_shm virtual address of memory in shared memory pool
* @sec_caps: secure world capabilities defined by
* OPTEE_SMC_SEC_CAP_* in optee_smc.h
*/ */
struct optee { struct optee {
struct tee_device *supp_teedev; struct tee_device *supp_teedev;
...@@ -106,6 +108,7 @@ struct optee { ...@@ -106,6 +108,7 @@ struct optee {
struct optee_supp supp; struct optee_supp supp;
struct tee_shm_pool *pool; struct tee_shm_pool *pool;
void *memremaped_shm; void *memremaped_shm;
u32 sec_caps;
}; };
struct optee_session { struct optee_session {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment