crypto/qat: add named elliptic curves
[dpdk.git] / drivers / crypto / qat / qat_crypto.h
index 5ca76fc..cf386d0 100644 (file)
 extern uint8_t qat_sym_driver_id;
 extern uint8_t qat_asym_driver_id;
 
-/** helper macro to set cryptodev capability range **/
+/**
+ * helper macro to set cryptodev capability range
+ * <n: name> <l: min > <r: max> <i: increment> <v: value>
+ **/
 #define CAP_RNG(n, l, r, i) .n = {.min = l, .max = r, .increment = i}
 
 #define CAP_RNG_ZERO(n) .n = {.min = 0, .max = 0, .increment = 0}
@@ -50,11 +53,14 @@ typedef void * (*create_security_ctx_t)(void *cryptodev);
 
 typedef int (*set_session_t)(void *cryptodev, void *session);
 
+typedef int (*set_raw_dp_ctx_t)(void *raw_dp_ctx, void *ctx);
+
 struct qat_crypto_gen_dev_ops {
        get_feature_flags_t get_feature_flags;
        get_capabilities_info_t get_capabilities;
        struct rte_cryptodev_ops *cryptodev_ops;
        set_session_t set_session;
+       set_raw_dp_ctx_t set_raw_dp_ctx;
 #ifdef RTE_LIB_SECURITY
        create_security_ctx_t create_security_ctx;
 #endif