39#ifndef ZEPHYR_INCLUDE_DRIVERS_TEE_H_
40#define ZEPHYR_INCLUDE_DRIVERS_TEE_H_
72#define TEE_UUID_LEN 16
74#define TEE_GEN_CAP_GP BIT(0)
75#define TEE_GEN_CAP_PRIVILEGED BIT(1)
76#define TEE_GEN_CAP_REG_MEM BIT(2)
77#define TEE_GEN_CAP_MEMREF_NULL BIT(3)
79#define TEE_SHM_REGISTER BIT(0)
80#define TEE_SHM_ALLOC BIT(1)
82#define TEE_PARAM_ATTR_TYPE_NONE 0
83#define TEE_PARAM_ATTR_TYPE_VALUE_INPUT 1
84#define TEE_PARAM_ATTR_TYPE_VALUE_OUTPUT 2
85#define TEE_PARAM_ATTR_TYPE_VALUE_INOUT 3
86#define TEE_PARAM_ATTR_TYPE_MEMREF_INPUT 5
87#define TEE_PARAM_ATTR_TYPE_MEMREF_OUTPUT 6
88#define TEE_PARAM_ATTR_TYPE_MEMREF_INOUT 7
89#define TEE_PARAM_ATTR_TYPE_MASK 0xff
90#define TEE_PARAM_ATTR_META 0x100
91#define TEE_PARAM_ATTR_MASK (TEE_PARAM_ATTR_TYPE_MASK | TEE_PARAM_ATTR_META)
106#define TEEC_ORIGIN_API 0x00000001
107#define TEEC_ORIGIN_COMMS 0x00000002
108#define TEEC_ORIGIN_TEE 0x00000003
109#define TEEC_ORIGIN_TRUSTED_APP 0x00000004
143#define TEEC_SUCCESS 0x00000000
144#define TEEC_ERROR_STORAGE_NOT_AVAILABLE 0xF0100003
145#define TEEC_ERROR_GENERIC 0xFFFF0000
146#define TEEC_ERROR_ACCESS_DENIED 0xFFFF0001
147#define TEEC_ERROR_CANCEL 0xFFFF0002
148#define TEEC_ERROR_ACCESS_CONFLICT 0xFFFF0003
149#define TEEC_ERROR_EXCESS_DATA 0xFFFF0004
150#define TEEC_ERROR_BAD_FORMAT 0xFFFF0005
151#define TEEC_ERROR_BAD_PARAMETERS 0xFFFF0006
152#define TEEC_ERROR_BAD_STATE 0xFFFF0007
153#define TEEC_ERROR_ITEM_NOT_FOUND 0xFFFF0008
154#define TEEC_ERROR_NOT_IMPLEMENTED 0xFFFF0009
155#define TEEC_ERROR_NOT_SUPPORTED 0xFFFF000A
156#define TEEC_ERROR_NO_DATA 0xFFFF000B
157#define TEEC_ERROR_OUT_OF_MEMORY 0xFFFF000C
158#define TEEC_ERROR_BUSY 0xFFFF000D
159#define TEEC_ERROR_COMMUNICATION 0xFFFF000E
160#define TEEC_ERROR_SECURITY 0xFFFF000F
161#define TEEC_ERROR_SHORT_BUFFER 0xFFFF0010
162#define TEEC_ERROR_EXTERNAL_CANCEL 0xFFFF0011
163#define TEEC_ERROR_TARGET_DEAD 0xFFFF3024
164#define TEEC_ERROR_STORAGE_NO_SPACE 0xFFFF3041
182#define TEEC_LOGIN_PUBLIC 0x00000000
183#define TEEC_LOGIN_USER 0x00000001
184#define TEEC_LOGIN_GROUP 0x00000002
185#define TEEC_LOGIN_APPLICATION 0x00000004
186#define TEEC_LOGIN_USER_APPLICATION 0x00000005
187#define TEEC_LOGIN_GROUP_APPLICATION 0x00000006
274 unsigned int num_param,
struct tee_param *param,
302 unsigned int num_param,
struct tee_param *param);
371 if (!api->get_version) {
375 return api->get_version(dev, info);
394 unsigned int num_param,
struct tee_param *param,
397static inline int z_impl_tee_open_session(
const struct device *dev,
399 unsigned int num_param,
struct tee_param *param,
404 if (!api->open_session) {
408 return api->open_session(dev, arg, num_param, param, session_id);
425static inline int z_impl_tee_close_session(
const struct device *dev,
uint32_t session_id)
429 if (!api->close_session) {
433 return api->close_session(dev, session_id);
451static inline int z_impl_tee_cancel(
const struct device *dev,
uint32_t session_id,
460 return api->cancel(dev, session_id, cancel_id);
478 unsigned int num_param,
struct tee_param *param);
481 unsigned int num_param,
struct tee_param *param)
485 if (!api->invoke_func) {
489 return api->invoke_func(dev, arg, num_param, param);
539static inline int z_impl_tee_shm_register(
const struct device *dev,
void *addr,
size_t size,
542 flags &= ~TEE_SHM_ALLOC;
560static inline int z_impl_tee_shm_unregister(
const struct device *dev,
struct tee_shm *shm)
582static inline int z_impl_tee_shm_alloc(
const struct device *dev,
size_t size,
uint32_t flags,
602static inline int z_impl_tee_shm_free(
const struct device *dev,
struct tee_shm *shm)
622static inline int z_impl_tee_suppl_recv(
const struct device *dev,
uint32_t *func,
623 unsigned int *num_params,
struct tee_param *param)
627 if (!api->suppl_recv) {
631 return api->suppl_recv(dev, func, num_params, param);
650static inline int z_impl_tee_suppl_send(
const struct device *dev,
unsigned int ret,
651 unsigned int num_params,
struct tee_param *param)
655 if (!api->suppl_send) {
659 return api->suppl_send(dev, ret, num_params, param);
670#include <zephyr/syscalls/tee.h>
#define ENOSYS
Function not implemented.
Definition errno.h:82
int tee_shm_register(const struct device *dev, void *addr, size_t size, uint32_t flags, struct tee_shm **shm)
Register shared memory for Trusted Environment.
int tee_suppl_recv(const struct device *dev, uint32_t *func, unsigned int *num_params, struct tee_param *param)
Receive a request for TEE Supplicant.
int(* tee_shm_unregister_t)(const struct device *dev, struct tee_shm *shm)
Callback API to unregister shared memory.
Definition tee.h:319
#define TEE_SHM_REGISTER
Definition tee.h:79
int tee_shm_free(const struct device *dev, struct tee_shm *shm)
Free shared memory region for Trusted Environment.
int tee_cancel(const struct device *dev, uint32_t session_id, uint32_t cancel_id)
Cancel session or invoke function for Trusted Environment.
int(* tee_suppl_send_t)(const struct device *dev, unsigned int ret, unsigned int num_params, struct tee_param *param)
Callback API to send a request for TEE supplicant.
Definition tee.h:338
int tee_shm_alloc(const struct device *dev, size_t size, uint32_t flags, struct tee_shm **shm)
Allocate shared memory region for Trusted Environment.
#define TEE_UUID_LEN
Definition tee.h:72
#define TEE_SHM_ALLOC
Definition tee.h:80
int tee_suppl_send(const struct device *dev, unsigned int ret, unsigned int num_params, struct tee_param *param)
Send a request for TEE Supplicant function.
int(* tee_shm_register_t)(const struct device *dev, struct tee_shm *shm)
Callback API to register shared memory.
Definition tee.h:310
int(* tee_suppl_recv_t)(const struct device *dev, uint32_t *func, unsigned int *num_params, struct tee_param *param)
Callback API to receive a request for TEE supplicant.
Definition tee.h:328
int(* tee_invoke_func_t)(const struct device *dev, struct tee_invoke_func_arg *arg, unsigned int num_param, struct tee_param *param)
Callback API to invoke function to TA.
Definition tee.h:301
int(* tee_close_session_t)(const struct device *dev, uint32_t session_id)
Callback API to close session to TA.
Definition tee.h:283
int(* tee_get_version_t)(const struct device *dev, struct tee_version_info *info)
Callback API to get current tee version.
Definition tee.h:264
int tee_close_session(const struct device *dev, uint32_t session_id)
Close session for Trusted Environment.
int(* tee_cancel_t)(const struct device *dev, uint32_t session_id, uint32_t cancel_id)
Callback API to cancel open session of invoke function to TA.
Definition tee.h:292
int tee_open_session(const struct device *dev, struct tee_open_session_arg *arg, unsigned int num_param, struct tee_param *param, uint32_t *session_id)
Open session for Trusted Environment.
int tee_get_version(const struct device *dev, struct tee_version_info *info)
Get the current TEE version info.
int tee_shm_unregister(const struct device *dev, struct tee_shm *shm)
Unregister shared memory for Trusted Environment.
int tee_add_shm(const struct device *dev, void *addr, size_t align, size_t size, uint32_t flags, struct tee_shm **shmp)
Helper function to allocate and register shared memory.
int tee_invoke_func(const struct device *dev, struct tee_invoke_func_arg *arg, unsigned int num_param, struct tee_param *param)
Invoke function for Trusted Environment Application.
int tee_rm_shm(const struct device *dev, struct tee_shm *shm)
Helper function to remove and unregister shared memory.
int(* tee_open_session_t)(const struct device *dev, struct tee_open_session_arg *arg, unsigned int num_param, struct tee_param *param, uint32_t *session_id)
Callback API to open session to Trusted Application.
Definition tee.h:273
flags
Definition parser.h:96
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
Runtime device structure (in ROM) per driver instance.
Definition device.h:403
const void * api
Address of the API structure exposed by the device instance.
Definition device.h:409
tee_cancel_t cancel
Definition tee.h:345
tee_shm_register_t shm_register
Definition tee.h:347
tee_suppl_recv_t suppl_recv
Definition tee.h:349
tee_close_session_t close_session
Definition tee.h:344
tee_invoke_func_t invoke_func
Definition tee.h:346
tee_suppl_send_t suppl_send
Definition tee.h:350
tee_shm_unregister_t shm_unregister
Definition tee.h:348
tee_get_version_t get_version
Definition tee.h:342
tee_open_session_t open_session
Definition tee.h:343
Invokes a function in a Trusted Application.
Definition tee.h:239
uint32_t func
[in] Trusted Application function, specific to the TA
Definition tee.h:240
uint32_t cancel_id
[in] cancellation id, a unique value to identify this request
Definition tee.h:242
uint32_t ret_origin
[out] origin of the return value
Definition tee.h:244
uint32_t session
[in] session id
Definition tee.h:241
uint32_t ret
[out] return value
Definition tee.h:243
Open session argument
Definition tee.h:205
uint32_t clnt_login
login class of client, TEE_IOCTL_LOGIN_* above
Definition tee.h:208
uint32_t ret
[out] return value
Definition tee.h:211
uint32_t session
[out] session id
Definition tee.h:210
uint32_t ret_origin
[out] origin of the return value
Definition tee.h:212
uint8_t uuid[16]
[in] UUID of the Trusted Application
Definition tee.h:206
uint32_t cancel_id
[in] cancellation id, a unique value to identify this request
Definition tee.h:209
uint8_t clnt_uuid[16]
[in] UUID of client
Definition tee.h:207
Tee parameter.
Definition tee.h:229
uint64_t b
if a memref, size of the buffer, else a value parameter
Definition tee.h:232
uint64_t c
if a memref, shared memory identifier, else a value parameter
Definition tee.h:233
uint64_t attr
attributes
Definition tee.h:230
uint64_t a
if a memref, offset into the shared memory object, else a value
Definition tee.h:231
Tee shared memory structure.
Definition tee.h:250
uint64_t size
[out] shared buffer size
Definition tee.h:253
void * addr
[out] shared buffer pointer
Definition tee.h:252
const struct device * dev
[out] pointer to the device driver structure
Definition tee.h:251
uint32_t flags
[out] shared buffer flags
Definition tee.h:254
TEE version.
Definition tee.h:196
uint32_t gen_caps
Generic capabilities, defined by TEE_GEN_CAPS_* above.
Definition tee.h:199
uint32_t impl_caps
[out] implementation specific capabilities
Definition tee.h:198
uint32_t impl_id
[out] TEE implementation id
Definition tee.h:197