crypto/qat: fix smaller modulus cases for mod exp
[dpdk.git] / drivers / crypto / qat / qat_sym_session.h
index e003a34..01908ab 100644 (file)
@@ -1,11 +1,11 @@
 /* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2015-2019 Intel Corporation
+ * Copyright(c) 2015-2022 Intel Corporation
  */
 #ifndef _QAT_SYM_SESSION_H_
 #define _QAT_SYM_SESSION_H_
 
 #include <rte_crypto.h>
-#include <rte_cryptodev_pmd.h>
+#include <cryptodev_pmd.h>
 #ifdef RTE_LIB_SECURITY
 #include <rte_security.h>
 #endif
 
 #define QAT_AES_CMAC_CONST_RB 0x87
 
+#define QAT_CRYPTO_SLICE_SPC   1
+#define QAT_CRYPTO_SLICE_UCS   2
+#define QAT_CRYPTO_SLICE_WCP   4
+
+#define QAT_SESSION_IS_SLICE_SET(flags, flag)  \
+       (!!((flags) & (flag)))
+
 enum qat_sym_proto_flag {
        QAT_CRYPTO_PROTO_FLAG_NONE = 0,
        QAT_CRYPTO_PROTO_FLAG_CCM = 1,
@@ -56,6 +63,16 @@ enum qat_sym_proto_flag {
        QAT_CRYPTO_PROTO_FLAG_ZUC = 4
 };
 
+struct qat_sym_session;
+
+/*
+ * typedef qat_op_build_request_t function pointer, passed in as argument
+ * in enqueue op burst, where a build request assigned base on the type of
+ * crypto op.
+ */
+typedef int (*qat_sym_build_request_t)(void *in_op, struct qat_sym_session *ctx,
+               uint8_t *out_msg, void *op_cookie);
+
 /* Common content descriptor */
 struct qat_sym_cd {
        struct icp_qat_hw_cipher_algo_blk cipher;
@@ -88,11 +105,19 @@ struct qat_sym_session {
        uint16_t auth_key_length;
        uint16_t digest_length;
        rte_spinlock_t lock;    /* protects this struct */
-       enum qat_device_gen min_qat_dev_gen;
+       uint16_t dev_id;
        uint8_t aes_cmac;
        uint8_t is_single_pass;
        uint8_t is_single_pass_gmac;
        uint8_t is_ucs;
+       uint8_t is_iv12B;
+       uint8_t is_gmac;
+       uint8_t is_auth;
+       uint8_t is_cnt_zero;
+       /* Some generations need different setup of counter */
+       uint32_t slice_types;
+       enum qat_sym_proto_flag qat_proto_flag;
+       qat_sym_build_request_t build_request[2];
 };
 
 int