/**
* struct amdtee_context_data - AMD-TEE driver context data
* @sess_list: Keeps track of sessions opened in current TEE context
- * @shm_list: Keeps track of buffers allocated and mapped in current TEE
- * context
*/
struct amdtee_context_data {
struct list_head sess_list;
- struct list_head shm_list;
- struct mutex shm_mutex; /* synchronizes access to @shm_list */
};
struct amdtee_driver_data {
u64 size;
};
-/**
- * struct amdtee_shm_data - Shared memory data
- * @kaddr: Kernel virtual address of shared memory
- * @buf_id: Buffer id of memory mapped by TEE_CMD_ID_MAP_SHARED_MEM
- */
-struct amdtee_shm_data {
- struct list_head shm_node;
- void *kaddr;
- u32 buf_id;
-};
-
/**
* struct amdtee_ta_data - Keeps track of all TAs loaded in AMD Secure
* Processor
struct tee_shm_pool *amdtee_config_shm(void);
-u32 get_buffer_id(struct tee_shm *shm);
#endif /*AMDTEE_PRIVATE_H*/
return -ENOMEM;
INIT_LIST_HEAD(&ctxdata->sess_list);
- INIT_LIST_HEAD(&ctxdata->shm_list);
- mutex_init(&ctxdata->shm_mutex);
ctx->data = ctxdata;
return 0;
list_del(&sess->list_node);
release_session(sess);
}
- mutex_destroy(&ctxdata->shm_mutex);
kfree(ctxdata);
ctx->data = NULL;
return NULL;
}
-u32 get_buffer_id(struct tee_shm *shm)
-{
- struct amdtee_context_data *ctxdata = shm->ctx->data;
- struct amdtee_shm_data *shmdata;
- u32 buf_id = 0;
-
- mutex_lock(&ctxdata->shm_mutex);
- list_for_each_entry(shmdata, &ctxdata->shm_list, shm_node)
- if (shmdata->kaddr == shm->kaddr) {
- buf_id = shmdata->buf_id;
- break;
- }
- mutex_unlock(&ctxdata->shm_mutex);
-
- return buf_id;
-}
-
static DEFINE_MUTEX(drv_mutex);
static int copy_ta_binary(struct tee_context *ctx, void *ptr, void **ta,
size_t *ta_size)
int amdtee_map_shmem(struct tee_shm *shm)
{
- struct amdtee_context_data *ctxdata;
- struct amdtee_shm_data *shmnode;
struct shmem_desc shmem;
int rc, count;
u32 buf_id;
if (!shm)
return -EINVAL;
- shmnode = kmalloc_obj(*shmnode);
- if (!shmnode)
- return -ENOMEM;
-
count = 1;
shmem.kaddr = shm->kaddr;
shmem.size = shm->size;
rc = handle_map_shmem(count, &shmem, &buf_id);
if (rc) {
pr_err("map_shmem failed: ret = %d\n", rc);
- kfree(shmnode);
return rc;
}
- shmnode->kaddr = shm->kaddr;
- shmnode->buf_id = buf_id;
- ctxdata = shm->ctx->data;
- mutex_lock(&ctxdata->shm_mutex);
- list_add(&shmnode->shm_node, &ctxdata->shm_list);
- mutex_unlock(&ctxdata->shm_mutex);
+ shm->sec_world_id = buf_id;
- pr_debug("buf_id :[%x] kaddr[%p]\n", shmnode->buf_id, shmnode->kaddr);
+ pr_debug("buf_id :[%x] kaddr[%p]\n", buf_id, shm->kaddr);
return 0;
}
void amdtee_unmap_shmem(struct tee_shm *shm)
{
- struct amdtee_context_data *ctxdata;
- struct amdtee_shm_data *shmnode;
u32 buf_id;
if (!shm)
return;
- buf_id = get_buffer_id(shm);
- /* Unmap the shared memory from TEE */
+ buf_id = (u32)shm->sec_world_id;
handle_unmap_shmem(buf_id);
-
- ctxdata = shm->ctx->data;
- mutex_lock(&ctxdata->shm_mutex);
- list_for_each_entry(shmnode, &ctxdata->shm_list, shm_node)
- if (buf_id == shmnode->buf_id) {
- list_del(&shmnode->shm_node);
- kfree(shmnode);
- break;
- }
- mutex_unlock(&ctxdata->shm_mutex);
+ shm->sec_world_id = 0;
}
int amdtee_invoke_func(struct tee_context *ctx,