crypto/zuc: add driver for ZUC library
[dpdk.git] / lib / librte_cryptodev / rte_cryptodev.h
index 7fb5f6e..2d447e3 100644 (file)
@@ -62,6 +62,8 @@ extern "C" {
 /**< SNOW 3G PMD device name */
 #define CRYPTODEV_NAME_KASUMI_PMD      crypto_kasumi
 /**< KASUMI PMD device name */
+#define CRYPTODEV_NAME_ZUC_PMD         crypto_zuc
+/**< KASUMI PMD device name */
 
 /** Crypto device type */
 enum rte_cryptodev_type {
@@ -71,6 +73,7 @@ enum rte_cryptodev_type {
        RTE_CRYPTODEV_QAT_SYM_PMD,      /**< QAT PMD Symmetric Crypto */
        RTE_CRYPTODEV_SNOW3G_PMD,       /**< SNOW 3G PMD */
        RTE_CRYPTODEV_KASUMI_PMD,       /**< KASUMI PMD */
+       RTE_CRYPTODEV_ZUC_PMD           /**< ZUC PMD */
 };
 
 extern const char **rte_cyptodev_names;
@@ -620,8 +623,6 @@ struct rte_cryptodev {
 
        enum rte_cryptodev_type dev_type;
        /**< Crypto device type */
-       enum pmd_type pmd_type;
-       /**< PMD type - PDEV / VDEV */
 
        struct rte_cryptodev_cb_list link_intr_cbs;
        /**< User application callback for interrupts if present */