Zephyr Project API 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
tee.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 EPAM Systems
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12
13/*
14 * Copyright (c) 2015-2016, Linaro Limited
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are met:
19 *
20 * 1. Redistributions of source code must retain the above copyright notice,
21 * this list of conditions and the following disclaimer.
22 *
23 * 2. Redistributions in binary form must reproduce the above copyright notice,
24 * this list of conditions and the following disclaimer in the documentation
25 * and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39#ifndef ZEPHYR_INCLUDE_DRIVERS_TEE_H_
40#define ZEPHYR_INCLUDE_DRIVERS_TEE_H_
41
42#include <zephyr/device.h>
43#include <zephyr/kernel.h>
44#include <zephyr/sys/util.h>
45
70
71#ifdef __cplusplus
72extern "C" {
73#endif
74#define TEE_UUID_LEN 16
75
76#define TEE_GEN_CAP_GP BIT(0) /* GlobalPlatform compliant TEE */
77#define TEE_GEN_CAP_PRIVILEGED BIT(1) /* Privileged device (for supplicant) */
78#define TEE_GEN_CAP_REG_MEM BIT(2) /* Supports registering shared memory */
79#define TEE_GEN_CAP_MEMREF_NULL BIT(3) /* Support NULL MemRef */
80
81#define TEE_SHM_REGISTER BIT(0)
82#define TEE_SHM_ALLOC BIT(1)
83
84#define TEE_PARAM_ATTR_TYPE_NONE 0 /* parameter not used */
85#define TEE_PARAM_ATTR_TYPE_VALUE_INPUT 1
86#define TEE_PARAM_ATTR_TYPE_VALUE_OUTPUT 2
87#define TEE_PARAM_ATTR_TYPE_VALUE_INOUT 3 /* input and output */
88#define TEE_PARAM_ATTR_TYPE_MEMREF_INPUT 5
89#define TEE_PARAM_ATTR_TYPE_MEMREF_OUTPUT 6
90#define TEE_PARAM_ATTR_TYPE_MEMREF_INOUT 7 /* input and output */
91#define TEE_PARAM_ATTR_TYPE_MASK 0xff
92#define TEE_PARAM_ATTR_META 0x100
93#define TEE_PARAM_ATTR_MASK (TEE_PARAM_ATTR_TYPE_MASK | TEE_PARAM_ATTR_META)
94
108#define TEEC_ORIGIN_API 0x00000001
109#define TEEC_ORIGIN_COMMS 0x00000002
110#define TEEC_ORIGIN_TEE 0x00000003
111#define TEEC_ORIGIN_TRUSTED_APP 0x00000004
112
141
145#define TEEC_SUCCESS 0x00000000
146#define TEEC_ERROR_STORAGE_NOT_AVAILABLE 0xF0100003
147#define TEEC_ERROR_GENERIC 0xFFFF0000
148#define TEEC_ERROR_ACCESS_DENIED 0xFFFF0001
149#define TEEC_ERROR_CANCEL 0xFFFF0002
150#define TEEC_ERROR_ACCESS_CONFLICT 0xFFFF0003
151#define TEEC_ERROR_EXCESS_DATA 0xFFFF0004
152#define TEEC_ERROR_BAD_FORMAT 0xFFFF0005
153#define TEEC_ERROR_BAD_PARAMETERS 0xFFFF0006
154#define TEEC_ERROR_BAD_STATE 0xFFFF0007
155#define TEEC_ERROR_ITEM_NOT_FOUND 0xFFFF0008
156#define TEEC_ERROR_NOT_IMPLEMENTED 0xFFFF0009
157#define TEEC_ERROR_NOT_SUPPORTED 0xFFFF000A
158#define TEEC_ERROR_NO_DATA 0xFFFF000B
159#define TEEC_ERROR_OUT_OF_MEMORY 0xFFFF000C
160#define TEEC_ERROR_BUSY 0xFFFF000D
161#define TEEC_ERROR_COMMUNICATION 0xFFFF000E
162#define TEEC_ERROR_SECURITY 0xFFFF000F
163#define TEEC_ERROR_SHORT_BUFFER 0xFFFF0010
164#define TEEC_ERROR_EXTERNAL_CANCEL 0xFFFF0011
165#define TEEC_ERROR_TARGET_DEAD 0xFFFF3024
166#define TEEC_ERROR_STORAGE_NO_SPACE 0xFFFF3041
167
184#define TEEC_LOGIN_PUBLIC 0x00000000
185#define TEEC_LOGIN_USER 0x00000001
186#define TEEC_LOGIN_GROUP 0x00000002
187#define TEEC_LOGIN_APPLICATION 0x00000004
188#define TEEC_LOGIN_USER_APPLICATION 0x00000005
189#define TEEC_LOGIN_GROUP_APPLICATION 0x00000006
190
203
216
237
248
252struct tee_shm {
253 const struct device *dev;
254 void *addr;
257};
258
265typedef int (*tee_get_version_t)(const struct device *dev, struct tee_version_info *info);
266
273typedef int (*tee_open_session_t)(const struct device *dev, struct tee_open_session_arg *arg,
274 unsigned int num_param, struct tee_param *param,
275 uint32_t *session_id);
282typedef int (*tee_close_session_t)(const struct device *dev, uint32_t session_id);
283
290typedef int (*tee_cancel_t)(const struct device *dev, uint32_t session_id, uint32_t cancel_id);
291
298typedef int (*tee_invoke_func_t)(const struct device *dev, struct tee_invoke_func_arg *arg,
299 unsigned int num_param, struct tee_param *param);
306typedef int (*tee_shm_register_t)(const struct device *dev, struct tee_shm *shm);
307
314typedef int (*tee_shm_unregister_t)(const struct device *dev, struct tee_shm *shm);
315
322typedef int (*tee_suppl_recv_t)(const struct device *dev, uint32_t *func, unsigned int *num_params,
323 struct tee_param *param);
324
331typedef int (*tee_suppl_send_t)(const struct device *dev, unsigned int ret, unsigned int num_params,
332 struct tee_param *param);
333
345
358__syscall int tee_get_version(const struct device *dev, struct tee_version_info *info);
359
360static inline int z_impl_tee_get_version(const struct device *dev, struct tee_version_info *info)
361{
362 const struct tee_driver_api *api = DEVICE_API_GET(tee, dev);
363
364 if (!api->get_version) {
365 return -ENOSYS;
366 }
367
368 return api->get_version(dev, info);
369}
370
386__syscall int tee_open_session(const struct device *dev, struct tee_open_session_arg *arg,
387 unsigned int num_param, struct tee_param *param,
388 uint32_t *session_id);
389
390static inline int z_impl_tee_open_session(const struct device *dev,
391 struct tee_open_session_arg *arg,
392 unsigned int num_param, struct tee_param *param,
393 uint32_t *session_id)
394{
395 const struct tee_driver_api *api = DEVICE_API_GET(tee, dev);
396
397 if (!api->open_session) {
398 return -ENOSYS;
399 }
400
401 return api->open_session(dev, arg, num_param, param, session_id);
402}
403
416__syscall int tee_close_session(const struct device *dev, uint32_t session_id);
417
418static inline int z_impl_tee_close_session(const struct device *dev, uint32_t session_id)
419{
420 const struct tee_driver_api *api = DEVICE_API_GET(tee, dev);
421
422 if (!api->close_session) {
423 return -ENOSYS;
424 }
425
426 return api->close_session(dev, session_id);
427}
428
442__syscall int tee_cancel(const struct device *dev, uint32_t session_id, uint32_t cancel_id);
443
444static inline int z_impl_tee_cancel(const struct device *dev, uint32_t session_id,
445 uint32_t cancel_id)
446{
447 const struct tee_driver_api *api = DEVICE_API_GET(tee, dev);
448
449 if (!api->cancel) {
450 return -ENOSYS;
451 }
452
453 return api->cancel(dev, session_id, cancel_id);
454}
455
470__syscall int tee_invoke_func(const struct device *dev, struct tee_invoke_func_arg *arg,
471 unsigned int num_param, struct tee_param *param);
472
473static inline int z_impl_tee_invoke_func(const struct device *dev, struct tee_invoke_func_arg *arg,
474 unsigned int num_param, struct tee_param *param)
475{
476 const struct tee_driver_api *api = DEVICE_API_GET(tee, dev);
477
478 if (!api->invoke_func) {
479 return -ENOSYS;
480 }
481
482 return api->invoke_func(dev, arg, num_param, param);
483}
484
499int tee_add_shm(const struct device *dev, void *addr, size_t align, size_t size, uint32_t flags,
500 struct tee_shm **shmp);
501
512int tee_rm_shm(const struct device *dev, struct tee_shm *shm);
513
529__syscall int tee_shm_register(const struct device *dev, void *addr, size_t size,
530 uint32_t flags, struct tee_shm **shm);
531
532static inline int z_impl_tee_shm_register(const struct device *dev, void *addr, size_t size,
533 uint32_t flags, struct tee_shm **shm)
534{
536 return tee_add_shm(dev, addr, 0, size, flags | TEE_SHM_REGISTER, shm);
537}
538
551__syscall int tee_shm_unregister(const struct device *dev, struct tee_shm *shm);
552
553static inline int z_impl_tee_shm_unregister(const struct device *dev, struct tee_shm *shm)
554{
555 return tee_rm_shm(dev, shm);
556}
557
572__syscall int tee_shm_alloc(const struct device *dev, size_t size, uint32_t flags,
573 struct tee_shm **shm);
574
575static inline int z_impl_tee_shm_alloc(const struct device *dev, size_t size, uint32_t flags,
576 struct tee_shm **shm)
577{
578 return tee_add_shm(dev, NULL, 0, size, flags | TEE_SHM_ALLOC | TEE_SHM_REGISTER, shm);
579}
580
593__syscall int tee_shm_free(const struct device *dev, struct tee_shm *shm);
594
595static inline int z_impl_tee_shm_free(const struct device *dev, struct tee_shm *shm)
596{
597 return tee_rm_shm(dev, shm);
598}
599
612__syscall int tee_suppl_recv(const struct device *dev, uint32_t *func, unsigned int *num_params,
613 struct tee_param *param);
614
615static inline int z_impl_tee_suppl_recv(const struct device *dev, uint32_t *func,
616 unsigned int *num_params, struct tee_param *param)
617{
618 const struct tee_driver_api *api = DEVICE_API_GET(tee, dev);
619
620 if (!api->suppl_recv) {
621 return -ENOSYS;
622 }
623
624 return api->suppl_recv(dev, func, num_params, param);
625}
626
640__syscall int tee_suppl_send(const struct device *dev, unsigned int ret, unsigned int num_params,
641 struct tee_param *param);
642
643static inline int z_impl_tee_suppl_send(const struct device *dev, unsigned int ret,
644 unsigned int num_params, struct tee_param *param)
645{
646 const struct tee_driver_api *api = DEVICE_API_GET(tee, dev);
647
648 if (!api->suppl_send) {
649 return -ENOSYS;
650 }
651
652 return api->suppl_send(dev, ret, num_params, param);
653}
654
655#ifdef __cplusplus
656}
657#endif
658
662
663#include <zephyr/syscalls/tee.h>
664
665#endif /* ZEPHYR_INCLUDE_DRIVERS_TEE_H_ */
#define DEVICE_API_GET(_class, _dev)
Expands to the pointer of a device's API for a given class.
Definition device.h:1449
#define ENOSYS
Function not implemented.
Definition errno.h:83
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:314
#define TEE_SHM_REGISTER
Definition tee.h:81
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:331
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:74
#define TEE_SHM_ALLOC
Definition tee.h:82
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:306
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:322
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:298
int(* tee_close_session_t)(const struct device *dev, uint32_t session_id)
Callback API to close session to TA.
Definition tee.h:282
int(* tee_get_version_t)(const struct device *dev, struct tee_version_info *info)
Callback API to get current tee version.
Definition tee.h:265
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:290
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
#define NULL
Definition iar_missing_defs.h:20
Public kernel APIs.
flags
Definition parser.h:97
__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:513
Definition tee.h:334
tee_cancel_t cancel
Definition tee.h:338
tee_shm_register_t shm_register
Definition tee.h:340
tee_suppl_recv_t suppl_recv
Definition tee.h:342
tee_close_session_t close_session
Definition tee.h:337
tee_invoke_func_t invoke_func
Definition tee.h:339
tee_suppl_send_t suppl_send
Definition tee.h:343
tee_shm_unregister_t shm_unregister
Definition tee.h:341
tee_get_version_t get_version
Definition tee.h:335
tee_open_session_t open_session
Definition tee.h:336
Invokes a function in a Trusted Application.
Definition tee.h:241
uint32_t func
[in] Trusted Application function, specific to the TA
Definition tee.h:242
uint32_t cancel_id
[in] cancellation id, a unique value to identify this request
Definition tee.h:244
uint32_t ret_origin
[out] origin of the return value
Definition tee.h:246
uint32_t session
[in] session id
Definition tee.h:243
uint32_t ret
[out] return value
Definition tee.h:245
Open session argument
Definition tee.h:207
uint32_t clnt_login
login class of client, TEE_IOCTL_LOGIN_* above
Definition tee.h:210
uint32_t ret
[out] return value
Definition tee.h:213
uint32_t session
[out] session id
Definition tee.h:212
uint32_t ret_origin
[out] origin of the return value
Definition tee.h:214
uint8_t uuid[16]
[in] UUID of the Trusted Application
Definition tee.h:208
uint32_t cancel_id
[in] cancellation id, a unique value to identify this request
Definition tee.h:211
uint8_t clnt_uuid[16]
[in] UUID of client
Definition tee.h:209
Tee parameter.
Definition tee.h:231
uint64_t b
if a memref, size of the buffer, else a value parameter
Definition tee.h:234
uint64_t c
if a memref, shared memory identifier, else a value parameter
Definition tee.h:235
uint64_t attr
attributes
Definition tee.h:232
uint64_t a
if a memref, offset into the shared memory object, else a value
Definition tee.h:233
Tee shared memory structure.
Definition tee.h:252
uint64_t size
[out] shared buffer size
Definition tee.h:255
void * addr
[out] shared buffer pointer
Definition tee.h:254
const struct device * dev
[out] pointer to the device driver structure
Definition tee.h:253
uint32_t flags
[out] shared buffer flags
Definition tee.h:256
TEE version.
Definition tee.h:198
uint32_t gen_caps
Generic capabilities, defined by TEE_GEN_CAPS_* above.
Definition tee.h:201
uint32_t impl_caps
[out] implementation specific capabilities
Definition tee.h:200
uint32_t impl_id
[out] TEE implementation id
Definition tee.h:199
Misc utilities.