crypto/cnxk: add cn9k security context
authorArchana Muniganti <marchana@marvell.com>
Tue, 7 Sep 2021 14:20:58 +0000 (19:50 +0530)
committerAkhil Goyal <gakhil@marvell.com>
Tue, 7 Sep 2021 17:36:35 +0000 (19:36 +0200)
Add security ctx in cn9k crypto PMD.

Signed-off-by: Archana Muniganti <marchana@marvell.com>
Signed-off-by: Vamsi Attunuru <vattunuru@marvell.com>
Signed-off-by: Tejasree Kondoj <ktejasree@marvell.com>
Acked-by: Anoob Joseph <anoobj@marvell.com>
drivers/crypto/cnxk/cn9k_cryptodev.c

index 9ff2383..db2e085 100644 (file)
@@ -14,6 +14,7 @@
 #include "cn9k_cryptodev_ops.h"
 #include "cnxk_cryptodev.h"
 #include "cnxk_cryptodev_capabilities.h"
+#include "cnxk_cryptodev_sec.h"
 
 #include "roc_api.h"
 
@@ -77,6 +78,11 @@ cn9k_cpt_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
                        plt_err("Failed to add engine group rc=%d", rc);
                        goto dev_fini;
                }
+
+               /* Create security context */
+               rc = cnxk_crypto_sec_ctx_create(dev);
+               if (rc)
+                       goto dev_fini;
        }
 
        dev->dev_ops = &cn9k_cpt_ops;
@@ -117,6 +123,9 @@ cn9k_cpt_pci_remove(struct rte_pci_device *pci_dev)
        if (dev == NULL)
                return -ENODEV;
 
+       /* Destroy security context */
+       cnxk_crypto_sec_ctx_destroy(dev);
+
        if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
                vf = dev->data->dev_private;
                ret = roc_cpt_dev_fini(&vf->cpt);