crypto/octeontx: add crypto adapter framework
authorShijith Thotton <sthotton@marvell.com>
Wed, 23 Jun 2021 20:53:49 +0000 (02:23 +0530)
committerAkhil Goyal <gakhil@marvell.com>
Wed, 7 Jul 2021 19:28:39 +0000 (21:28 +0200)
Set crypto adapter event device slow-path call backs.

Signed-off-by: Shijith Thotton <sthotton@marvell.com>
Acked-by: Akhil Goyal <gakhil@marvell.com>
drivers/crypto/octeontx/meson.build
drivers/crypto/octeontx/otx_cryptodev.c
drivers/crypto/octeontx/otx_cryptodev.h
drivers/crypto/octeontx/otx_cryptodev_hw_access.h
drivers/event/octeontx/meson.build
drivers/event/octeontx/ssovf_evdev.c

index daef47a..37603c5 100644 (file)
@@ -7,6 +7,7 @@ endif
 
 deps += ['bus_pci']
 deps += ['common_cpt']
+deps += ['eventdev']
 
 sources = files(
         'otx_cryptodev.c',
index ba73c2f..7207909 100644 (file)
 
 #include "cpt_pmd_logs.h"
 
+/* Device ID */
+#define PCI_VENDOR_ID_CAVIUM           0x177d
+#define CPT_81XX_PCI_VF_DEVICE_ID      0xa041
+
 uint8_t otx_cryptodev_driver_id;
 
 static struct rte_pci_id pci_id_cpt_table[] = {
index b66ef4a..5d8607e 100644 (file)
@@ -8,10 +8,6 @@
 /* Cavium OCTEON TX crypto PMD device name */
 #define CRYPTODEV_NAME_OCTEONTX_PMD    crypto_octeontx
 
-/* Device ID */
-#define PCI_VENDOR_ID_CAVIUM           0x177d
-#define CPT_81XX_PCI_VF_DEVICE_ID      0xa041
-
 #define CPT_LOGTYPE otx_cpt_logtype
 
 extern int otx_cpt_logtype;
index 0ec2581..f7b1e93 100644 (file)
@@ -45,6 +45,7 @@ struct cpt_instance {
        struct rte_mempool *sess_mp;
        struct rte_mempool *sess_mp_priv;
        struct cpt_qp_meta_info meta_info;
+       uint8_t ca_enabled;
 };
 
 struct command_chunk {
index 3cb140b..0d9eec3 100644 (file)
@@ -12,3 +12,4 @@ sources = files(
 )
 
 deps += ['common_octeontx', 'mempool_octeontx', 'bus_vdev', 'net_octeontx']
+deps += ['crypto_octeontx']
index d8b3598..25bf207 100644 (file)
@@ -5,6 +5,7 @@
 #include <inttypes.h>
 
 #include <rte_common.h>
+#include <rte_cryptodev.h>
 #include <rte_debug.h>
 #include <rte_dev.h>
 #include <rte_eal.h>
@@ -19,6 +20,7 @@
 
 #include "ssovf_evdev.h"
 #include "timvf_evdev.h"
+#include "otx_cryptodev_hw_access.h"
 
 static uint8_t timvf_enable_stats;
 
@@ -725,6 +727,67 @@ ssovf_timvf_caps_get(const struct rte_eventdev *dev, uint64_t flags,
                        timvf_enable_stats);
 }
 
+static int
+ssovf_crypto_adapter_caps_get(const struct rte_eventdev *dev,
+                             const struct rte_cryptodev *cdev, uint32_t *caps)
+{
+       RTE_SET_USED(dev);
+       RTE_SET_USED(cdev);
+
+       *caps = 0;
+
+       return 0;
+}
+
+static int
+ssovf_crypto_adapter_qp_add(const struct rte_eventdev *dev,
+                           const struct rte_cryptodev *cdev,
+                           int32_t queue_pair_id,
+                           const struct rte_event *event)
+{
+       struct cpt_instance *qp;
+       uint8_t qp_id;
+
+       RTE_SET_USED(event);
+
+       if (queue_pair_id == -1) {
+               for (qp_id = 0; qp_id < cdev->data->nb_queue_pairs; qp_id++) {
+                       qp = cdev->data->queue_pairs[qp_id];
+                       qp->ca_enabled = 1;
+               }
+       } else {
+               qp = cdev->data->queue_pairs[queue_pair_id];
+               qp->ca_enabled = 1;
+       }
+
+       ssovf_fastpath_fns_set((struct rte_eventdev *)(uintptr_t)dev);
+
+       return 0;
+}
+
+static int
+ssovf_crypto_adapter_qp_del(const struct rte_eventdev *dev,
+                           const struct rte_cryptodev *cdev,
+                           int32_t queue_pair_id)
+{
+       struct cpt_instance *qp;
+       uint8_t qp_id;
+
+       RTE_SET_USED(dev);
+
+       if (queue_pair_id == -1) {
+               for (qp_id = 0; qp_id < cdev->data->nb_queue_pairs; qp_id++) {
+                       qp = cdev->data->queue_pairs[qp_id];
+                       qp->ca_enabled = 0;
+               }
+       } else {
+               qp = cdev->data->queue_pairs[queue_pair_id];
+               qp->ca_enabled = 0;
+       }
+
+       return 0;
+}
+
 /* Initialize and register event driver with DPDK Application */
 static struct rte_eventdev_ops ssovf_ops = {
        .dev_infos_get    = ssovf_info_get,
@@ -755,6 +818,10 @@ static struct rte_eventdev_ops ssovf_ops = {
 
        .timer_adapter_caps_get = ssovf_timvf_caps_get,
 
+       .crypto_adapter_caps_get = ssovf_crypto_adapter_caps_get,
+       .crypto_adapter_queue_pair_add = ssovf_crypto_adapter_qp_add,
+       .crypto_adapter_queue_pair_del = ssovf_crypto_adapter_qp_del,
+
        .dev_selftest = test_eventdev_octeontx,
 
        .dump             = ssovf_dump,