From: Amirreza Zarrabi via OP-TEE <op-tee@lists.trustedfirmware.org>
To: Jens Wiklander <jens.wiklander@linaro.org>
Cc: op-tee@lists.trustedfirmware.org
Subject: Re: [PATCH v10 3/9] tee: implement protected DMA-heap
Date: Thu, 3 Jul 2025 07:09:29 +1000 [thread overview]
Message-ID: <5a4d1efc-8b4f-4577-a4ee-1ad4e4e92ece@oss.qualcomm.com> (raw)
In-Reply-To: <CAHUa44HykzsSQQcM6PrGn1hTwL0+XUisdNeMyO65jJXcdyGUiQ@mail.gmail.com>
On 7/2/2025 11:08 PM, Jens Wiklander wrote:
> Hi Amir,
>
> On Wed, Jul 2, 2025 at 2:23 AM Amirreza Zarrabi via OP-TEE
> <op-tee@lists.trustedfirmware.org> wrote:
>>
>> Hi jens,
>>
>> On 6/10/2025 11:13 PM, Jens Wiklander wrote:
>>> Implement DMA heap for protected DMA-buf allocation in the TEE
>>> subsystem.
>>>
>>> Protected memory refers to memory buffers behind a hardware enforced
>>> firewall. It is not accessible to the kernel during normal circumstances
>>> but rather only accessible to certain hardware IPs or CPUs executing in
>>> higher or differently privileged mode than the kernel itself. This
>>> interface allows to allocate and manage such protected memory buffers
>>> via interaction with a TEE implementation.
>>>
>>> The protected memory is allocated for a specific use-case, like Secure
>>> Video Playback, Trusted UI, or Secure Video Recording where certain
>>> hardware devices can access the memory.
>>>
>>> The DMA-heaps are enabled explicitly by the TEE backend driver. The TEE
>>> backend drivers needs to implement protected memory pool to manage the
>>> protected memory.
>>>
>>> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
>>> ---
>>> drivers/tee/Kconfig | 5 +
>>> drivers/tee/Makefile | 1 +
>>> drivers/tee/tee_heap.c | 472 ++++++++++++++++++++++++++++++++++++++
>>> drivers/tee/tee_private.h | 6 +
>>> include/linux/tee_core.h | 65 ++++++
>>> 5 files changed, 549 insertions(+)
>>> create mode 100644 drivers/tee/tee_heap.c
>>>
>>> diff --git a/drivers/tee/Kconfig b/drivers/tee/Kconfig
>>> index 61b507c18780..90600607a9d8 100644
>>> --- a/drivers/tee/Kconfig
>>> +++ b/drivers/tee/Kconfig
>>> @@ -13,6 +13,11 @@ menuconfig TEE
>>>
>>> if TEE
>>>
>>> +config TEE_DMABUF_HEAPS
>>> + bool
>>> + depends on HAS_DMA && DMABUF_HEAPS
>>> + default y
>>> +
>>> source "drivers/tee/optee/Kconfig"
>>> source "drivers/tee/amdtee/Kconfig"
>>> source "drivers/tee/tstee/Kconfig"
>>> diff --git a/drivers/tee/Makefile b/drivers/tee/Makefile
>>> index 5488cba30bd2..949a6a79fb06 100644
>>> --- a/drivers/tee/Makefile
>>> +++ b/drivers/tee/Makefile
>>> @@ -1,6 +1,7 @@
>>> # SPDX-License-Identifier: GPL-2.0
>>> obj-$(CONFIG_TEE) += tee.o
>>> tee-objs += tee_core.o
>>> +tee-objs += tee_heap.o
>>> tee-objs += tee_shm.o
>>> tee-objs += tee_shm_pool.o
>>> obj-$(CONFIG_OPTEE) += optee/
>>> diff --git a/drivers/tee/tee_heap.c b/drivers/tee/tee_heap.c
>>> new file mode 100644
>>> index 000000000000..7788381a76cb
>>> --- /dev/null
>>> +++ b/drivers/tee/tee_heap.c
>>> @@ -0,0 +1,472 @@
>>> +// SPDX-License-Identifier: GPL-2.0-only
>>> +/*
>>> + * Copyright (c) 2025, Linaro Limited
>>> + */
>>> +
>>> +#include <linux/dma-buf.h>
>>> +#include <linux/dma-heap.h>
>>> +#include <linux/genalloc.h>
>>> +#include <linux/module.h>
>>> +#include <linux/scatterlist.h>
>>> +#include <linux/slab.h>
>>> +#include <linux/tee_core.h>
>>> +#include <linux/xarray.h>
>>> +
>>> +#include "tee_private.h"
>>> +
>>> +struct tee_dma_heap {
>>> + struct dma_heap *heap;
>>> + enum tee_dma_heap_id id;
>>> + struct tee_protmem_pool *pool;
>>> + struct tee_device *teedev;
>>> + /* Protects pool and teedev above */
>>> + struct mutex mu;
>>> +};
>>> +
>>> +struct tee_heap_buffer {
>>> + struct tee_protmem_pool *pool;
>>> + struct tee_device *teedev;
>>> + size_t size;
>>> + size_t offs;
>>> + struct sg_table table;
>>> +};
>>> +
>>> +struct tee_heap_attachment {
>>> + struct sg_table table;
>>> + struct device *dev;
>>> +};
>>> +
>>> +struct tee_protmem_static_pool {
>>> + struct tee_protmem_pool pool;
>>> + struct gen_pool *gen_pool;
>>> + phys_addr_t pa_base;
>>> +};
>>> +
>>> +#if IS_ENABLED(CONFIG_TEE_DMABUF_HEAPS)
>>> +static DEFINE_XARRAY_ALLOC(tee_dma_heap);
>>> +
>>> +static int copy_sg_table(struct sg_table *dst, struct sg_table *src)
>>> +{
>>> + struct scatterlist *dst_sg;
>>> + struct scatterlist *src_sg;
>>> + int ret;
>>> + int i;
>>> +
>>> + ret = sg_alloc_table(dst, src->orig_nents, GFP_KERNEL);
>>> + if (ret)
>>> + return ret;
>>> +
>>> + dst_sg = dst->sgl;
>>> + for_each_sgtable_sg(src, src_sg, i) {
>>> + sg_set_page(dst_sg, sg_page(src_sg), src_sg->length,
>>> + src_sg->offset);
>>> + dst_sg = sg_next(dst_sg);
>>> + }
>>> +
>>> + return 0;
>>> +}
>>> +
>>> +static int tee_heap_attach(struct dma_buf *dmabuf,
>>> + struct dma_buf_attachment *attachment)
>>> +{
>>> + struct tee_heap_buffer *buf = dmabuf->priv;
>>> + struct tee_heap_attachment *a;
>>> + int ret;
>>> +
>>> + a = kzalloc(sizeof(*a), GFP_KERNEL);
>>> + if (!a)
>>> + return -ENOMEM;
>>> +
>>> + ret = copy_sg_table(&a->table, &buf->table);
>>> + if (ret) {
>>> + kfree(a);
>>> + return ret;
>>> + }
>>> +
>>> + a->dev = attachment->dev;
>>> + attachment->priv = a;
>>> +
>>> + return 0;
>>> +}
>>> +
>>> +static void tee_heap_detach(struct dma_buf *dmabuf,
>>> + struct dma_buf_attachment *attachment)
>>> +{
>>> + struct tee_heap_attachment *a = attachment->priv;
>>> +
>>> + sg_free_table(&a->table);
>>> + kfree(a);
>>> +}
>>> +
>>
>> Considering that this memory is assumed to be protected -- whatever that means
>> for each use case - does it make sense to implement map/unmap as callbacks
>> and let the backend define what 'map' actually entails?
>
> It's not needed in this patchset. For the sake of the patchset, I
> think it's better to wait with that until it's needed. This is
> supposed to be mostly internal to the TEE subsystem and the backend
> drivers, so it should be easy to add later.
>
> Cheers,
> Jens
>
Thanks Jens.
>>
>> Regards,
>> Amir
>>
>>> +static struct sg_table *
>>> +tee_heap_map_dma_buf(struct dma_buf_attachment *attachment,
>>> + enum dma_data_direction direction)
>>> +{
>>> + struct tee_heap_attachment *a = attachment->priv;
>>> + int ret;
>>> +
>>> + ret = dma_map_sgtable(attachment->dev, &a->table, direction,
>>> + DMA_ATTR_SKIP_CPU_SYNC);
>>> + if (ret)
>>> + return ERR_PTR(ret);
>>> +
>>> + return &a->table;
>>> +}
>>> +
>>> +static void tee_heap_unmap_dma_buf(struct dma_buf_attachment *attachment,
>>> + struct sg_table *table,
>>> + enum dma_data_direction direction)
>>> +{
>>> + struct tee_heap_attachment *a = attachment->priv;
>>> +
>>> + WARN_ON(&a->table != table);
>>> +
>>> + dma_unmap_sgtable(attachment->dev, table, direction,
>>> + DMA_ATTR_SKIP_CPU_SYNC);
>>> +}
>>> +
>>> +static void tee_heap_buf_free(struct dma_buf *dmabuf)
>>> +{
>>> + struct tee_heap_buffer *buf = dmabuf->priv;
>>> + struct tee_device *teedev = buf->teedev;
>>> +
>>> + buf->pool->ops->free(buf->pool, &buf->table);
>>> + tee_device_put(teedev);
>>> +}
>>> +
>>> +static const struct dma_buf_ops tee_heap_buf_ops = {
>>> + .attach = tee_heap_attach,
>>> + .detach = tee_heap_detach,
>>> + .map_dma_buf = tee_heap_map_dma_buf,
>>> + .unmap_dma_buf = tee_heap_unmap_dma_buf,
>>> + .release = tee_heap_buf_free,
>>> +};
>>> +
>>> +static struct dma_buf *tee_dma_heap_alloc(struct dma_heap *heap,
>>> + unsigned long len, u32 fd_flags,
>>> + u64 heap_flags)
>>> +{
>>> + struct tee_dma_heap *h = dma_heap_get_drvdata(heap);
>>> + DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
>>> + struct tee_device *teedev = NULL;
>>> + struct tee_heap_buffer *buf;
>>> + struct tee_protmem_pool *pool;
>>> + struct dma_buf *dmabuf;
>>> + int rc;
>>> +
>>> + mutex_lock(&h->mu);
>>> + if (tee_device_get(h->teedev)) {
>>> + teedev = h->teedev;
>>> + pool = h->pool;
>>> + }
>>> + mutex_unlock(&h->mu);
>>> +
>>> + if (!teedev)
>>> + return ERR_PTR(-EINVAL);
>>> +
>>> + buf = kzalloc(sizeof(*buf), GFP_KERNEL);
>>> + if (!buf) {
>>> + dmabuf = ERR_PTR(-ENOMEM);
>>> + goto err;
>>> + }
>>> + buf->size = len;
>>> + buf->pool = pool;
>>> + buf->teedev = teedev;
>>> +
>>> + rc = pool->ops->alloc(pool, &buf->table, len, &buf->offs);
>>> + if (rc) {
>>> + dmabuf = ERR_PTR(rc);
>>> + goto err_kfree;
>>> + }
>>> +
>>> + exp_info.ops = &tee_heap_buf_ops;
>>> + exp_info.size = len;
>>> + exp_info.priv = buf;
>>> + exp_info.flags = fd_flags;
>>> + dmabuf = dma_buf_export(&exp_info);
>>> + if (IS_ERR(dmabuf))
>>> + goto err_protmem_free;
>>> +
>>> + return dmabuf;
>>> +
>>> +err_protmem_free:
>>> + pool->ops->free(pool, &buf->table);
>>> +err_kfree:
>>> + kfree(buf);
>>> +err:
>>> + tee_device_put(h->teedev);
>>> + return dmabuf;
>>> +}
>>> +
>>> +static const struct dma_heap_ops tee_dma_heap_ops = {
>>> + .allocate = tee_dma_heap_alloc,
>>> +};
>>> +
>>> +static const char *heap_id_2_name(enum tee_dma_heap_id id)
>>> +{
>>> + switch (id) {
>>> + case TEE_DMA_HEAP_SECURE_VIDEO_PLAY:
>>> + return "protected,secure-video";
>>> + case TEE_DMA_HEAP_TRUSTED_UI:
>>> + return "protected,trusted-ui";
>>> + case TEE_DMA_HEAP_SECURE_VIDEO_RECORD:
>>> + return "protected,secure-video-record";
>>> + default:
>>> + return NULL;
>>> + }
>>> +}
>>> +
>>> +static int alloc_dma_heap(struct tee_device *teedev, enum tee_dma_heap_id id,
>>> + struct tee_protmem_pool *pool)
>>> +{
>>> + struct dma_heap_export_info exp_info = {
>>> + .ops = &tee_dma_heap_ops,
>>> + .name = heap_id_2_name(id),
>>> + };
>>> + struct tee_dma_heap *h;
>>> + int rc;
>>> +
>>> + if (!exp_info.name)
>>> + return -EINVAL;
>>> +
>>> + if (xa_reserve(&tee_dma_heap, id, GFP_KERNEL)) {
>>> + if (!xa_load(&tee_dma_heap, id))
>>> + return -EEXIST;
>>> + return -ENOMEM;
>>> + }
>>> +
>>> + h = kzalloc(sizeof(*h), GFP_KERNEL);
>>> + if (!h)
>>> + return -ENOMEM;
>>> + h->id = id;
>>> + h->teedev = teedev;
>>> + h->pool = pool;
>>> + mutex_init(&h->mu);
>>> +
>>> + exp_info.priv = h;
>>> + h->heap = dma_heap_add(&exp_info);
>>> + if (IS_ERR(h->heap)) {
>>> + rc = PTR_ERR(h->heap);
>>> + kfree(h);
>>> +
>>> + return rc;
>>> + }
>>> +
>>> + /* "can't fail" due to the call to xa_reserve() above */
>>> + return WARN_ON(xa_is_err(xa_store(&tee_dma_heap, id, h, GFP_KERNEL)));
>>> +}
>>> +
>>> +int tee_device_register_dma_heap(struct tee_device *teedev,
>>> + enum tee_dma_heap_id id,
>>> + struct tee_protmem_pool *pool)
>>> +{
>>> + struct tee_dma_heap *h;
>>> + int rc;
>>> +
>>> + h = xa_load(&tee_dma_heap, id);
>>> + if (h) {
>>> + mutex_lock(&h->mu);
>>> + if (h->teedev) {
>>> + rc = -EBUSY;
>>> + } else {
>>> + h->teedev = teedev;
>>> + h->pool = pool;
>>> + rc = 0;
>>> + }
>>> + mutex_unlock(&h->mu);
>>> + } else {
>>> + rc = alloc_dma_heap(teedev, id, pool);
>>> + }
>>> +
>>> + if (rc)
>>> + dev_err(&teedev->dev, "can't register DMA heap id %d (%s)\n",
>>> + id, heap_id_2_name(id));
>>> +
>>> + return rc;
>>> +}
>>> +EXPORT_SYMBOL_GPL(tee_device_register_dma_heap);
>>> +
>>> +void tee_device_unregister_all_dma_heaps(struct tee_device *teedev)
>>> +{
>>> + struct tee_protmem_pool *pool;
>>> + struct tee_dma_heap *h;
>>> + u_long i;
>>> +
>>> + xa_for_each(&tee_dma_heap, i, h) {
>>> + if (h) {
>>> + pool = NULL;
>>> + mutex_lock(&h->mu);
>>> + if (h->teedev == teedev) {
>>> + pool = h->pool;
>>> + h->teedev = NULL;
>>> + h->pool = NULL;
>>> + }
>>> + mutex_unlock(&h->mu);
>>> + if (pool)
>>> + pool->ops->destroy_pool(pool);
>>> + }
>>> + }
>>> +}
>>> +EXPORT_SYMBOL_GPL(tee_device_unregister_all_dma_heaps);
>>> +
>>> +int tee_heap_update_from_dma_buf(struct tee_device *teedev,
>>> + struct dma_buf *dmabuf, size_t *offset,
>>> + struct tee_shm *shm,
>>> + struct tee_shm **parent_shm)
>>> +{
>>> + struct tee_heap_buffer *buf;
>>> + int rc;
>>> +
>>> + /* The DMA-buf must be from our heap */
>>> + if (dmabuf->ops != &tee_heap_buf_ops)
>>> + return -EINVAL;
>>> +
>>> + buf = dmabuf->priv;
>>> + /* The buffer must be from the same teedev */
>>> + if (buf->teedev != teedev)
>>> + return -EINVAL;
>>> +
>>> + shm->size = buf->size;
>>> +
>>> + rc = buf->pool->ops->update_shm(buf->pool, &buf->table, buf->offs, shm,
>>> + parent_shm);
>>> + if (!rc && *parent_shm)
>>> + *offset = buf->offs;
>>> +
>>> + return rc;
>>> +}
>>> +#else
>>> +int tee_device_register_dma_heap(struct tee_device *teedev __always_unused,
>>> + enum tee_dma_heap_id id __always_unused,
>>> + struct tee_protmem_pool *pool __always_unused)
>>> +{
>>> + return -EINVAL;
>>> +}
>>> +EXPORT_SYMBOL_GPL(tee_device_register_dma_heap);
>>> +
>>> +void
>>> +tee_device_unregister_all_dma_heaps(struct tee_device *teedev __always_unused)
>>> +{
>>> +}
>>> +EXPORT_SYMBOL_GPL(tee_device_unregister_all_dma_heaps);
>>> +
>>> +int tee_heap_update_from_dma_buf(struct tee_device *teedev __always_unused,
>>> + struct dma_buf *dmabuf __always_unused,
>>> + size_t *offset __always_unused,
>>> + struct tee_shm *shm __always_unused,
>>> + struct tee_shm **parent_shm __always_unused)
>>> +{
>>> + return -EINVAL;
>>> +}
>>> +#endif
>>> +
>>> +static struct tee_protmem_static_pool *
>>> +to_protmem_static_pool(struct tee_protmem_pool *pool)
>>> +{
>>> + return container_of(pool, struct tee_protmem_static_pool, pool);
>>> +}
>>> +
>>> +static int protmem_pool_op_static_alloc(struct tee_protmem_pool *pool,
>>> + struct sg_table *sgt, size_t size,
>>> + size_t *offs)
>>> +{
>>> + struct tee_protmem_static_pool *stp = to_protmem_static_pool(pool);
>>> + phys_addr_t pa;
>>> + int ret;
>>> +
>>> + pa = gen_pool_alloc(stp->gen_pool, size);
>>> + if (!pa)
>>> + return -ENOMEM;
>>> +
>>> + ret = sg_alloc_table(sgt, 1, GFP_KERNEL);
>>> + if (ret) {
>>> + gen_pool_free(stp->gen_pool, pa, size);
>>> + return ret;
>>> + }
>>> +
>>> + sg_set_page(sgt->sgl, phys_to_page(pa), size, 0);
>>> + *offs = pa - stp->pa_base;
>>> +
>>> + return 0;
>>> +}
>>> +
>>> +static void protmem_pool_op_static_free(struct tee_protmem_pool *pool,
>>> + struct sg_table *sgt)
>>> +{
>>> + struct tee_protmem_static_pool *stp = to_protmem_static_pool(pool);
>>> + struct scatterlist *sg;
>>> + int i;
>>> +
>>> + for_each_sgtable_sg(sgt, sg, i)
>>> + gen_pool_free(stp->gen_pool, sg_phys(sg), sg->length);
>>> + sg_free_table(sgt);
>>> +}
>>> +
>>> +static int protmem_pool_op_static_update_shm(struct tee_protmem_pool *pool,
>>> + struct sg_table *sgt, size_t offs,
>>> + struct tee_shm *shm,
>>> + struct tee_shm **parent_shm)
>>> +{
>>> + struct tee_protmem_static_pool *stp = to_protmem_static_pool(pool);
>>> +
>>> + shm->paddr = stp->pa_base + offs;
>>> + *parent_shm = NULL;
>>> +
>>> + return 0;
>>> +}
>>> +
>>> +static void protmem_pool_op_static_destroy_pool(struct tee_protmem_pool *pool)
>>> +{
>>> + struct tee_protmem_static_pool *stp = to_protmem_static_pool(pool);
>>> +
>>> + gen_pool_destroy(stp->gen_pool);
>>> + kfree(stp);
>>> +}
>>> +
>>> +static struct tee_protmem_pool_ops protmem_pool_ops_static = {
>>> + .alloc = protmem_pool_op_static_alloc,
>>> + .free = protmem_pool_op_static_free,
>>> + .update_shm = protmem_pool_op_static_update_shm,
>>> + .destroy_pool = protmem_pool_op_static_destroy_pool,
>>> +};
>>> +
>>> +struct tee_protmem_pool *tee_protmem_static_pool_alloc(phys_addr_t paddr,
>>> + size_t size)
>>> +{
>>> + const size_t page_mask = PAGE_SIZE - 1;
>>> + struct tee_protmem_static_pool *stp;
>>> + int rc;
>>> +
>>> + /* Check it's page aligned */
>>> + if ((paddr | size) & page_mask)
>>> + return ERR_PTR(-EINVAL);
>>> +
>>> + if (!pfn_valid(PHYS_PFN(paddr)))
>>> + return ERR_PTR(-EINVAL);
>>> +
>>> + stp = kzalloc(sizeof(*stp), GFP_KERNEL);
>>> + if (!stp)
>>> + return ERR_PTR(-ENOMEM);
>>> +
>>> + stp->gen_pool = gen_pool_create(PAGE_SHIFT, -1);
>>> + if (!stp->gen_pool) {
>>> + rc = -ENOMEM;
>>> + goto err_free;
>>> + }
>>> +
>>> + rc = gen_pool_add(stp->gen_pool, paddr, size, -1);
>>> + if (rc)
>>> + goto err_free_pool;
>>> +
>>> + stp->pool.ops = &protmem_pool_ops_static;
>>> + stp->pa_base = paddr;
>>> + return &stp->pool;
>>> +
>>> +err_free_pool:
>>> + gen_pool_destroy(stp->gen_pool);
>>> +err_free:
>>> + kfree(stp);
>>> +
>>> + return ERR_PTR(rc);
>>> +}
>>> +EXPORT_SYMBOL_GPL(tee_protmem_static_pool_alloc);
>>> diff --git a/drivers/tee/tee_private.h b/drivers/tee/tee_private.h
>>> index 9bc50605227c..6c6ff5d5eed2 100644
>>> --- a/drivers/tee/tee_private.h
>>> +++ b/drivers/tee/tee_private.h
>>> @@ -8,6 +8,7 @@
>>> #include <linux/cdev.h>
>>> #include <linux/completion.h>
>>> #include <linux/device.h>
>>> +#include <linux/dma-buf.h>
>>> #include <linux/kref.h>
>>> #include <linux/mutex.h>
>>> #include <linux/types.h>
>>> @@ -24,4 +25,9 @@ struct tee_shm *tee_shm_alloc_user_buf(struct tee_context *ctx, size_t size);
>>> struct tee_shm *tee_shm_register_user_buf(struct tee_context *ctx,
>>> unsigned long addr, size_t length);
>>>
>>> +int tee_heap_update_from_dma_buf(struct tee_device *teedev,
>>> + struct dma_buf *dmabuf, size_t *offset,
>>> + struct tee_shm *shm,
>>> + struct tee_shm **parent_shm);
>>> +
>>> #endif /*TEE_PRIVATE_H*/
>>> diff --git a/include/linux/tee_core.h b/include/linux/tee_core.h
>>> index a38494d6b5f4..22e03d897dc3 100644
>>> --- a/include/linux/tee_core.h
>>> +++ b/include/linux/tee_core.h
>>> @@ -8,9 +8,11 @@
>>>
>>> #include <linux/cdev.h>
>>> #include <linux/device.h>
>>> +#include <linux/dma-buf.h>
>>> #include <linux/idr.h>
>>> #include <linux/kref.h>
>>> #include <linux/list.h>
>>> +#include <linux/scatterlist.h>
>>> #include <linux/tee.h>
>>> #include <linux/tee_drv.h>
>>> #include <linux/types.h>
>>> @@ -30,6 +32,12 @@
>>> #define TEE_DEVICE_FLAG_REGISTERED 0x1
>>> #define TEE_MAX_DEV_NAME_LEN 32
>>>
>>> +enum tee_dma_heap_id {
>>> + TEE_DMA_HEAP_SECURE_VIDEO_PLAY = 1,
>>> + TEE_DMA_HEAP_TRUSTED_UI,
>>> + TEE_DMA_HEAP_SECURE_VIDEO_RECORD,
>>> +};
>>> +
>>> /**
>>> * struct tee_device - TEE Device representation
>>> * @name: name of device
>>> @@ -116,6 +124,36 @@ struct tee_desc {
>>> u32 flags;
>>> };
>>>
>>> +/**
>>> + * struct tee_protmem_pool - protected memory pool
>>> + * @ops: operations
>>> + *
>>> + * This is an abstract interface where this struct is expected to be
>>> + * embedded in another struct specific to the implementation.
>>> + */
>>> +struct tee_protmem_pool {
>>> + const struct tee_protmem_pool_ops *ops;
>>> +};
>>> +
>>> +/**
>>> + * struct tee_protmem_pool_ops - protected memory pool operations
>>> + * @alloc: called when allocating protected memory
>>> + * @free: called when freeing protected memory
>>> + * @update_shm: called when registering a dma-buf to update the @shm
>>> + * with physical address of the buffer or to return the
>>> + * @parent_shm of the memory pool
>>> + * @destroy_pool: called when destroying the pool
>>> + */
>>> +struct tee_protmem_pool_ops {
>>> + int (*alloc)(struct tee_protmem_pool *pool, struct sg_table *sgt,
>>> + size_t size, size_t *offs);
>>> + void (*free)(struct tee_protmem_pool *pool, struct sg_table *sgt);
>>> + int (*update_shm)(struct tee_protmem_pool *pool, struct sg_table *sgt,
>>> + size_t offs, struct tee_shm *shm,
>>> + struct tee_shm **parent_shm);
>>> + void (*destroy_pool)(struct tee_protmem_pool *pool);
>>> +};
>>> +
>>> /**
>>> * tee_device_alloc() - Allocate a new struct tee_device instance
>>> * @teedesc: Descriptor for this driver
>>> @@ -154,6 +192,11 @@ int tee_device_register(struct tee_device *teedev);
>>> */
>>> void tee_device_unregister(struct tee_device *teedev);
>>>
>>> +int tee_device_register_dma_heap(struct tee_device *teedev,
>>> + enum tee_dma_heap_id id,
>>> + struct tee_protmem_pool *pool);
>>> +void tee_device_unregister_all_dma_heaps(struct tee_device *teedev);
>>> +
>>> /**
>>> * tee_device_set_dev_groups() - Set device attribute groups
>>> * @teedev: Device to register
>>> @@ -229,6 +272,28 @@ static inline void tee_shm_pool_free(struct tee_shm_pool *pool)
>>> pool->ops->destroy_pool(pool);
>>> }
>>>
>>> +/**
>>> + * tee_protmem_static_pool_alloc() - Create a protected memory manager
>>> + * @paddr: Physical address of start of pool
>>> + * @size: Size in bytes of the pool
>>> + *
>>> + * @returns pointer to a 'struct tee_protmem_pool' or an ERR_PTR on failure.
>>> + */
>>> +struct tee_protmem_pool *tee_protmem_static_pool_alloc(phys_addr_t paddr,
>>> + size_t size);
>>> +
>>> +/**
>>> + * tee_protmem_pool_free() - Free a protected memory pool
>>> + * @pool: The protected memory pool to free
>>> + *
>>> + * There must be no remaining protected memory allocated from this pool
>>> + * when this function is called.
>>> + */
>>> +static inline void tee_protmem_pool_free(struct tee_protmem_pool *pool)
>>> +{
>>> + pool->ops->destroy_pool(pool);
>>> +}
>>> +
>>> /**
>>> * tee_get_drvdata() - Return driver_data pointer
>>> * @returns the driver_data pointer supplied to tee_register().
>>
next prev parent reply other threads:[~2025-07-02 21:10 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-10 13:13 [PATCH v10 0/9] TEE subsystem for protected dma-buf allocations Jens Wiklander
2025-06-10 13:13 ` [PATCH v10 1/9] optee: sync secure world ABI headers Jens Wiklander
2025-06-10 13:13 ` [PATCH v10 2/9] dma-buf: dma-heap: export declared functions Jens Wiklander
2025-06-17 10:14 ` Sumit Garg via OP-TEE
2025-06-10 13:13 ` [PATCH v10 3/9] tee: implement protected DMA-heap Jens Wiklander
2025-06-17 10:33 ` Sumit Garg via OP-TEE
2025-07-02 0:22 ` Amirreza Zarrabi via OP-TEE
2025-07-02 13:08 ` Jens Wiklander
2025-07-02 21:09 ` Amirreza Zarrabi via OP-TEE [this message]
2025-07-07 2:21 ` Amirreza Zarrabi via OP-TEE
2025-07-07 11:22 ` Jens Wiklander
2025-07-07 12:37 ` Sumit Garg via OP-TEE
2025-07-07 13:37 ` Jens Wiklander
2025-07-09 0:40 ` Amirreza Zarrabi via OP-TEE
2025-07-09 4:45 ` Amirreza Zarrabi via OP-TEE
2025-07-09 7:24 ` Jens Wiklander
2025-06-10 13:13 ` [PATCH v10 4/9] tee: refactor params_from_user() Jens Wiklander
2025-06-10 13:13 ` [PATCH v10 5/9] tee: new ioctl to a register tee_shm from a dmabuf file descriptor Jens Wiklander
2025-06-17 10:48 ` Sumit Garg via OP-TEE
2025-06-18 6:47 ` Jens Wiklander
2025-07-03 7:22 ` Sumit Garg via OP-TEE
2025-07-03 7:34 ` Jens Wiklander
2025-06-10 13:13 ` [PATCH v10 6/9] tee: add tee_shm_alloc_dma_mem() Jens Wiklander
2025-06-17 11:32 ` Sumit Garg via OP-TEE
2025-06-18 7:03 ` Jens Wiklander
2025-07-03 6:28 ` Sumit Garg via OP-TEE
2025-07-03 7:13 ` Jens Wiklander
2025-06-10 13:13 ` [PATCH v10 7/9] optee: support protected memory allocation Jens Wiklander
2025-06-17 11:34 ` Sumit Garg via OP-TEE
2025-06-24 6:54 ` Amirreza Zarrabi via OP-TEE
2025-06-24 7:38 ` Jens Wiklander
2025-06-10 13:13 ` [PATCH v10 8/9] optee: FF-A: dynamic " Jens Wiklander
2025-06-17 11:37 ` Sumit Garg via OP-TEE
2025-06-10 13:13 ` [PATCH v10 9/9] optee: smc abi: " Jens Wiklander
2025-06-17 11:38 ` Sumit Garg via OP-TEE
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5a4d1efc-8b4f-4577-a4ee-1ad4e4e92ece@oss.qualcomm.com \
--to=op-tee@lists.trustedfirmware.org \
--cc=amirreza.zarrabi@oss.qualcomm.com \
--cc=jens.wiklander@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox