1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2024-11-19 13:27:49 +00:00
a155-U-u1/kernel-5.10/drivers/misc/mediatek/trusted_mem/mtee_devices.c
2024-03-11 06:53:12 +11:00

264 lines
7.6 KiB
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2019 MediaTek Inc.
*/
#define PR_FMT_HEADER_MUST_BE_INCLUDED_BEFORE_ALL_HDRS
#include "private/tmem_pr_fmt.h" PR_FMT_HEADER_MUST_BE_INCLUDED_BEFORE_ALL_HDRS
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/kthread.h>
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/string.h>
#include <linux/uaccess.h>
#include <linux/unistd.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/sizes.h>
#include <memory_ssmr.h>
#include "private/mld_helper.h"
#include "private/tmem_error.h"
#include "private/tmem_priv.h"
#include "private/tmem_utils.h"
#include "private/tmem_dev_desc.h"
/* clang-format off */
#include "mtee_impl/mtee_ops.h"
/* clang-format on */
#include "tee_impl/tee_invoke.h"
static struct trusted_mem_configs mchunk_general_configs = {
.session_keep_alive_enable = false,
.minimal_chunk_size = SZ_4K,
.phys_mem_shift_bits = 10,
.phys_limit_min_alloc_size = (1 << 10),
.min_size_check_enable = true,
.alignment_check_enable = true,
.caps = 0,
};
static struct tmem_device_description mtee_mchunks[] = {
#if IS_ENABLED(CONFIG_MTK_SECURE_MEM_SUPPORT)
{
.kern_tmem_type = TRUSTED_MEM_SVP_REGION,
.tee_smem_type = TEE_SMEM_SVP,
.mtee_chunks_id = MTEE_MCHUNKS_SVP,
.ssmr_feature_id = SSMR_FEAT_SVP_REGION,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_SVP_REGION},
#if IS_ENABLED(CONFIG_TRUSTONIC_TEE_SUPPORT) || \
IS_ENABLED(CONFIG_MICROTRUST_TEE_SUPPORT) || \
IS_ENABLED(CONFIG_TEEGRIS_TEE_SUPPORT)
.notify_remote = true,
.notify_remote_fn = secmem_fr_set_svp_region,
#else
.notify_remote = false,
.notify_remote_fn = NULL,
#endif
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_SVP",
},
#endif
#if IS_ENABLED(CONFIG_MTK_PROT_MEM_SUPPORT)
{
.kern_tmem_type = TRUSTED_MEM_PROT_REGION,
.tee_smem_type = TEE_SMEM_PROT,
.mtee_chunks_id = MTEE_MCHUNKS_PROT,
.ssmr_feature_id = SSMR_FEAT_PROT_REGION,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_PROT_REGION},
#if IS_ENABLED(CONFIG_TRUSTONIC_TEE_SUPPORT) || \
IS_ENABLED(CONFIG_MICROTRUST_TEE_SUPPORT) || \
IS_ENABLED(CONFIG_TEEGRIS_TEE_SUPPORT)
.notify_remote = true,
.notify_remote_fn = secmem_fr_set_prot_shared_region,
#else
.notify_remote = false,
.notify_remote_fn = NULL,
#endif
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_PROT",
},
#endif
#if IS_ENABLED(CONFIG_MTK_WFD_SMEM_SUPPORT)
{
.kern_tmem_type = TRUSTED_MEM_WFD_REGION,
.tee_smem_type = TEE_SMEM_WFD,
.mtee_chunks_id = MTEE_MCHUNKS_WFD,
.ssmr_feature_id = SSMR_FEAT_WFD_REGION,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_WFD_REGION},
#if IS_ENABLED(CONFIG_TRUSTONIC_TEE_SUPPORT) || \
IS_ENABLED(CONFIG_MICROTRUST_TEE_SUPPORT) || \
IS_ENABLED(CONFIG_TEEGRIS_TEE_SUPPORT)
.notify_remote = true,
.notify_remote_fn = secmem_fr_set_wfd_region,
#else
.notify_remote = false,
.notify_remote_fn = NULL,
#endif
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_WFD",
},
#endif
#if IS_ENABLED(CONFIG_MTK_HAPP_MEM_SUPPORT)
{
.kern_tmem_type = TRUSTED_MEM_HAPP,
.tee_smem_type = TEE_SMEM_HAPP_ELF,
.mtee_chunks_id = MTEE_MCHUNKS_HAPP,
.ssmr_feature_id = SSMR_FEAT_TA_ELF,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_HAPP},
.notify_remote = true,
.notify_remote_fn = secmem_set_mchunks_region,
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_HAPP",
},
{
.kern_tmem_type = TRUSTED_MEM_HAPP_EXTRA,
.tee_smem_type = TEE_SMEM_HAPP_EXTRA,
.mtee_chunks_id = MTEE_MCHUNKS_HAPP_EXTRA,
.ssmr_feature_id = SSMR_FEAT_TA_STACK_HEAP,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_HAPP_EXTRA},
.notify_remote = true,
.notify_remote_fn = secmem_set_mchunks_region,
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_HAPP_EXTRA",
},
#endif
#if IS_ENABLED(CONFIG_MTK_SDSP_MEM_SUPPORT)
{
.kern_tmem_type = TRUSTED_MEM_SDSP,
.tee_smem_type = TEE_SMEM_SDSP_FIRMWARE,
.mtee_chunks_id = MTEE_MCHUNKS_SDSP,
.ssmr_feature_id = SSMR_FEAT_SDSP_FIRMWARE,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_SDSP},
.notify_remote = true,
.notify_remote_fn = secmem_set_mchunks_region,
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_SDSP",
},
#endif
#if IS_ENABLED(CONFIG_MTK_SDSP_SHARED_MEM_SUPPORT) && \
(IS_ENABLED(CONFIG_MTK_SDSP_SHARED_PERM_MTEE_TEE) || \
IS_ENABLED(CONFIG_MTK_SDSP_SHARED_PERM_VPU_MTEE_TEE))
{
.kern_tmem_type = TRUSTED_MEM_SDSP_SHARED,
.tee_smem_type = TEE_SMEM_SDSP_SHARED,
#if IS_ENABLED(CONFIG_MTK_SDSP_SHARED_PERM_MTEE_TEE)
.mtee_chunks_id = MTEE_MCHUNKS_SDSP_SHARED_MTEE_TEE,
#elif IS_ENABLED(CONFIG_MTK_SDSP_SHARED_PERM_VPU_MTEE_TEE)
.mtee_chunks_id = MTEE_MCHUNKS_SDSP_SHARED_VPU_MTEE_TEE,
#else
.mtee_chunks_id = MTEE_MCHUNKS_SDSP_SHARED_VPU_TEE,
#endif
.ssmr_feature_id = SSMR_FEAT_SDSP_TEE_SHAREDMEM,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_SDSP_SHARED},
.notify_remote = true,
.notify_remote_fn = secmem_set_mchunks_region,
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_SDSP_SHARED",
},
#endif
{
.kern_tmem_type = TRUSTED_MEM_SAPU_DATA_SHM,
.tee_smem_type = TEE_SMEM_INVALID,
.mtee_chunks_id = MTEE_MCHUNKS_SAPU_DATA_SHM,
.ssmr_feature_id = SSMR_FEAT_SAPU_DATA_SHM,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_SAPU_DATA_SHM},
.notify_remote = false,
.notify_remote_fn = NULL,
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_SAPU_DATA_SHM",
},
{
.kern_tmem_type = TRUSTED_MEM_SAPU_ENGINE_SHM,
.tee_smem_type = TEE_SMEM_INVALID,
.mtee_chunks_id = MTEE_MCHUNKS_SAPU_ENGINE_SHM,
.ssmr_feature_id = SSMR_FEAT_SAPU_ENGINE_SHM,
.u_ops_data.mtee = {.mem_type = TRUSTED_MEM_SAPU_ENGINE_SHM},
.notify_remote = false,
.notify_remote_fn = NULL,
.mem_cfg = &mchunk_general_configs,
.dev_name = "MTEE_SAPU_ENGINE_SHM",
},
};
#define MTEE_MCHUNKS_DEVICE_COUNT ARRAY_SIZE(mtee_mchunks)
static struct trusted_mem_device *
create_mtee_mchunk_device(enum TRUSTED_MEM_TYPE mem_type,
struct trusted_mem_configs *cfg,
struct tmem_device_description *dev_desc,
u32 ssmr_feat_id, const char *dev_name)
{
int ret = TMEM_OK;
struct trusted_mem_device *t_device;
/* skip svp and wfd when disable svp */
if ((mem_type == TRUSTED_MEM_SVP_REGION || mem_type == TRUSTED_MEM_WFD_REGION) &&
!is_svp_enabled())
return NULL;
/* skip svp or wfd on TEE */
if ((mem_type == TRUSTED_MEM_SVP_REGION || mem_type == TRUSTED_MEM_WFD_REGION) &&
!is_svp_on_mtee())
return NULL;
t_device = create_trusted_mem_device(mem_type, cfg);
if (INVALID(t_device)) {
pr_err("create device failed: %d:%s\n", mem_type, dev_name);
return NULL;
}
get_mtee_peer_ops(&t_device->peer_ops);
t_device->dev_desc = dev_desc;
snprintf(t_device->name, MAX_DEVICE_NAME_LEN, "%s", dev_name);
t_device->ssmr_feature_id = ssmr_feat_id;
t_device->mem_type = mem_type;
ret = register_trusted_mem_device(mem_type, t_device);
if (ret) {
destroy_trusted_mem_device(t_device);
pr_err("register device failed: %d:%s\n", mem_type, dev_name);
return NULL;
}
return t_device;
}
int mtee_mchunks_init(void)
{
struct trusted_mem_device *t_device;
int idx;
pr_info("%s:%d (%d)\n", __func__, __LINE__,
(int)MTEE_MCHUNKS_DEVICE_COUNT);
for (idx = 0; idx < MTEE_MCHUNKS_DEVICE_COUNT; idx++) {
t_device = create_mtee_mchunk_device(
mtee_mchunks[idx].kern_tmem_type,
mtee_mchunks[idx].mem_cfg, &mtee_mchunks[idx],
mtee_mchunks[idx].ssmr_feature_id,
mtee_mchunks[idx].dev_name);
if (INVALID(t_device)) {
pr_info("don't create MTEE tmem device: %d:%s\n",
mtee_mchunks[idx].kern_tmem_type,
mtee_mchunks[idx].dev_name);
}
}
pr_info("%s:%d (end)\n", __func__, __LINE__);
return TMEM_OK;
}
void mtee_mchunks_exit(void)
{
}