11bb92983SJerome Forissier /* SPDX-License-Identifier: BSD-2-Clause */ 2b0104773SPascal Brand /* 3b0104773SPascal Brand * Copyright (c) 2014, STMicroelectronics International N.V. 4b0104773SPascal Brand */ 5b0104773SPascal Brand 679a3c601SCedric Chaumont /* Based on GP TEE Internal Core API Specification Version 1.1 */ 779a3c601SCedric Chaumont 8b0104773SPascal Brand #ifndef TEE_API_DEFINES_H 9b0104773SPascal Brand #define TEE_API_DEFINES_H 10b0104773SPascal Brand 1179a3c601SCedric Chaumont #define TEE_INT_CORE_API_SPEC_VERSION 0x0000000A 1279a3c601SCedric Chaumont 13b0104773SPascal Brand #define TEE_HANDLE_NULL 0 14b0104773SPascal Brand 15b0104773SPascal Brand #define TEE_TIMEOUT_INFINITE 0xFFFFFFFF 16b0104773SPascal Brand 17b0104773SPascal Brand /* API Error Codes */ 18b0104773SPascal Brand #define TEE_SUCCESS 0x00000000 1979a3c601SCedric Chaumont #define TEE_ERROR_CORRUPT_OBJECT 0xF0100001 2079a3c601SCedric Chaumont #define TEE_ERROR_CORRUPT_OBJECT_2 0xF0100002 2179a3c601SCedric Chaumont #define TEE_ERROR_STORAGE_NOT_AVAILABLE 0xF0100003 2279a3c601SCedric Chaumont #define TEE_ERROR_STORAGE_NOT_AVAILABLE_2 0xF0100004 23*91fc6bd8SJerome Forissier #define TEE_ERROR_CIPHERTEXT_INVALID 0xF0100006 24b0104773SPascal Brand #define TEE_ERROR_GENERIC 0xFFFF0000 25b0104773SPascal Brand #define TEE_ERROR_ACCESS_DENIED 0xFFFF0001 26b0104773SPascal Brand #define TEE_ERROR_CANCEL 0xFFFF0002 27b0104773SPascal Brand #define TEE_ERROR_ACCESS_CONFLICT 0xFFFF0003 28b0104773SPascal Brand #define TEE_ERROR_EXCESS_DATA 0xFFFF0004 29b0104773SPascal Brand #define TEE_ERROR_BAD_FORMAT 0xFFFF0005 30b0104773SPascal Brand #define TEE_ERROR_BAD_PARAMETERS 0xFFFF0006 31b0104773SPascal Brand #define TEE_ERROR_BAD_STATE 0xFFFF0007 32b0104773SPascal Brand #define TEE_ERROR_ITEM_NOT_FOUND 0xFFFF0008 33b0104773SPascal Brand #define TEE_ERROR_NOT_IMPLEMENTED 0xFFFF0009 34b0104773SPascal Brand #define TEE_ERROR_NOT_SUPPORTED 0xFFFF000A 35b0104773SPascal Brand #define TEE_ERROR_NO_DATA 0xFFFF000B 36b0104773SPascal Brand #define TEE_ERROR_OUT_OF_MEMORY 0xFFFF000C 37b0104773SPascal Brand #define TEE_ERROR_BUSY 0xFFFF000D 38b0104773SPascal Brand #define TEE_ERROR_COMMUNICATION 0xFFFF000E 39b0104773SPascal Brand #define TEE_ERROR_SECURITY 0xFFFF000F 40b0104773SPascal Brand #define TEE_ERROR_SHORT_BUFFER 0xFFFF0010 4179a3c601SCedric Chaumont #define TEE_ERROR_EXTERNAL_CANCEL 0xFFFF0011 42b0104773SPascal Brand #define TEE_ERROR_OVERFLOW 0xFFFF300F 43b0104773SPascal Brand #define TEE_ERROR_TARGET_DEAD 0xFFFF3024 44b0104773SPascal Brand #define TEE_ERROR_STORAGE_NO_SPACE 0xFFFF3041 45b0104773SPascal Brand #define TEE_ERROR_MAC_INVALID 0xFFFF3071 46b0104773SPascal Brand #define TEE_ERROR_SIGNATURE_INVALID 0xFFFF3072 47b0104773SPascal Brand #define TEE_ERROR_TIME_NOT_SET 0xFFFF5000 48b0104773SPascal Brand #define TEE_ERROR_TIME_NEEDS_RESET 0xFFFF5001 49b0104773SPascal Brand 50b0104773SPascal Brand /* Parameter Type Constants */ 51b0104773SPascal Brand #define TEE_PARAM_TYPE_NONE 0 52b0104773SPascal Brand #define TEE_PARAM_TYPE_VALUE_INPUT 1 53b0104773SPascal Brand #define TEE_PARAM_TYPE_VALUE_OUTPUT 2 54b0104773SPascal Brand #define TEE_PARAM_TYPE_VALUE_INOUT 3 55b0104773SPascal Brand #define TEE_PARAM_TYPE_MEMREF_INPUT 5 56b0104773SPascal Brand #define TEE_PARAM_TYPE_MEMREF_OUTPUT 6 57b0104773SPascal Brand #define TEE_PARAM_TYPE_MEMREF_INOUT 7 58b0104773SPascal Brand 59b0104773SPascal Brand /* Login Type Constants */ 60b0104773SPascal Brand #define TEE_LOGIN_PUBLIC 0x00000000 61b0104773SPascal Brand #define TEE_LOGIN_USER 0x00000001 62b0104773SPascal Brand #define TEE_LOGIN_GROUP 0x00000002 63b0104773SPascal Brand #define TEE_LOGIN_APPLICATION 0x00000004 64b0104773SPascal Brand #define TEE_LOGIN_APPLICATION_USER 0x00000005 65b0104773SPascal Brand #define TEE_LOGIN_APPLICATION_GROUP 0x00000006 66b0104773SPascal Brand #define TEE_LOGIN_TRUSTED_APP 0xF0000000 67b0104773SPascal Brand 68b0104773SPascal Brand /* Origin Code Constants */ 69b0104773SPascal Brand #define TEE_ORIGIN_API 0x00000001 70b0104773SPascal Brand #define TEE_ORIGIN_COMMS 0x00000002 71b0104773SPascal Brand #define TEE_ORIGIN_TEE 0x00000003 72b0104773SPascal Brand #define TEE_ORIGIN_TRUSTED_APP 0x00000004 73b0104773SPascal Brand 74b0104773SPascal Brand /* Property Sets pseudo handles */ 75b0104773SPascal Brand #define TEE_PROPSET_TEE_IMPLEMENTATION (TEE_PropSetHandle)0xFFFFFFFD 7679a3c601SCedric Chaumont #define TEE_PROPSET_CURRENT_CLIENT (TEE_PropSetHandle)0xFFFFFFFE 7779a3c601SCedric Chaumont #define TEE_PROPSET_CURRENT_TA (TEE_PropSetHandle)0xFFFFFFFF 78b0104773SPascal Brand 79b0104773SPascal Brand /* Memory Access Rights Constants */ 80b0104773SPascal Brand #define TEE_MEMORY_ACCESS_READ 0x00000001 81b0104773SPascal Brand #define TEE_MEMORY_ACCESS_WRITE 0x00000002 82b0104773SPascal Brand #define TEE_MEMORY_ACCESS_ANY_OWNER 0x00000004 83b0104773SPascal Brand 8445d7fb1cSCedric Chaumont /* Memory Management Constant */ 8545d7fb1cSCedric Chaumont #define TEE_MALLOC_FILL_ZERO 0x00000000 8645d7fb1cSCedric Chaumont 87b0104773SPascal Brand /* Other constants */ 88b0104773SPascal Brand #define TEE_STORAGE_PRIVATE 0x00000001 8979a3c601SCedric Chaumont 90b0104773SPascal Brand #define TEE_DATA_FLAG_ACCESS_READ 0x00000001 91b0104773SPascal Brand #define TEE_DATA_FLAG_ACCESS_WRITE 0x00000002 92b0104773SPascal Brand #define TEE_DATA_FLAG_ACCESS_WRITE_META 0x00000004 93b0104773SPascal Brand #define TEE_DATA_FLAG_SHARE_READ 0x00000010 94b0104773SPascal Brand #define TEE_DATA_FLAG_SHARE_WRITE 0x00000020 9584431ae3SCedric Chaumont #define TEE_DATA_FLAG_OVERWRITE 0x00000400 96b0104773SPascal Brand #define TEE_DATA_MAX_POSITION 0xFFFFFFFF 97b0104773SPascal Brand #define TEE_OBJECT_ID_MAX_LEN 64 98b0104773SPascal Brand #define TEE_USAGE_EXTRACTABLE 0x00000001 99b0104773SPascal Brand #define TEE_USAGE_ENCRYPT 0x00000002 100b0104773SPascal Brand #define TEE_USAGE_DECRYPT 0x00000004 101b0104773SPascal Brand #define TEE_USAGE_MAC 0x00000008 102b0104773SPascal Brand #define TEE_USAGE_SIGN 0x00000010 103b0104773SPascal Brand #define TEE_USAGE_VERIFY 0x00000020 104b0104773SPascal Brand #define TEE_USAGE_DERIVE 0x00000040 105b0104773SPascal Brand #define TEE_HANDLE_FLAG_PERSISTENT 0x00010000 106b0104773SPascal Brand #define TEE_HANDLE_FLAG_INITIALIZED 0x00020000 107b0104773SPascal Brand #define TEE_HANDLE_FLAG_KEY_SET 0x00040000 108b0104773SPascal Brand #define TEE_HANDLE_FLAG_EXPECT_TWO_KEYS 0x00080000 109b0104773SPascal Brand #define TEE_OPERATION_CIPHER 1 110b0104773SPascal Brand #define TEE_OPERATION_MAC 3 111b0104773SPascal Brand #define TEE_OPERATION_AE 4 112b0104773SPascal Brand #define TEE_OPERATION_DIGEST 5 113b0104773SPascal Brand #define TEE_OPERATION_ASYMMETRIC_CIPHER 6 114b0104773SPascal Brand #define TEE_OPERATION_ASYMMETRIC_SIGNATURE 7 115b0104773SPascal Brand #define TEE_OPERATION_KEY_DERIVATION 8 1166a2e0a9fSGabor Szekely #define TEE_OPERATION_EXTENSION 0xF 11779a3c601SCedric Chaumont #define TEE_OPERATION_STATE_INITIAL 0x00000000 11879a3c601SCedric Chaumont #define TEE_OPERATION_STATE_ACTIVE 0x00000001 119b0104773SPascal Brand 120b0104773SPascal Brand /* Algorithm Identifiers */ 121b0104773SPascal Brand #define TEE_ALG_AES_ECB_NOPAD 0x10000010 122b0104773SPascal Brand #define TEE_ALG_AES_CBC_NOPAD 0x10000110 123b0104773SPascal Brand #define TEE_ALG_AES_CTR 0x10000210 124b0104773SPascal Brand #define TEE_ALG_AES_CTS 0x10000310 125b0104773SPascal Brand #define TEE_ALG_AES_XTS 0x10000410 126b0104773SPascal Brand #define TEE_ALG_AES_CBC_MAC_NOPAD 0x30000110 127b0104773SPascal Brand #define TEE_ALG_AES_CBC_MAC_PKCS5 0x30000510 128b0104773SPascal Brand #define TEE_ALG_AES_CMAC 0x30000610 129b0104773SPascal Brand #define TEE_ALG_AES_CCM 0x40000710 130b0104773SPascal Brand #define TEE_ALG_AES_GCM 0x40000810 131b0104773SPascal Brand #define TEE_ALG_DES_ECB_NOPAD 0x10000011 132b0104773SPascal Brand #define TEE_ALG_DES_CBC_NOPAD 0x10000111 133b0104773SPascal Brand #define TEE_ALG_DES_CBC_MAC_NOPAD 0x30000111 134b0104773SPascal Brand #define TEE_ALG_DES_CBC_MAC_PKCS5 0x30000511 135b0104773SPascal Brand #define TEE_ALG_DES3_ECB_NOPAD 0x10000013 136b0104773SPascal Brand #define TEE_ALG_DES3_CBC_NOPAD 0x10000113 137b0104773SPascal Brand #define TEE_ALG_DES3_CBC_MAC_NOPAD 0x30000113 138b0104773SPascal Brand #define TEE_ALG_DES3_CBC_MAC_PKCS5 0x30000513 139ade6f848SJerome Forissier #define TEE_ALG_SM4_ECB_NOPAD 0x10000014 140ade6f848SJerome Forissier #define TEE_ALG_SM4_CBC_NOPAD 0x10000114 141ade6f848SJerome Forissier #define TEE_ALG_SM4_CTR 0x10000214 142b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_V1_5_MD5 0x70001830 143b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_V1_5_SHA1 0x70002830 144b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_V1_5_SHA224 0x70003830 145b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_V1_5_SHA256 0x70004830 146b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_V1_5_SHA384 0x70005830 147b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_V1_5_SHA512 0x70006830 148b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_V1_5_MD5SHA1 0x7000F830 149b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_PSS_MGF1_SHA1 0x70212930 150b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_PSS_MGF1_SHA224 0x70313930 151b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_PSS_MGF1_SHA256 0x70414930 152b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_PSS_MGF1_SHA384 0x70515930 153b0104773SPascal Brand #define TEE_ALG_RSASSA_PKCS1_PSS_MGF1_SHA512 0x70616930 154b0104773SPascal Brand #define TEE_ALG_RSAES_PKCS1_V1_5 0x60000130 155b0104773SPascal Brand #define TEE_ALG_RSAES_PKCS1_OAEP_MGF1_SHA1 0x60210230 156b0104773SPascal Brand #define TEE_ALG_RSAES_PKCS1_OAEP_MGF1_SHA224 0x60310230 157b0104773SPascal Brand #define TEE_ALG_RSAES_PKCS1_OAEP_MGF1_SHA256 0x60410230 158b0104773SPascal Brand #define TEE_ALG_RSAES_PKCS1_OAEP_MGF1_SHA384 0x60510230 159b0104773SPascal Brand #define TEE_ALG_RSAES_PKCS1_OAEP_MGF1_SHA512 0x60610230 160b0104773SPascal Brand #define TEE_ALG_RSA_NOPAD 0x60000030 161b0104773SPascal Brand #define TEE_ALG_DSA_SHA1 0x70002131 16279a3c601SCedric Chaumont #define TEE_ALG_DSA_SHA224 0x70003131 16379a3c601SCedric Chaumont #define TEE_ALG_DSA_SHA256 0x70004131 164b0104773SPascal Brand #define TEE_ALG_DH_DERIVE_SHARED_SECRET 0x80000032 165b0104773SPascal Brand #define TEE_ALG_MD5 0x50000001 166b0104773SPascal Brand #define TEE_ALG_SHA1 0x50000002 167b0104773SPascal Brand #define TEE_ALG_SHA224 0x50000003 168b0104773SPascal Brand #define TEE_ALG_SHA256 0x50000004 169b0104773SPascal Brand #define TEE_ALG_SHA384 0x50000005 170b0104773SPascal Brand #define TEE_ALG_SHA512 0x50000006 171b0104773SPascal Brand #define TEE_ALG_MD5SHA1 0x5000000F 172b0104773SPascal Brand #define TEE_ALG_HMAC_MD5 0x30000001 173b0104773SPascal Brand #define TEE_ALG_HMAC_SHA1 0x30000002 174b0104773SPascal Brand #define TEE_ALG_HMAC_SHA224 0x30000003 175b0104773SPascal Brand #define TEE_ALG_HMAC_SHA256 0x30000004 176b0104773SPascal Brand #define TEE_ALG_HMAC_SHA384 0x30000005 177b0104773SPascal Brand #define TEE_ALG_HMAC_SHA512 0x30000006 17847645577SJerome Forissier #define TEE_ALG_HMAC_SM3 0x30000007 179c988227aSPascal Brand /* 180c988227aSPascal Brand * Fix GP Internal Core API v1.1 181c988227aSPascal Brand * "Table 6-12: Structure of Algorithm Identifier" 182c988227aSPascal Brand * indicates ECDSA have the algorithm "0x41" and ECDH "0x42" 183c988227aSPascal Brand * whereas 184c988227aSPascal Brand * "Table 6-11: List of Algorithm Identifiers" defines 185c988227aSPascal Brand * TEE_ALG_ECDSA_P192 as 0x70001042 186c988227aSPascal Brand * 187c988227aSPascal Brand * We chose to define TEE_ALG_ECDSA_P192 as 0x70001041 (conform to table 6-12) 188c988227aSPascal Brand */ 189c988227aSPascal Brand #define TEE_ALG_ECDSA_P192 0x70001041 190c988227aSPascal Brand #define TEE_ALG_ECDSA_P224 0x70002041 191c988227aSPascal Brand #define TEE_ALG_ECDSA_P256 0x70003041 192c988227aSPascal Brand #define TEE_ALG_ECDSA_P384 0x70004041 193c988227aSPascal Brand #define TEE_ALG_ECDSA_P521 0x70005041 19479a3c601SCedric Chaumont #define TEE_ALG_ECDH_P192 0x80001042 19579a3c601SCedric Chaumont #define TEE_ALG_ECDH_P224 0x80002042 19679a3c601SCedric Chaumont #define TEE_ALG_ECDH_P256 0x80003042 19779a3c601SCedric Chaumont #define TEE_ALG_ECDH_P384 0x80004042 19879a3c601SCedric Chaumont #define TEE_ALG_ECDH_P521 0x80005042 199*91fc6bd8SJerome Forissier #define TEE_ALG_SM2_PKE 0x80000045 20047645577SJerome Forissier #define TEE_ALG_SM3 0x50000007 201b0104773SPascal Brand 202b0104773SPascal Brand /* Object Types */ 203b0104773SPascal Brand 204b0104773SPascal Brand #define TEE_TYPE_AES 0xA0000010 205b0104773SPascal Brand #define TEE_TYPE_DES 0xA0000011 206b0104773SPascal Brand #define TEE_TYPE_DES3 0xA0000013 207ade6f848SJerome Forissier #define TEE_TYPE_SM4 0xA0000014 208b0104773SPascal Brand #define TEE_TYPE_HMAC_MD5 0xA0000001 209b0104773SPascal Brand #define TEE_TYPE_HMAC_SHA1 0xA0000002 210b0104773SPascal Brand #define TEE_TYPE_HMAC_SHA224 0xA0000003 211b0104773SPascal Brand #define TEE_TYPE_HMAC_SHA256 0xA0000004 212b0104773SPascal Brand #define TEE_TYPE_HMAC_SHA384 0xA0000005 213b0104773SPascal Brand #define TEE_TYPE_HMAC_SHA512 0xA0000006 21447645577SJerome Forissier #define TEE_TYPE_HMAC_SM3 0xA0000007 /* Not in spec */ 215b0104773SPascal Brand #define TEE_TYPE_RSA_PUBLIC_KEY 0xA0000030 216b0104773SPascal Brand #define TEE_TYPE_RSA_KEYPAIR 0xA1000030 217b0104773SPascal Brand #define TEE_TYPE_DSA_PUBLIC_KEY 0xA0000031 218b0104773SPascal Brand #define TEE_TYPE_DSA_KEYPAIR 0xA1000031 219b0104773SPascal Brand #define TEE_TYPE_DH_KEYPAIR 0xA1000032 22079a3c601SCedric Chaumont #define TEE_TYPE_ECDSA_PUBLIC_KEY 0xA0000041 22179a3c601SCedric Chaumont #define TEE_TYPE_ECDSA_KEYPAIR 0xA1000041 22279a3c601SCedric Chaumont #define TEE_TYPE_ECDH_PUBLIC_KEY 0xA0000042 22379a3c601SCedric Chaumont #define TEE_TYPE_ECDH_KEYPAIR 0xA1000042 224*91fc6bd8SJerome Forissier #define TEE_TYPE_SM2_PKE_PUBLIC_KEY 0xA0000047 225*91fc6bd8SJerome Forissier #define TEE_TYPE_SM2_PKE_KEYPAIR 0xA1000047 226b0104773SPascal Brand #define TEE_TYPE_GENERIC_SECRET 0xA0000000 22779a3c601SCedric Chaumont #define TEE_TYPE_CORRUPTED_OBJECT 0xA00000BE 22879a3c601SCedric Chaumont #define TEE_TYPE_DATA 0xA00000BF 229b0104773SPascal Brand 230b0104773SPascal Brand /* List of Object or Operation Attributes */ 231b0104773SPascal Brand 232b0104773SPascal Brand #define TEE_ATTR_SECRET_VALUE 0xC0000000 233b0104773SPascal Brand #define TEE_ATTR_RSA_MODULUS 0xD0000130 234b0104773SPascal Brand #define TEE_ATTR_RSA_PUBLIC_EXPONENT 0xD0000230 235b0104773SPascal Brand #define TEE_ATTR_RSA_PRIVATE_EXPONENT 0xC0000330 236b0104773SPascal Brand #define TEE_ATTR_RSA_PRIME1 0xC0000430 237b0104773SPascal Brand #define TEE_ATTR_RSA_PRIME2 0xC0000530 238b0104773SPascal Brand #define TEE_ATTR_RSA_EXPONENT1 0xC0000630 239b0104773SPascal Brand #define TEE_ATTR_RSA_EXPONENT2 0xC0000730 240b0104773SPascal Brand #define TEE_ATTR_RSA_COEFFICIENT 0xC0000830 241b0104773SPascal Brand #define TEE_ATTR_DSA_PRIME 0xD0001031 242b0104773SPascal Brand #define TEE_ATTR_DSA_SUBPRIME 0xD0001131 243b0104773SPascal Brand #define TEE_ATTR_DSA_BASE 0xD0001231 244b0104773SPascal Brand #define TEE_ATTR_DSA_PUBLIC_VALUE 0xD0000131 245b0104773SPascal Brand #define TEE_ATTR_DSA_PRIVATE_VALUE 0xC0000231 246b0104773SPascal Brand #define TEE_ATTR_DH_PRIME 0xD0001032 247b0104773SPascal Brand #define TEE_ATTR_DH_SUBPRIME 0xD0001132 248b0104773SPascal Brand #define TEE_ATTR_DH_BASE 0xD0001232 249b0104773SPascal Brand #define TEE_ATTR_DH_X_BITS 0xF0001332 250b0104773SPascal Brand #define TEE_ATTR_DH_PUBLIC_VALUE 0xD0000132 251b0104773SPascal Brand #define TEE_ATTR_DH_PRIVATE_VALUE 0xC0000232 252b0104773SPascal Brand #define TEE_ATTR_RSA_OAEP_LABEL 0xD0000930 253b0104773SPascal Brand #define TEE_ATTR_RSA_PSS_SALT_LENGTH 0xF0000A30 25479a3c601SCedric Chaumont #define TEE_ATTR_ECC_PUBLIC_VALUE_X 0xD0000141 25579a3c601SCedric Chaumont #define TEE_ATTR_ECC_PUBLIC_VALUE_Y 0xD0000241 25679a3c601SCedric Chaumont #define TEE_ATTR_ECC_PRIVATE_VALUE 0xC0000341 25779a3c601SCedric Chaumont #define TEE_ATTR_ECC_CURVE 0xF0000441 258b0104773SPascal Brand 259177603c7SJens Wiklander #define TEE_ATTR_BIT_PROTECTED (1 << 28) 260177603c7SJens Wiklander #define TEE_ATTR_BIT_VALUE (1 << 29) 2617583c59eSCedric Chaumont 262316a94e7SPascal Brand /* List of Supported ECC Curves */ 263316a94e7SPascal Brand #define TEE_ECC_CURVE_NIST_P192 0x00000001 264316a94e7SPascal Brand #define TEE_ECC_CURVE_NIST_P224 0x00000002 265316a94e7SPascal Brand #define TEE_ECC_CURVE_NIST_P256 0x00000003 266316a94e7SPascal Brand #define TEE_ECC_CURVE_NIST_P384 0x00000004 267316a94e7SPascal Brand #define TEE_ECC_CURVE_NIST_P521 0x00000005 268*91fc6bd8SJerome Forissier #define TEE_ECC_CURVE_SM2 0x00000300 269316a94e7SPascal Brand 270316a94e7SPascal Brand 2717583c59eSCedric Chaumont /* Panicked Functions Identification */ 2727583c59eSCedric Chaumont /* TA Interface */ 2737583c59eSCedric Chaumont #define TEE_PANIC_ID_TA_CLOSESESSIONENTRYPOINT 0x00000101 2747583c59eSCedric Chaumont #define TEE_PANIC_ID_TA_CREATEENTRYPOINT 0x00000102 2757583c59eSCedric Chaumont #define TEE_PANIC_ID_TA_DESTROYENTRYPOINT 0x00000103 2767583c59eSCedric Chaumont #define TEE_PANIC_ID_TA_INVOKECOMMANDENTRYPOINT 0x00000104 2777583c59eSCedric Chaumont #define TEE_PANIC_ID_TA_OPENSESSIONENTRYPOINT 0x00000105 2787583c59eSCedric Chaumont /* Property Access */ 2797583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_ALLOCATEPROPERTYENUMERATOR 0x00000201 2807583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_FREEPROPERTYENUMERATOR 0x00000202 2817583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETNEXTPROPERTY 0x00000203 2827583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETPROPERTYASBINARYBLOCK 0x00000204 2837583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETPROPERTYASBOOL 0x00000205 2847583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETPROPERTYASIDENTITY 0x00000206 2857583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETPROPERTYASSTRING 0x00000207 2867583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETPROPERTYASU32 0x00000208 2877583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETPROPERTYASUUID 0x00000209 2887583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETPROPERTYNAME 0x0000020A 2897583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_RESETPROPERTYENUMERATOR 0x0000020B 2907583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_STARTPROPERTYENUMERATOR 0x0000020C 2917583c59eSCedric Chaumont /* Panic Function */ 2927583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_PANIC 0x00000301 2937583c59eSCedric Chaumont /* Internal Client API */ 2947583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CLOSETASESSION 0x00000401 2957583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_INVOKETACOMMAND 0x00000402 2967583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_OPENTASESSION 0x00000403 2977583c59eSCedric Chaumont /* Cancellation */ 2987583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETCANCELLATIONFLAG 0x00000501 2997583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MASKCANCELLATION 0x00000502 3007583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_UNMASKCANCELLATION 0x00000503 3017583c59eSCedric Chaumont /* Memory Management */ 3027583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CHECKMEMORYACCESSRIGHTS 0x00000601 3037583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_FREE 0x00000602 3047583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETINSTANCEDATA 0x00000603 3057583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MALLOC 0x00000604 3067583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MEMCOMPARE 0x00000605 3077583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MEMFILL 0x00000606 3087583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MEMMOVE 0x00000607 3097583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_REALLOC 0x00000608 3107583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_SETINSTANCEDATA 0x00000609 3117583c59eSCedric Chaumont /* Generic Object */ 3127583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CLOSEOBJECT 0x00000701 3137583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETOBJECTBUFFERATTRIBUTE 0x00000702 3147583c59eSCedric Chaumont /* deprecated */ 3157583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETOBJECTINFO 0x00000703 3167583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETOBJECTVALUEATTRIBUTE 0x00000704 3177583c59eSCedric Chaumont /* deprecated */ 3187583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_RESTRICTOBJECTUSAGE 0x00000705 3197583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETOBJECTINFO1 0x00000706 3207583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_RESTRICTOBJECTUSAGE1 0x00000707 3217583c59eSCedric Chaumont /* Transient Object */ 3227583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_ALLOCATETRANSIENTOBJECT 0x00000801 3237583c59eSCedric Chaumont /* deprecated */ 3247583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_COPYOBJECTATTRIBUTES 0x00000802 3257583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_FREETRANSIENTOBJECT 0x00000803 3267583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GENERATEKEY 0x00000804 3277583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_INITREFATTRIBUTE 0x00000805 3287583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_INITVALUEATTRIBUTE 0x00000806 3297583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_POPULATETRANSIENTOBJECT 0x00000807 3307583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_RESETTRANSIENTOBJECT 0x00000808 3317583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_COPYOBJECTATTRIBUTES1 0x00000809 3327583c59eSCedric Chaumont /* Persistent Object */ 3337583c59eSCedric Chaumont /* deprecated */ 3347583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CLOSEANDDELETEPERSISTENTOBJECT 0x00000901 3357583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CREATEPERSISTENTOBJECT 0x00000902 3367583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_OPENPERSISTENTOBJECT 0x00000903 3377583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_RENAMEPERSISTENTOBJECT 0x00000904 3387583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CLOSEANDDELETEPERSISTENTOBJECT1 0x00000905 3397583c59eSCedric Chaumont /* Persistent Object Enumeration */ 3407583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_ALLOCATEPERSISTENTOBJECTENUMERATOR 0x00000A01 3417583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_FREEPERSISTENTOBJECTENUMERATOR 0x00000A02 3427583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETNEXTPERSISTENTOBJECT 0x00000A03 3437583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_RESETPERSISTENTOBJECTENUMERATOR 0x00000A04 3447583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_STARTPERSISTENTOBJECTENUMERATOR 0x00000A05 3457583c59eSCedric Chaumont /* Data Stream Access */ 3467583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_READOBJECTDATA 0x00000B01 3477583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_SEEKOBJECTDATA 0x00000B02 3487583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_TRUNCATEOBJECTDATA 0x00000B03 3497583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_WRITEOBJECTDATA 0x00000B04 3507583c59eSCedric Chaumont /* Generic Operation */ 3517583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_ALLOCATEOPERATION 0x00000C01 3527583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_COPYOPERATION 0x00000C02 3537583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_FREEOPERATION 0x00000C03 3547583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETOPERATIONINFO 0x00000C04 3557583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_RESETOPERATION 0x00000C05 3567583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_SETOPERATIONKEY 0x00000C06 3577583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_SETOPERATIONKEY2 0x00000C07 3587583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETOPERATIONINFOMULTIPLE 0x00000C08 3597583c59eSCedric Chaumont /* Message Digest */ 3607583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_DIGESTDOFINAL 0x00000D01 3617583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_DIGESTUPDATE 0x00000D02 3627583c59eSCedric Chaumont /* Symmetric Cipher */ 3637583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CIPHERDOFINAL 0x00000E01 3647583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CIPHERINIT 0x00000E02 3657583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_CIPHERUPDATE 0x00000E03 3667583c59eSCedric Chaumont /* MAC */ 3677583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MACCOMPAREFINAL 0x00000F01 3687583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MACCOMPUTEFINAL 0x00000F02 3697583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MACINIT 0x00000F03 3707583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_MACUPDATE 0x00000F04 3717583c59eSCedric Chaumont /* Authenticated Encryption */ 3727583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_AEDECRYPTFINAL 0x00001001 3737583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_AEENCRYPTFINAL 0x00001002 3747583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_AEINIT 0x00001003 3757583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_AEUPDATE 0x00001004 3767583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_AEUPDATEAAD 0x00001005 3777583c59eSCedric Chaumont /* Asymmetric */ 3787583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_ASYMMETRICDECRYPT 0x00001101 3797583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_ASYMMETRICENCRYPT 0x00001102 3807583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_ASYMMETRICSIGNDIGEST 0x00001103 3817583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_ASYMMETRICVERIFYDIGEST 0x00001104 3827583c59eSCedric Chaumont /* Key Derivation */ 3837583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_DERIVEKEY 0x00001201 3847583c59eSCedric Chaumont /* Random Data Generation */ 3857583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GENERATERANDOM 0x00001301 3867583c59eSCedric Chaumont /* Time */ 3877583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETREETIME 0x00001401 3887583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETSYSTEMTIME 0x00001402 3897583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_GETTAPERSISTENTTIME 0x00001403 3907583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_SETTAPERSISTENTTIME 0x00001404 3917583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_WAIT 0x00001405 3927583c59eSCedric Chaumont /* Memory Allocation and Size of Objects */ 3937583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTFMMCONTEXTSIZEINU32 0x00001501 3947583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTFMMSIZEINU32 0x00001502 3957583c59eSCedric Chaumont /* Initialization */ 3967583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTINIT 0x00001601 3977583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTINITFMM 0x00001602 3987583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTINITFMMCONTEXT 0x00001603 3997583c59eSCedric Chaumont /* Converter */ 4007583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCONVERTFROMOCTETSTRING 0x00001701 4017583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCONVERTFROMS32 0x00001702 4027583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCONVERTTOOCTETSTRING 0x00001703 4037583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCONVERTTOS32 0x00001704 4047583c59eSCedric Chaumont /* Logical Operation */ 4057583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCMP 0x00001801 4067583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCMPS32 0x00001802 4077583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTGETBIT 0x00001803 4087583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTGETBITCOUNT 0x00001804 4097583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTSHIFTRIGHT 0x00001805 4107583c59eSCedric Chaumont /* Basic Arithmetic */ 4117583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTADD 0x00001901 4127583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTDIV 0x00001902 4137583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTMUL 0x00001903 4147583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTNEG 0x00001904 4157583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTSQUARE 0x00001905 4167583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTSUB 0x00001906 4177583c59eSCedric Chaumont /* Modular Arithmetic */ 4187583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTADDMOD 0x00001A01 4197583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTINVMOD 0x00001A02 4207583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTMOD 0x00001A03 4217583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTMULMOD 0x00001A04 4227583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTSQUAREMOD 0x00001A05 4237583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTSUBMOD 0x00001A06 4247583c59eSCedric Chaumont /* Other Arithmetic */ 4257583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCOMPUTEEXTENDEDGCD 0x00001B01 4267583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTISPROBABLEPRIME 0x00001B02 4277583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTRELATIVEPRIME 0x00001B03 4287583c59eSCedric Chaumont /* Fast Modular Multiplication */ 4297583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCOMPUTEFMM 0x00001C01 4307583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCONVERTFROMFMM 0x00001C02 4317583c59eSCedric Chaumont #define TEE_PANIC_ID_TEE_BIGINTCONVERTTOFMM 0x00001C03 432177603c7SJens Wiklander 433b0104773SPascal Brand /* 434b0104773SPascal Brand * The macro TEE_PARAM_TYPES can be used to construct a value that you can 435b0104773SPascal Brand * compare against an incoming paramTypes to check the type of all the 436b0104773SPascal Brand * parameters in one comparison, like in the following example: 437b0104773SPascal Brand * if (paramTypes != TEE_PARAM_TYPES(TEE_PARAM_TYPE_MEMREF_INPUT, 438b0104773SPascal Brand * TEE_PARAM_TYPE_MEMREF_OUPUT, 439b0104773SPascal Brand * TEE_PARAM_TYPE_NONE, TEE_PARAM_TYPE_NONE)) { 440b0104773SPascal Brand * return TEE_ERROR_BAD_PARAMETERS; 441b0104773SPascal Brand * } 442b0104773SPascal Brand */ 443b0104773SPascal Brand #define TEE_PARAM_TYPES(t0,t1,t2,t3) \ 444b0104773SPascal Brand ((t0) | ((t1) << 4) | ((t2) << 8) | ((t3) << 12)) 445b0104773SPascal Brand 446b0104773SPascal Brand /* 447b0104773SPascal Brand * The macro TEE_PARAM_TYPE_GET can be used to extract the type of a given 448b0104773SPascal Brand * parameter from paramTypes if you need more fine-grained type checking. 449b0104773SPascal Brand */ 450b0104773SPascal Brand #define TEE_PARAM_TYPE_GET(t, i) ((((uint32_t)t) >> ((i)*4)) & 0xF) 451b0104773SPascal Brand 452b0104773SPascal Brand /* 453b0104773SPascal Brand * The macro TEE_PARAM_TYPE_SET can be used to load the type of a given 454b0104773SPascal Brand * parameter from paramTypes without specifying all types (TEE_PARAM_TYPES) 455b0104773SPascal Brand */ 456b0104773SPascal Brand #define TEE_PARAM_TYPE_SET(t, i) (((uint32_t)(t) & 0xF) << ((i)*4)) 457b0104773SPascal Brand 458b0104773SPascal Brand /* Not specified in the standard */ 459b0104773SPascal Brand #define TEE_NUM_PARAMS 4 460b0104773SPascal Brand 461b0104773SPascal Brand /* TEE Arithmetical APIs */ 462b0104773SPascal Brand 463b0104773SPascal Brand #define TEE_BigIntSizeInU32(n) ((((n)+31)/32)+2) 464b0104773SPascal Brand 465b0104773SPascal Brand #endif /* TEE_API_DEFINES_H */ 466