linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] tee: shared memory updates
@ 2021-06-09 10:23 Jens Wiklander
  2021-06-09 10:23 ` [PATCH 1/7] tee: remove unused tee_shm_pool_alloc_res_mem() Jens Wiklander
                   ` (6 more replies)
  0 siblings, 7 replies; 19+ messages in thread
From: Jens Wiklander @ 2021-06-09 10:23 UTC (permalink / raw)
  To: linux-kernel, linux-arm-kernel, op-tee
  Cc: Sumit Garg, Herbert Xu, Sakkinen, Sasha Levin,
	Thirupathaiah Annapureddy, Vikas Gupta, David S . Miller,
	Tyler Hicks, Jens Wiklander

Hi all,

Until now has the in-kernel tee clients, tpm_ftpm_tee, hwrng: optee-rng and
firmware: tee_bnxt used shared memory objects which has been exported by
dma-buf. Dma-buf isn't needed here since it's only an interaction between
the kernel and secure world.

This patchset fixes this by intruducing three new function
tee_shm_alloc_user_buf(), tee_shm_alloc_kernel_buf() and
tee_shm_alloc_anon_kernel_buf() to be used instead of the old
tee_shm_alloc(). This should make the API a bit easier to use both within
the TEE subsystem and for the tee clients in various drivers.

The patch set starts with simplifying the shared memory pool handling, an
internal matter for the two TEE drivers OP-TEE and AMDTEE.

Thanks,
Jens

Jens Wiklander (7):
  tee: remove unused tee_shm_pool_alloc_res_mem()
  tee: simplify shm pool handling
  tee: add tee_shm_alloc_kernel_buf()
  hwrng: optee-rng: use tee_shm_alloc_kernel_buf()
  tpm_ftpm_tee: use tee_shm_alloc_kernel_buf()
  firmware: tee_bnxt: use tee_shm_alloc_kernel_buf()
  tee: replace tee_shm_alloc()

 drivers/char/hw_random/optee-rng.c      |   6 +-
 drivers/char/tpm/tpm_ftpm_tee.c         |   8 +-
 drivers/firmware/broadcom/tee_bnxt_fw.c |   5 +-
 drivers/tee/amdtee/shm_pool.c           |  55 ++-----
 drivers/tee/optee/Kconfig               |   8 -
 drivers/tee/optee/call.c                |  16 +-
 drivers/tee/optee/core.c                |  76 +--------
 drivers/tee/optee/device.c              |   5 +-
 drivers/tee/optee/rpc.c                 |   8 +-
 drivers/tee/optee/shm_pool.c            |  51 +++---
 drivers/tee/optee/shm_pool.h            |   2 +-
 drivers/tee/tee_core.c                  |   2 +-
 drivers/tee/tee_private.h               |  11 --
 drivers/tee/tee_shm.c                   | 209 ++++++++++++++++++------
 drivers/tee/tee_shm_pool.c              | 160 ++++--------------
 include/linux/tee_drv.h                 | 106 +++---------
 16 files changed, 291 insertions(+), 437 deletions(-)

-- 
2.31.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2021-06-11  7:45 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09 10:23 [PATCH 0/7] tee: shared memory updates Jens Wiklander
2021-06-09 10:23 ` [PATCH 1/7] tee: remove unused tee_shm_pool_alloc_res_mem() Jens Wiklander
2021-06-09 14:03   ` Tyler Hicks
2021-06-09 10:23 ` [PATCH 2/7] tee: simplify shm pool handling Jens Wiklander
2021-06-09 14:50   ` Tyler Hicks
2021-06-10  9:01     ` Jens Wiklander
2021-06-09 10:23 ` [PATCH 3/7] tee: add tee_shm_alloc_kernel_buf() Jens Wiklander
2021-06-09 14:51   ` Tyler Hicks
2021-06-09 10:23 ` [PATCH 4/7] hwrng: optee-rng: use tee_shm_alloc_kernel_buf() Jens Wiklander
2021-06-09 14:51   ` Tyler Hicks
2021-06-09 10:23 ` [PATCH 5/7] tpm_ftpm_tee: " Jens Wiklander
2021-06-09 14:53   ` Tyler Hicks
2021-06-09 10:23 ` [PATCH 6/7] firmware: tee_bnxt: " Jens Wiklander
2021-06-09 14:58   ` Tyler Hicks
2021-06-10  9:08     ` Jens Wiklander
2021-06-09 10:23 ` [PATCH 7/7] tee: replace tee_shm_alloc() Jens Wiklander
2021-06-09 15:32   ` Tyler Hicks
2021-06-09 15:38     ` Tyler Hicks
2021-06-11  7:42     ` Jens Wiklander

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).