cryptodev: add device probing finish function

Added a rte_cryptodev_pmd_probing_finish API which
need to be called by the PMD after the device is initialized
completely. This will set the fast path function pointers
in the flat array for secondary process. For primary process,
these are set in rte_cryptodev_start.

Signed-off-by: Akhil Goyal <gakhil@marvell.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
This commit is contained in:
Akhil Goyal 2021-10-20 16:57:51 +05:30
parent beb4c305b3
commit 33cd3fd52f
3 changed files with 30 additions and 0 deletions

@ -161,6 +161,22 @@ rte_cryptodev_pmd_destroy(struct rte_cryptodev *cryptodev)
return 0;
}
void
rte_cryptodev_pmd_probing_finish(struct rte_cryptodev *cryptodev)
{
if (cryptodev == NULL)
return;
/*
* for secondary process, at that point we expect device
* to be already 'usable', so shared data and all function
* pointers for fast-path devops have to be setup properly
* inside rte_cryptodev.
*/
if (rte_eal_process_type() == RTE_PROC_SECONDARY)
cryptodev_fp_ops_set(rte_crypto_fp_ops +
cryptodev->data->dev_id, cryptodev);
}
static uint16_t
dummy_crypto_enqueue_burst(__rte_unused void *qp,
__rte_unused struct rte_crypto_op **ops,

@ -509,6 +509,19 @@ __rte_internal
uint8_t rte_cryptodev_allocate_driver(struct cryptodev_driver *crypto_drv,
const struct rte_driver *drv);
/**
* @internal
* This is the last step of device probing. It must be called after a
* cryptodev is allocated and initialized successfully.
*
* @param dev Pointer to cryptodev struct
*
* @return
* void
*/
__rte_internal
void
rte_cryptodev_pmd_probing_finish(struct rte_cryptodev *dev);
#define RTE_PMD_REGISTER_CRYPTO_DRIVER(crypto_drv, drv, driver_id)\
RTE_INIT(init_ ##driver_id)\

@ -121,5 +121,6 @@ INTERNAL {
rte_cryptodev_pmd_get_dev;
rte_cryptodev_pmd_get_named_dev;
rte_cryptodev_pmd_parse_input_args;
rte_cryptodev_pmd_probing_finish;
rte_cryptodev_pmd_release_device;
};