diff options
| author | 2022-02-04 10:33:56 +0100 | |
|---|---|---|
| committer | 2022-02-16 07:49:41 +0100 | |
| commit | 056d3fed3d1ff3f5d699be337f048f9eed2befaf (patch) | |
| tree | 6409ea61d7150713319654c2f332a32aba2da0f1 /include/linux/tee_drv.h | |
| parent | optee: add optee_pool_op_free_helper() (diff) | |
| download | linux-dev-056d3fed3d1ff3f5d699be337f048f9eed2befaf.tar.xz linux-dev-056d3fed3d1ff3f5d699be337f048f9eed2befaf.zip | |
tee: add tee_shm_register_{user,kernel}_buf()
Adds the two new functions tee_shm_register_user_buf() and
tee_shm_register_kernel_buf() which should be used instead of the old
tee_shm_register().
This avoids having the caller supplying the flags parameter which
exposes a bit more than desired of the internals of the TEE subsystem.
Reviewed-by: Sumit Garg <sumit.garg@linaro.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
Diffstat (limited to 'include/linux/tee_drv.h')
| -rw-r--r-- | include/linux/tee_drv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/tee_drv.h b/include/linux/tee_drv.h index 7f038f8787c7..c9d2cc32a5ed 100644 --- a/include/linux/tee_drv.h +++ b/include/linux/tee_drv.h @@ -287,6 +287,8 @@ struct tee_shm *tee_shm_alloc_kernel_buf(struct tee_context *ctx, size_t size); */ struct tee_shm *tee_shm_register(struct tee_context *ctx, unsigned long addr, size_t length, u32 flags); +struct tee_shm *tee_shm_register_kernel_buf(struct tee_context *ctx, + void *addr, size_t length); /** * tee_shm_is_registered() - Check if shared memory object in registered in TEE |
