Fix source file permissions in the project
[platform/core/security/tef-simulator.git] / include / include / tee_command.h
1 /*
2  * =====================================================================================
3  *
4  *       Filename:  tee_command.h
5  *
6  *    Description:  TEEC Connection Header file
7  *
8  *        Version:  1.0
9  *        Created:  26 March 2015 12:43:30  IST
10  *       Revision:  Original
11  *       Compiler:  gcc
12  *
13  *         Author:  CHERYL (cb), cheryl.b@samsung.com
14  *   Organization:  Samsung Electronics
15  *
16  * =====================================================================================
17  */
18
19 #ifndef __TEE_COMMAND_H__
20 #define __TEE_COMMAND_H__
21
22 typedef enum {
23         INVALID = -1,
24         INITIALIZE_CONTEXT = 0,
25         OPEN_SESSION,
26         REGISTER_SHARED_MEMORY,
27         INVOKE_COMMAND,
28         RELEASE_SHARED_MEMORY,
29         REQUEST_CANCELLATION,
30         CLOSE_SESSION,
31         FINALIZE_CONTEXT,
32         OPEN_TA_SESSION,
33         INVOKE_TA_COMMAND,
34         CLOSE_TA_SESSION,
35         CHECK_MEMORY,
36         PANIC
37 } TEE_CMD;
38 #endif /* __TEE_COMMAND_H__ */