Added AAL FEC HW Accelerator Specs 90/7990/1 AAL_Specs_1.0
authorLuis Farias <luis.farias@intel.com>
Mon, 28 Mar 2022 03:11:30 +0000 (20:11 -0700)
committerLuis Farias <luis.farias@intel.com>
Mon, 28 Mar 2022 03:11:30 +0000 (20:11 -0700)
under aal/specs

Change-Id: I36d2b703c3c4ae32c5822444605e80e81b9e9228
Signed-off-by: Luis Farias <luis.farias@intel.com>
aal/License/bsd-3-clause.txt [new file with mode: 0644]
aal/spec/rte_bbdev.h [new file with mode: 0644]
aal/spec/rte_bbdev_op.h [new file with mode: 0644]

diff --git a/aal/License/bsd-3-clause.txt b/aal/License/bsd-3-clause.txt
new file mode 100644 (file)
index 0000000..731a737
--- /dev/null
@@ -0,0 +1,9 @@
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/aal/spec/rte_bbdev.h b/aal/spec/rte_bbdev.h
new file mode 100644 (file)
index 0000000..1dbcf73
--- /dev/null
@@ -0,0 +1,838 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Intel Corporation
+ */
+
+#ifndef _RTE_BBDEV_H_
+#define _RTE_BBDEV_H_
+
+/**
+ * @file rte_bbdev.h
+ *
+ * Wireless base band device abstraction APIs.
+ *
+ * This API allows an application to discover, configure and use a device to
+ * process operations. An asynchronous API (enqueue, followed by later dequeue)
+ * is used for processing operations.
+ *
+ * The functions in this API are not thread-safe when called on the same
+ * target object (a device, or a queue on a device), with the exception that
+ * one thread can enqueue operations to a queue while another thread dequeues
+ * from the same queue.
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+#include <stdbool.h>
+#include <string.h>
+
+#include <rte_compat.h>
+#include <rte_bus.h>
+#include <rte_cpuflags.h>
+#include <rte_memory.h>
+
+#include "rte_bbdev_op.h"
+
+#ifndef RTE_BBDEV_MAX_DEVS
+#define RTE_BBDEV_MAX_DEVS 128  /**< Max number of devices */
+#endif
+
+/** Flags indicate current state of BBDEV device */
+enum rte_bbdev_state {
+       RTE_BBDEV_UNUSED,
+       RTE_BBDEV_INITIALIZED
+};
+
+/**
+ * Get the total number of devices that have been successfully initialised.
+ *
+ * @return
+ *   The total number of usable devices.
+ */
+uint16_t
+rte_bbdev_count(void);
+
+/**
+ * Check if a device is valid.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ *
+ * @return
+ *   true if device ID is valid and device is attached, false otherwise.
+ */
+bool
+rte_bbdev_is_valid(uint16_t dev_id);
+
+/**
+ * Get the next enabled device.
+ *
+ * @param dev_id
+ *   The current device
+ *
+ * @return
+ *   - The next device, or
+ *   - RTE_BBDEV_MAX_DEVS if none found
+ */
+uint16_t
+rte_bbdev_find_next(uint16_t dev_id);
+
+/** Iterate through all enabled devices */
+#define RTE_BBDEV_FOREACH(i) for (i = rte_bbdev_find_next(-1); \
+               i < RTE_BBDEV_MAX_DEVS; \
+               i = rte_bbdev_find_next(i))
+
+/**
+ * Setup up device queues.
+ * This function must be called on a device before setting up the queues and
+ * starting the device. It can also be called when a device is in the stopped
+ * state. If any device queues have been configured their configuration will be
+ * cleared by a call to this function.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param num_queues
+ *   Number of queues to configure on device.
+ * @param socket_id
+ *   ID of a socket which will be used to allocate memory.
+ *
+ * @return
+ *   - 0 on success
+ *   - -ENODEV if dev_id is invalid or the device is corrupted
+ *   - -EINVAL if num_queues is invalid, 0 or greater than maximum
+ *   - -EBUSY if the identified device has already started
+ *   - -ENOMEM if unable to allocate memory
+ */
+int
+rte_bbdev_setup_queues(uint16_t dev_id, uint16_t num_queues, int socket_id);
+
+/**
+ * Enable interrupts.
+ * This function may be called before starting the device to enable the
+ * interrupts if they are available.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ *
+ * @return
+ *   - 0 on success
+ *   - -ENODEV if dev_id is invalid or the device is corrupted
+ *   - -EBUSY if the identified device has already started
+ *   - -ENOTSUP if the interrupts are not supported by the device
+ */
+int
+rte_bbdev_intr_enable(uint16_t dev_id);
+
+/** Device queue configuration structure */
+struct rte_bbdev_queue_conf {
+       int socket;  /**< NUMA socket used for memory allocation */
+       uint32_t queue_size;  /**< Size of queue */
+       uint8_t priority;  /**< Queue priority */
+       bool deferred_start; /**< Do not start queue when device is started. */
+       enum rte_bbdev_op_type op_type; /**< Operation type */
+};
+
+/**
+ * Configure a queue on a device.
+ * This function can be called after device configuration, and before starting.
+ * It can also be called when the device or the queue is in the stopped state.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param conf
+ *   The queue configuration. If NULL, a default configuration will be used.
+ *
+ * @return
+ *   - 0 on success
+ *   - EINVAL if the identified queue size or priority are invalid
+ *   - EBUSY if the identified queue or its device have already started
+ */
+int
+rte_bbdev_queue_configure(uint16_t dev_id, uint16_t queue_id,
+               const struct rte_bbdev_queue_conf *conf);
+
+/**
+ * Start a device.
+ * This is the last step needed before enqueueing operations is possible.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ *
+ * @return
+ *   - 0 on success
+ *   - negative value on failure - as returned from PMD
+ */
+int
+rte_bbdev_start(uint16_t dev_id);
+
+/**
+ * Stop a device.
+ * The device can be reconfigured, and restarted after being stopped.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ *
+ * @return
+ *   - 0 on success
+ */
+int
+rte_bbdev_stop(uint16_t dev_id);
+
+/**
+ * Close a device.
+ * The device cannot be restarted without reconfiguration!
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ *
+ * @return
+ *   - 0 on success
+ */
+int
+rte_bbdev_close(uint16_t dev_id);
+
+/**
+ * Start a specified queue on a device.
+ * This is only needed if the queue has been stopped, or if the deferred_start
+ * flag has been set when configuring the queue.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ *
+ * @return
+ *   - 0 on success
+ *   - negative value on failure - as returned from PMD
+ */
+int
+rte_bbdev_queue_start(uint16_t dev_id, uint16_t queue_id);
+
+/**
+ * Stop a specified queue on a device, to allow re configuration.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ *
+ * @return
+ *   - 0 on success
+ *   - negative value on failure - as returned from PMD
+ */
+int
+rte_bbdev_queue_stop(uint16_t dev_id, uint16_t queue_id);
+
+/** Device statistics. */
+struct rte_bbdev_stats {
+       uint64_t enqueued_count;  /**< Count of all operations enqueued */
+       uint64_t dequeued_count;  /**< Count of all operations dequeued */
+       /** Total error count on operations enqueued */
+       uint64_t enqueue_err_count;
+       /** Total error count on operations dequeued */
+       uint64_t dequeue_err_count;
+       /** CPU cycles consumed by the (HW/SW) accelerator device to offload
+        *  the enqueue request to its internal queues.
+        *  - For a HW device this is the cycles consumed in MMIO write
+        *  - For a SW (vdev) device, this is the processing time of the
+        *     bbdev operation
+        */
+       uint64_t acc_offload_cycles;
+};
+
+/**
+ * Retrieve the general I/O statistics of a device.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param stats
+ *   Pointer to structure to where statistics will be copied. On error, this
+ *   location may or may not have been modified.
+ *
+ * @return
+ *   - 0 on success
+ *   - EINVAL if invalid parameter pointer is provided
+ */
+int
+rte_bbdev_stats_get(uint16_t dev_id, struct rte_bbdev_stats *stats);
+
+/**
+ * Reset the statistics of a device.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @return
+ *   - 0 on success
+ */
+int
+rte_bbdev_stats_reset(uint16_t dev_id);
+
+/** Device information supplied by the device's driver */
+struct rte_bbdev_driver_info {
+       /** Driver name */
+       const char *driver_name;
+
+       /** Maximum number of queues supported by the device */
+       unsigned int max_num_queues;
+       /** Queue size limit (queue size must also be power of 2) */
+       uint32_t queue_size_lim;
+       /** Set if device off-loads operation to hardware  */
+       bool hardware_accelerated;
+       /** Max value supported by queue priority for DL */
+       uint8_t max_dl_queue_priority;
+       /** Max value supported by queue priority for UL */
+       uint8_t max_ul_queue_priority;
+       /** Set if device supports per-queue interrupts */
+       bool queue_intr_supported;
+       /** Minimum alignment of buffers, in bytes */
+       uint16_t min_alignment;
+       /** HARQ memory available in kB */
+       uint32_t harq_buffer_size;
+       /** Byte endianness (RTE_BIG_ENDIAN/RTE_LITTLE_ENDIAN) supported
+        *  for input/output data
+        */
+       uint8_t data_endianness;
+       /** Default queue configuration used if none is supplied  */
+       struct rte_bbdev_queue_conf default_queue_conf;
+       /** Device operation capabilities */
+       const struct rte_bbdev_op_cap *capabilities;
+       /** Device cpu_flag requirements */
+       const enum rte_cpu_flag_t *cpu_flag_reqs;
+};
+
+/** Macro used at end of bbdev PMD list */
+#define RTE_BBDEV_END_OF_CAPABILITIES_LIST() \
+       { RTE_BBDEV_OP_NONE }
+
+/**
+ * Device information structure used by an application to discover a devices
+ * capabilities and current configuration
+ */
+struct rte_bbdev_info {
+       int socket_id;  /**< NUMA socket that device is on */
+       const char *dev_name;  /**< Unique device name */
+       const struct rte_device *device; /**< Device Information */
+       uint16_t num_queues;  /**< Number of queues currently configured */
+       bool started;  /**< Set if device is currently started */
+       struct rte_bbdev_driver_info drv;  /**< Info from device driver */
+};
+
+/**
+ * Retrieve information about a device.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param dev_info
+ *   Pointer to structure to where information will be copied. On error, this
+ *   location may or may not have been modified.
+ *
+ * @return
+ *   - 0 on success
+ *   - EINVAL if invalid parameter pointer is provided
+ */
+int
+rte_bbdev_info_get(uint16_t dev_id, struct rte_bbdev_info *dev_info);
+
+/** Queue information */
+struct rte_bbdev_queue_info {
+       /** Current device configuration */
+       struct rte_bbdev_queue_conf conf;
+       /** Set if queue is currently started */
+       bool started;
+};
+
+/**
+ * Retrieve information about a specific queue on a device.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param queue_info
+ *   Pointer to structure to where information will be copied. On error, this
+ *   location may or may not have been modified.
+ *
+ * @return
+ *   - 0 on success
+ *   - EINVAL if invalid parameter pointer is provided
+ */
+int
+rte_bbdev_queue_info_get(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_queue_info *queue_info);
+
+/** @internal The data structure associated with each queue of a device. */
+struct rte_bbdev_queue_data {
+       void *queue_private;  /**< Driver-specific per-queue data */
+       struct rte_bbdev_queue_conf conf;  /**< Current configuration */
+       struct rte_bbdev_stats queue_stats;  /**< Queue statistics */
+       bool started;  /**< Queue state */
+};
+
+/** @internal Enqueue encode operations for processing on queue of a device. */
+typedef uint16_t (*rte_bbdev_enqueue_enc_ops_t)(
+               struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_enc_op **ops,
+               uint16_t num);
+
+/** @internal Enqueue decode operations for processing on queue of a device. */
+typedef uint16_t (*rte_bbdev_enqueue_dec_ops_t)(
+               struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_dec_op **ops,
+               uint16_t num);
+
+/** @internal Dequeue encode operations from a queue of a device. */
+typedef uint16_t (*rte_bbdev_dequeue_enc_ops_t)(
+               struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_enc_op **ops, uint16_t num);
+
+/** @internal Dequeue decode operations from a queue of a device. */
+typedef uint16_t (*rte_bbdev_dequeue_dec_ops_t)(
+               struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_dec_op **ops, uint16_t num);
+
+#define RTE_BBDEV_NAME_MAX_LEN  64  /**< Max length of device name */
+
+/**
+ * @internal The data associated with a device, with no function pointers.
+ * This structure is safe to place in shared memory to be common among
+ * different processes in a multi-process configuration. Drivers can access
+ * these fields, but should never write to them!
+ */
+struct rte_bbdev_data {
+       char name[RTE_BBDEV_NAME_MAX_LEN]; /**< Unique identifier name */
+       void *dev_private;  /**< Driver-specific private data */
+       uint16_t num_queues;  /**< Number of currently configured queues */
+       struct rte_bbdev_queue_data *queues;  /**< Queue structures */
+       uint16_t dev_id;  /**< Device ID */
+       int socket_id;  /**< NUMA socket that device is on */
+       bool started;  /**< Device run-time state */
+       uint16_t process_cnt;  /** Counter of processes using the device */
+};
+
+/* Forward declarations */
+struct rte_bbdev_ops;
+struct rte_bbdev_callback;
+struct rte_intr_handle;
+
+/** Structure to keep track of registered callbacks */
+RTE_TAILQ_HEAD(rte_bbdev_cb_list, rte_bbdev_callback);
+
+/**
+ * @internal The data structure associated with a device. Drivers can access
+ * these fields, but should only write to the *_ops fields.
+ */
+struct __rte_cache_aligned rte_bbdev {
+       /** Enqueue encode function */
+       rte_bbdev_enqueue_enc_ops_t enqueue_enc_ops;
+       /** Enqueue decode function */
+       rte_bbdev_enqueue_dec_ops_t enqueue_dec_ops;
+       /** Dequeue encode function */
+       rte_bbdev_dequeue_enc_ops_t dequeue_enc_ops;
+       /** Dequeue decode function */
+       rte_bbdev_dequeue_dec_ops_t dequeue_dec_ops;
+       /** Enqueue encode function */
+       rte_bbdev_enqueue_enc_ops_t enqueue_ldpc_enc_ops;
+       /** Enqueue decode function */
+       rte_bbdev_enqueue_dec_ops_t enqueue_ldpc_dec_ops;
+       /** Dequeue encode function */
+       rte_bbdev_dequeue_enc_ops_t dequeue_ldpc_enc_ops;
+       /** Dequeue decode function */
+       rte_bbdev_dequeue_dec_ops_t dequeue_ldpc_dec_ops;
+       const struct rte_bbdev_ops *dev_ops;  /**< Functions exported by PMD */
+       struct rte_bbdev_data *data;  /**< Pointer to device data */
+       enum rte_bbdev_state state;  /**< If device is currently used or not */
+       struct rte_device *device; /**< Backing device */
+       /** User application callback for interrupts if present */
+       struct rte_bbdev_cb_list list_cbs;
+       struct rte_intr_handle *intr_handle; /**< Device interrupt handle */
+};
+
+/** @internal array of all devices */
+extern struct rte_bbdev rte_bbdev_devices[];
+
+/**
+ * Enqueue a burst of processed encode operations to a queue of the device.
+ * This functions only enqueues as many operations as currently possible and
+ * does not block until @p num_ops entries in the queue are available.
+ * This function does not provide any error notification to avoid the
+ * corresponding overhead.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param ops
+ *   Pointer array containing operations to be enqueued Must have at least
+ *   @p num_ops entries
+ * @param num_ops
+ *   The maximum number of operations to enqueue.
+ *
+ * @return
+ *   The number of operations actually enqueued (this is the number of processed
+ *   entries in the @p ops array).
+ */
+static inline uint16_t
+rte_bbdev_enqueue_enc_ops(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_enc_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
+       struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
+       return dev->enqueue_enc_ops(q_data, ops, num_ops);
+}
+
+/**
+ * Enqueue a burst of processed decode operations to a queue of the device.
+ * This functions only enqueues as many operations as currently possible and
+ * does not block until @p num_ops entries in the queue are available.
+ * This function does not provide any error notification to avoid the
+ * corresponding overhead.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param ops
+ *   Pointer array containing operations to be enqueued Must have at least
+ *   @p num_ops entries
+ * @param num_ops
+ *   The maximum number of operations to enqueue.
+ *
+ * @return
+ *   The number of operations actually enqueued (this is the number of processed
+ *   entries in the @p ops array).
+ */
+static inline uint16_t
+rte_bbdev_enqueue_dec_ops(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_dec_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
+       struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
+       return dev->enqueue_dec_ops(q_data, ops, num_ops);
+}
+
+/**
+ * Enqueue a burst of processed encode operations to a queue of the device.
+ * This functions only enqueues as many operations as currently possible and
+ * does not block until @p num_ops entries in the queue are available.
+ * This function does not provide any error notification to avoid the
+ * corresponding overhead.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param ops
+ *   Pointer array containing operations to be enqueued Must have at least
+ *   @p num_ops entries
+ * @param num_ops
+ *   The maximum number of operations to enqueue.
+ *
+ * @return
+ *   The number of operations actually enqueued (this is the number of processed
+ *   entries in the @p ops array).
+ */
+static inline uint16_t
+rte_bbdev_enqueue_ldpc_enc_ops(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_enc_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
+       struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
+       return dev->enqueue_ldpc_enc_ops(q_data, ops, num_ops);
+}
+
+/**
+ * Enqueue a burst of processed decode operations to a queue of the device.
+ * This functions only enqueues as many operations as currently possible and
+ * does not block until @p num_ops entries in the queue are available.
+ * This function does not provide any error notification to avoid the
+ * corresponding overhead.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param ops
+ *   Pointer array containing operations to be enqueued Must have at least
+ *   @p num_ops entries
+ * @param num_ops
+ *   The maximum number of operations to enqueue.
+ *
+ * @return
+ *   The number of operations actually enqueued (this is the number of processed
+ *   entries in the @p ops array).
+ */
+static inline uint16_t
+rte_bbdev_enqueue_ldpc_dec_ops(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_dec_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
+       struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
+       return dev->enqueue_ldpc_dec_ops(q_data, ops, num_ops);
+}
+
+
+/**
+ * Dequeue a burst of processed encode operations from a queue of the device.
+ * This functions returns only the current contents of the queue, and does not
+ * block until @ num_ops is available.
+ * This function does not provide any error notification to avoid the
+ * corresponding overhead.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param ops
+ *   Pointer array where operations will be dequeued to. Must have at least
+ *   @p num_ops entries
+ *   ie. A pointer to a table of void * pointers (ops) that will be filled.
+ * @param num_ops
+ *   The maximum number of operations to dequeue.
+ *
+ * @return
+ *   The number of operations actually dequeued (this is the number of entries
+ *   copied into the @p ops array).
+ */
+static inline uint16_t
+rte_bbdev_dequeue_enc_ops(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_enc_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
+       struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
+       return dev->dequeue_enc_ops(q_data, ops, num_ops);
+}
+
+/**
+ * Dequeue a burst of processed decode operations from a queue of the device.
+ * This functions returns only the current contents of the queue, and does not
+ * block until @ num_ops is available.
+ * This function does not provide any error notification to avoid the
+ * corresponding overhead.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param ops
+ *   Pointer array where operations will be dequeued to. Must have at least
+ *   @p num_ops entries
+ *   ie. A pointer to a table of void * pointers (ops) that will be filled.
+ * @param num_ops
+ *   The maximum number of operations to dequeue.
+ *
+ * @return
+ *   The number of operations actually dequeued (this is the number of entries
+ *   copied into the @p ops array).
+ */
+
+static inline uint16_t
+rte_bbdev_dequeue_dec_ops(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_dec_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
+       struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
+       return dev->dequeue_dec_ops(q_data, ops, num_ops);
+}
+
+
+/**
+ * Dequeue a burst of processed encode operations from a queue of the device.
+ * This functions returns only the current contents of the queue, and does not
+ * block until @ num_ops is available.
+ * This function does not provide any error notification to avoid the
+ * corresponding overhead.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param ops
+ *   Pointer array where operations will be dequeued to. Must have at least
+ *   @p num_ops entries
+ * @param num_ops
+ *   The maximum number of operations to dequeue.
+ *
+ * @return
+ *   The number of operations actually dequeued (this is the number of entries
+ *   copied into the @p ops array).
+ */
+static inline uint16_t
+rte_bbdev_dequeue_ldpc_enc_ops(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_enc_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
+       struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
+       return dev->dequeue_ldpc_enc_ops(q_data, ops, num_ops);
+}
+
+/**
+ * Dequeue a burst of processed decode operations from a queue of the device.
+ * This functions returns only the current contents of the queue, and does not
+ * block until @ num_ops is available.
+ * This function does not provide any error notification to avoid the
+ * corresponding overhead.
+ *
+ * @param dev_id
+ *   The identifier of the device.
+ * @param queue_id
+ *   The index of the queue.
+ * @param ops
+ *   Pointer array where operations will be dequeued to. Must have at least
+ *   @p num_ops entries
+ * @param num_ops
+ *   The maximum number of operations to dequeue.
+ *
+ * @return
+ *   The number of operations actually dequeued (this is the number of entries
+ *   copied into the @p ops array).
+ */
+static inline uint16_t
+rte_bbdev_dequeue_ldpc_dec_ops(uint16_t dev_id, uint16_t queue_id,
+               struct rte_bbdev_dec_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
+       struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
+       return dev->dequeue_ldpc_dec_ops(q_data, ops, num_ops);
+}
+
+/** Definitions of device event types */
+enum rte_bbdev_event_type {
+       RTE_BBDEV_EVENT_UNKNOWN,  /**< unknown event type */
+       RTE_BBDEV_EVENT_ERROR,  /**< error interrupt event */
+       RTE_BBDEV_EVENT_DEQUEUE,  /**< dequeue event */
+       RTE_BBDEV_EVENT_MAX  /**< max value of this enum */
+};
+
+/**
+ * Typedef for application callback function registered by application
+ * software for notification of device events
+ *
+ * @param dev_id
+ *   Device identifier
+ * @param event
+ *   Device event to register for notification of.
+ * @param cb_arg
+ *   User specified parameter to be passed to user's callback function.
+ * @param ret_param
+ *   To pass data back to user application.
+ */
+typedef void (*rte_bbdev_cb_fn)(uint16_t dev_id,
+               enum rte_bbdev_event_type event, void *cb_arg,
+               void *ret_param);
+
+/**
+ * Register a callback function for specific device id. Multiple callbacks can
+ * be added and will be called in the order they are added when an event is
+ * triggered. Callbacks are called in a separate thread created by the DPDK EAL.
+ *
+ * @param dev_id
+ *   Device id.
+ * @param event
+ *   The event that the callback will be registered for.
+ * @param cb_fn
+ *   User supplied callback function to be called.
+ * @param cb_arg
+ *   Pointer to parameter that will be passed to the callback.
+ *
+ * @return
+ *   Zero on success, negative value on failure.
+ */
+int
+rte_bbdev_callback_register(uint16_t dev_id, enum rte_bbdev_event_type event,
+               rte_bbdev_cb_fn cb_fn, void *cb_arg);
+
+/**
+ * Unregister a callback function for specific device id.
+ *
+ * @param dev_id
+ *   The device identifier.
+ * @param event
+ *   The event that the callback will be unregistered for.
+ * @param cb_fn
+ *   User supplied callback function to be unregistered.
+ * @param cb_arg
+ *   Pointer to the parameter supplied when registering the callback.
+ *   (void *)-1 means to remove all registered callbacks with the specified
+ *   function address.
+ *
+ * @return
+ *   - 0 on success
+ *   - EINVAL if invalid parameter pointer is provided
+ *   - EAGAIN if the provided callback pointer does not exist
+ */
+int
+rte_bbdev_callback_unregister(uint16_t dev_id, enum rte_bbdev_event_type event,
+               rte_bbdev_cb_fn cb_fn, void *cb_arg);
+
+/**
+ * Enable a one-shot interrupt on the next operation enqueued to a particular
+ * queue. The interrupt will be triggered when the operation is ready to be
+ * dequeued. To handle the interrupt, an epoll file descriptor must be
+ * registered using rte_bbdev_queue_intr_ctl(), and then an application
+ * thread/lcore can wait for the interrupt using rte_epoll_wait().
+ *
+ * @param dev_id
+ *   The device identifier.
+ * @param queue_id
+ *   The index of the queue.
+ *
+ * @return
+ *   - 0 on success
+ *   - negative value on failure - as returned from PMD
+ */
+int
+rte_bbdev_queue_intr_enable(uint16_t dev_id, uint16_t queue_id);
+
+/**
+ * Disable a one-shot interrupt on the next operation enqueued to a particular
+ * queue (if it has been enabled).
+ *
+ * @param dev_id
+ *   The device identifier.
+ * @param queue_id
+ *   The index of the queue.
+ *
+ * @return
+ *   - 0 on success
+ *   - negative value on failure - as returned from PMD
+ */
+int
+rte_bbdev_queue_intr_disable(uint16_t dev_id, uint16_t queue_id);
+
+/**
+ * Control interface for per-queue interrupts.
+ *
+ * @param dev_id
+ *   The device identifier.
+ * @param queue_id
+ *   The index of the queue.
+ * @param epfd
+ *   Epoll file descriptor that will be associated with the interrupt source.
+ *   If the special value RTE_EPOLL_PER_THREAD is provided, a per thread epoll
+ *   file descriptor created by the EAL is used (RTE_EPOLL_PER_THREAD can also
+ *   be used when calling rte_epoll_wait()).
+ * @param op
+ *   The operation be performed for the vector.RTE_INTR_EVENT_ADD or
+ *   RTE_INTR_EVENT_DEL.
+ * @param data
+ *   User context, that will be returned in the epdata.data field of the
+ *   rte_epoll_event structure filled in by rte_epoll_wait().
+ *
+ * @return
+ *   - 0 on success
+ *   - ENOTSUP if interrupts are not supported by the identified device
+ *   - negative value on failure - as returned from PMD
+ */
+int
+rte_bbdev_queue_intr_ctl(uint16_t dev_id, uint16_t queue_id, int epfd, int op,
+               void *data);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _RTE_BBDEV_H_ */
diff --git a/aal/spec/rte_bbdev_op.h b/aal/spec/rte_bbdev_op.h
new file mode 100644 (file)
index 0000000..6d56133
--- /dev/null
@@ -0,0 +1,958 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2017 Intel Corporation
+ */
+
+#ifndef _RTE_BBDEV_OP_H_
+#define _RTE_BBDEV_OP_H_
+
+/**
+ * @file rte_bbdev_op.h
+ *
+ * Defines wireless base band layer 1 operations and capabilities
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+
+#include <rte_common.h>
+#include <rte_mbuf.h>
+#include <rte_memory.h>
+#include <rte_mempool.h>
+
+/* Number of columns in sub-block interleaver (36.212, section 5.1.4.1.1) */
+#define RTE_BBDEV_TURBO_C_SUBBLOCK (32)
+/* Maximum size of Transport Block (36.213, Table, Table 7.1.7.2.5-1) */
+#define RTE_BBDEV_TURBO_MAX_TB_SIZE (391656)
+/* Maximum size of Code Block (36.212, Table 5.1.3-3) */
+#define RTE_BBDEV_TURBO_MAX_CB_SIZE (6144)
+/* Maximum size of Code Block */
+#define RTE_BBDEV_LDPC_MAX_CB_SIZE (8448)
+/* Minimum size of Code Block */
+#define RTE_BBDEV_LDPC_MIN_CB_SIZE (40)
+/* Maximum E size we can manage with default mbuf */
+#define RTE_BBDEV_LDPC_E_MAX_MBUF (64000)
+/* Minimum size of Code Block (36.212, Table 5.1.3-3) */
+#define RTE_BBDEV_TURBO_MIN_CB_SIZE (40)
+/* Maximum size of circular buffer */
+#define RTE_BBDEV_TURBO_MAX_KW (18528)
+/*
+ * Turbo: Maximum number of Code Blocks in Transport Block. It is calculated
+ * based on maximum size of one Code Block and one Transport Block
+ * (considering CRC24A and CRC24B):
+ * (391656 + 24) / (6144 - 24) = 64
+ */
+#define RTE_BBDEV_TURBO_MAX_CODE_BLOCKS (64)
+/* LDPC:  Maximum number of Code Blocks in Transport Block.*/
+#define RTE_BBDEV_LDPC_MAX_CODE_BLOCKS (256)
+
+/** Flags for turbo decoder operation and capability structure */
+enum rte_bbdev_op_td_flag_bitmasks {
+       /** If sub block de-interleaving is to be performed. */
+       RTE_BBDEV_TURBO_SUBBLOCK_DEINTERLEAVE = (1ULL << 0),
+       /** To use CRC Type 24B (otherwise use CRC Type 24A). */
+       RTE_BBDEV_TURBO_CRC_TYPE_24B = (1ULL << 1),
+       /** If turbo equalization is to be performed. */
+       RTE_BBDEV_TURBO_EQUALIZER = (1ULL << 2),
+       /** If set, saturate soft output to +/-127 */
+       RTE_BBDEV_TURBO_SOFT_OUT_SATURATE = (1ULL << 3),
+       /** Set to 1 to start iteration from even, else odd; one iteration =
+        * max_iteration + 0.5
+        */
+       RTE_BBDEV_TURBO_HALF_ITERATION_EVEN = (1ULL << 4),
+       /** If 0, TD stops after CRC matches; else if 1, runs to end of next
+        * odd iteration after CRC matches
+        */
+       RTE_BBDEV_TURBO_CONTINUE_CRC_MATCH = (1ULL << 5),
+       /** Set if soft output is required to be output  */
+       RTE_BBDEV_TURBO_SOFT_OUTPUT = (1ULL << 6),
+       /** Set to enable early termination mode */
+       RTE_BBDEV_TURBO_EARLY_TERMINATION = (1ULL << 7),
+       /** Set if a device supports decoder dequeue interrupts */
+       RTE_BBDEV_TURBO_DEC_INTERRUPTS = (1ULL << 9),
+       /** Set if positive LLR encoded input is supported. Positive LLR value
+        * represents the level of confidence for bit '1', and vice versa for
+        * bit '0'.
+        * This is mutually exclusive with RTE_BBDEV_TURBO_NEG_LLR_1_BIT_IN
+        * when used to formalize the input data format.
+        */
+       RTE_BBDEV_TURBO_POS_LLR_1_BIT_IN = (1ULL << 10),
+       /** Set if negative LLR encoded input is supported. Negative LLR value
+        * represents the level of confidence for bit '1', and vice versa for
+        * bit '0'.
+        * This is mutually exclusive with RTE_BBDEV_TURBO_POS_LLR_1_BIT_IN
+        * when used to formalize the input data format.
+        */
+       RTE_BBDEV_TURBO_NEG_LLR_1_BIT_IN = (1ULL << 11),
+       /** Set if positive LLR soft output is supported. Positive LLR value
+        * represents the level of confidence for bit '1', and vice versa for
+        * bit '0'.
+        * This is mutually exclusive with
+        * RTE_BBDEV_TURBO_NEG_LLR_1_BIT_SOFT_OUT when used to formalize
+        * the input data format.
+        */
+       RTE_BBDEV_TURBO_POS_LLR_1_BIT_SOFT_OUT = (1ULL << 12),
+       /** Set if negative LLR soft output is supported. Negative LLR value
+        * represents the level of confidence for bit '1', and vice versa for
+        * bit '0'.
+        * This is mutually exclusive with
+        * RTE_BBDEV_TURBO_POS_LLR_1_BIT_SOFT_OUT when used to formalize the
+        * input data format.
+        */
+       RTE_BBDEV_TURBO_NEG_LLR_1_BIT_SOFT_OUT = (1ULL << 13),
+       /** Set if driver supports flexible parallel MAP engine decoding. If
+        * not supported, num_maps (number of MAP engines) argument is unusable.
+        */
+       RTE_BBDEV_TURBO_MAP_DEC = (1ULL << 14),
+       /** Set if a device supports scatter-gather functionality */
+       RTE_BBDEV_TURBO_DEC_SCATTER_GATHER = (1ULL << 15),
+       /** Set to keep CRC24B bits appended while decoding. Only usable when
+        * decoding Transport Block mode.
+        */
+       RTE_BBDEV_TURBO_DEC_TB_CRC_24B_KEEP = (1ULL << 16),
+       /** Set to drop CRC24B bits not to be appended while decoding.
+        */
+       RTE_BBDEV_TURBO_DEC_CRC_24B_DROP = (1ULL << 17)
+};
+
+
+/** Flags for turbo encoder operation and capability structure */
+enum rte_bbdev_op_te_flag_bitmasks {
+       /** Ignore rv_index and set K0 = 0 */
+       RTE_BBDEV_TURBO_RV_INDEX_BYPASS = (1ULL << 0),
+       /** If rate matching is to be performed */
+       RTE_BBDEV_TURBO_RATE_MATCH = (1ULL << 1),
+       /** This bit must be set to enable CRC-24B generation */
+       RTE_BBDEV_TURBO_CRC_24B_ATTACH = (1ULL << 2),
+       /** This bit must be set to enable CRC-24A generation */
+       RTE_BBDEV_TURBO_CRC_24A_ATTACH = (1ULL << 3),
+       /** Set if a device supports encoder dequeue interrupts */
+       RTE_BBDEV_TURBO_ENC_INTERRUPTS = (1ULL << 4),
+       /** Set if a device supports scatter-gather functionality */
+       RTE_BBDEV_TURBO_ENC_SCATTER_GATHER = (1ULL << 5)
+};
+
+/** Flags for LDPC decoder operation and capability structure */
+enum rte_bbdev_op_ldpcdec_flag_bitmasks {
+       /** Set for transport block CRC-24A checking */
+       RTE_BBDEV_LDPC_CRC_TYPE_24A_CHECK = (1ULL << 0),
+       /** Set for code block CRC-24B checking */
+       RTE_BBDEV_LDPC_CRC_TYPE_24B_CHECK = (1ULL << 1),
+       /** Set to drop the last CRC bits decoding output */
+       RTE_BBDEV_LDPC_CRC_TYPE_24B_DROP = (1ULL << 2),
+       /** Set for transport block CRC-16 checking */
+       RTE_BBDEV_LDPC_CRC_TYPE_16_CHECK = (1ULL << 3),
+       /** Set for bit-level de-interleaver bypass on Rx stream. */
+       RTE_BBDEV_LDPC_DEINTERLEAVER_BYPASS = (1ULL << 4),
+       /** Set for HARQ combined input stream enable. */
+       RTE_BBDEV_LDPC_HQ_COMBINE_IN_ENABLE = (1ULL << 5),
+       /** Set for HARQ combined output stream enable. */
+       RTE_BBDEV_LDPC_HQ_COMBINE_OUT_ENABLE = (1ULL << 6),
+       /** Set for LDPC decoder bypass.
+        *  RTE_BBDEV_LDPC_HQ_COMBINE_OUT_ENABLE must be set.
+        */
+       RTE_BBDEV_LDPC_DECODE_BYPASS = (1ULL << 7),
+       /** Set for soft-output stream enable */
+       RTE_BBDEV_LDPC_SOFT_OUT_ENABLE = (1ULL << 8),
+       /** Set for Rate-Matching bypass on soft-out stream. */
+       RTE_BBDEV_LDPC_SOFT_OUT_RM_BYPASS = (1ULL << 9),
+       /** Set for bit-level de-interleaver bypass on soft-output stream. */
+       RTE_BBDEV_LDPC_SOFT_OUT_DEINTERLEAVER_BYPASS = (1ULL << 10),
+       /** Set for iteration stopping on successful decode condition
+        *  i.e. a successful syndrome check.
+        */
+       RTE_BBDEV_LDPC_ITERATION_STOP_ENABLE = (1ULL << 11),
+       /** Set if a device supports decoder dequeue interrupts. */
+       RTE_BBDEV_LDPC_DEC_INTERRUPTS = (1ULL << 12),
+       /** Set if a device supports scatter-gather functionality. */
+       RTE_BBDEV_LDPC_DEC_SCATTER_GATHER = (1ULL << 13),
+       /** Set if a device supports input/output HARQ compression. */
+       RTE_BBDEV_LDPC_HARQ_6BIT_COMPRESSION = (1ULL << 14),
+       /** Set if a device supports input LLR compression. */
+       RTE_BBDEV_LDPC_LLR_COMPRESSION = (1ULL << 15),
+       /** Set if a device supports HARQ input from
+        *  device's internal memory.
+        */
+       RTE_BBDEV_LDPC_INTERNAL_HARQ_MEMORY_IN_ENABLE = (1ULL << 16),
+       /** Set if a device supports HARQ output to
+        *  device's internal memory.
+        */
+       RTE_BBDEV_LDPC_INTERNAL_HARQ_MEMORY_OUT_ENABLE = (1ULL << 17),
+       /** Set if a device supports loop-back access to
+        *  HARQ internal memory. Intended for troubleshooting.
+        */
+       RTE_BBDEV_LDPC_INTERNAL_HARQ_MEMORY_LOOPBACK = (1ULL << 18),
+       /** Set if a device includes LLR filler bits in the circular buffer
+        *  for HARQ memory. If not set, it is assumed the filler bits are not
+        *  in HARQ memory and handled directly by the LDPC decoder.
+        */
+       RTE_BBDEV_LDPC_INTERNAL_HARQ_MEMORY_FILLERS = (1ULL << 19)
+};
+
+/** Flags for LDPC encoder operation and capability structure */
+enum rte_bbdev_op_ldpcenc_flag_bitmasks {
+       /** Set for bit-level interleaver bypass on output stream. */
+       RTE_BBDEV_LDPC_INTERLEAVER_BYPASS = (1ULL << 0),
+       /** If rate matching is to be performed */
+       RTE_BBDEV_LDPC_RATE_MATCH = (1ULL << 1),
+       /** Set for transport block CRC-24A attach */
+       RTE_BBDEV_LDPC_CRC_24A_ATTACH = (1ULL << 2),
+       /** Set for code block CRC-24B attach */
+       RTE_BBDEV_LDPC_CRC_24B_ATTACH = (1ULL << 3),
+       /** Set for code block CRC-16 attach */
+       RTE_BBDEV_LDPC_CRC_16_ATTACH = (1ULL << 4),
+       /** Set if a device supports encoder dequeue interrupts. */
+       RTE_BBDEV_LDPC_ENC_INTERRUPTS = (1ULL << 5),
+       /** Set if a device supports scatter-gather functionality. */
+       RTE_BBDEV_LDPC_ENC_SCATTER_GATHER = (1ULL << 6),
+       /** Set if a device supports concatenation of non byte aligned output */
+       RTE_BBDEV_LDPC_ENC_CONCATENATION = (1ULL << 7)
+};
+
+/** Flags for the Code Block/Transport block mode  */
+enum rte_bbdev_op_cb_mode {
+       /** One operation is one or fraction of one transport block  */
+       RTE_BBDEV_TRANSPORT_BLOCK = 0,
+       /** One operation is one code block mode */
+       RTE_BBDEV_CODE_BLOCK = 1,
+};
+
+/** Data input and output buffer for BBDEV operations */
+struct rte_bbdev_op_data {
+       /** The mbuf data structure representing the data for BBDEV operation.
+        *
+        * This mbuf pointer can point to one Code Block (CB) data buffer or
+        * multiple CBs contiguously located next to each other.
+        * A Transport Block (TB) represents a whole piece of data that is
+        * divided into one or more CBs. Maximum number of CBs can be contained
+        * in one TB is defined by RTE_BBDEV_(TURBO/LDPC)_MAX_CODE_BLOCKS.
+        *
+        * An mbuf data structure cannot represent more than one TB. The
+        * smallest piece of data that can be contained in one mbuf is one CB.
+        * An mbuf can include one contiguous CB, subset of contiguous CBs that
+        * are belonging to one TB, or all contiguous CBs that are belonging to
+        * one TB.
+        *
+        * If a BBDEV PMD supports the extended capability "Scatter-Gather",
+        * then it is capable of collecting (gathering) non-contiguous
+        * (scattered) data from multiple locations in the memory.
+        * This capability is reported by the capability flags:
+        * - RTE_BBDEV_(TURBO/LDPC)_ENC_SCATTER_GATHER and
+        * - RTE_BBDEV_(TURBO/LDPC)_DEC_SCATTER_GATHER.
+        * Only if a BBDEV PMD supports this feature, chained mbuf data
+        * structures are accepted. A chained mbuf can represent one
+        * non-contiguous CB or multiple non-contiguous CBs.
+        * If BBDEV PMD does not support this feature, it will assume inbound
+        * mbuf data contains one segment.
+        *
+        * The output mbuf data though is always one segment, even if the input
+        * was a chained mbuf.
+        */
+       struct rte_mbuf *data;
+       /** The starting point of the BBDEV (encode/decode) operation,
+        * in bytes.
+        *
+        * BBDEV starts to read data past this offset.
+        * In case of chained mbuf, this offset applies only to the first mbuf
+        * segment.
+        */
+       uint32_t offset;
+       /** The total data length to be processed in one operation, in bytes.
+        *
+        * In case the mbuf data is representing one CB, this is the length of
+        * the CB undergoing the operation.
+        * If it's for multiple CBs, this is the total length of those CBs
+        * undergoing the operation.
+        * If it is for one TB, this is the total length of the TB under
+        * operation.
+        *
+        * In case of chained mbuf, this data length includes the lengths of the
+        * "scattered" data segments undergoing the operation.
+        */
+       uint32_t length;
+};
+
+/** Turbo decode code block parameters */
+struct rte_bbdev_op_dec_turbo_cb_params {
+       /** The K size of the input CB, in bits [40:6144], as specified in
+        * 3GPP TS 36.212.
+        * This size is inclusive of CRC bits, regardless whether it was
+        * pre-calculated by the application or not.
+        */
+       uint16_t k;
+       /** The E length of the CB rate matched LLR output, in bytes, as in
+        * 3GPP TS 36.212.
+        */
+       uint32_t e;
+};
+
+/** LDPC decode code block parameters */
+struct rte_bbdev_op_dec_ldpc_cb_params {
+       /** Rate matching output sequence length in bits or LLRs.
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint32_t e;
+};
+
+/** Turbo decode transport block parameters */
+struct rte_bbdev_op_dec_turbo_tb_params {
+       /** The K- size of the input CB, in bits [40:6144], that is in the
+        * Turbo operation when r < C-, as in 3GPP TS 36.212.
+        */
+       uint16_t k_neg;
+       /** The K+ size of the input CB, in bits [40:6144], that is in the
+        * Turbo operation when r >= C-, as in 3GPP TS 36.212.
+        */
+       uint16_t k_pos;
+       /** The number of CBs that have K- size, [0:63] */
+       uint8_t c_neg;
+       /** The total number of CBs in the TB,
+        * [1:RTE_BBDEV_TURBO_MAX_CODE_BLOCKS]
+        */
+       uint8_t c;
+       /** The number of CBs that uses Ea before switching to Eb, [0:63] */
+       uint8_t cab;
+       /** The E size of the CB rate matched output to use in the Turbo
+        * operation when r < cab
+        */
+       uint32_t ea;
+       /** The E size of the CB rate matched output to use in the Turbo
+        * operation when r >= cab
+        */
+       uint32_t eb;
+       /** The index of the first CB in the inbound mbuf data, default is 0 */
+       uint8_t r;
+};
+
+/** LDPC decode transport block parameters */
+struct rte_bbdev_op_dec_ldpc_tb_params {
+       /** Ea, length after rate matching in bits, r < cab.
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint32_t ea;
+       /** Eb, length after rate matching in bits, r >= cab.
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint32_t eb;
+       /** The total number of CBs in the TB or partial TB
+        * [1:RTE_BBDEV_LDPC_MAX_CODE_BLOCKS]
+        */
+       uint8_t c;
+       /** The index of the first CB in the inbound mbuf data, default is 0 */
+       uint8_t r;
+       /** The number of CBs that use Ea before switching to Eb, [0:63] */
+       uint8_t cab;
+};
+
+/** Operation structure for Turbo decode.
+ * An operation can be performed on one CB at a time "CB-mode".
+ * An operation can be performed on one or multiple CBs that logically
+ * belong to one TB "TB-mode".
+ * The provided K size parameter of the CB is its size coming from the
+ * decode operation.
+ * CRC24A/B check is requested by the application by setting the flag
+ * RTE_BBDEV_TURBO_CRC_TYPE_24B for CRC24B check or CRC24A otherwise.
+ * In TB-mode, BBDEV concatenates the decoded CBs one next to the other with
+ * relevant CRC24B in between.
+ *
+ * The input encoded CB data is the Virtual Circular Buffer data stream, wk,
+ * with the null padding included as described in 3GPP TS 36.212
+ * section 5.1.4.1.2 and shown in 3GPP TS 36.212 section 5.1.4.1 Figure 5.1.4-1.
+ * The size of the virtual circular buffer is 3*Kpi, where Kpi is the 32 byte
+ * aligned value of K, as specified in 3GPP TS 36.212 section 5.1.4.1.1.
+ *
+ * Each byte in the input circular buffer is the LLR value of each bit of the
+ * original CB.
+ *
+ * Hard output is a mandatory capability that all BBDEV PMDs support. This is
+ * the decoded CBs of K sizes (CRC24A/B is the last 24-bit in each decoded CB).
+ * Soft output is an optional capability for BBDEV PMDs. If supported, an LLR
+ * rate matched output is computed in the soft_output buffer structure.
+ *
+ * The output mbuf data structure is expected to be allocated by the
+ * application with enough room for the output data.
+ */
+struct rte_bbdev_op_turbo_dec {
+       /** The Virtual Circular Buffer, wk, size 3*Kpi for each CB */
+       struct rte_bbdev_op_data input;
+       /** The hard decisions buffer for the decoded output,
+        * size K for each CB
+        */
+       struct rte_bbdev_op_data hard_output;
+       /** The soft LLR output buffer - optional */
+       struct rte_bbdev_op_data soft_output;
+
+       /** Flags from rte_bbdev_op_td_flag_bitmasks */
+       uint32_t op_flags;
+
+       /** Rv index for rate matching [0:3] */
+       uint8_t rv_index;
+       /** The minimum number of iterations to perform in decoding all CBs in
+        * this operation - input
+        */
+       uint8_t iter_min:4;
+       /** The maximum number of iterations to perform in decoding all CBs in
+        * this operation - input
+        */
+       uint8_t iter_max:4;
+       /** The maximum number of iterations that were performed in decoding
+        * all CBs in this decode operation - output
+        */
+       uint8_t iter_count;
+       /** 5 bit extrinsic scale (scale factor on extrinsic info) */
+       uint8_t ext_scale;
+       /** Number of MAP engines to use in decode,
+        *  must be power of 2 (or 0 to auto-select)
+        */
+       uint8_t num_maps;
+
+       /** [0 - TB : 1 - CB] */
+       uint8_t code_block_mode;
+       union {
+               /** Struct which stores Code Block specific parameters */
+               struct rte_bbdev_op_dec_turbo_cb_params cb_params;
+               /** Struct which stores Transport Block specific parameters */
+               struct rte_bbdev_op_dec_turbo_tb_params tb_params;
+       };
+};
+
+/** Operation structure for LDPC decode.
+ *
+ * An operation can be performed on one CB at a time "CB-mode".
+ * An operation can also be performed on one or multiple CBs that logically
+ * belong to a TB "TB-mode" (Currently not supported).
+ *
+ * The input encoded CB data is the Virtual Circular Buffer data stream.
+ *
+ * Each byte in the input circular buffer is the LLR value of each bit of the
+ * original CB.
+ *
+ * Hard output is a mandatory capability that all BBDEV PMDs support. This is
+ * the decoded CBs (CRC24A/B is the last 24-bit in each decoded CB).
+ *
+ * Soft output is an optional capability for BBDEV PMDs. If supported, an LLR
+ * rate matched output is computed in the soft_output buffer structure.
+ * These are A Posteriori Probabilities (APP) LLR samples for coded bits.
+ *
+ * HARQ combined output is an optional capability for BBDEV PMDs.
+ * If supported, a LLR output is streamed to the harq_combined_output
+ * buffer.
+ *
+ * HARQ combined input is an optional capability for BBDEV PMDs.
+ * If supported, a LLR input is streamed from the harq_combined_input
+ * buffer.
+ *
+ * The output mbuf data structure is expected to be allocated by the
+ * application with enough room for the output data.
+ */
+struct rte_bbdev_op_ldpc_dec {
+       /** The Virtual Circular Buffer for this code block, one LLR
+        * per bit of the original CB.
+        */
+       struct rte_bbdev_op_data input;
+       /** The hard decisions buffer for the decoded output,
+        * size K for each CB
+        */
+       struct rte_bbdev_op_data hard_output;
+       /** The soft LLR output LLR stream buffer - optional */
+       struct rte_bbdev_op_data soft_output;
+       /** The HARQ combined LLR stream input buffer - optional */
+       struct rte_bbdev_op_data harq_combined_input;
+       /** The HARQ combined LLR stream output buffer - optional */
+       struct rte_bbdev_op_data harq_combined_output;
+
+       /** Flags from rte_bbdev_op_ldpcdec_flag_bitmasks */
+       uint32_t op_flags;
+
+       /** Rate matching redundancy version
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint8_t rv_index;
+       /** The maximum number of iterations to perform in decoding CB in
+        *  this operation - input
+        */
+       uint8_t iter_max;
+       /** The number of iterations that were performed in decoding
+        * CB in this decode operation - output
+        */
+       uint8_t iter_count;
+       /** 1: LDPC Base graph 1, 2: LDPC Base graph 2.
+        * [3GPP TS38.212, section 5.2.2]
+        */
+       uint8_t basegraph;
+       /** Zc, LDPC lifting size.
+        *  [3GPP TS38.212, section 5.2.2]
+        */
+       uint16_t z_c;
+       /** Ncb, length of the circular buffer in bits.
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint16_t n_cb;
+       /** Qm, modulation order {1,2,4,6,8}.
+        *  [3GPP TS38.212, section 5.4.2.2]
+        */
+       uint8_t q_m;
+       /** Number of Filler bits, n_filler = K – K’
+        *  [3GPP TS38.212 section 5.2.2]
+        */
+       uint16_t n_filler;
+       /** [0 - TB : 1 - CB] */
+       uint8_t code_block_mode;
+       union {
+               /** Struct which stores Code Block specific parameters */
+               struct rte_bbdev_op_dec_ldpc_cb_params cb_params;
+               /** Struct which stores Transport Block specific parameters */
+               struct rte_bbdev_op_dec_ldpc_tb_params tb_params;
+       };
+};
+
+/** Turbo encode code block parameters */
+struct rte_bbdev_op_enc_turbo_cb_params {
+       /** The K size of the input CB, in bits [40:6144], as specified in
+        * 3GPP TS 36.212.
+        * This size is inclusive of CRC24A, regardless whether it was
+        * pre-calculated by the application or not.
+        */
+       uint16_t k;
+       /** The E length of the CB rate matched output, in bits, as in
+        * 3GPP TS 36.212.
+        */
+       uint32_t e;
+       /** The Ncb soft buffer size of the CB rate matched output [K:3*Kpi],
+        * in bits, as specified in 3GPP TS 36.212.
+        */
+       uint16_t ncb;
+};
+
+/** Turbo encode transport block parameters */
+struct rte_bbdev_op_enc_turbo_tb_params {
+       /** The K- size of the input CB, in bits [40:6144], that is in the
+        * Turbo operation when r < C-, as in 3GPP TS 36.212.
+        * This size is inclusive of CRC24B, regardless whether it was
+        * pre-calculated and appended by the application or not.
+        */
+       uint16_t k_neg;
+       /** The K+ size of the input CB, in bits [40:6144], that is in the
+        * Turbo operation when r >= C-, as in 3GPP TS 36.212.
+        * This size is inclusive of CRC24B, regardless whether it was
+        * pre-calculated and appended by the application or not.
+        */
+       uint16_t k_pos;
+       /** The number of CBs that have K- size, [0:63] */
+       uint8_t c_neg;
+       /** The total number of CBs in the TB,
+        * [1:RTE_BBDEV_TURBO_MAX_CODE_BLOCKS]
+        */
+       uint8_t c;
+       /** The number of CBs that uses Ea before switching to Eb, [0:63] */
+       uint8_t cab;
+       /** The E size of the CB rate matched output to use in the Turbo
+        * operation when r < cab
+        */
+       uint32_t ea;
+       /** The E size of the CB rate matched output to use in the Turbo
+        * operation when r >= cab
+        */
+       uint32_t eb;
+       /** The Ncb soft buffer size for the rate matched CB that is used in
+        * the Turbo operation when r < C-, [K:3*Kpi]
+        */
+       uint16_t ncb_neg;
+       /** The Ncb soft buffer size for the rate matched CB that is used in
+        * the Turbo operation when r >= C-, [K:3*Kpi]
+        */
+       uint16_t ncb_pos;
+       /** The index of the first CB in the inbound mbuf data, default is 0 */
+       uint8_t r;
+};
+
+/** LDPC encode code block parameters */
+struct rte_bbdev_op_enc_ldpc_cb_params {
+       /** E, length after rate matching in bits.
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint32_t e;
+};
+
+/** LDPC encode transport block parameters */
+struct rte_bbdev_op_enc_ldpc_tb_params {
+       /** Ea, length after rate matching in bits, r < cab.
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint32_t ea;
+       /** Eb, length after rate matching in bits, r >= cab.
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint32_t eb;
+       /** The total number of CBs in the TB or partial TB
+        * [1:RTE_BBDEV_LDPC_MAX_CODE_BLOCKS]
+        */
+       uint8_t c;
+       /** The index of the first CB in the inbound mbuf data, default is 0 */
+       uint8_t r;
+       /** The number of CBs that use Ea before switching to Eb, [0:63] */
+       uint8_t cab;
+};
+
+/** Operation structure for Turbo encode.
+ * An operation can be performed on one CB at a time "CB-mode".
+ * An operation can pbe erformd on one or multiple CBs that logically
+ * belong to one TB "TB-mode".
+ *
+ * In CB-mode, CRC24A/B is an optional operation. K size parameter is not
+ * affected by CRC24A/B inclusion, this only affects the inbound mbuf data
+ * length. Not all BBDEV PMDs are capable of CRC24A/B calculation. Flags
+ * RTE_BBDEV_TURBO_CRC_24A_ATTACH and RTE_BBDEV_TURBO_CRC_24B_ATTACH informs
+ * the application with relevant capability. These flags can be set in the
+ * op_flags parameter to indicate BBDEV to calculate and append CRC24A to CB
+ * before going forward with Turbo encoding.
+ *
+ * In TB-mode, CRC24A is assumed to be pre-calculated and appended to the
+ * inbound TB mbuf data buffer.
+ *
+ * The output mbuf data structure is expected to be allocated by the
+ * application with enough room for the output data.
+ */
+struct rte_bbdev_op_turbo_enc {
+       /** The input CB or TB data */
+       struct rte_bbdev_op_data input;
+       /** The rate matched CB or TB output buffer */
+       struct rte_bbdev_op_data output;
+       /** Flags from rte_bbdev_op_te_flag_bitmasks */
+       uint32_t op_flags;
+
+       /** Rv index for rate matching [0:3] */
+       uint8_t rv_index;
+       /** [0 - TB : 1 - CB] */
+       uint8_t code_block_mode;
+       union {
+               /** Struct which stores Code Block specific parameters */
+               struct rte_bbdev_op_enc_turbo_cb_params cb_params;
+               /** Struct which stores Transport Block specific parameters */
+               struct rte_bbdev_op_enc_turbo_tb_params tb_params;
+       };
+};
+
+/** Operation structure for LDPC encode.
+ * An operation can be performed on one CB at a time "CB-mode".
+ * An operation can be performed on one or multiple CBs that logically
+ * belong to a TB "TB-mode".
+ *
+ * The input data is the CB or TB input to the decoder.
+ *
+ * The output data is the ratematched CB or TB data, or the output after
+ * bit-selection if RTE_BBDEV_LDPC_INTERLEAVER_BYPASS is set.
+ *
+ * The output mbuf data structure is expected to be allocated by the
+ * application with enough room for the output data.
+ */
+struct rte_bbdev_op_ldpc_enc {
+       /** The input TB or CB data */
+       struct rte_bbdev_op_data input;
+       /** The rate matched TB or CB output buffer */
+       struct rte_bbdev_op_data output;
+
+       /** Flags from rte_bbdev_op_ldpcenc_flag_bitmasks */
+       uint32_t op_flags;
+
+       /** Rate matching redundancy version */
+       uint8_t rv_index;
+       /** 1: LDPC Base graph 1, 2: LDPC Base graph 2.
+        *  [3GPP TS38.212, section 5.2.2]
+        */
+       uint8_t basegraph;
+       /** Zc, LDPC lifting size.
+        *  [3GPP TS38.212, section 5.2.2]
+        */
+       uint16_t z_c;
+       /** Ncb, length of the circular buffer in bits.
+        *  [3GPP TS38.212, section 5.4.2.1]
+        */
+       uint16_t n_cb;
+       /** Qm, modulation order {2,4,6,8,10}.
+        *  [3GPP TS38.212, section 5.4.2.2]
+        */
+       uint8_t q_m;
+       /** Number of Filler bits, n_filler = K – K’
+        *  [3GPP TS38.212 section 5.2.2]
+        */
+       uint16_t n_filler;
+       /** [0 - TB : 1 - CB] */
+       uint8_t code_block_mode;
+       union {
+               /** Struct which stores Code Block specific parameters */
+               struct rte_bbdev_op_enc_ldpc_cb_params cb_params;
+               /** Struct which stores Transport Block specific parameters */
+               struct rte_bbdev_op_enc_ldpc_tb_params tb_params;
+       };
+};
+
+/** List of the capabilities for the Turbo Decoder */
+struct rte_bbdev_op_cap_turbo_dec {
+       /** Flags from rte_bbdev_op_td_flag_bitmasks */
+       uint32_t capability_flags;
+       /** Maximal LLR absolute value. Acceptable LLR values lie in range
+        * [-max_llr_modulus, max_llr_modulus].
+        */
+       int8_t max_llr_modulus;
+       /** Num input code block buffers */
+       uint8_t num_buffers_src;  /**< Num input code block buffers */
+       /** Num hard output code block buffers */
+       uint8_t num_buffers_hard_out;
+       /** Num soft output code block buffers if supported by the driver */
+       uint8_t num_buffers_soft_out;
+};
+
+/** List of the capabilities for the Turbo Encoder */
+struct rte_bbdev_op_cap_turbo_enc {
+       /** Flags from rte_bbdev_op_te_flag_bitmasks */
+       uint32_t capability_flags;
+       /** Num input code block buffers */
+       uint8_t num_buffers_src;
+       /** Num output code block buffers */
+       uint8_t num_buffers_dst;
+};
+
+/** List of the capabilities for the LDPC Decoder */
+struct rte_bbdev_op_cap_ldpc_dec {
+       /** Flags from rte_bbdev_op_ldpcdec_flag_bitmasks */
+       uint32_t capability_flags;
+       /** LLR size in bits. LLR is a two’s complement number. */
+       int8_t llr_size;
+       /** LLR numbers of decimals bit for arithmetic representation */
+       int8_t llr_decimals;
+       /** Num input code block buffers */
+       uint16_t num_buffers_src;
+       /** Num hard output code block buffers */
+       uint16_t num_buffers_hard_out;
+       /** Num soft output code block buffers if supported by the driver */
+       uint16_t num_buffers_soft_out;
+};
+
+/** List of the capabilities for the LDPC Encoder */
+struct rte_bbdev_op_cap_ldpc_enc {
+       /** Flags from rte_bbdev_op_ldpcenc_flag_bitmasks */
+       uint32_t capability_flags;
+       /** Num input code block buffers */
+       uint16_t num_buffers_src;
+       /** Num output code block buffers */
+       uint16_t num_buffers_dst;
+};
+
+/** Different operation types supported by the device */
+enum rte_bbdev_op_type {
+       RTE_BBDEV_OP_NONE,  /**< Dummy operation that does nothing */
+       RTE_BBDEV_OP_TURBO_DEC,  /**< Turbo decode */
+       RTE_BBDEV_OP_TURBO_ENC,  /**< Turbo encode */
+       RTE_BBDEV_OP_LDPC_DEC,  /**< LDPC decode */
+       RTE_BBDEV_OP_LDPC_ENC,  /**< LDPC encode */
+       RTE_BBDEV_OP_TYPE_COUNT,  /**< Count of different op types */
+};
+
+/** Bit indexes of possible errors reported through status field */
+enum {
+       RTE_BBDEV_DRV_ERROR,
+       RTE_BBDEV_DATA_ERROR,
+       RTE_BBDEV_CRC_ERROR,
+       RTE_BBDEV_SYNDROME_ERROR
+};
+
+/** Structure specifying a single encode operation */
+struct rte_bbdev_enc_op {
+       /** Status of operation that was performed */
+       int status;
+       /** Mempool which op instance is in */
+       struct rte_mempool *mempool;
+       /** Opaque pointer for user data */
+       void *opaque_data;
+       union {
+               /** Contains turbo decoder specific parameters */
+               struct rte_bbdev_op_turbo_enc turbo_enc;
+               /** Contains LDPC decoder specific parameters */
+               struct rte_bbdev_op_ldpc_enc ldpc_enc;
+       };
+};
+
+/** Structure specifying a single decode operation */
+struct rte_bbdev_dec_op {
+       /** Status of operation that was performed */
+       int status;
+       /** Mempool which op instance is in */
+       struct rte_mempool *mempool;
+       /** Opaque pointer for user data */
+       void *opaque_data;
+       union {
+               /** Contains turbo decoder specific parameters */
+               struct rte_bbdev_op_turbo_dec turbo_dec;
+               /** Contains LDPC decoder specific parameters */
+               struct rte_bbdev_op_ldpc_dec ldpc_dec;
+       };
+};
+
+/** Operation capabilities supported by a device */
+struct rte_bbdev_op_cap {
+       enum rte_bbdev_op_type type;  /**< Type of operation */
+       union {
+               struct rte_bbdev_op_cap_turbo_dec turbo_dec;
+               struct rte_bbdev_op_cap_turbo_enc turbo_enc;
+               struct rte_bbdev_op_cap_ldpc_dec ldpc_dec;
+               struct rte_bbdev_op_cap_ldpc_enc ldpc_enc;
+       } cap;  /**< Operation-type specific capabilities */
+};
+
+/** @internal Private data structure stored with operation pool. */
+struct rte_bbdev_op_pool_private {
+       enum rte_bbdev_op_type type;  /**< Type of operations in a pool */
+};
+
+/**
+ * Converts queue operation type from enum to string
+ *
+ * @param op_type
+ *   Operation type as enum
+ *
+ * @returns
+ *   Operation type as string or NULL if op_type is invalid
+ *
+ */
+const char*
+rte_bbdev_op_type_str(enum rte_bbdev_op_type op_type);
+
+/**
+ * Creates a bbdev operation mempool
+ *
+ * @param name
+ *   Pool name.
+ * @param type
+ *   Operation type, use RTE_BBDEV_OP_NONE for a pool which supports all
+ *   operation types.
+ * @param num_elements
+ *   Number of elements in the pool.
+ * @param cache_size
+ *   Number of elements to cache on an lcore, see rte_mempool_create() for
+ *   further details about cache size.
+ * @param socket_id
+ *   Socket to allocate memory on.
+ *
+ * @return
+ *   - Pointer to a mempool on success,
+ *   - NULL pointer on failure.
+ */
+struct rte_mempool *
+rte_bbdev_op_pool_create(const char *name, enum rte_bbdev_op_type type,
+               unsigned int num_elements, unsigned int cache_size,
+               int socket_id);
+
+/**
+ * Bulk allocate encode operations from a mempool with parameter defaults reset.
+ *
+ * @param mempool
+ *   Operation mempool, created by rte_bbdev_op_pool_create().
+ * @param ops
+ *   Output array to place allocated operations
+ * @param num_ops
+ *   Number of operations to allocate
+ *
+ * @returns
+ *   - 0 on success
+ *   - EINVAL if invalid mempool is provided
+ */
+static inline int
+rte_bbdev_enc_op_alloc_bulk(struct rte_mempool *mempool,
+               struct rte_bbdev_enc_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev_op_pool_private *priv;
+       int ret;
+
+       /* Check type */
+       priv = (struct rte_bbdev_op_pool_private *)
+                       rte_mempool_get_priv(mempool);
+       if (unlikely((priv->type != RTE_BBDEV_OP_TURBO_ENC) &&
+                                       (priv->type != RTE_BBDEV_OP_LDPC_ENC)))
+               return -EINVAL;
+
+       /* Get elements */
+       ret = rte_mempool_get_bulk(mempool, (void **)ops, num_ops);
+       if (unlikely(ret < 0))
+               return ret;
+
+       return 0;
+}
+
+/**
+ * Bulk allocate decode operations from a mempool with parameter defaults reset.
+ *
+ * @param mempool
+ *   Operation mempool, created by rte_bbdev_op_pool_create().
+ * @param ops
+ *   Output array to place allocated operations
+ * @param num_ops
+ *   Number of operations to allocate
+ *
+ * @returns
+ *   - 0 on success
+ *   - EINVAL if invalid mempool is provided
+ */
+static inline int
+rte_bbdev_dec_op_alloc_bulk(struct rte_mempool *mempool,
+               struct rte_bbdev_dec_op **ops, uint16_t num_ops)
+{
+       struct rte_bbdev_op_pool_private *priv;
+       int ret;
+
+       /* Check type */
+       priv = (struct rte_bbdev_op_pool_private *)
+                       rte_mempool_get_priv(mempool);
+       if (unlikely((priv->type != RTE_BBDEV_OP_TURBO_DEC) &&
+                                       (priv->type != RTE_BBDEV_OP_LDPC_DEC)))
+               return -EINVAL;
+
+       /* Get elements */
+       ret = rte_mempool_get_bulk(mempool, (void **)ops, num_ops);
+       if (unlikely(ret < 0))
+               return ret;
+
+       return 0;
+}
+
+/**
+ * Free decode operation structures that were allocated by
+ * rte_bbdev_dec_op_alloc_bulk().
+ * All structures must belong to the same mempool.
+ *
+ * @param ops
+ *   Operation structures
+ * @param num_ops
+ *   Number of structures
+ */
+static inline void
+rte_bbdev_dec_op_free_bulk(struct rte_bbdev_dec_op **ops, unsigned int num_ops)
+{
+       if (num_ops > 0)
+               rte_mempool_put_bulk(ops[0]->mempool, (void **)ops, num_ops);
+}
+
+/**
+ * Free encode operation structures that were allocated by
+ * rte_bbdev_enc_op_alloc_bulk().
+ * All structures must belong to the same mempool.
+ *
+ * @param ops
+ *   Operation structures
+ * @param num_ops
+ *   Number of structures
+ */
+static inline void
+rte_bbdev_enc_op_free_bulk(struct rte_bbdev_enc_op **ops, unsigned int num_ops)
+{
+       if (num_ops > 0)
+               rte_mempool_put_bulk(ops[0]->mempool, (void **)ops, num_ops);
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _RTE_BBDEV_OP_H_ */