1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Cavium, Inc
5 #ifndef _CPT_MCODE_DEFINES_H_
6 #define _CPT_MCODE_DEFINES_H_
8 #include <rte_byteorder.h>
9 #include <rte_crypto_asym.h>
10 #include <rte_memory.h>
13 * This file defines macros and structures according to microcode spec
17 #define CPT_MAJOR_OP_FC 0x33
18 #define CPT_MAJOR_OP_HASH 0x34
19 #define CPT_MAJOR_OP_HMAC 0x35
20 #define CPT_MAJOR_OP_ZUC_SNOW3G 0x37
21 #define CPT_MAJOR_OP_KASUMI 0x38
22 #define CPT_MAJOR_OP_MISC 0x01
25 #define CPT_MAJOR_OP_MODEX 0x03
26 #define CPT_MAJOR_OP_ECDSA 0x04
27 #define CPT_MAJOR_OP_ECC 0x05
28 #define CPT_MINOR_OP_MODEX 0x01
29 #define CPT_MINOR_OP_PKCS_ENC 0x02
30 #define CPT_MINOR_OP_PKCS_ENC_CRT 0x03
31 #define CPT_MINOR_OP_PKCS_DEC 0x04
32 #define CPT_MINOR_OP_PKCS_DEC_CRT 0x05
33 #define CPT_MINOR_OP_MODEX_CRT 0x06
34 #define CPT_MINOR_OP_ECDSA_SIGN 0x01
35 #define CPT_MINOR_OP_ECDSA_VERIFY 0x02
36 #define CPT_MINOR_OP_ECC_UMP 0x03
38 #define CPT_BLOCK_TYPE1 0
39 #define CPT_BLOCK_TYPE2 1
41 #define CPT_MAX_SG_IN_OUT_CNT 32
42 #define CPT_MAX_SG_CNT (CPT_MAX_SG_IN_OUT_CNT/2)
44 #define COMPLETION_CODE_SIZE 8
45 #define COMPLETION_CODE_INIT 0
47 #define SG_LIST_HDR_SIZE (8u)
48 #define SG_ENTRY_SIZE sizeof(sg_comp_t)
50 #define CPT_DMA_MODE (1 << 7)
52 #define CPT_FROM_CTX 0
53 #define CPT_FROM_DPTR 1
56 #define ZUC_SNOW3G 0x2
65 #define CPT_OP_CIPHER_ENCRYPT 0x1
66 #define CPT_OP_CIPHER_DECRYPT 0x2
67 #define CPT_OP_CIPHER_MASK 0x3
69 #define CPT_OP_AUTH_VERIFY 0x4
70 #define CPT_OP_AUTH_GENERATE 0x8
71 #define CPT_OP_AUTH_MASK 0xC
73 #define CPT_OP_ENCODE (CPT_OP_CIPHER_ENCRYPT | CPT_OP_AUTH_GENERATE)
74 #define CPT_OP_DECODE (CPT_OP_CIPHER_DECRYPT | CPT_OP_AUTH_VERIFY)
76 /* #define CPT_ALWAYS_USE_SG_MODE */
77 #define CPT_ALWAYS_USE_SEPARATE_BUF
80 * Parameters for Flexi Crypto
83 #define VALID_AAD_BUF 0x01
84 #define VALID_MAC_BUF 0x02
85 #define VALID_IV_BUF 0x04
86 #define SINGLE_BUF_INPLACE 0x08
87 #define SINGLE_BUF_HEADTAILROOM 0x10
89 #define ENCR_IV_OFFSET(__d_offs) ((__d_offs >> 32) & 0xffff)
90 #define ENCR_OFFSET(__d_offs) ((__d_offs >> 16) & 0xffff)
91 #define AUTH_OFFSET(__d_offs) (__d_offs & 0xffff)
92 #define ENCR_DLEN(__d_lens) (__d_lens >> 32)
93 #define AUTH_DLEN(__d_lens) (__d_lens & 0xffffffff)
95 /* FC offset_control at start of DPTR in bytes */
96 #define OFF_CTRL_LEN 8 /**< bytes */
114 /* These are only for software use */
117 KASUMI_F9_CBC = 0x92,
118 KASUMI_F9_ECB = 0x93,
122 /* To support passthrough */
125 * These are defined by MC for Flexi crypto
126 * for field of 4 bits
138 /* These are only for software use */
141 KASUMI_F8_CBC = 0x92,
142 KASUMI_F8_ECB = 0x93,
152 /* Microcode errors */
154 ERR_OPCODE_UNSUPPORTED = 0x01,
157 ERR_SCATTER_GATHER_WRITE_LENGTH = 0x02,
158 ERR_SCATTER_GATHER_LIST = 0x03,
159 ERR_SCATTER_GATHER_NOT_SUPPORTED = 0x04,
162 ERR_GC_LENGTH_INVALID = 0x41,
163 ERR_GC_RANDOM_LEN_INVALID = 0x42,
164 ERR_GC_DATA_LEN_INVALID = 0x43,
165 ERR_GC_DRBG_TYPE_INVALID = 0x44,
166 ERR_GC_CTX_LEN_INVALID = 0x45,
167 ERR_GC_CIPHER_UNSUPPORTED = 0x46,
168 ERR_GC_AUTH_UNSUPPORTED = 0x47,
169 ERR_GC_OFFSET_INVALID = 0x48,
170 ERR_GC_HASH_MODE_UNSUPPORTED = 0x49,
171 ERR_GC_DRBG_ENTROPY_LEN_INVALID = 0x4a,
172 ERR_GC_DRBG_ADDNL_LEN_INVALID = 0x4b,
173 ERR_GC_ICV_MISCOMPARE = 0x4c,
174 ERR_GC_DATA_UNALIGNED = 0x4d,
177 ERR_BAD_ALT_CCODE = 0xfd,
178 ERR_REQ_PENDING = 0xfe,
179 ERR_REQ_TIMEOUT = 0xff,
181 ERR_BAD_INPUT_LENGTH = (0x40000000 | 384), /* 0x40000180 */
184 ERR_BAD_CONTEXT_HANDLE,
185 ERR_BAD_SCALAR_LENGTH,
186 ERR_BAD_DIGEST_LENGTH,
188 ERR_BAD_RECORD_PADDING,
189 ERR_NB_REQUEST_PENDING,
195 * Enumeration cpt_comp_e
197 * CPT Completion Enumeration
198 * Enumerates the values of CPT_RES_S[COMPCODE].
201 CPT_8X_COMP_E_NOTDONE = (0x00),
202 CPT_8X_COMP_E_GOOD = (0x01),
203 CPT_8X_COMP_E_FAULT = (0x02),
204 CPT_8X_COMP_E_SWERR = (0x03),
205 CPT_8X_COMP_E_HWERR = (0x04),
206 CPT_8X_COMP_E_LAST_ENTRY = (0xFF)
210 * Enumeration cpt_ec_id
212 * Enumerates supported elliptic curves
223 typedef struct sglist_comp {
233 struct cpt_sess_misc {
236 /** ZUC, SNOW3G & KASUMI flags */
238 /** Flag for AES GCM */
240 /** Flag for AES CTR */
242 /** Flag for CHACHA POLY */
243 uint16_t chacha_poly:1;
244 /** Flag for NULL cipher/auth */
252 /** MAC len in bytes */
254 /** IV length in bytes */
256 /** Auth IV length in bytes */
257 uint8_t auth_iv_length;
258 /** Reserved field */
260 /** IV offset in bytes */
262 /** Auth IV offset in bytes */
263 uint16_t auth_iv_offset;
266 /** Context DMA address */
267 phys_addr_t ctx_dma_addr;
271 uint64_t iv_source : 1;
272 uint64_t aes_key : 2;
273 uint64_t rsvd_60 : 1;
274 uint64_t enc_cipher : 4;
275 uint64_t auth_input_type : 1;
276 uint64_t rsvd_52_54 : 3;
277 uint64_t hash_type : 4;
278 uint64_t mac_len : 8;
279 uint64_t rsvd_39_0 : 40;
280 uint8_t encr_key[32];
287 } mc_fc_hmac_context_t;
290 mc_enc_context_t enc;
291 mc_fc_hmac_context_t hmac;
295 uint8_t encr_auth_iv[16];
297 uint8_t zuc_const[32];
298 } mc_zuc_snow3g_ctx_t;
306 /* Below fields are accessed by sw */
307 uint64_t enc_cipher :8;
308 uint64_t hash_type :8;
310 uint64_t auth_key_len :8;
313 uint64_t zsk_flags :3;
317 /* Below fields are accessed by hardware */
319 mc_fc_context_t fctx;
320 mc_zuc_snow3g_ctx_t zs_ctx;
321 mc_kasumi_ctx_t k_ctx;
323 uint8_t auth_key[1024];
326 /* Prime and order fields of built-in elliptic curves */
327 struct cpt_ec_group {
329 /* P521 maximum length */
335 /* P521 maximum length */
341 struct cpt_asym_ec_ctx {
342 /* Prime length defined by microcode for EC operations */
346 struct cpt_asym_sess_misc {
347 enum rte_crypto_asym_xform_type xfrm_type;
349 struct rte_crypto_rsa_xform rsa_ctx;
350 struct rte_crypto_modex_xform mod_ctx;
351 struct cpt_asym_ec_ctx ec_ctx;
356 typedef struct buf_ptr {
358 phys_addr_t dma_addr;
369 typedef union opcode_info {
377 typedef struct fc_params {
399 * Parameters for asymmetric operations
401 struct asym_op_params {
402 struct cpt_request_info *req;
403 phys_addr_t meta_buf;
407 * Parameters for digest
409 * Only src_iov, op, ctx_buf, mac_buf, prep_req
410 * meta_buf, auth_data_len are used for digest gen.
412 typedef struct fc_params digest_params_t;
414 /* Cipher Algorithms */
415 typedef mc_cipher_type_t cipher_type_t;
417 /* Auth Algorithms */
418 typedef mc_hash_type_t auth_type_t;
422 #define SRC_IOV_SIZE \
423 (sizeof(iov_ptr_t) + (sizeof(buf_ptr_t) * CPT_MAX_SG_CNT))
424 #define DST_IOV_SIZE \
425 (sizeof(iov_ptr_t) + (sizeof(buf_ptr_t) * CPT_MAX_SG_CNT))
427 #define SESS_PRIV(__sess) \
428 (void *)((uint8_t *)__sess + sizeof(struct cpt_sess_misc))
430 #define GET_SESS_FC_TYPE(__sess) \
431 (((struct cpt_ctx *)(SESS_PRIV(__sess)))->fc_type)
434 * Get the session size
439 static __rte_always_inline unsigned int
440 cpt_get_session_size(void)
442 unsigned int ctx_len = sizeof(struct cpt_ctx);
443 return (sizeof(struct cpt_sess_misc) + RTE_ALIGN_CEIL(ctx_len, 8));
445 #endif /* _CPT_MCODE_DEFINES_H_ */