crypto/qat: unify symmetric functions
[dpdk.git] / drivers / crypto / qat / qat_asym_pmd.h
index c493796..f988d64 100644 (file)
@@ -7,14 +7,39 @@
 #define _QAT_ASYM_PMD_H_
 
 #include <rte_cryptodev.h>
+#include "qat_crypto.h"
 #include "qat_device.h"
 
-/** Intel(R) QAT Asymmetric Crypto PMD driver name */
+/** Intel(R) QAT Asymmetric Crypto PMD name */
 #define CRYPTODEV_NAME_QAT_ASYM_PMD    crypto_qat_asym
 
 
+/**
+ * Helper function to add an asym capability
+ * <name> <op type> <modlen (min, max, increment)>
+ **/
+#define QAT_ASYM_CAP(n, o, l, r, i)                                    \
+       {                                                               \
+               .op = RTE_CRYPTO_OP_TYPE_ASYMMETRIC,                    \
+               {.asym = {                                              \
+                       .xform_capa = {                                 \
+                               .xform_type = RTE_CRYPTO_ASYM_XFORM_##n,\
+                               .op_types = o,                          \
+                               {                                       \
+                               .modlen = {                             \
+                               .min = l,                               \
+                               .max = r,                               \
+                               .increment = i                          \
+                               }, }                                    \
+                       }                                               \
+               },                                                      \
+               }                                                       \
+       }
+
 extern uint8_t qat_asym_driver_id;
 
+extern struct qat_crypto_gen_dev_ops qat_asym_gen_dev_ops[];
+
 void
 qat_asym_init_op_cookie(void *op_cookie);