661aeb251c
Added support for burst enqueue for cn10k event crypto adapter. Instructions will be grouped based on the queue pair and sent in a burst. Signed-off-by: Volodymyr Fialko <vfialko@marvell.com> Acked-by: Akhil Goyal <gakhil@marvell.com>
23 lines
570 B
C
23 lines
570 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(C) 2021 Marvell.
|
|
*/
|
|
|
|
#ifndef _CN10K_CRYPTODEV_OPS_H_
|
|
#define _CN10K_CRYPTODEV_OPS_H_
|
|
|
|
#include <cryptodev_pmd.h>
|
|
#include <rte_cryptodev.h>
|
|
#include <rte_eventdev.h>
|
|
|
|
extern struct rte_cryptodev_ops cn10k_cpt_ops;
|
|
|
|
void cn10k_cpt_set_enqdeq_fns(struct rte_cryptodev *dev);
|
|
|
|
__rte_internal
|
|
uint16_t __rte_hot cn10k_cpt_crypto_adapter_enqueue(void *ws, struct rte_event ev[],
|
|
uint16_t nb_events);
|
|
__rte_internal
|
|
uintptr_t cn10k_cpt_crypto_adapter_dequeue(uintptr_t get_work1);
|
|
|
|
#endif /* _CN10K_CRYPTODEV_OPS_H_ */
|