xref: /optee_os/lib/libutee/include/utee_defines.h (revision ade6f848e084d7c63f1e3866d7c059b8a9f9e834)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2014, STMicroelectronics International N.V.
4  */
5 #ifndef UTEE_DEFINES_H
6 #define UTEE_DEFINES_H
7 
8 #include <compiler.h>
9 #include <types_ext.h>
10 
11 /*
12  * Copied from TEE Internal API specificaion v1.0 table 6-9 "Structure of
13  * Algorithm Identifier".
14  */
15 #define TEE_MAIN_ALGO_MD5        0x01
16 #define TEE_MAIN_ALGO_SHA1       0x02
17 #define TEE_MAIN_ALGO_SHA224     0x03
18 #define TEE_MAIN_ALGO_SHA256     0x04
19 #define TEE_MAIN_ALGO_SHA384     0x05
20 #define TEE_MAIN_ALGO_SHA512     0x06
21 #define TEE_MAIN_ALGO_AES        0x10
22 #define TEE_MAIN_ALGO_DES        0x11
23 #define TEE_MAIN_ALGO_DES2       0x12
24 #define TEE_MAIN_ALGO_DES3       0x13
25 #define TEE_MAIN_ALGO_SM4        0x14 /* Not in v1.2, extrapolated */
26 #define TEE_MAIN_ALGO_RSA        0x30
27 #define TEE_MAIN_ALGO_DSA        0x31
28 #define TEE_MAIN_ALGO_DH         0x32
29 #define TEE_MAIN_ALGO_ECDSA      0x41
30 #define TEE_MAIN_ALGO_ECDH       0x42
31 #define TEE_MAIN_ALGO_HKDF       0xC0 /* OP-TEE extension */
32 #define TEE_MAIN_ALGO_CONCAT_KDF 0xC1 /* OP-TEE extension */
33 #define TEE_MAIN_ALGO_PBKDF2     0xC2 /* OP-TEE extension */
34 
35 
36 #define TEE_CHAIN_MODE_ECB_NOPAD        0x0
37 #define TEE_CHAIN_MODE_CBC_NOPAD        0x1
38 #define TEE_CHAIN_MODE_CTR              0x2
39 #define TEE_CHAIN_MODE_CTS              0x3
40 #define TEE_CHAIN_MODE_XTS              0x4
41 #define TEE_CHAIN_MODE_CBC_MAC_PKCS5    0x5
42 #define TEE_CHAIN_MODE_CMAC             0x6
43 #define TEE_CHAIN_MODE_CCM              0x7
44 #define TEE_CHAIN_MODE_GCM              0x8
45 #define TEE_CHAIN_MODE_PKCS1_PSS_MGF1   0x9	/* ??? */
46 
47 	/* Bits [31:28] */
48 #define TEE_ALG_GET_CLASS(algo)         (((algo) >> 28) & 0xF)
49 
50 #define TEE_ALG_GET_KEY_TYPE(algo, with_private_key) \
51         (TEE_ALG_GET_MAIN_ALG(algo) | \
52             ((with_private_key) ? 0xA1000000 : 0xA0000000))
53 
54 	/* Bits [7:0] */
55 #define TEE_ALG_GET_MAIN_ALG(algo)      ((algo) & 0xFF)
56 
57 	/* Bits [11:8] */
58 #define TEE_ALG_GET_CHAIN_MODE(algo)    (((algo) >> 8) & 0xF)
59 
60 	/* Bits [15:12] */
61 #define TEE_ALG_GET_DIGEST_HASH(algo)   (((algo) >> 12) & 0xF)
62 
63 	/* Bits [23:20] */
64 #define TEE_ALG_GET_INTERNAL_HASH(algo) (((algo) >> 20) & 0x7)
65 
66 	/* Return hash algorithm based on main hash */
67 #define TEE_ALG_HASH_ALGO(main_hash) \
68         (TEE_OPERATION_DIGEST << 28 | (main_hash))
69 
70 	/* Extract internal hash and return hash algorithm */
71 #define TEE_INTERNAL_HASH_TO_ALGO(algo) \
72                 TEE_ALG_HASH_ALGO(TEE_ALG_GET_INTERNAL_HASH(algo))
73 
74 	/* Extract digest hash and return hash algorithm */
75 #define TEE_DIGEST_HASH_TO_ALGO(algo) \
76                 TEE_ALG_HASH_ALGO(TEE_ALG_GET_DIGEST_HASH(algo))
77 
78 /* Return HMAC algorithm based on main hash */
79 #define TEE_ALG_HMAC_ALGO(main_hash) \
80 	(TEE_OPERATION_MAC << 28 | (main_hash))
81 
82 #define TEE_AES_BLOCK_SIZE  16UL
83 #define TEE_DES_BLOCK_SIZE  8UL
84 #define TEE_SM4_BLOCK_SIZE  16UL
85 
86 #define TEE_AES_MAX_KEY_SIZE    32UL
87 
88 	/* SHA-512 */
89 #ifndef TEE_MD5_HASH_SIZE
90 typedef enum {
91 	TEE_MD5_HASH_SIZE = 16,
92 	TEE_SHA1_HASH_SIZE = 20,
93 	TEE_SHA224_HASH_SIZE = 28,
94 	TEE_SHA256_HASH_SIZE = 32,
95 	TEE_SHA384_HASH_SIZE = 48,
96 	TEE_SHA512_HASH_SIZE = 64,
97 	TEE_MD5SHA1_HASH_SIZE = (TEE_MD5_HASH_SIZE + TEE_SHA1_HASH_SIZE),
98 	TEE_MAX_HASH_SIZE = 64,
99 } t_hash_size;
100 #endif
101 
102 #define TEE_MAC_SIZE_AES_CBC_MAC_NOPAD
103 #define TEE_MAC_SIZE_AES_CBC_MAC_PKCS5
104 #define TEE_MAC_SIZE_AES_CMAC
105 #define TEE_MAC_SIZE_DES_CBC_MAC_PKCS5
106 
107 /*
108  * Bit indicating that the attribute is a value attribute
109  * See TEE Internal API specificaion v1.0 table 6-12 "Partial Structure of
110  * Attribute Identifier"
111  */
112 
113 
114 #ifdef __compiler_bswap64
115 #define TEE_U64_BSWAP(x) __compiler_bswap64((x))
116 #else
117 #define TEE_U64_BSWAP(x) ((uint64_t)( \
118         (((uint64_t)(x) & UINT64_C(0xff00000000000000ULL)) >> 56) | \
119         (((uint64_t)(x) & UINT64_C(0x00ff000000000000ULL)) >> 40) | \
120         (((uint64_t)(x) & UINT64_C(0x0000ff0000000000ULL)) >> 24) | \
121         (((uint64_t)(x) & UINT64_C(0x000000ff00000000ULL)) >>  8) | \
122         (((uint64_t)(x) & UINT64_C(0x00000000ff000000ULL)) <<  8) | \
123         (((uint64_t)(x) & UINT64_C(0x0000000000ff0000ULL)) << 24) | \
124         (((uint64_t)(x) & UINT64_C(0x000000000000ff00ULL)) << 40) | \
125         (((uint64_t)(x) & UINT64_C(0x00000000000000ffULL)) << 56)))
126 #endif
127 
128 #ifdef __compiler_bswap32
129 #define TEE_U32_BSWAP(x) __compiler_bswap32((x))
130 #else
131 #define TEE_U32_BSWAP(x) ((uint32_t)( \
132         (((uint32_t)(x) & UINT32_C(0xff000000)) >> 24) | \
133         (((uint32_t)(x) & UINT32_C(0x00ff0000)) >>  8) | \
134         (((uint32_t)(x) & UINT32_C(0x0000ff00)) <<  8) | \
135         (((uint32_t)(x) & UINT32_C(0x000000ff)) << 24)))
136 #endif
137 
138 #ifdef __compiler_bswap16
139 #define TEE_U16_BSWAP(x) __compiler_bswap16((x))
140 #else
141 #define TEE_U16_BSWAP(x) ((uint16_t)( \
142         (((uint16_t)(x) & UINT16_C(0xff00)) >> 8) | \
143         (((uint16_t)(x) & UINT16_C(0x00ff)) << 8)))
144 #endif
145 
146 /* If we we're on a big endian platform we'll have to update these */
147 #define TEE_U64_FROM_BIG_ENDIAN(x)  TEE_U64_BSWAP(x)
148 #define TEE_U32_FROM_BIG_ENDIAN(x)  TEE_U32_BSWAP(x)
149 #define TEE_U16_FROM_BIG_ENDIAN(x)  TEE_U16_BSWAP(x)
150 #define TEE_U64_TO_BIG_ENDIAN(x)    TEE_U64_BSWAP(x)
151 #define TEE_U32_TO_BIG_ENDIAN(x)    TEE_U32_BSWAP(x)
152 #define TEE_U16_TO_BIG_ENDIAN(x)    TEE_U16_BSWAP(x)
153 
154 #define TEE_TIME_MILLIS_BASE    1000
155 
156 #define TEE_TIME_LT(t1, t2)				\
157     (((t1).seconds == (t2).seconds) ?			\
158         ((t1).millis < (t2).millis) :			\
159         ((t1).seconds < (t2).seconds))
160 
161 #define TEE_TIME_LE(t1, t2)				\
162     (((t1).seconds == (t2).seconds) ?			\
163         ((t1).millis <= (t2).millis) :			\
164         ((t1).seconds <= (t2).seconds))
165 
166 #define TEE_TIME_ADD(t1, t2, dst) do {                      \
167         (dst).seconds = (t1).seconds + (t2).seconds;        \
168         (dst).millis = (t1).millis + (t2).millis;           \
169         if ((dst).millis >= TEE_TIME_MILLIS_BASE) {         \
170             (dst).seconds++;                                \
171             (dst).millis -= TEE_TIME_MILLIS_BASE;           \
172         }                                                   \
173     } while (0)
174 
175 #define TEE_TIME_SUB(t1, t2, dst) do {                      \
176         (dst).seconds = (t1).seconds - (t2).seconds;        \
177         if ((t1).millis < (t2).millis) {                    \
178             (dst).seconds--;                                \
179             (dst).millis = (t1).millis + TEE_TIME_MILLIS_BASE - (t2).millis;\
180         } else {                                            \
181             (dst).millis = (t1).millis - (t2).millis;       \
182         }                                                   \
183     } while (0)
184 
185 /* ------------------------------------------------------------ */
186 /* OTP mapping                                                  */
187 /* ------------------------------------------------------------ */
188 #define HW_UNIQUE_KEY_WORD1      (8)
189 #define HW_UNIQUE_KEY_LENGTH     (16)
190 #define HW_UNIQUE_KEY_WORD2      (HW_UNIQUE_KEY_WORD1 + 1)
191 #define HW_UNIQUE_KEY_WORD3      (HW_UNIQUE_KEY_WORD1 + 2)
192 #define HW_UNIQUE_KEY_WORD4      (HW_UNIQUE_KEY_WORD1 + 3)
193 
194 #define UTEE_SE_READER_PRESENT			(1 << 0)
195 #define UTEE_SE_READER_TEE_ONLY			(1 << 1)
196 #define UTEE_SE_READER_SELECT_RESPONE_ENABLE	(1 << 2)
197 
198 #endif /* UTEE_DEFINES_H */
199