net/mlx5: make tunnel hub list thread safe
[dpdk.git] / drivers / baseband / acc100 / rte_acc100_pmd.c
index 0541046..5e663a6 100644 (file)
@@ -38,10 +38,10 @@ mmio_write(void *addr, uint32_t value)
 
 /* Write a register of a ACC100 device */
 static inline void
-acc100_reg_write(struct acc100_device *d, uint32_t offset, uint32_t payload)
+acc100_reg_write(struct acc100_device *d, uint32_t offset, uint32_t value)
 {
        void *reg_addr = RTE_PTR_ADD(d->mmio_base, offset);
-       mmio_write(reg_addr, payload);
+       mmio_write(reg_addr, value);
        usleep(ACC100_LONG_WAIT);
 }
 
@@ -85,6 +85,26 @@ queue_offset(bool pf_device, uint8_t vf_id, uint8_t qgrp_id, uint16_t aq_id)
 
 enum {UL_4G = 0, UL_5G, DL_4G, DL_5G, NUM_ACC};
 
+/* Return the accelerator enum for a Queue Group Index */
+static inline int
+accFromQgid(int qg_idx, const struct rte_acc100_conf *acc100_conf)
+{
+       int accQg[ACC100_NUM_QGRPS];
+       int NumQGroupsPerFn[NUM_ACC];
+       int acc, qgIdx, qgIndex = 0;
+       for (qgIdx = 0; qgIdx < ACC100_NUM_QGRPS; qgIdx++)
+               accQg[qgIdx] = 0;
+       NumQGroupsPerFn[UL_4G] = acc100_conf->q_ul_4g.num_qgroups;
+       NumQGroupsPerFn[UL_5G] = acc100_conf->q_ul_5g.num_qgroups;
+       NumQGroupsPerFn[DL_4G] = acc100_conf->q_dl_4g.num_qgroups;
+       NumQGroupsPerFn[DL_5G] = acc100_conf->q_dl_5g.num_qgroups;
+       for (acc = UL_4G;  acc < NUM_ACC; acc++)
+               for (qgIdx = 0; qgIdx < NumQGroupsPerFn[acc]; qgIdx++)
+                       accQg[qgIndex++] = acc;
+       acc = accQg[qg_idx];
+       return acc;
+}
+
 /* Return the queue topology for a Queue Group Index */
 static inline void
 qtopFromAcc(struct rte_acc100_queue_topology **qtop, int acc_enum,
@@ -113,6 +133,30 @@ qtopFromAcc(struct rte_acc100_queue_topology **qtop, int acc_enum,
        *qtop = p_qtop;
 }
 
+/* Return the AQ depth for a Queue Group Index */
+static inline int
+aqDepth(int qg_idx, struct rte_acc100_conf *acc100_conf)
+{
+       struct rte_acc100_queue_topology *q_top = NULL;
+       int acc_enum = accFromQgid(qg_idx, acc100_conf);
+       qtopFromAcc(&q_top, acc_enum, acc100_conf);
+       if (unlikely(q_top == NULL))
+               return 0;
+       return q_top->aq_depth_log2;
+}
+
+/* Return the AQ depth for a Queue Group Index */
+static inline int
+aqNum(int qg_idx, struct rte_acc100_conf *acc100_conf)
+{
+       struct rte_acc100_queue_topology *q_top = NULL;
+       int acc_enum = accFromQgid(qg_idx, acc100_conf);
+       qtopFromAcc(&q_top, acc_enum, acc100_conf);
+       if (unlikely(q_top == NULL))
+               return 0;
+       return q_top->num_aqs_per_groups;
+}
+
 static void
 initQTop(struct rte_acc100_conf *acc100_conf)
 {
@@ -342,14 +386,221 @@ alloc_sw_rings_min_mem(struct rte_bbdev *dev, struct acc100_device *d,
        free_base_addresses(base_addrs, i);
 }
 
+/*
+ * Find queue_id of a device queue based on details from the Info Ring.
+ * If a queue isn't found UINT16_MAX is returned.
+ */
+static inline uint16_t
+get_queue_id_from_ring_info(struct rte_bbdev_data *data,
+               const union acc100_info_ring_data ring_data)
+{
+       uint16_t queue_id;
+
+       for (queue_id = 0; queue_id < data->num_queues; ++queue_id) {
+               struct acc100_queue *acc100_q =
+                               data->queues[queue_id].queue_private;
+               if (acc100_q != NULL && acc100_q->aq_id == ring_data.aq_id &&
+                               acc100_q->qgrp_id == ring_data.qg_id &&
+                               acc100_q->vf_id == ring_data.vf_id)
+                       return queue_id;
+       }
+
+       return UINT16_MAX;
+}
+
+/* Checks PF Info Ring to find the interrupt cause and handles it accordingly */
+static inline void
+acc100_check_ir(struct acc100_device *acc100_dev)
+{
+       volatile union acc100_info_ring_data *ring_data;
+       uint16_t info_ring_head = acc100_dev->info_ring_head;
+       if (acc100_dev->info_ring == NULL)
+               return;
+
+       ring_data = acc100_dev->info_ring + (acc100_dev->info_ring_head &
+                       ACC100_INFO_RING_MASK);
+
+       while (ring_data->valid) {
+               if ((ring_data->int_nb < ACC100_PF_INT_DMA_DL_DESC_IRQ) || (
+                               ring_data->int_nb >
+                               ACC100_PF_INT_DMA_DL5G_DESC_IRQ))
+                       rte_bbdev_log(WARNING, "InfoRing: ITR:%d Info:0x%x",
+                               ring_data->int_nb, ring_data->detailed_info);
+               /* Initialize Info Ring entry and move forward */
+               ring_data->val = 0;
+               info_ring_head++;
+               ring_data = acc100_dev->info_ring +
+                               (info_ring_head & ACC100_INFO_RING_MASK);
+       }
+}
+
+/* Checks PF Info Ring to find the interrupt cause and handles it accordingly */
+static inline void
+acc100_pf_interrupt_handler(struct rte_bbdev *dev)
+{
+       struct acc100_device *acc100_dev = dev->data->dev_private;
+       volatile union acc100_info_ring_data *ring_data;
+       struct acc100_deq_intr_details deq_intr_det;
+
+       ring_data = acc100_dev->info_ring + (acc100_dev->info_ring_head &
+                       ACC100_INFO_RING_MASK);
+
+       while (ring_data->valid) {
+
+               rte_bbdev_log_debug(
+                               "ACC100 PF Interrupt received, Info Ring data: 0x%x",
+                               ring_data->val);
+
+               switch (ring_data->int_nb) {
+               case ACC100_PF_INT_DMA_DL_DESC_IRQ:
+               case ACC100_PF_INT_DMA_UL_DESC_IRQ:
+               case ACC100_PF_INT_DMA_UL5G_DESC_IRQ:
+               case ACC100_PF_INT_DMA_DL5G_DESC_IRQ:
+                       deq_intr_det.queue_id = get_queue_id_from_ring_info(
+                                       dev->data, *ring_data);
+                       if (deq_intr_det.queue_id == UINT16_MAX) {
+                               rte_bbdev_log(ERR,
+                                               "Couldn't find queue: aq_id: %u, qg_id: %u, vf_id: %u",
+                                               ring_data->aq_id,
+                                               ring_data->qg_id,
+                                               ring_data->vf_id);
+                               return;
+                       }
+                       rte_bbdev_pmd_callback_process(dev,
+                                       RTE_BBDEV_EVENT_DEQUEUE, &deq_intr_det);
+                       break;
+               default:
+                       rte_bbdev_pmd_callback_process(dev,
+                                       RTE_BBDEV_EVENT_ERROR, NULL);
+                       break;
+               }
+
+               /* Initialize Info Ring entry and move forward */
+               ring_data->val = 0;
+               ++acc100_dev->info_ring_head;
+               ring_data = acc100_dev->info_ring +
+                               (acc100_dev->info_ring_head &
+                               ACC100_INFO_RING_MASK);
+       }
+}
+
+/* Checks VF Info Ring to find the interrupt cause and handles it accordingly */
+static inline void
+acc100_vf_interrupt_handler(struct rte_bbdev *dev)
+{
+       struct acc100_device *acc100_dev = dev->data->dev_private;
+       volatile union acc100_info_ring_data *ring_data;
+       struct acc100_deq_intr_details deq_intr_det;
+
+       ring_data = acc100_dev->info_ring + (acc100_dev->info_ring_head &
+                       ACC100_INFO_RING_MASK);
+
+       while (ring_data->valid) {
+
+               rte_bbdev_log_debug(
+                               "ACC100 VF Interrupt received, Info Ring data: 0x%x",
+                               ring_data->val);
+
+               switch (ring_data->int_nb) {
+               case ACC100_VF_INT_DMA_DL_DESC_IRQ:
+               case ACC100_VF_INT_DMA_UL_DESC_IRQ:
+               case ACC100_VF_INT_DMA_UL5G_DESC_IRQ:
+               case ACC100_VF_INT_DMA_DL5G_DESC_IRQ:
+                       /* VFs are not aware of their vf_id - it's set to 0 in
+                        * queue structures.
+                        */
+                       ring_data->vf_id = 0;
+                       deq_intr_det.queue_id = get_queue_id_from_ring_info(
+                                       dev->data, *ring_data);
+                       if (deq_intr_det.queue_id == UINT16_MAX) {
+                               rte_bbdev_log(ERR,
+                                               "Couldn't find queue: aq_id: %u, qg_id: %u",
+                                               ring_data->aq_id,
+                                               ring_data->qg_id);
+                               return;
+                       }
+                       rte_bbdev_pmd_callback_process(dev,
+                                       RTE_BBDEV_EVENT_DEQUEUE, &deq_intr_det);
+                       break;
+               default:
+                       rte_bbdev_pmd_callback_process(dev,
+                                       RTE_BBDEV_EVENT_ERROR, NULL);
+                       break;
+               }
+
+               /* Initialize Info Ring entry and move forward */
+               ring_data->valid = 0;
+               ++acc100_dev->info_ring_head;
+               ring_data = acc100_dev->info_ring + (acc100_dev->info_ring_head
+                               & ACC100_INFO_RING_MASK);
+       }
+}
+
+/* Interrupt handler triggered by ACC100 dev for handling specific interrupt */
+static void
+acc100_dev_interrupt_handler(void *cb_arg)
+{
+       struct rte_bbdev *dev = cb_arg;
+       struct acc100_device *acc100_dev = dev->data->dev_private;
+
+       /* Read info ring */
+       if (acc100_dev->pf_device)
+               acc100_pf_interrupt_handler(dev);
+       else
+               acc100_vf_interrupt_handler(dev);
+}
+
+/* Allocate and setup inforing */
+static int
+allocate_info_ring(struct rte_bbdev *dev)
+{
+       struct acc100_device *d = dev->data->dev_private;
+       const struct acc100_registry_addr *reg_addr;
+       rte_iova_t info_ring_iova;
+       uint32_t phys_low, phys_high;
+
+       if (d->info_ring != NULL)
+               return 0; /* Already configured */
+
+       /* Choose correct registry addresses for the device type */
+       if (d->pf_device)
+               reg_addr = &pf_reg_addr;
+       else
+               reg_addr = &vf_reg_addr;
+       /* Allocate InfoRing */
+       d->info_ring = rte_zmalloc_socket("Info Ring",
+                       ACC100_INFO_RING_NUM_ENTRIES *
+                       sizeof(*d->info_ring), RTE_CACHE_LINE_SIZE,
+                       dev->data->socket_id);
+       if (d->info_ring == NULL) {
+               rte_bbdev_log(ERR,
+                               "Failed to allocate Info Ring for %s:%u",
+                               dev->device->driver->name,
+                               dev->data->dev_id);
+               return -ENOMEM;
+       }
+       info_ring_iova = rte_malloc_virt2iova(d->info_ring);
+
+       /* Setup Info Ring */
+       phys_high = (uint32_t)(info_ring_iova >> 32);
+       phys_low  = (uint32_t)(info_ring_iova);
+       acc100_reg_write(d, reg_addr->info_ring_hi, phys_high);
+       acc100_reg_write(d, reg_addr->info_ring_lo, phys_low);
+       acc100_reg_write(d, reg_addr->info_ring_en, ACC100_REG_IRQ_EN_ALL);
+       d->info_ring_head = (acc100_reg_read(d, reg_addr->info_ring_ptr) &
+                       0xFFF) / sizeof(union acc100_info_ring_data);
+       return 0;
+}
+
 
 /* Allocate 64MB memory used for all software rings */
 static int
 acc100_setup_queues(struct rte_bbdev *dev, uint16_t num_queues, int socket_id)
 {
-       uint32_t phys_low, phys_high, payload;
+       uint32_t phys_low, phys_high, value;
        struct acc100_device *d = dev->data->dev_private;
        const struct acc100_registry_addr *reg_addr;
+       int ret;
 
        if (d->pf_device && !d->acc100_conf.pf_mode_en) {
                rte_bbdev_log(NOTICE,
@@ -405,8 +656,8 @@ acc100_setup_queues(struct rte_bbdev *dev, uint16_t num_queues, int socket_id)
         * Configure Ring Size to the max queue ring size
         * (used for wrapping purpose)
         */
-       payload = log2_basic(d->sw_ring_size / 64);
-       acc100_reg_write(d, reg_addr->ring_size, payload);
+       value = log2_basic(d->sw_ring_size / 64);
+       acc100_reg_write(d, reg_addr->ring_size, value);
 
        /* Configure tail pointer for use when SDONE enabled */
        d->tail_ptrs = rte_zmalloc_socket(
@@ -433,6 +684,14 @@ acc100_setup_queues(struct rte_bbdev *dev, uint16_t num_queues, int socket_id)
        acc100_reg_write(d, reg_addr->tail_ptrs_dl4g_hi, phys_high);
        acc100_reg_write(d, reg_addr->tail_ptrs_dl4g_lo, phys_low);
 
+       ret = allocate_info_ring(dev);
+       if (ret < 0) {
+               rte_bbdev_log(ERR, "Failed to allocate info_ring for %s:%u",
+                               dev->device->driver->name,
+                               dev->data->dev_id);
+               /* Continue */
+       }
+
        d->harq_layout = rte_zmalloc_socket("HARQ Layout",
                        ACC100_HARQ_LAYOUT * sizeof(*d->harq_layout),
                        RTE_CACHE_LINE_SIZE, dev->data->socket_id);
@@ -454,13 +713,59 @@ acc100_setup_queues(struct rte_bbdev *dev, uint16_t num_queues, int socket_id)
        return 0;
 }
 
+static int
+acc100_intr_enable(struct rte_bbdev *dev)
+{
+       int ret;
+       struct acc100_device *d = dev->data->dev_private;
+
+       /* Only MSI are currently supported */
+       if (dev->intr_handle->type == RTE_INTR_HANDLE_VFIO_MSI ||
+                       dev->intr_handle->type == RTE_INTR_HANDLE_UIO) {
+
+               ret = allocate_info_ring(dev);
+               if (ret < 0) {
+                       rte_bbdev_log(ERR,
+                                       "Couldn't allocate info ring for device: %s",
+                                       dev->data->name);
+                       return ret;
+               }
+
+               ret = rte_intr_enable(dev->intr_handle);
+               if (ret < 0) {
+                       rte_bbdev_log(ERR,
+                                       "Couldn't enable interrupts for device: %s",
+                                       dev->data->name);
+                       rte_free(d->info_ring);
+                       return ret;
+               }
+               ret = rte_intr_callback_register(dev->intr_handle,
+                               acc100_dev_interrupt_handler, dev);
+               if (ret < 0) {
+                       rte_bbdev_log(ERR,
+                                       "Couldn't register interrupt callback for device: %s",
+                                       dev->data->name);
+                       rte_free(d->info_ring);
+                       return ret;
+               }
+
+               return 0;
+       }
+
+       rte_bbdev_log(ERR, "ACC100 (%s) supports only VFIO MSI interrupts",
+                       dev->data->name);
+       return -ENOTSUP;
+}
+
 /* Free memory used for software rings */
 static int
 acc100_dev_close(struct rte_bbdev *dev)
 {
        struct acc100_device *d = dev->data->dev_private;
+       acc100_check_ir(d);
        if (d->sw_rings_base != NULL) {
                rte_free(d->tail_ptrs);
+               rte_free(d->info_ring);
                rte_free(d->sw_rings_base);
                d->sw_rings_base = NULL;
        }
@@ -663,13 +968,51 @@ acc100_dev_info_get(struct rte_bbdev *dev,
        struct acc100_device *d = dev->data->dev_private;
 
        static const struct rte_bbdev_op_cap bbdev_capabilities[] = {
+               {
+                       .type = RTE_BBDEV_OP_TURBO_DEC,
+                       .cap.turbo_dec = {
+                               .capability_flags =
+                                       RTE_BBDEV_TURBO_SUBBLOCK_DEINTERLEAVE |
+                                       RTE_BBDEV_TURBO_CRC_TYPE_24B |
+                                       RTE_BBDEV_TURBO_HALF_ITERATION_EVEN |
+                                       RTE_BBDEV_TURBO_EARLY_TERMINATION |
+                                       RTE_BBDEV_TURBO_DEC_INTERRUPTS |
+                                       RTE_BBDEV_TURBO_NEG_LLR_1_BIT_IN |
+                                       RTE_BBDEV_TURBO_MAP_DEC |
+                                       RTE_BBDEV_TURBO_DEC_TB_CRC_24B_KEEP |
+                                       RTE_BBDEV_TURBO_DEC_SCATTER_GATHER,
+                               .max_llr_modulus = INT8_MAX,
+                               .num_buffers_src =
+                                               RTE_BBDEV_TURBO_MAX_CODE_BLOCKS,
+                               .num_buffers_hard_out =
+                                               RTE_BBDEV_TURBO_MAX_CODE_BLOCKS,
+                               .num_buffers_soft_out =
+                                               RTE_BBDEV_TURBO_MAX_CODE_BLOCKS,
+                       }
+               },
+               {
+                       .type = RTE_BBDEV_OP_TURBO_ENC,
+                       .cap.turbo_enc = {
+                               .capability_flags =
+                                       RTE_BBDEV_TURBO_CRC_24B_ATTACH |
+                                       RTE_BBDEV_TURBO_RV_INDEX_BYPASS |
+                                       RTE_BBDEV_TURBO_RATE_MATCH |
+                                       RTE_BBDEV_TURBO_ENC_INTERRUPTS |
+                                       RTE_BBDEV_TURBO_ENC_SCATTER_GATHER,
+                               .num_buffers_src =
+                                               RTE_BBDEV_TURBO_MAX_CODE_BLOCKS,
+                               .num_buffers_dst =
+                                               RTE_BBDEV_TURBO_MAX_CODE_BLOCKS,
+                       }
+               },
                {
                        .type   = RTE_BBDEV_OP_LDPC_ENC,
                        .cap.ldpc_enc = {
                                .capability_flags =
                                        RTE_BBDEV_LDPC_RATE_MATCH |
                                        RTE_BBDEV_LDPC_CRC_24B_ATTACH |
-                                       RTE_BBDEV_LDPC_INTERLEAVER_BYPASS,
+                                       RTE_BBDEV_LDPC_INTERLEAVER_BYPASS |
+                                       RTE_BBDEV_LDPC_ENC_INTERRUPTS,
                                .num_buffers_src =
                                                RTE_BBDEV_LDPC_MAX_CODE_BLOCKS,
                                .num_buffers_dst =
@@ -694,7 +1037,8 @@ acc100_dev_info_get(struct rte_bbdev *dev,
                                RTE_BBDEV_LDPC_DECODE_BYPASS |
                                RTE_BBDEV_LDPC_DEC_SCATTER_GATHER |
                                RTE_BBDEV_LDPC_HARQ_6BIT_COMPRESSION |
-                               RTE_BBDEV_LDPC_LLR_COMPRESSION,
+                               RTE_BBDEV_LDPC_LLR_COMPRESSION |
+                               RTE_BBDEV_LDPC_DEC_INTERRUPTS,
                        .llr_size = 8,
                        .llr_decimals = 1,
                        .num_buffers_src =
@@ -744,15 +1088,44 @@ acc100_dev_info_get(struct rte_bbdev *dev,
 #else
        dev_info->harq_buffer_size = 0;
 #endif
+       acc100_check_ir(d);
+}
+
+static int
+acc100_queue_intr_enable(struct rte_bbdev *dev, uint16_t queue_id)
+{
+       struct acc100_queue *q = dev->data->queues[queue_id].queue_private;
+
+       if (dev->intr_handle->type != RTE_INTR_HANDLE_VFIO_MSI &&
+                       dev->intr_handle->type != RTE_INTR_HANDLE_UIO)
+               return -ENOTSUP;
+
+       q->irq_enable = 1;
+       return 0;
 }
 
+static int
+acc100_queue_intr_disable(struct rte_bbdev *dev, uint16_t queue_id)
+{
+       struct acc100_queue *q = dev->data->queues[queue_id].queue_private;
+
+       if (dev->intr_handle->type != RTE_INTR_HANDLE_VFIO_MSI &&
+                       dev->intr_handle->type != RTE_INTR_HANDLE_UIO)
+               return -ENOTSUP;
+
+       q->irq_enable = 0;
+       return 0;
+}
 
 static const struct rte_bbdev_ops acc100_bbdev_ops = {
        .setup_queues = acc100_setup_queues,
+       .intr_enable = acc100_intr_enable,
        .close = acc100_dev_close,
        .info_get = acc100_dev_info_get,
        .queue_setup = acc100_queue_setup,
        .queue_release = acc100_queue_release,
+       .queue_intr_enable = acc100_queue_intr_enable,
+       .queue_intr_disable = acc100_queue_intr_disable
 };
 
 /* ACC100 PCI PF address map */
@@ -790,6 +1163,58 @@ mbuf_append(struct rte_mbuf *m_head, struct rte_mbuf *m, uint16_t len)
        return tail;
 }
 
+/* Fill in a frame control word for turbo encoding. */
+static inline void
+acc100_fcw_te_fill(const struct rte_bbdev_enc_op *op, struct acc100_fcw_te *fcw)
+{
+       fcw->code_block_mode = op->turbo_enc.code_block_mode;
+       if (fcw->code_block_mode == 0) { /* For TB mode */
+               fcw->k_neg = op->turbo_enc.tb_params.k_neg;
+               fcw->k_pos = op->turbo_enc.tb_params.k_pos;
+               fcw->c_neg = op->turbo_enc.tb_params.c_neg;
+               fcw->c = op->turbo_enc.tb_params.c;
+               fcw->ncb_neg = op->turbo_enc.tb_params.ncb_neg;
+               fcw->ncb_pos = op->turbo_enc.tb_params.ncb_pos;
+
+               if (check_bit(op->turbo_enc.op_flags,
+                               RTE_BBDEV_TURBO_RATE_MATCH)) {
+                       fcw->bypass_rm = 0;
+                       fcw->cab = op->turbo_enc.tb_params.cab;
+                       fcw->ea = op->turbo_enc.tb_params.ea;
+                       fcw->eb = op->turbo_enc.tb_params.eb;
+               } else {
+                       /* E is set to the encoding output size when RM is
+                        * bypassed.
+                        */
+                       fcw->bypass_rm = 1;
+                       fcw->cab = fcw->c_neg;
+                       fcw->ea = 3 * fcw->k_neg + 12;
+                       fcw->eb = 3 * fcw->k_pos + 12;
+               }
+       } else { /* For CB mode */
+               fcw->k_pos = op->turbo_enc.cb_params.k;
+               fcw->ncb_pos = op->turbo_enc.cb_params.ncb;
+
+               if (check_bit(op->turbo_enc.op_flags,
+                               RTE_BBDEV_TURBO_RATE_MATCH)) {
+                       fcw->bypass_rm = 0;
+                       fcw->eb = op->turbo_enc.cb_params.e;
+               } else {
+                       /* E is set to the encoding output size when RM is
+                        * bypassed.
+                        */
+                       fcw->bypass_rm = 1;
+                       fcw->eb = 3 * fcw->k_pos + 12;
+               }
+       }
+
+       fcw->bypass_rv_idx1 = check_bit(op->turbo_enc.op_flags,
+                       RTE_BBDEV_TURBO_RV_INDEX_BYPASS);
+       fcw->code_block_crc = check_bit(op->turbo_enc.op_flags,
+                       RTE_BBDEV_TURBO_CRC_24B_ATTACH);
+       fcw->rv_idx1 = op->turbo_enc.rv_index;
+}
+
 /* Compute value of k0.
  * Based on 3GPP 38.212 Table 5.4.2.1-2
  * Starting position of different redundancy versions, k0
@@ -840,6 +1265,25 @@ acc100_fcw_le_fill(const struct rte_bbdev_enc_op *op,
        fcw->mcb_count = num_cb;
 }
 
+/* Fill in a frame control word for turbo decoding. */
+static inline void
+acc100_fcw_td_fill(const struct rte_bbdev_dec_op *op, struct acc100_fcw_td *fcw)
+{
+       /* Note : Early termination is always enabled for 4GUL */
+       fcw->fcw_ver = 1;
+       if (op->turbo_dec.code_block_mode == 0)
+               fcw->k_pos = op->turbo_dec.tb_params.k_pos;
+       else
+               fcw->k_pos = op->turbo_dec.cb_params.k;
+       fcw->turbo_crc_type = check_bit(op->turbo_dec.op_flags,
+                       RTE_BBDEV_TURBO_CRC_TYPE_24B);
+       fcw->bypass_sb_deint = 0;
+       fcw->raw_decoder_input_on = 0;
+       fcw->max_iter = op->turbo_dec.iter_max;
+       fcw->half_iter_on = !check_bit(op->turbo_dec.op_flags,
+                       RTE_BBDEV_TURBO_HALF_ITERATION_EVEN);
+}
+
 /* Fill in a frame control word for LDPC decoding. */
 static inline void
 acc100_fcw_ld_fill(const struct rte_bbdev_dec_op *op, struct acc100_fcw_ld *fcw,
@@ -1092,6 +1536,87 @@ check_mbuf_total_left(uint32_t mbuf_total_left)
 }
 #endif
 
+static inline int
+acc100_dma_desc_te_fill(struct rte_bbdev_enc_op *op,
+               struct acc100_dma_req_desc *desc, struct rte_mbuf **input,
+               struct rte_mbuf *output, uint32_t *in_offset,
+               uint32_t *out_offset, uint32_t *out_length,
+               uint32_t *mbuf_total_left, uint32_t *seg_total_left, uint8_t r)
+{
+       int next_triplet = 1; /* FCW already done */
+       uint32_t e, ea, eb, length;
+       uint16_t k, k_neg, k_pos;
+       uint8_t cab, c_neg;
+
+       desc->word0 = ACC100_DMA_DESC_TYPE;
+       desc->word1 = 0; /**< Timestamp could be disabled */
+       desc->word2 = 0;
+       desc->word3 = 0;
+       desc->numCBs = 1;
+
+       if (op->turbo_enc.code_block_mode == 0) {
+               ea = op->turbo_enc.tb_params.ea;
+               eb = op->turbo_enc.tb_params.eb;
+               cab = op->turbo_enc.tb_params.cab;
+               k_neg = op->turbo_enc.tb_params.k_neg;
+               k_pos = op->turbo_enc.tb_params.k_pos;
+               c_neg = op->turbo_enc.tb_params.c_neg;
+               e = (r < cab) ? ea : eb;
+               k = (r < c_neg) ? k_neg : k_pos;
+       } else {
+               e = op->turbo_enc.cb_params.e;
+               k = op->turbo_enc.cb_params.k;
+       }
+
+       if (check_bit(op->turbo_enc.op_flags, RTE_BBDEV_TURBO_CRC_24B_ATTACH))
+               length = (k - 24) >> 3;
+       else
+               length = k >> 3;
+
+       if (unlikely((*mbuf_total_left == 0) || (*mbuf_total_left < length))) {
+               rte_bbdev_log(ERR,
+                               "Mismatch between mbuf length and included CB sizes: mbuf len %u, cb len %u",
+                               *mbuf_total_left, length);
+               return -1;
+       }
+
+       next_triplet = acc100_dma_fill_blk_type_in(desc, input, in_offset,
+                       length, seg_total_left, next_triplet);
+       if (unlikely(next_triplet < 0)) {
+               rte_bbdev_log(ERR,
+                               "Mismatch between data to process and mbuf data length in bbdev_op: %p",
+                               op);
+               return -1;
+       }
+       desc->data_ptrs[next_triplet - 1].last = 1;
+       desc->m2dlen = next_triplet;
+       *mbuf_total_left -= length;
+
+       /* Set output length */
+       if (check_bit(op->turbo_enc.op_flags, RTE_BBDEV_TURBO_RATE_MATCH))
+               /* Integer round up division by 8 */
+               *out_length = (e + 7) >> 3;
+       else
+               *out_length = (k >> 3) * 3 + 2;
+
+       next_triplet = acc100_dma_fill_blk_type_out(desc, output, *out_offset,
+                       *out_length, next_triplet, ACC100_DMA_BLKID_OUT_ENC);
+       if (unlikely(next_triplet < 0)) {
+               rte_bbdev_log(ERR,
+                               "Mismatch between data to process and mbuf data length in bbdev_op: %p",
+                               op);
+               return -1;
+       }
+       op->turbo_enc.output.length += *out_length;
+       *out_offset += *out_length;
+       desc->data_ptrs[next_triplet - 1].last = 1;
+       desc->d2mlen = next_triplet - desc->m2dlen;
+
+       desc->op_addr = op;
+
+       return 0;
+}
+
 static inline int
 acc100_dma_desc_le_fill(struct rte_bbdev_enc_op *op,
                struct acc100_dma_req_desc *desc, struct rte_mbuf **input,
@@ -1151,49 +1676,75 @@ acc100_dma_desc_le_fill(struct rte_bbdev_enc_op *op,
 }
 
 static inline int
-acc100_dma_desc_ld_fill(struct rte_bbdev_dec_op *op,
-               struct acc100_dma_req_desc *desc,
-               struct rte_mbuf **input, struct rte_mbuf *h_output,
+acc100_dma_desc_td_fill(struct rte_bbdev_dec_op *op,
+               struct acc100_dma_req_desc *desc, struct rte_mbuf **input,
+               struct rte_mbuf *h_output, struct rte_mbuf *s_output,
                uint32_t *in_offset, uint32_t *h_out_offset,
-               uint32_t *h_out_length, uint32_t *mbuf_total_left,
-               uint32_t *seg_total_left,
-               struct acc100_fcw_ld *fcw)
+               uint32_t *s_out_offset, uint32_t *h_out_length,
+               uint32_t *s_out_length, uint32_t *mbuf_total_left,
+               uint32_t *seg_total_left, uint8_t r)
 {
-       struct rte_bbdev_op_ldpc_dec *dec = &op->ldpc_dec;
        int next_triplet = 1; /* FCW already done */
-       uint32_t input_length;
-       uint16_t output_length, crc24_overlap = 0;
-       uint16_t sys_cols, K, h_p_size, h_np_size;
-       bool h_comp = check_bit(dec->op_flags,
-                       RTE_BBDEV_LDPC_HARQ_6BIT_COMPRESSION);
+       uint16_t k;
+       uint16_t crc24_overlap = 0;
+       uint32_t e, kw;
 
-       acc100_header_init(desc);
+       desc->word0 = ACC100_DMA_DESC_TYPE;
+       desc->word1 = 0; /**< Timestamp could be disabled */
+       desc->word2 = 0;
+       desc->word3 = 0;
+       desc->numCBs = 1;
 
-       if (check_bit(op->ldpc_dec.op_flags,
-                       RTE_BBDEV_LDPC_CRC_TYPE_24B_DROP))
+       if (op->turbo_dec.code_block_mode == 0) {
+               k = (r < op->turbo_dec.tb_params.c_neg)
+                       ? op->turbo_dec.tb_params.k_neg
+                       : op->turbo_dec.tb_params.k_pos;
+               e = (r < op->turbo_dec.tb_params.cab)
+                       ? op->turbo_dec.tb_params.ea
+                       : op->turbo_dec.tb_params.eb;
+       } else {
+               k = op->turbo_dec.cb_params.k;
+               e = op->turbo_dec.cb_params.e;
+       }
+
+       if ((op->turbo_dec.code_block_mode == 0)
+               && !check_bit(op->turbo_dec.op_flags,
+               RTE_BBDEV_TURBO_DEC_TB_CRC_24B_KEEP))
                crc24_overlap = 24;
 
-       /* Compute some LDPC BG lengths */
-       input_length = dec->cb_params.e;
-       if (check_bit(op->ldpc_dec.op_flags,
-                       RTE_BBDEV_LDPC_LLR_COMPRESSION))
-               input_length = (input_length * 3 + 3) / 4;
-       sys_cols = (dec->basegraph == 1) ? 22 : 10;
-       K = sys_cols * dec->z_c;
-       output_length = K - dec->n_filler - crc24_overlap;
+       /* Calculates circular buffer size.
+        * According to 3gpp 36.212 section 5.1.4.2
+        *   Kw = 3 * Kpi,
+        * where:
+        *   Kpi = nCol * nRow
+        * where nCol is 32 and nRow can be calculated from:
+        *   D =< nCol * nRow
+        * where D is the size of each output from turbo encoder block (k + 4).
+        */
+       kw = RTE_ALIGN_CEIL(k + 4, 32) * 3;
 
-       if (unlikely((*mbuf_total_left == 0) ||
-                       (*mbuf_total_left < input_length))) {
+       if (unlikely((*mbuf_total_left == 0) || (*mbuf_total_left < kw))) {
                rte_bbdev_log(ERR,
                                "Mismatch between mbuf length and included CB sizes: mbuf len %u, cb len %u",
-                               *mbuf_total_left, input_length);
+                               *mbuf_total_left, kw);
                return -1;
        }
 
-       next_triplet = acc100_dma_fill_blk_type_in(desc, input,
-                       in_offset, input_length,
+       next_triplet = acc100_dma_fill_blk_type_in(desc, input, in_offset, kw,
                        seg_total_left, next_triplet);
+       if (unlikely(next_triplet < 0)) {
+               rte_bbdev_log(ERR,
+                               "Mismatch between data to process and mbuf data length in bbdev_op: %p",
+                               op);
+               return -1;
+       }
+       desc->data_ptrs[next_triplet - 1].last = 1;
+       desc->m2dlen = next_triplet;
+       *mbuf_total_left -= kw;
 
+       next_triplet = acc100_dma_fill_blk_type_out(
+                       desc, h_output, *h_out_offset,
+                       k >> 3, next_triplet, ACC100_DMA_BLKID_OUT_HARD);
        if (unlikely(next_triplet < 0)) {
                rte_bbdev_log(ERR,
                                "Mismatch between data to process and mbuf data length in bbdev_op: %p",
@@ -1201,10 +1752,95 @@ acc100_dma_desc_ld_fill(struct rte_bbdev_dec_op *op,
                return -1;
        }
 
-       if (check_bit(op->ldpc_dec.op_flags,
-                               RTE_BBDEV_LDPC_HQ_COMBINE_IN_ENABLE)) {
-               h_p_size = fcw->hcin_size0 + fcw->hcin_size1;
-               if (h_comp)
+       *h_out_length = ((k - crc24_overlap) >> 3);
+       op->turbo_dec.hard_output.length += *h_out_length;
+       *h_out_offset += *h_out_length;
+
+       /* Soft output */
+       if (check_bit(op->turbo_dec.op_flags, RTE_BBDEV_TURBO_SOFT_OUTPUT)) {
+               if (check_bit(op->turbo_dec.op_flags,
+                               RTE_BBDEV_TURBO_EQUALIZER))
+                       *s_out_length = e;
+               else
+                       *s_out_length = (k * 3) + 12;
+
+               next_triplet = acc100_dma_fill_blk_type_out(desc, s_output,
+                               *s_out_offset, *s_out_length, next_triplet,
+                               ACC100_DMA_BLKID_OUT_SOFT);
+               if (unlikely(next_triplet < 0)) {
+                       rte_bbdev_log(ERR,
+                                       "Mismatch between data to process and mbuf data length in bbdev_op: %p",
+                                       op);
+                       return -1;
+               }
+
+               op->turbo_dec.soft_output.length += *s_out_length;
+               *s_out_offset += *s_out_length;
+       }
+
+       desc->data_ptrs[next_triplet - 1].last = 1;
+       desc->d2mlen = next_triplet - desc->m2dlen;
+
+       desc->op_addr = op;
+
+       return 0;
+}
+
+static inline int
+acc100_dma_desc_ld_fill(struct rte_bbdev_dec_op *op,
+               struct acc100_dma_req_desc *desc,
+               struct rte_mbuf **input, struct rte_mbuf *h_output,
+               uint32_t *in_offset, uint32_t *h_out_offset,
+               uint32_t *h_out_length, uint32_t *mbuf_total_left,
+               uint32_t *seg_total_left,
+               struct acc100_fcw_ld *fcw)
+{
+       struct rte_bbdev_op_ldpc_dec *dec = &op->ldpc_dec;
+       int next_triplet = 1; /* FCW already done */
+       uint32_t input_length;
+       uint16_t output_length, crc24_overlap = 0;
+       uint16_t sys_cols, K, h_p_size, h_np_size;
+       bool h_comp = check_bit(dec->op_flags,
+                       RTE_BBDEV_LDPC_HARQ_6BIT_COMPRESSION);
+
+       acc100_header_init(desc);
+
+       if (check_bit(op->ldpc_dec.op_flags,
+                       RTE_BBDEV_LDPC_CRC_TYPE_24B_DROP))
+               crc24_overlap = 24;
+
+       /* Compute some LDPC BG lengths */
+       input_length = dec->cb_params.e;
+       if (check_bit(op->ldpc_dec.op_flags,
+                       RTE_BBDEV_LDPC_LLR_COMPRESSION))
+               input_length = (input_length * 3 + 3) / 4;
+       sys_cols = (dec->basegraph == 1) ? 22 : 10;
+       K = sys_cols * dec->z_c;
+       output_length = K - dec->n_filler - crc24_overlap;
+
+       if (unlikely((*mbuf_total_left == 0) ||
+                       (*mbuf_total_left < input_length))) {
+               rte_bbdev_log(ERR,
+                               "Mismatch between mbuf length and included CB sizes: mbuf len %u, cb len %u",
+                               *mbuf_total_left, input_length);
+               return -1;
+       }
+
+       next_triplet = acc100_dma_fill_blk_type_in(desc, input,
+                       in_offset, input_length,
+                       seg_total_left, next_triplet);
+
+       if (unlikely(next_triplet < 0)) {
+               rte_bbdev_log(ERR,
+                               "Mismatch between data to process and mbuf data length in bbdev_op: %p",
+                               op);
+               return -1;
+       }
+
+       if (check_bit(op->ldpc_dec.op_flags,
+                               RTE_BBDEV_LDPC_HQ_COMBINE_IN_ENABLE)) {
+               h_p_size = fcw->hcin_size0 + fcw->hcin_size1;
+               if (h_comp)
                        h_p_size = (h_p_size * 3 + 3) / 4;
                desc->data_ptrs[next_triplet].address =
                                dec->harq_combined_input.offset;
@@ -1402,6 +2038,296 @@ acc100_dma_enqueue(struct acc100_queue *q, uint16_t n,
 
 }
 
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+/* Validates turbo encoder parameters */
+static inline int
+validate_enc_op(struct rte_bbdev_enc_op *op)
+{
+       struct rte_bbdev_op_turbo_enc *turbo_enc = &op->turbo_enc;
+       struct rte_bbdev_op_enc_turbo_cb_params *cb = NULL;
+       struct rte_bbdev_op_enc_turbo_tb_params *tb = NULL;
+       uint16_t kw, kw_neg, kw_pos;
+
+       if (op->mempool == NULL) {
+               rte_bbdev_log(ERR, "Invalid mempool pointer");
+               return -1;
+       }
+       if (turbo_enc->input.data == NULL) {
+               rte_bbdev_log(ERR, "Invalid input pointer");
+               return -1;
+       }
+       if (turbo_enc->output.data == NULL) {
+               rte_bbdev_log(ERR, "Invalid output pointer");
+               return -1;
+       }
+       if (turbo_enc->rv_index > 3) {
+               rte_bbdev_log(ERR,
+                               "rv_index (%u) is out of range 0 <= value <= 3",
+                               turbo_enc->rv_index);
+               return -1;
+       }
+       if (turbo_enc->code_block_mode != 0 &&
+                       turbo_enc->code_block_mode != 1) {
+               rte_bbdev_log(ERR,
+                               "code_block_mode (%u) is out of range 0 <= value <= 1",
+                               turbo_enc->code_block_mode);
+               return -1;
+       }
+
+       if (turbo_enc->code_block_mode == 0) {
+               tb = &turbo_enc->tb_params;
+               if ((tb->k_neg < RTE_BBDEV_TURBO_MIN_CB_SIZE
+                               || tb->k_neg > RTE_BBDEV_TURBO_MAX_CB_SIZE)
+                               && tb->c_neg > 0) {
+                       rte_bbdev_log(ERR,
+                                       "k_neg (%u) is out of range %u <= value <= %u",
+                                       tb->k_neg, RTE_BBDEV_TURBO_MIN_CB_SIZE,
+                                       RTE_BBDEV_TURBO_MAX_CB_SIZE);
+                       return -1;
+               }
+               if (tb->k_pos < RTE_BBDEV_TURBO_MIN_CB_SIZE
+                               || tb->k_pos > RTE_BBDEV_TURBO_MAX_CB_SIZE) {
+                       rte_bbdev_log(ERR,
+                                       "k_pos (%u) is out of range %u <= value <= %u",
+                                       tb->k_pos, RTE_BBDEV_TURBO_MIN_CB_SIZE,
+                                       RTE_BBDEV_TURBO_MAX_CB_SIZE);
+                       return -1;
+               }
+               if (tb->c_neg > (RTE_BBDEV_TURBO_MAX_CODE_BLOCKS - 1))
+                       rte_bbdev_log(ERR,
+                                       "c_neg (%u) is out of range 0 <= value <= %u",
+                                       tb->c_neg,
+                                       RTE_BBDEV_TURBO_MAX_CODE_BLOCKS - 1);
+               if (tb->c < 1 || tb->c > RTE_BBDEV_TURBO_MAX_CODE_BLOCKS) {
+                       rte_bbdev_log(ERR,
+                                       "c (%u) is out of range 1 <= value <= %u",
+                                       tb->c, RTE_BBDEV_TURBO_MAX_CODE_BLOCKS);
+                       return -1;
+               }
+               if (tb->cab > tb->c) {
+                       rte_bbdev_log(ERR,
+                                       "cab (%u) is greater than c (%u)",
+                                       tb->cab, tb->c);
+                       return -1;
+               }
+               if ((tb->ea < RTE_BBDEV_TURBO_MIN_CB_SIZE || (tb->ea % 2))
+                               && tb->r < tb->cab) {
+                       rte_bbdev_log(ERR,
+                                       "ea (%u) is less than %u or it is not even",
+                                       tb->ea, RTE_BBDEV_TURBO_MIN_CB_SIZE);
+                       return -1;
+               }
+               if ((tb->eb < RTE_BBDEV_TURBO_MIN_CB_SIZE || (tb->eb % 2))
+                               && tb->c > tb->cab) {
+                       rte_bbdev_log(ERR,
+                                       "eb (%u) is less than %u or it is not even",
+                                       tb->eb, RTE_BBDEV_TURBO_MIN_CB_SIZE);
+                       return -1;
+               }
+
+               kw_neg = 3 * RTE_ALIGN_CEIL(tb->k_neg + 4,
+                                       RTE_BBDEV_TURBO_C_SUBBLOCK);
+               if (tb->ncb_neg < tb->k_neg || tb->ncb_neg > kw_neg) {
+                       rte_bbdev_log(ERR,
+                                       "ncb_neg (%u) is out of range (%u) k_neg <= value <= (%u) kw_neg",
+                                       tb->ncb_neg, tb->k_neg, kw_neg);
+                       return -1;
+               }
+
+               kw_pos = 3 * RTE_ALIGN_CEIL(tb->k_pos + 4,
+                                       RTE_BBDEV_TURBO_C_SUBBLOCK);
+               if (tb->ncb_pos < tb->k_pos || tb->ncb_pos > kw_pos) {
+                       rte_bbdev_log(ERR,
+                                       "ncb_pos (%u) is out of range (%u) k_pos <= value <= (%u) kw_pos",
+                                       tb->ncb_pos, tb->k_pos, kw_pos);
+                       return -1;
+               }
+               if (tb->r > (tb->c - 1)) {
+                       rte_bbdev_log(ERR,
+                                       "r (%u) is greater than c - 1 (%u)",
+                                       tb->r, tb->c - 1);
+                       return -1;
+               }
+       } else {
+               cb = &turbo_enc->cb_params;
+               if (cb->k < RTE_BBDEV_TURBO_MIN_CB_SIZE
+                               || cb->k > RTE_BBDEV_TURBO_MAX_CB_SIZE) {
+                       rte_bbdev_log(ERR,
+                                       "k (%u) is out of range %u <= value <= %u",
+                                       cb->k, RTE_BBDEV_TURBO_MIN_CB_SIZE,
+                                       RTE_BBDEV_TURBO_MAX_CB_SIZE);
+                       return -1;
+               }
+
+               if (cb->e < RTE_BBDEV_TURBO_MIN_CB_SIZE || (cb->e % 2)) {
+                       rte_bbdev_log(ERR,
+                                       "e (%u) is less than %u or it is not even",
+                                       cb->e, RTE_BBDEV_TURBO_MIN_CB_SIZE);
+                       return -1;
+               }
+
+               kw = RTE_ALIGN_CEIL(cb->k + 4, RTE_BBDEV_TURBO_C_SUBBLOCK) * 3;
+               if (cb->ncb < cb->k || cb->ncb > kw) {
+                       rte_bbdev_log(ERR,
+                                       "ncb (%u) is out of range (%u) k <= value <= (%u) kw",
+                                       cb->ncb, cb->k, kw);
+                       return -1;
+               }
+       }
+
+       return 0;
+}
+/* Validates LDPC encoder parameters */
+static inline int
+validate_ldpc_enc_op(struct rte_bbdev_enc_op *op)
+{
+       struct rte_bbdev_op_ldpc_enc *ldpc_enc = &op->ldpc_enc;
+
+       if (op->mempool == NULL) {
+               rte_bbdev_log(ERR, "Invalid mempool pointer");
+               return -1;
+       }
+       if (ldpc_enc->input.data == NULL) {
+               rte_bbdev_log(ERR, "Invalid input pointer");
+               return -1;
+       }
+       if (ldpc_enc->output.data == NULL) {
+               rte_bbdev_log(ERR, "Invalid output pointer");
+               return -1;
+       }
+       if (ldpc_enc->input.length >
+                       RTE_BBDEV_LDPC_MAX_CB_SIZE >> 3) {
+               rte_bbdev_log(ERR, "CB size (%u) is too big, max: %d",
+                               ldpc_enc->input.length,
+                               RTE_BBDEV_LDPC_MAX_CB_SIZE);
+               return -1;
+       }
+       if ((ldpc_enc->basegraph > 2) || (ldpc_enc->basegraph == 0)) {
+               rte_bbdev_log(ERR,
+                               "BG (%u) is out of range 1 <= value <= 2",
+                               ldpc_enc->basegraph);
+               return -1;
+       }
+       if (ldpc_enc->rv_index > 3) {
+               rte_bbdev_log(ERR,
+                               "rv_index (%u) is out of range 0 <= value <= 3",
+                               ldpc_enc->rv_index);
+               return -1;
+       }
+       if (ldpc_enc->code_block_mode > 1) {
+               rte_bbdev_log(ERR,
+                               "code_block_mode (%u) is out of range 0 <= value <= 1",
+                               ldpc_enc->code_block_mode);
+               return -1;
+       }
+       int K = (ldpc_enc->basegraph == 1 ? 22 : 10) * ldpc_enc->z_c;
+       if (ldpc_enc->n_filler >= K) {
+               rte_bbdev_log(ERR,
+                               "K and F are not compatible %u %u",
+                               K, ldpc_enc->n_filler);
+               return -1;
+       }
+       return 0;
+}
+
+/* Validates LDPC decoder parameters */
+static inline int
+validate_ldpc_dec_op(struct rte_bbdev_dec_op *op)
+{
+       struct rte_bbdev_op_ldpc_dec *ldpc_dec = &op->ldpc_dec;
+
+       if (op->mempool == NULL) {
+               rte_bbdev_log(ERR, "Invalid mempool pointer");
+               return -1;
+       }
+       if ((ldpc_dec->basegraph > 2) || (ldpc_dec->basegraph == 0)) {
+               rte_bbdev_log(ERR,
+                               "BG (%u) is out of range 1 <= value <= 2",
+                               ldpc_dec->basegraph);
+               return -1;
+       }
+       if (ldpc_dec->iter_max == 0) {
+               rte_bbdev_log(ERR,
+                               "iter_max (%u) is equal to 0",
+                               ldpc_dec->iter_max);
+               return -1;
+       }
+       if (ldpc_dec->rv_index > 3) {
+               rte_bbdev_log(ERR,
+                               "rv_index (%u) is out of range 0 <= value <= 3",
+                               ldpc_dec->rv_index);
+               return -1;
+       }
+       if (ldpc_dec->code_block_mode > 1) {
+               rte_bbdev_log(ERR,
+                               "code_block_mode (%u) is out of range 0 <= value <= 1",
+                               ldpc_dec->code_block_mode);
+               return -1;
+       }
+       int K = (ldpc_dec->basegraph == 1 ? 22 : 10) * ldpc_dec->z_c;
+       if (ldpc_dec->n_filler >= K) {
+               rte_bbdev_log(ERR,
+                               "K and F are not compatible %u %u",
+                               K, ldpc_dec->n_filler);
+               return -1;
+       }
+       return 0;
+}
+#endif
+
+/* Enqueue one encode operations for ACC100 device in CB mode */
+static inline int
+enqueue_enc_one_op_cb(struct acc100_queue *q, struct rte_bbdev_enc_op *op,
+               uint16_t total_enqueued_cbs)
+{
+       union acc100_dma_desc *desc = NULL;
+       int ret;
+       uint32_t in_offset, out_offset, out_length, mbuf_total_left,
+               seg_total_left;
+       struct rte_mbuf *input, *output_head, *output;
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       /* Validate op structure */
+       if (validate_enc_op(op) == -1) {
+               rte_bbdev_log(ERR, "Turbo encoder validation failed");
+               return -EINVAL;
+       }
+#endif
+
+       uint16_t desc_idx = ((q->sw_ring_head + total_enqueued_cbs)
+                       & q->sw_ring_wrap_mask);
+       desc = q->ring_addr + desc_idx;
+       acc100_fcw_te_fill(op, &desc->req.fcw_te);
+
+       input = op->turbo_enc.input.data;
+       output_head = output = op->turbo_enc.output.data;
+       in_offset = op->turbo_enc.input.offset;
+       out_offset = op->turbo_enc.output.offset;
+       out_length = 0;
+       mbuf_total_left = op->turbo_enc.input.length;
+       seg_total_left = rte_pktmbuf_data_len(op->turbo_enc.input.data)
+                       - in_offset;
+
+       ret = acc100_dma_desc_te_fill(op, &desc->req, &input, output,
+                       &in_offset, &out_offset, &out_length, &mbuf_total_left,
+                       &seg_total_left, 0);
+
+       if (unlikely(ret < 0))
+               return ret;
+
+       mbuf_append(output_head, output, out_length);
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       rte_memdump(stderr, "FCW", &desc->req.fcw_te,
+                       sizeof(desc->req.fcw_te) - 8);
+       rte_memdump(stderr, "Req Desc.", desc, sizeof(*desc));
+       if (check_mbuf_total_left(mbuf_total_left) != 0)
+               return -EINVAL;
+#endif
+       /* One CB (one op) was successfully prepared to enqueue */
+       return 1;
+}
+
 /* Enqueue one encode operations for ACC100 device in CB mode */
 static inline int
 enqueue_ldpc_enc_n_op_cb(struct acc100_queue *q, struct rte_bbdev_enc_op **ops,
@@ -1414,6 +2340,14 @@ enqueue_ldpc_enc_n_op_cb(struct acc100_queue *q, struct rte_bbdev_enc_op **ops,
        uint16_t  in_length_in_bytes;
        struct rte_bbdev_op_ldpc_enc *enc = &ops[0]->ldpc_enc;
 
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       /* Validate op structure */
+       if (validate_ldpc_enc_op(ops[0]) == -1) {
+               rte_bbdev_log(ERR, "LDPC encoder validation failed");
+               return -EINVAL;
+       }
+#endif
+
        uint16_t desc_idx = ((q->sw_ring_head + total_enqueued_cbs)
                        & q->sw_ring_wrap_mask);
        desc = q->ring_addr + desc_idx;
@@ -1445,60 +2379,363 @@ enqueue_ldpc_enc_n_op_cb(struct acc100_queue *q, struct rte_bbdev_enc_op **ops,
                output->data_len = out_length;
        }
 
-       desc->req.op_addr = ops[0];
-
-#ifdef RTE_LIBRTE_BBDEV_DEBUG
-       rte_memdump(stderr, "FCW", &desc->req.fcw_le,
-                       sizeof(desc->req.fcw_le) - 8);
-       rte_memdump(stderr, "Req Desc.", desc, sizeof(*desc));
-#endif
-
-       /* One CB (one op) was successfully prepared to enqueue */
-       return num;
+       desc->req.op_addr = ops[0];
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       rte_memdump(stderr, "FCW", &desc->req.fcw_le,
+                       sizeof(desc->req.fcw_le) - 8);
+       rte_memdump(stderr, "Req Desc.", desc, sizeof(*desc));
+#endif
+
+       /* One CB (one op) was successfully prepared to enqueue */
+       return num;
+}
+
+/* Enqueue one encode operations for ACC100 device in CB mode */
+static inline int
+enqueue_ldpc_enc_one_op_cb(struct acc100_queue *q, struct rte_bbdev_enc_op *op,
+               uint16_t total_enqueued_cbs)
+{
+       union acc100_dma_desc *desc = NULL;
+       int ret;
+       uint32_t in_offset, out_offset, out_length, mbuf_total_left,
+               seg_total_left;
+       struct rte_mbuf *input, *output_head, *output;
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       /* Validate op structure */
+       if (validate_ldpc_enc_op(op) == -1) {
+               rte_bbdev_log(ERR, "LDPC encoder validation failed");
+               return -EINVAL;
+       }
+#endif
+
+       uint16_t desc_idx = ((q->sw_ring_head + total_enqueued_cbs)
+                       & q->sw_ring_wrap_mask);
+       desc = q->ring_addr + desc_idx;
+       acc100_fcw_le_fill(op, &desc->req.fcw_le, 1);
+
+       input = op->ldpc_enc.input.data;
+       output_head = output = op->ldpc_enc.output.data;
+       in_offset = op->ldpc_enc.input.offset;
+       out_offset = op->ldpc_enc.output.offset;
+       out_length = 0;
+       mbuf_total_left = op->ldpc_enc.input.length;
+       seg_total_left = rte_pktmbuf_data_len(op->ldpc_enc.input.data)
+                       - in_offset;
+
+       ret = acc100_dma_desc_le_fill(op, &desc->req, &input, output,
+                       &in_offset, &out_offset, &out_length, &mbuf_total_left,
+                       &seg_total_left);
+
+       if (unlikely(ret < 0))
+               return ret;
+
+       mbuf_append(output_head, output, out_length);
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       rte_memdump(stderr, "FCW", &desc->req.fcw_le,
+                       sizeof(desc->req.fcw_le) - 8);
+       rte_memdump(stderr, "Req Desc.", desc, sizeof(*desc));
+
+       if (check_mbuf_total_left(mbuf_total_left) != 0)
+               return -EINVAL;
+#endif
+       /* One CB (one op) was successfully prepared to enqueue */
+       return 1;
+}
+
+
+/* Enqueue one encode operations for ACC100 device in TB mode. */
+static inline int
+enqueue_enc_one_op_tb(struct acc100_queue *q, struct rte_bbdev_enc_op *op,
+               uint16_t total_enqueued_cbs, uint8_t cbs_in_tb)
+{
+       union acc100_dma_desc *desc = NULL;
+       int ret;
+       uint8_t r, c;
+       uint32_t in_offset, out_offset, out_length, mbuf_total_left,
+               seg_total_left;
+       struct rte_mbuf *input, *output_head, *output;
+       uint16_t current_enqueued_cbs = 0;
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       /* Validate op structure */
+       if (validate_enc_op(op) == -1) {
+               rte_bbdev_log(ERR, "Turbo encoder validation failed");
+               return -EINVAL;
+       }
+#endif
+
+       uint16_t desc_idx = ((q->sw_ring_head + total_enqueued_cbs)
+                       & q->sw_ring_wrap_mask);
+       desc = q->ring_addr + desc_idx;
+       uint64_t fcw_offset = (desc_idx << 8) + ACC100_DESC_FCW_OFFSET;
+       acc100_fcw_te_fill(op, &desc->req.fcw_te);
+
+       input = op->turbo_enc.input.data;
+       output_head = output = op->turbo_enc.output.data;
+       in_offset = op->turbo_enc.input.offset;
+       out_offset = op->turbo_enc.output.offset;
+       out_length = 0;
+       mbuf_total_left = op->turbo_enc.input.length;
+
+       c = op->turbo_enc.tb_params.c;
+       r = op->turbo_enc.tb_params.r;
+
+       while (mbuf_total_left > 0 && r < c) {
+               seg_total_left = rte_pktmbuf_data_len(input) - in_offset;
+               /* Set up DMA descriptor */
+               desc = q->ring_addr + ((q->sw_ring_head + total_enqueued_cbs)
+                               & q->sw_ring_wrap_mask);
+               desc->req.data_ptrs[0].address = q->ring_addr_iova + fcw_offset;
+               desc->req.data_ptrs[0].blen = ACC100_FCW_TE_BLEN;
+
+               ret = acc100_dma_desc_te_fill(op, &desc->req, &input, output,
+                               &in_offset, &out_offset, &out_length,
+                               &mbuf_total_left, &seg_total_left, r);
+               if (unlikely(ret < 0))
+                       return ret;
+               mbuf_append(output_head, output, out_length);
+
+               /* Set total number of CBs in TB */
+               desc->req.cbs_in_tb = cbs_in_tb;
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+               rte_memdump(stderr, "FCW", &desc->req.fcw_te,
+                               sizeof(desc->req.fcw_te) - 8);
+               rte_memdump(stderr, "Req Desc.", desc, sizeof(*desc));
+#endif
+
+               if (seg_total_left == 0) {
+                       /* Go to the next mbuf */
+                       input = input->next;
+                       in_offset = 0;
+                       output = output->next;
+                       out_offset = 0;
+               }
+
+               total_enqueued_cbs++;
+               current_enqueued_cbs++;
+               r++;
+       }
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       if (check_mbuf_total_left(mbuf_total_left) != 0)
+               return -EINVAL;
+#endif
+
+       /* Set SDone on last CB descriptor for TB mode. */
+       desc->req.sdone_enable = 1;
+       desc->req.irq_enable = q->irq_enable;
+
+       return current_enqueued_cbs;
+}
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+/* Validates turbo decoder parameters */
+static inline int
+validate_dec_op(struct rte_bbdev_dec_op *op)
+{
+       struct rte_bbdev_op_turbo_dec *turbo_dec = &op->turbo_dec;
+       struct rte_bbdev_op_dec_turbo_cb_params *cb = NULL;
+       struct rte_bbdev_op_dec_turbo_tb_params *tb = NULL;
+
+       if (op->mempool == NULL) {
+               rte_bbdev_log(ERR, "Invalid mempool pointer");
+               return -1;
+       }
+       if (turbo_dec->input.data == NULL) {
+               rte_bbdev_log(ERR, "Invalid input pointer");
+               return -1;
+       }
+       if (turbo_dec->hard_output.data == NULL) {
+               rte_bbdev_log(ERR, "Invalid hard_output pointer");
+               return -1;
+       }
+       if (check_bit(turbo_dec->op_flags, RTE_BBDEV_TURBO_SOFT_OUTPUT) &&
+                       turbo_dec->soft_output.data == NULL) {
+               rte_bbdev_log(ERR, "Invalid soft_output pointer");
+               return -1;
+       }
+       if (turbo_dec->rv_index > 3) {
+               rte_bbdev_log(ERR,
+                               "rv_index (%u) is out of range 0 <= value <= 3",
+                               turbo_dec->rv_index);
+               return -1;
+       }
+       if (turbo_dec->iter_min < 1) {
+               rte_bbdev_log(ERR,
+                               "iter_min (%u) is less than 1",
+                               turbo_dec->iter_min);
+               return -1;
+       }
+       if (turbo_dec->iter_max <= 2) {
+               rte_bbdev_log(ERR,
+                               "iter_max (%u) is less than or equal to 2",
+                               turbo_dec->iter_max);
+               return -1;
+       }
+       if (turbo_dec->iter_min > turbo_dec->iter_max) {
+               rte_bbdev_log(ERR,
+                               "iter_min (%u) is greater than iter_max (%u)",
+                               turbo_dec->iter_min, turbo_dec->iter_max);
+               return -1;
+       }
+       if (turbo_dec->code_block_mode != 0 &&
+                       turbo_dec->code_block_mode != 1) {
+               rte_bbdev_log(ERR,
+                               "code_block_mode (%u) is out of range 0 <= value <= 1",
+                               turbo_dec->code_block_mode);
+               return -1;
+       }
+
+       if (turbo_dec->code_block_mode == 0) {
+               tb = &turbo_dec->tb_params;
+               if ((tb->k_neg < RTE_BBDEV_TURBO_MIN_CB_SIZE
+                               || tb->k_neg > RTE_BBDEV_TURBO_MAX_CB_SIZE)
+                               && tb->c_neg > 0) {
+                       rte_bbdev_log(ERR,
+                                       "k_neg (%u) is out of range %u <= value <= %u",
+                                       tb->k_neg, RTE_BBDEV_TURBO_MIN_CB_SIZE,
+                                       RTE_BBDEV_TURBO_MAX_CB_SIZE);
+                       return -1;
+               }
+               if ((tb->k_pos < RTE_BBDEV_TURBO_MIN_CB_SIZE
+                               || tb->k_pos > RTE_BBDEV_TURBO_MAX_CB_SIZE)
+                               && tb->c > tb->c_neg) {
+                       rte_bbdev_log(ERR,
+                                       "k_pos (%u) is out of range %u <= value <= %u",
+                                       tb->k_pos, RTE_BBDEV_TURBO_MIN_CB_SIZE,
+                                       RTE_BBDEV_TURBO_MAX_CB_SIZE);
+                       return -1;
+               }
+               if (tb->c_neg > (RTE_BBDEV_TURBO_MAX_CODE_BLOCKS - 1))
+                       rte_bbdev_log(ERR,
+                                       "c_neg (%u) is out of range 0 <= value <= %u",
+                                       tb->c_neg,
+                                       RTE_BBDEV_TURBO_MAX_CODE_BLOCKS - 1);
+               if (tb->c < 1 || tb->c > RTE_BBDEV_TURBO_MAX_CODE_BLOCKS) {
+                       rte_bbdev_log(ERR,
+                                       "c (%u) is out of range 1 <= value <= %u",
+                                       tb->c, RTE_BBDEV_TURBO_MAX_CODE_BLOCKS);
+                       return -1;
+               }
+               if (tb->cab > tb->c) {
+                       rte_bbdev_log(ERR,
+                                       "cab (%u) is greater than c (%u)",
+                                       tb->cab, tb->c);
+                       return -1;
+               }
+               if (check_bit(turbo_dec->op_flags, RTE_BBDEV_TURBO_EQUALIZER) &&
+                               (tb->ea < RTE_BBDEV_TURBO_MIN_CB_SIZE
+                                               || (tb->ea % 2))
+                               && tb->cab > 0) {
+                       rte_bbdev_log(ERR,
+                                       "ea (%u) is less than %u or it is not even",
+                                       tb->ea, RTE_BBDEV_TURBO_MIN_CB_SIZE);
+                       return -1;
+               }
+               if (check_bit(turbo_dec->op_flags, RTE_BBDEV_TURBO_EQUALIZER) &&
+                               (tb->eb < RTE_BBDEV_TURBO_MIN_CB_SIZE
+                                               || (tb->eb % 2))
+                               && tb->c > tb->cab) {
+                       rte_bbdev_log(ERR,
+                                       "eb (%u) is less than %u or it is not even",
+                                       tb->eb, RTE_BBDEV_TURBO_MIN_CB_SIZE);
+               }
+       } else {
+               cb = &turbo_dec->cb_params;
+               if (cb->k < RTE_BBDEV_TURBO_MIN_CB_SIZE
+                               || cb->k > RTE_BBDEV_TURBO_MAX_CB_SIZE) {
+                       rte_bbdev_log(ERR,
+                                       "k (%u) is out of range %u <= value <= %u",
+                                       cb->k, RTE_BBDEV_TURBO_MIN_CB_SIZE,
+                                       RTE_BBDEV_TURBO_MAX_CB_SIZE);
+                       return -1;
+               }
+               if (check_bit(turbo_dec->op_flags, RTE_BBDEV_TURBO_EQUALIZER) &&
+                               (cb->e < RTE_BBDEV_TURBO_MIN_CB_SIZE ||
+                               (cb->e % 2))) {
+                       rte_bbdev_log(ERR,
+                                       "e (%u) is less than %u or it is not even",
+                                       cb->e, RTE_BBDEV_TURBO_MIN_CB_SIZE);
+                       return -1;
+               }
+       }
+
+       return 0;
 }
+#endif
 
-/* Enqueue one encode operations for ACC100 device in CB mode */
+/** Enqueue one decode operations for ACC100 device in CB mode */
 static inline int
-enqueue_ldpc_enc_one_op_cb(struct acc100_queue *q, struct rte_bbdev_enc_op *op,
+enqueue_dec_one_op_cb(struct acc100_queue *q, struct rte_bbdev_dec_op *op,
                uint16_t total_enqueued_cbs)
 {
        union acc100_dma_desc *desc = NULL;
        int ret;
-       uint32_t in_offset, out_offset, out_length, mbuf_total_left,
-               seg_total_left;
-       struct rte_mbuf *input, *output_head, *output;
+       uint32_t in_offset, h_out_offset, s_out_offset, s_out_length,
+               h_out_length, mbuf_total_left, seg_total_left;
+       struct rte_mbuf *input, *h_output_head, *h_output,
+               *s_output_head, *s_output;
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       /* Validate op structure */
+       if (validate_dec_op(op) == -1) {
+               rte_bbdev_log(ERR, "Turbo decoder validation failed");
+               return -EINVAL;
+       }
+#endif
 
        uint16_t desc_idx = ((q->sw_ring_head + total_enqueued_cbs)
                        & q->sw_ring_wrap_mask);
        desc = q->ring_addr + desc_idx;
-       acc100_fcw_le_fill(op, &desc->req.fcw_le, 1);
+       acc100_fcw_td_fill(op, &desc->req.fcw_td);
+
+       input = op->turbo_dec.input.data;
+       h_output_head = h_output = op->turbo_dec.hard_output.data;
+       s_output_head = s_output = op->turbo_dec.soft_output.data;
+       in_offset = op->turbo_dec.input.offset;
+       h_out_offset = op->turbo_dec.hard_output.offset;
+       s_out_offset = op->turbo_dec.soft_output.offset;
+       h_out_length = s_out_length = 0;
+       mbuf_total_left = op->turbo_dec.input.length;
+       seg_total_left = rte_pktmbuf_data_len(input) - in_offset;
 
-       input = op->ldpc_enc.input.data;
-       output_head = output = op->ldpc_enc.output.data;
-       in_offset = op->ldpc_enc.input.offset;
-       out_offset = op->ldpc_enc.output.offset;
-       out_length = 0;
-       mbuf_total_left = op->ldpc_enc.input.length;
-       seg_total_left = rte_pktmbuf_data_len(op->ldpc_enc.input.data)
-                       - in_offset;
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       if (unlikely(input == NULL)) {
+               rte_bbdev_log(ERR, "Invalid mbuf pointer");
+               return -EFAULT;
+       }
+#endif
 
-       ret = acc100_dma_desc_le_fill(op, &desc->req, &input, output,
-                       &in_offset, &out_offset, &out_length, &mbuf_total_left,
-                       &seg_total_left);
+       /* Set up DMA descriptor */
+       desc = q->ring_addr + ((q->sw_ring_head + total_enqueued_cbs)
+                       & q->sw_ring_wrap_mask);
+
+       ret = acc100_dma_desc_td_fill(op, &desc->req, &input, h_output,
+                       s_output, &in_offset, &h_out_offset, &s_out_offset,
+                       &h_out_length, &s_out_length, &mbuf_total_left,
+                       &seg_total_left, 0);
 
        if (unlikely(ret < 0))
                return ret;
 
-       mbuf_append(output_head, output, out_length);
+       /* Hard output */
+       mbuf_append(h_output_head, h_output, h_out_length);
+
+       /* Soft output */
+       if (check_bit(op->turbo_dec.op_flags, RTE_BBDEV_TURBO_SOFT_OUTPUT))
+               mbuf_append(s_output_head, s_output, s_out_length);
 
 #ifdef RTE_LIBRTE_BBDEV_DEBUG
-       rte_memdump(stderr, "FCW", &desc->req.fcw_le,
-                       sizeof(desc->req.fcw_le) - 8);
+       rte_memdump(stderr, "FCW", &desc->req.fcw_td,
+                       sizeof(desc->req.fcw_td) - 8);
        rte_memdump(stderr, "Req Desc.", desc, sizeof(*desc));
-
        if (check_mbuf_total_left(mbuf_total_left) != 0)
                return -EINVAL;
 #endif
+
        /* One CB (one op) was successfully prepared to enqueue */
        return 1;
 }
@@ -1510,6 +2747,7 @@ harq_loopback(struct acc100_queue *q, struct rte_bbdev_dec_op *op,
        union acc100_dma_desc *desc;
        int next_triplet = 1;
        struct rte_mbuf *hq_output_head, *hq_output;
+       uint16_t harq_dma_length_in, harq_dma_length_out;
        uint16_t harq_in_length = op->ldpc_dec.harq_combined_input.length;
        if (harq_in_length == 0) {
                rte_bbdev_log(ERR, "Loopback of invalid null size\n");
@@ -1519,13 +2757,16 @@ harq_loopback(struct acc100_queue *q, struct rte_bbdev_dec_op *op,
        int h_comp = check_bit(op->ldpc_dec.op_flags,
                        RTE_BBDEV_LDPC_HARQ_6BIT_COMPRESSION
                        ) ? 1 : 0;
-       if (h_comp == 1)
+       if (h_comp == 1) {
                harq_in_length = harq_in_length * 8 / 6;
-       harq_in_length = RTE_ALIGN(harq_in_length, 64);
-       uint16_t harq_dma_length_in = (h_comp == 0) ?
-                       harq_in_length :
-                       harq_in_length * 6 / 8;
-       uint16_t harq_dma_length_out = harq_dma_length_in;
+               harq_in_length = RTE_ALIGN(harq_in_length, 64);
+               harq_dma_length_in = harq_in_length * 6 / 8;
+       } else {
+               harq_in_length = RTE_ALIGN(harq_in_length, 64);
+               harq_dma_length_in = harq_in_length;
+       }
+       harq_dma_length_out = harq_dma_length_in;
+
        bool ddr_mem_in = check_bit(op->ldpc_dec.op_flags,
                        RTE_BBDEV_LDPC_INTERNAL_HARQ_MEMORY_IN_ENABLE);
        union acc100_harq_layout_data *harq_layout = q->d->harq_layout;
@@ -1663,6 +2904,13 @@ enqueue_ldpc_dec_one_op_cb(struct acc100_queue *q, struct rte_bbdev_dec_op *op,
                return ret;
        }
 
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       /* Validate op structure */
+       if (validate_ldpc_dec_op(op) == -1) {
+               rte_bbdev_log(ERR, "LDPC decoder validation failed");
+               return -EINVAL;
+       }
+#endif
        union acc100_dma_desc *desc;
        uint16_t desc_idx = ((q->sw_ring_head + total_enqueued_cbs)
                        & q->sw_ring_wrap_mask);
@@ -1760,6 +3008,14 @@ enqueue_ldpc_dec_one_op_tb(struct acc100_queue *q, struct rte_bbdev_dec_op *op,
        struct rte_mbuf *input, *h_output_head, *h_output;
        uint16_t current_enqueued_cbs = 0;
 
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       /* Validate op structure */
+       if (validate_ldpc_dec_op(op) == -1) {
+               rte_bbdev_log(ERR, "LDPC decoder validation failed");
+               return -EINVAL;
+       }
+#endif
+
        uint16_t desc_idx = ((q->sw_ring_head + total_enqueued_cbs)
                        & q->sw_ring_wrap_mask);
        desc = q->ring_addr + desc_idx;
@@ -1817,9 +3073,6 @@ enqueue_ldpc_dec_one_op_tb(struct acc100_queue *q, struct rte_bbdev_dec_op *op,
                r++;
        }
 
-       if (unlikely(desc == NULL))
-               return current_enqueued_cbs;
-
 #ifdef RTE_LIBRTE_BBDEV_DEBUG
        if (check_mbuf_total_left(mbuf_total_left) != 0)
                return -EINVAL;
@@ -1831,6 +3084,107 @@ enqueue_ldpc_dec_one_op_tb(struct acc100_queue *q, struct rte_bbdev_dec_op *op,
        return current_enqueued_cbs;
 }
 
+/* Enqueue one decode operations for ACC100 device in TB mode */
+static inline int
+enqueue_dec_one_op_tb(struct acc100_queue *q, struct rte_bbdev_dec_op *op,
+               uint16_t total_enqueued_cbs, uint8_t cbs_in_tb)
+{
+       union acc100_dma_desc *desc = NULL;
+       int ret;
+       uint8_t r, c;
+       uint32_t in_offset, h_out_offset, s_out_offset, s_out_length,
+               h_out_length, mbuf_total_left, seg_total_left;
+       struct rte_mbuf *input, *h_output_head, *h_output,
+               *s_output_head, *s_output;
+       uint16_t current_enqueued_cbs = 0;
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       /* Validate op structure */
+       if (validate_dec_op(op) == -1) {
+               rte_bbdev_log(ERR, "Turbo decoder validation failed");
+               return -EINVAL;
+       }
+#endif
+
+       uint16_t desc_idx = ((q->sw_ring_head + total_enqueued_cbs)
+                       & q->sw_ring_wrap_mask);
+       desc = q->ring_addr + desc_idx;
+       uint64_t fcw_offset = (desc_idx << 8) + ACC100_DESC_FCW_OFFSET;
+       acc100_fcw_td_fill(op, &desc->req.fcw_td);
+
+       input = op->turbo_dec.input.data;
+       h_output_head = h_output = op->turbo_dec.hard_output.data;
+       s_output_head = s_output = op->turbo_dec.soft_output.data;
+       in_offset = op->turbo_dec.input.offset;
+       h_out_offset = op->turbo_dec.hard_output.offset;
+       s_out_offset = op->turbo_dec.soft_output.offset;
+       h_out_length = s_out_length = 0;
+       mbuf_total_left = op->turbo_dec.input.length;
+       c = op->turbo_dec.tb_params.c;
+       r = op->turbo_dec.tb_params.r;
+
+       while (mbuf_total_left > 0 && r < c) {
+
+               seg_total_left = rte_pktmbuf_data_len(input) - in_offset;
+
+               /* Set up DMA descriptor */
+               desc = q->ring_addr + ((q->sw_ring_head + total_enqueued_cbs)
+                               & q->sw_ring_wrap_mask);
+               desc->req.data_ptrs[0].address = q->ring_addr_iova + fcw_offset;
+               desc->req.data_ptrs[0].blen = ACC100_FCW_TD_BLEN;
+               ret = acc100_dma_desc_td_fill(op, &desc->req, &input,
+                               h_output, s_output, &in_offset, &h_out_offset,
+                               &s_out_offset, &h_out_length, &s_out_length,
+                               &mbuf_total_left, &seg_total_left, r);
+
+               if (unlikely(ret < 0))
+                       return ret;
+
+               /* Hard output */
+               mbuf_append(h_output_head, h_output, h_out_length);
+
+               /* Soft output */
+               if (check_bit(op->turbo_dec.op_flags,
+                               RTE_BBDEV_TURBO_SOFT_OUTPUT))
+                       mbuf_append(s_output_head, s_output, s_out_length);
+
+               /* Set total number of CBs in TB */
+               desc->req.cbs_in_tb = cbs_in_tb;
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+               rte_memdump(stderr, "FCW", &desc->req.fcw_td,
+                               sizeof(desc->req.fcw_td) - 8);
+               rte_memdump(stderr, "Req Desc.", desc, sizeof(*desc));
+#endif
+
+               if (seg_total_left == 0) {
+                       /* Go to the next mbuf */
+                       input = input->next;
+                       in_offset = 0;
+                       h_output = h_output->next;
+                       h_out_offset = 0;
+
+                       if (check_bit(op->turbo_dec.op_flags,
+                                       RTE_BBDEV_TURBO_SOFT_OUTPUT)) {
+                               s_output = s_output->next;
+                               s_out_offset = 0;
+                       }
+               }
+
+               total_enqueued_cbs++;
+               current_enqueued_cbs++;
+               r++;
+       }
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       if (check_mbuf_total_left(mbuf_total_left) != 0)
+               return -EINVAL;
+#endif
+       /* Set SDone on last CB descriptor for TB mode */
+       desc->req.sdone_enable = 1;
+       desc->req.irq_enable = q->irq_enable;
+
+       return current_enqueued_cbs;
+}
 
 /* Calculates number of CBs in processed encoder TB based on 'r' and input
  * length.
@@ -1908,6 +3262,45 @@ get_num_cbs_in_tb_ldpc_dec(struct rte_bbdev_op_ldpc_dec *ldpc_dec)
        return cbs_in_tb;
 }
 
+/* Enqueue encode operations for ACC100 device in CB mode. */
+static uint16_t
+acc100_enqueue_enc_cb(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_enc_op **ops, uint16_t num)
+{
+       struct acc100_queue *q = q_data->queue_private;
+       int32_t avail = q->sw_ring_depth + q->sw_ring_tail - q->sw_ring_head;
+       uint16_t i;
+       union acc100_dma_desc *desc;
+       int ret;
+
+       for (i = 0; i < num; ++i) {
+               /* Check if there are available space for further processing */
+               if (unlikely(avail - 1 < 0))
+                       break;
+               avail -= 1;
+
+               ret = enqueue_enc_one_op_cb(q, ops[i], i);
+               if (ret < 0)
+                       break;
+       }
+
+       if (unlikely(i == 0))
+               return 0; /* Nothing to enqueue */
+
+       /* Set SDone in last CB in enqueued ops for CB mode*/
+       desc = q->ring_addr + ((q->sw_ring_head + i - 1)
+                       & q->sw_ring_wrap_mask);
+       desc->req.sdone_enable = 1;
+       desc->req.irq_enable = q->irq_enable;
+
+       acc100_dma_enqueue(q, i, &q_data->queue_stats);
+
+       /* Update stats */
+       q_data->queue_stats.enqueued_count += i;
+       q_data->queue_stats.enqueue_err_count += num - i;
+       return i;
+}
+
 /* Check we can mux encode operations with common FCW */
 static inline bool
 check_mux(struct rte_bbdev_enc_op **ops, uint16_t num) {
@@ -1925,49 +3318,151 @@ check_mux(struct rte_bbdev_enc_op **ops, uint16_t num) {
        return true;
 }
 
-/** Enqueue encode operations for ACC100 device in CB mode. */
-static inline uint16_t
-acc100_enqueue_ldpc_enc_cb(struct rte_bbdev_queue_data *q_data,
+/** Enqueue encode operations for ACC100 device in CB mode. */
+static inline uint16_t
+acc100_enqueue_ldpc_enc_cb(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_enc_op **ops, uint16_t num)
+{
+       struct acc100_queue *q = q_data->queue_private;
+       int32_t avail = q->sw_ring_depth + q->sw_ring_tail - q->sw_ring_head;
+       uint16_t i = 0;
+       union acc100_dma_desc *desc;
+       int ret, desc_idx = 0;
+       int16_t enq, left = num;
+
+       while (left > 0) {
+               if (unlikely(avail < 1))
+                       break;
+               avail--;
+               enq = RTE_MIN(left, ACC100_MUX_5GDL_DESC);
+               if (check_mux(&ops[i], enq)) {
+                       ret = enqueue_ldpc_enc_n_op_cb(q, &ops[i],
+                                       desc_idx, enq);
+                       if (ret < 0)
+                               break;
+                       i += enq;
+               } else {
+                       ret = enqueue_ldpc_enc_one_op_cb(q, ops[i], desc_idx);
+                       if (ret < 0)
+                               break;
+                       i++;
+               }
+               desc_idx++;
+               left = num - i;
+       }
+
+       if (unlikely(i == 0))
+               return 0; /* Nothing to enqueue */
+
+       /* Set SDone in last CB in enqueued ops for CB mode*/
+       desc = q->ring_addr + ((q->sw_ring_head + desc_idx - 1)
+                       & q->sw_ring_wrap_mask);
+       desc->req.sdone_enable = 1;
+       desc->req.irq_enable = q->irq_enable;
+
+       acc100_dma_enqueue(q, desc_idx, &q_data->queue_stats);
+
+       /* Update stats */
+       q_data->queue_stats.enqueued_count += i;
+       q_data->queue_stats.enqueue_err_count += num - i;
+
+       return i;
+}
+
+/* Enqueue encode operations for ACC100 device in TB mode. */
+static uint16_t
+acc100_enqueue_enc_tb(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_enc_op **ops, uint16_t num)
+{
+       struct acc100_queue *q = q_data->queue_private;
+       int32_t avail = q->sw_ring_depth + q->sw_ring_tail - q->sw_ring_head;
+       uint16_t i, enqueued_cbs = 0;
+       uint8_t cbs_in_tb;
+       int ret;
+
+       for (i = 0; i < num; ++i) {
+               cbs_in_tb = get_num_cbs_in_tb_enc(&ops[i]->turbo_enc);
+               /* Check if there are available space for further processing */
+               if (unlikely(avail - cbs_in_tb < 0))
+                       break;
+               avail -= cbs_in_tb;
+
+               ret = enqueue_enc_one_op_tb(q, ops[i], enqueued_cbs, cbs_in_tb);
+               if (ret < 0)
+                       break;
+               enqueued_cbs += ret;
+       }
+       if (unlikely(enqueued_cbs == 0))
+               return 0; /* Nothing to enqueue */
+
+       acc100_dma_enqueue(q, enqueued_cbs, &q_data->queue_stats);
+
+       /* Update stats */
+       q_data->queue_stats.enqueued_count += i;
+       q_data->queue_stats.enqueue_err_count += num - i;
+
+       return i;
+}
+
+/* Enqueue encode operations for ACC100 device. */
+static uint16_t
+acc100_enqueue_enc(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_enc_op **ops, uint16_t num)
+{
+       if (unlikely(num == 0))
+               return 0;
+       if (ops[0]->turbo_enc.code_block_mode == 0)
+               return acc100_enqueue_enc_tb(q_data, ops, num);
+       else
+               return acc100_enqueue_enc_cb(q_data, ops, num);
+}
+
+/* Enqueue encode operations for ACC100 device. */
+static uint16_t
+acc100_enqueue_ldpc_enc(struct rte_bbdev_queue_data *q_data,
                struct rte_bbdev_enc_op **ops, uint16_t num)
+{
+       if (unlikely(num == 0))
+               return 0;
+       if (ops[0]->ldpc_enc.code_block_mode == 0)
+               return acc100_enqueue_enc_tb(q_data, ops, num);
+       else
+               return acc100_enqueue_ldpc_enc_cb(q_data, ops, num);
+}
+
+
+/* Enqueue decode operations for ACC100 device in CB mode */
+static uint16_t
+acc100_enqueue_dec_cb(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_dec_op **ops, uint16_t num)
 {
        struct acc100_queue *q = q_data->queue_private;
        int32_t avail = q->sw_ring_depth + q->sw_ring_tail - q->sw_ring_head;
-       uint16_t i = 0;
+       uint16_t i;
        union acc100_dma_desc *desc;
-       int ret, desc_idx = 0;
-       int16_t enq, left = num;
+       int ret;
 
-       while (left > 0) {
-               if (unlikely(avail < 1))
+       for (i = 0; i < num; ++i) {
+               /* Check if there are available space for further processing */
+               if (unlikely(avail - 1 < 0))
+                       break;
+               avail -= 1;
+
+               ret = enqueue_dec_one_op_cb(q, ops[i], i);
+               if (ret < 0)
                        break;
-               avail--;
-               enq = RTE_MIN(left, ACC100_MUX_5GDL_DESC);
-               if (check_mux(&ops[i], enq)) {
-                       ret = enqueue_ldpc_enc_n_op_cb(q, &ops[i],
-                                       desc_idx, enq);
-                       if (ret < 0)
-                               break;
-                       i += enq;
-               } else {
-                       ret = enqueue_ldpc_enc_one_op_cb(q, ops[i], desc_idx);
-                       if (ret < 0)
-                               break;
-                       i++;
-               }
-               desc_idx++;
-               left = num - i;
        }
 
        if (unlikely(i == 0))
                return 0; /* Nothing to enqueue */
 
        /* Set SDone in last CB in enqueued ops for CB mode*/
-       desc = q->ring_addr + ((q->sw_ring_head + desc_idx - 1)
+       desc = q->ring_addr + ((q->sw_ring_head + i - 1)
                        & q->sw_ring_wrap_mask);
        desc->req.sdone_enable = 1;
        desc->req.irq_enable = q->irq_enable;
 
-       acc100_dma_enqueue(q, desc_idx, &q_data->queue_stats);
+       acc100_dma_enqueue(q, i, &q_data->queue_stats);
 
        /* Update stats */
        q_data->queue_stats.enqueued_count += i;
@@ -1976,16 +3471,6 @@ acc100_enqueue_ldpc_enc_cb(struct rte_bbdev_queue_data *q_data,
        return i;
 }
 
-/* Enqueue encode operations for ACC100 device. */
-static uint16_t
-acc100_enqueue_ldpc_enc(struct rte_bbdev_queue_data *q_data,
-               struct rte_bbdev_enc_op **ops, uint16_t num)
-{
-       if (unlikely(num == 0))
-               return 0;
-       return acc100_enqueue_ldpc_enc_cb(q_data, ops, num);
-}
-
 /* Check we can mux encode operations with common FCW */
 static inline bool
 cmp_ldpc_dec_op(struct rte_bbdev_dec_op **ops) {
@@ -2081,6 +3566,53 @@ acc100_enqueue_ldpc_dec_cb(struct rte_bbdev_queue_data *q_data,
        return i;
 }
 
+
+/* Enqueue decode operations for ACC100 device in TB mode */
+static uint16_t
+acc100_enqueue_dec_tb(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_dec_op **ops, uint16_t num)
+{
+       struct acc100_queue *q = q_data->queue_private;
+       int32_t avail = q->sw_ring_depth + q->sw_ring_tail - q->sw_ring_head;
+       uint16_t i, enqueued_cbs = 0;
+       uint8_t cbs_in_tb;
+       int ret;
+
+       for (i = 0; i < num; ++i) {
+               cbs_in_tb = get_num_cbs_in_tb_dec(&ops[i]->turbo_dec);
+               /* Check if there are available space for further processing */
+               if (unlikely(avail - cbs_in_tb < 0))
+                       break;
+               avail -= cbs_in_tb;
+
+               ret = enqueue_dec_one_op_tb(q, ops[i], enqueued_cbs, cbs_in_tb);
+               if (ret < 0)
+                       break;
+               enqueued_cbs += ret;
+       }
+
+       acc100_dma_enqueue(q, enqueued_cbs, &q_data->queue_stats);
+
+       /* Update stats */
+       q_data->queue_stats.enqueued_count += i;
+       q_data->queue_stats.enqueue_err_count += num - i;
+
+       return i;
+}
+
+/* Enqueue decode operations for ACC100 device. */
+static uint16_t
+acc100_enqueue_dec(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_dec_op **ops, uint16_t num)
+{
+       if (unlikely(num == 0))
+               return 0;
+       if (ops[0]->turbo_dec.code_block_mode == 0)
+               return acc100_enqueue_dec_tb(q_data, ops, num);
+       else
+               return acc100_enqueue_dec_cb(q_data, ops, num);
+}
+
 /* Enqueue decode operations for ACC100 device. */
 static uint16_t
 acc100_enqueue_ldpc_dec(struct rte_bbdev_queue_data *q_data,
@@ -2253,8 +3785,10 @@ dequeue_dec_one_op_cb(struct rte_bbdev_queue_data *q_data,
                        ? (1 << RTE_BBDEV_DATA_ERROR) : 0);
        op->status |= ((rsp.dma_err) ? (1 << RTE_BBDEV_DRV_ERROR) : 0);
        op->status |= ((rsp.fcw_err) ? (1 << RTE_BBDEV_DRV_ERROR) : 0);
-       if (op->status != 0)
+       if (op->status != 0) {
                q_data->queue_stats.dequeue_err_count++;
+               acc100_check_ir(q->d);
+       }
 
        /* CRC invalid if error exists */
        if (!op->status)
@@ -2311,6 +3845,9 @@ dequeue_ldpc_dec_one_op_cb(struct rte_bbdev_queue_data *q_data,
                op->status |= 1 << RTE_BBDEV_SYNDROME_ERROR;
        op->ldpc_dec.iter_count = (uint8_t) rsp.iter_cnt;
 
+       if (op->status & (1 << RTE_BBDEV_DRV_ERROR))
+               acc100_check_ir(q->d);
+
        /* Check if this is the last desc in batch (Atomic Queue) */
        if (desc->req.last_desc_in_batch) {
                (*aq_dequeued)++;
@@ -2404,6 +3941,52 @@ dequeue_dec_one_op_tb(struct acc100_queue *q, struct rte_bbdev_dec_op **ref_op,
        return cb_idx;
 }
 
+/* Dequeue encode operations from ACC100 device. */
+static uint16_t
+acc100_dequeue_enc(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_enc_op **ops, uint16_t num)
+{
+       struct acc100_queue *q = q_data->queue_private;
+       uint16_t dequeue_num;
+       uint32_t avail = q->sw_ring_head - q->sw_ring_tail;
+       uint32_t aq_dequeued = 0;
+       uint16_t i, dequeued_cbs = 0;
+       struct rte_bbdev_enc_op *op;
+       int ret;
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       if (unlikely(ops == NULL || q == NULL)) {
+               rte_bbdev_log_debug("Unexpected undefined pointer");
+               return 0;
+       }
+#endif
+
+       dequeue_num = (avail < num) ? avail : num;
+
+       for (i = 0; i < dequeue_num; ++i) {
+               op = (q->ring_addr + ((q->sw_ring_tail + dequeued_cbs)
+                       & q->sw_ring_wrap_mask))->req.op_addr;
+               if (op->turbo_enc.code_block_mode == 0)
+                       ret = dequeue_enc_one_op_tb(q, &ops[i], dequeued_cbs,
+                                       &aq_dequeued);
+               else
+                       ret = dequeue_enc_one_op_cb(q, &ops[i], dequeued_cbs,
+                                       &aq_dequeued);
+
+               if (ret < 0)
+                       break;
+               dequeued_cbs += ret;
+       }
+
+       q->aq_dequeued += aq_dequeued;
+       q->sw_ring_tail += dequeued_cbs;
+
+       /* Update enqueue stats */
+       q_data->queue_stats.dequeued_count += i;
+
+       return i;
+}
+
 /* Dequeue LDPC encode operations from ACC100 device. */
 static uint16_t
 acc100_dequeue_ldpc_enc(struct rte_bbdev_queue_data *q_data,
@@ -2442,6 +4025,52 @@ acc100_dequeue_ldpc_enc(struct rte_bbdev_queue_data *q_data,
        return dequeued_cbs;
 }
 
+
+/* Dequeue decode operations from ACC100 device. */
+static uint16_t
+acc100_dequeue_dec(struct rte_bbdev_queue_data *q_data,
+               struct rte_bbdev_dec_op **ops, uint16_t num)
+{
+       struct acc100_queue *q = q_data->queue_private;
+       uint16_t dequeue_num;
+       uint32_t avail = q->sw_ring_head - q->sw_ring_tail;
+       uint32_t aq_dequeued = 0;
+       uint16_t i;
+       uint16_t dequeued_cbs = 0;
+       struct rte_bbdev_dec_op *op;
+       int ret;
+
+#ifdef RTE_LIBRTE_BBDEV_DEBUG
+       if (unlikely(ops == 0 && q == NULL))
+               return 0;
+#endif
+
+       dequeue_num = (avail < num) ? avail : num;
+
+       for (i = 0; i < dequeue_num; ++i) {
+               op = (q->ring_addr + ((q->sw_ring_tail + dequeued_cbs)
+                       & q->sw_ring_wrap_mask))->req.op_addr;
+               if (op->turbo_dec.code_block_mode == 0)
+                       ret = dequeue_dec_one_op_tb(q, &ops[i], dequeued_cbs,
+                                       &aq_dequeued);
+               else
+                       ret = dequeue_dec_one_op_cb(q_data, q, &ops[i],
+                                       dequeued_cbs, &aq_dequeued);
+
+               if (ret < 0)
+                       break;
+               dequeued_cbs += ret;
+       }
+
+       q->aq_dequeued += aq_dequeued;
+       q->sw_ring_tail += dequeued_cbs;
+
+       /* Update enqueue stats */
+       q_data->queue_stats.dequeued_count += i;
+
+       return i;
+}
+
 /* Dequeue decode operations from ACC100 device. */
 static uint16_t
 acc100_dequeue_ldpc_dec(struct rte_bbdev_queue_data *q_data,
@@ -2495,6 +4124,10 @@ acc100_bbdev_init(struct rte_bbdev *dev, struct rte_pci_driver *drv)
        struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
 
        dev->dev_ops = &acc100_bbdev_ops;
+       dev->enqueue_enc_ops = acc100_enqueue_enc;
+       dev->enqueue_dec_ops = acc100_enqueue_dec;
+       dev->dequeue_enc_ops = acc100_dequeue_enc;
+       dev->dequeue_dec_ops = acc100_dequeue_dec;
        dev->enqueue_ldpc_enc_ops = acc100_enqueue_ldpc_enc;
        dev->enqueue_ldpc_dec_ops = acc100_enqueue_ldpc_dec;
        dev->dequeue_ldpc_enc_ops = acc100_dequeue_ldpc_enc;
@@ -2611,3 +4244,475 @@ RTE_PMD_REGISTER_PCI(ACC100PF_DRIVER_NAME, acc100_pci_pf_driver);
 RTE_PMD_REGISTER_PCI_TABLE(ACC100PF_DRIVER_NAME, pci_id_acc100_pf_map);
 RTE_PMD_REGISTER_PCI(ACC100VF_DRIVER_NAME, acc100_pci_vf_driver);
 RTE_PMD_REGISTER_PCI_TABLE(ACC100VF_DRIVER_NAME, pci_id_acc100_vf_map);
+
+/*
+ * Workaround implementation to fix the power on status of some 5GUL engines
+ * This requires DMA permission if ported outside DPDK
+ * It consists in resolving the state of these engines by running a
+ * dummy operation and resetting the engines to ensure state are reliably
+ * defined.
+ */
+static void
+poweron_cleanup(struct rte_bbdev *bbdev, struct acc100_device *d,
+               struct rte_acc100_conf *conf)
+{
+       int i, template_idx, qg_idx;
+       uint32_t address, status, value;
+       printf("Need to clear power-on 5GUL status in internal memory\n");
+       /* Reset LDPC Cores */
+       for (i = 0; i < ACC100_ENGINES_MAX; i++)
+               acc100_reg_write(d, HWPfFecUl5gCntrlReg +
+                               ACC100_ENGINE_OFFSET * i, ACC100_RESET_HI);
+       usleep(ACC100_LONG_WAIT);
+       for (i = 0; i < ACC100_ENGINES_MAX; i++)
+               acc100_reg_write(d, HWPfFecUl5gCntrlReg +
+                               ACC100_ENGINE_OFFSET * i, ACC100_RESET_LO);
+       usleep(ACC100_LONG_WAIT);
+       /* Prepare dummy workload */
+       alloc_2x64mb_sw_rings_mem(bbdev, d, 0);
+       /* Set base addresses */
+       uint32_t phys_high = (uint32_t)(d->sw_rings_iova >> 32);
+       uint32_t phys_low  = (uint32_t)(d->sw_rings_iova &
+                       ~(ACC100_SIZE_64MBYTE-1));
+       acc100_reg_write(d, HWPfDmaFec5GulDescBaseHiRegVf, phys_high);
+       acc100_reg_write(d, HWPfDmaFec5GulDescBaseLoRegVf, phys_low);
+
+       /* Descriptor for a dummy 5GUL code block processing*/
+       union acc100_dma_desc *desc = NULL;
+       desc = d->sw_rings;
+       desc->req.data_ptrs[0].address = d->sw_rings_iova +
+                       ACC100_DESC_FCW_OFFSET;
+       desc->req.data_ptrs[0].blen = ACC100_FCW_LD_BLEN;
+       desc->req.data_ptrs[0].blkid = ACC100_DMA_BLKID_FCW;
+       desc->req.data_ptrs[0].last = 0;
+       desc->req.data_ptrs[0].dma_ext = 0;
+       desc->req.data_ptrs[1].address = d->sw_rings_iova + 512;
+       desc->req.data_ptrs[1].blkid = ACC100_DMA_BLKID_IN;
+       desc->req.data_ptrs[1].last = 1;
+       desc->req.data_ptrs[1].dma_ext = 0;
+       desc->req.data_ptrs[1].blen = 44;
+       desc->req.data_ptrs[2].address = d->sw_rings_iova + 1024;
+       desc->req.data_ptrs[2].blkid = ACC100_DMA_BLKID_OUT_ENC;
+       desc->req.data_ptrs[2].last = 1;
+       desc->req.data_ptrs[2].dma_ext = 0;
+       desc->req.data_ptrs[2].blen = 5;
+       /* Dummy FCW */
+       desc->req.fcw_ld.FCWversion = ACC100_FCW_VER;
+       desc->req.fcw_ld.qm = 1;
+       desc->req.fcw_ld.nfiller = 30;
+       desc->req.fcw_ld.BG = 2 - 1;
+       desc->req.fcw_ld.Zc = 7;
+       desc->req.fcw_ld.ncb = 350;
+       desc->req.fcw_ld.rm_e = 4;
+       desc->req.fcw_ld.itmax = 10;
+       desc->req.fcw_ld.gain_i = 1;
+       desc->req.fcw_ld.gain_h = 1;
+
+       int engines_to_restart[ACC100_SIG_UL_5G_LAST + 1] = {0};
+       int num_failed_engine = 0;
+       /* Detect engines in undefined state */
+       for (template_idx = ACC100_SIG_UL_5G;
+                       template_idx <= ACC100_SIG_UL_5G_LAST;
+                       template_idx++) {
+               /* Check engine power-on status */
+               address = HwPfFecUl5gIbDebugReg +
+                               ACC100_ENGINE_OFFSET * template_idx;
+               status = (acc100_reg_read(d, address) >> 4) & 0xF;
+               if (status == 0) {
+                       engines_to_restart[num_failed_engine] = template_idx;
+                       num_failed_engine++;
+               }
+       }
+
+       int numQqsAcc = conf->q_ul_5g.num_qgroups;
+       int numQgs = conf->q_ul_5g.num_qgroups;
+       value = 0;
+       for (qg_idx = numQqsAcc; qg_idx < (numQgs + numQqsAcc); qg_idx++)
+               value |= (1 << qg_idx);
+       /* Force each engine which is in unspecified state */
+       for (i = 0; i < num_failed_engine; i++) {
+               int failed_engine = engines_to_restart[i];
+               printf("Force engine %d\n", failed_engine);
+               for (template_idx = ACC100_SIG_UL_5G;
+                               template_idx <= ACC100_SIG_UL_5G_LAST;
+                               template_idx++) {
+                       address = HWPfQmgrGrpTmplateReg4Indx
+                                       + ACC100_BYTES_IN_WORD * template_idx;
+                       if (template_idx == failed_engine)
+                               acc100_reg_write(d, address, value);
+                       else
+                               acc100_reg_write(d, address, 0);
+               }
+               /* Reset descriptor header */
+               desc->req.word0 = ACC100_DMA_DESC_TYPE;
+               desc->req.word1 = 0;
+               desc->req.word2 = 0;
+               desc->req.word3 = 0;
+               desc->req.numCBs = 1;
+               desc->req.m2dlen = 2;
+               desc->req.d2mlen = 1;
+               /* Enqueue the code block for processing */
+               union acc100_enqueue_reg_fmt enq_req;
+               enq_req.val = 0;
+               enq_req.addr_offset = ACC100_DESC_OFFSET;
+               enq_req.num_elem = 1;
+               enq_req.req_elem_addr = 0;
+               rte_wmb();
+               acc100_reg_write(d, HWPfQmgrIngressAq + 0x100, enq_req.val);
+               usleep(ACC100_LONG_WAIT * 100);
+               if (desc->req.word0 != 2)
+                       printf("DMA Response %#"PRIx32"\n", desc->req.word0);
+       }
+
+       /* Reset LDPC Cores */
+       for (i = 0; i < ACC100_ENGINES_MAX; i++)
+               acc100_reg_write(d, HWPfFecUl5gCntrlReg +
+                               ACC100_ENGINE_OFFSET * i,
+                               ACC100_RESET_HI);
+       usleep(ACC100_LONG_WAIT);
+       for (i = 0; i < ACC100_ENGINES_MAX; i++)
+               acc100_reg_write(d, HWPfFecUl5gCntrlReg +
+                               ACC100_ENGINE_OFFSET * i,
+                               ACC100_RESET_LO);
+       usleep(ACC100_LONG_WAIT);
+       acc100_reg_write(d, HWPfHi5GHardResetReg, ACC100_RESET_HARD);
+       usleep(ACC100_LONG_WAIT);
+       int numEngines = 0;
+       /* Check engine power-on status again */
+       for (template_idx = ACC100_SIG_UL_5G;
+                       template_idx <= ACC100_SIG_UL_5G_LAST;
+                       template_idx++) {
+               address = HwPfFecUl5gIbDebugReg +
+                               ACC100_ENGINE_OFFSET * template_idx;
+               status = (acc100_reg_read(d, address) >> 4) & 0xF;
+               address = HWPfQmgrGrpTmplateReg4Indx
+                               + ACC100_BYTES_IN_WORD * template_idx;
+               if (status == 1) {
+                       acc100_reg_write(d, address, value);
+                       numEngines++;
+               } else
+                       acc100_reg_write(d, address, 0);
+       }
+       printf("Number of 5GUL engines %d\n", numEngines);
+
+       if (d->sw_rings_base != NULL)
+               rte_free(d->sw_rings_base);
+       usleep(ACC100_LONG_WAIT);
+}
+
+/* Initial configuration of a ACC100 device prior to running configure() */
+int
+rte_acc100_configure(const char *dev_name, struct rte_acc100_conf *conf)
+{
+       rte_bbdev_log(INFO, "rte_acc100_configure");
+       uint32_t value, address, status;
+       int qg_idx, template_idx, vf_idx, acc, i;
+       struct rte_bbdev *bbdev = rte_bbdev_get_named_dev(dev_name);
+
+       /* Compile time checks */
+       RTE_BUILD_BUG_ON(sizeof(struct acc100_dma_req_desc) != 256);
+       RTE_BUILD_BUG_ON(sizeof(union acc100_dma_desc) != 256);
+       RTE_BUILD_BUG_ON(sizeof(struct acc100_fcw_td) != 24);
+       RTE_BUILD_BUG_ON(sizeof(struct acc100_fcw_te) != 32);
+
+       if (bbdev == NULL) {
+               rte_bbdev_log(ERR,
+               "Invalid dev_name (%s), or device is not yet initialised",
+               dev_name);
+               return -ENODEV;
+       }
+       struct acc100_device *d = bbdev->data->dev_private;
+
+       /* Store configuration */
+       rte_memcpy(&d->acc100_conf, conf, sizeof(d->acc100_conf));
+
+       /* PCIe Bridge configuration */
+       acc100_reg_write(d, HwPfPcieGpexBridgeControl, ACC100_CFG_PCI_BRIDGE);
+       for (i = 1; i < ACC100_GPEX_AXIMAP_NUM; i++)
+               acc100_reg_write(d,
+                               HwPfPcieGpexAxiAddrMappingWindowPexBaseHigh
+                               + i * 16, 0);
+
+       /* Prevent blocking AXI read on BRESP for AXI Write */
+       address = HwPfPcieGpexAxiPioControl;
+       value = ACC100_CFG_PCI_AXI;
+       acc100_reg_write(d, address, value);
+
+       /* 5GDL PLL phase shift */
+       acc100_reg_write(d, HWPfChaDl5gPllPhshft0, 0x1);
+
+       /* Explicitly releasing AXI as this may be stopped after PF FLR/BME */
+       address = HWPfDmaAxiControl;
+       value = 1;
+       acc100_reg_write(d, address, value);
+
+       /* DDR Configuration */
+       address = HWPfDdrBcTim6;
+       value = acc100_reg_read(d, address);
+       value &= 0xFFFFFFFB; /* Bit 2 */
+#ifdef ACC100_DDR_ECC_ENABLE
+       value |= 0x4;
+#endif
+       acc100_reg_write(d, address, value);
+       address = HWPfDdrPhyDqsCountNum;
+#ifdef ACC100_DDR_ECC_ENABLE
+       value = 9;
+#else
+       value = 8;
+#endif
+       acc100_reg_write(d, address, value);
+
+       /* Set default descriptor signature */
+       address = HWPfDmaDescriptorSignatuture;
+       value = 0;
+       acc100_reg_write(d, address, value);
+
+       /* Enable the Error Detection in DMA */
+       value = ACC100_CFG_DMA_ERROR;
+       address = HWPfDmaErrorDetectionEn;
+       acc100_reg_write(d, address, value);
+
+       /* AXI Cache configuration */
+       value = ACC100_CFG_AXI_CACHE;
+       address = HWPfDmaAxcacheReg;
+       acc100_reg_write(d, address, value);
+
+       /* Default DMA Configuration (Qmgr Enabled) */
+       address = HWPfDmaConfig0Reg;
+       value = 0;
+       acc100_reg_write(d, address, value);
+       address = HWPfDmaQmanen;
+       value = 0;
+       acc100_reg_write(d, address, value);
+
+       /* Default RLIM/ALEN configuration */
+       address = HWPfDmaConfig1Reg;
+       value = (1 << 31) + (23 << 8) + (1 << 6) + 7;
+       acc100_reg_write(d, address, value);
+
+       /* Configure DMA Qmanager addresses */
+       address = HWPfDmaQmgrAddrReg;
+       value = HWPfQmgrEgressQueuesTemplate;
+       acc100_reg_write(d, address, value);
+
+       /* ===== Qmgr Configuration ===== */
+       /* Configuration of the AQueue Depth QMGR_GRP_0_DEPTH_LOG2 for UL */
+       int totalQgs = conf->q_ul_4g.num_qgroups +
+                       conf->q_ul_5g.num_qgroups +
+                       conf->q_dl_4g.num_qgroups +
+                       conf->q_dl_5g.num_qgroups;
+       for (qg_idx = 0; qg_idx < totalQgs; qg_idx++) {
+               address = HWPfQmgrDepthLog2Grp +
+               ACC100_BYTES_IN_WORD * qg_idx;
+               value = aqDepth(qg_idx, conf);
+               acc100_reg_write(d, address, value);
+               address = HWPfQmgrTholdGrp +
+               ACC100_BYTES_IN_WORD * qg_idx;
+               value = (1 << 16) + (1 << (aqDepth(qg_idx, conf) - 1));
+               acc100_reg_write(d, address, value);
+       }
+
+       /* Template Priority in incremental order */
+       for (template_idx = 0; template_idx < ACC100_NUM_TMPL;
+                       template_idx++) {
+               address = HWPfQmgrGrpTmplateReg0Indx +
+               ACC100_BYTES_IN_WORD * (template_idx % 8);
+               value = ACC100_TMPL_PRI_0;
+               acc100_reg_write(d, address, value);
+               address = HWPfQmgrGrpTmplateReg1Indx +
+               ACC100_BYTES_IN_WORD * (template_idx % 8);
+               value = ACC100_TMPL_PRI_1;
+               acc100_reg_write(d, address, value);
+               address = HWPfQmgrGrpTmplateReg2indx +
+               ACC100_BYTES_IN_WORD * (template_idx % 8);
+               value = ACC100_TMPL_PRI_2;
+               acc100_reg_write(d, address, value);
+               address = HWPfQmgrGrpTmplateReg3Indx +
+               ACC100_BYTES_IN_WORD * (template_idx % 8);
+               value = ACC100_TMPL_PRI_3;
+               acc100_reg_write(d, address, value);
+       }
+
+       address = HWPfQmgrGrpPriority;
+       value = ACC100_CFG_QMGR_HI_P;
+       acc100_reg_write(d, address, value);
+
+       /* Template Configuration */
+       for (template_idx = 0; template_idx < ACC100_NUM_TMPL;
+                       template_idx++) {
+               value = 0;
+               address = HWPfQmgrGrpTmplateReg4Indx
+                               + ACC100_BYTES_IN_WORD * template_idx;
+               acc100_reg_write(d, address, value);
+       }
+       /* 4GUL */
+       int numQgs = conf->q_ul_4g.num_qgroups;
+       int numQqsAcc = 0;
+       value = 0;
+       for (qg_idx = numQqsAcc; qg_idx < (numQgs + numQqsAcc); qg_idx++)
+               value |= (1 << qg_idx);
+       for (template_idx = ACC100_SIG_UL_4G;
+                       template_idx <= ACC100_SIG_UL_4G_LAST;
+                       template_idx++) {
+               address = HWPfQmgrGrpTmplateReg4Indx
+                               + ACC100_BYTES_IN_WORD * template_idx;
+               acc100_reg_write(d, address, value);
+       }
+       /* 5GUL */
+       numQqsAcc += numQgs;
+       numQgs  = conf->q_ul_5g.num_qgroups;
+       value = 0;
+       int numEngines = 0;
+       for (qg_idx = numQqsAcc; qg_idx < (numQgs + numQqsAcc); qg_idx++)
+               value |= (1 << qg_idx);
+       for (template_idx = ACC100_SIG_UL_5G;
+                       template_idx <= ACC100_SIG_UL_5G_LAST;
+                       template_idx++) {
+               /* Check engine power-on status */
+               address = HwPfFecUl5gIbDebugReg +
+                               ACC100_ENGINE_OFFSET * template_idx;
+               status = (acc100_reg_read(d, address) >> 4) & 0xF;
+               address = HWPfQmgrGrpTmplateReg4Indx
+                               + ACC100_BYTES_IN_WORD * template_idx;
+               if (status == 1) {
+                       acc100_reg_write(d, address, value);
+                       numEngines++;
+               } else
+                       acc100_reg_write(d, address, 0);
+#if RTE_ACC100_SINGLE_FEC == 1
+               value = 0;
+#endif
+       }
+       printf("Number of 5GUL engines %d\n", numEngines);
+       /* 4GDL */
+       numQqsAcc += numQgs;
+       numQgs  = conf->q_dl_4g.num_qgroups;
+       value = 0;
+       for (qg_idx = numQqsAcc; qg_idx < (numQgs + numQqsAcc); qg_idx++)
+               value |= (1 << qg_idx);
+       for (template_idx = ACC100_SIG_DL_4G;
+                       template_idx <= ACC100_SIG_DL_4G_LAST;
+                       template_idx++) {
+               address = HWPfQmgrGrpTmplateReg4Indx
+                               + ACC100_BYTES_IN_WORD * template_idx;
+               acc100_reg_write(d, address, value);
+#if RTE_ACC100_SINGLE_FEC == 1
+                       value = 0;
+#endif
+       }
+       /* 5GDL */
+       numQqsAcc += numQgs;
+       numQgs  = conf->q_dl_5g.num_qgroups;
+       value = 0;
+       for (qg_idx = numQqsAcc; qg_idx < (numQgs + numQqsAcc); qg_idx++)
+               value |= (1 << qg_idx);
+       for (template_idx = ACC100_SIG_DL_5G;
+                       template_idx <= ACC100_SIG_DL_5G_LAST;
+                       template_idx++) {
+               address = HWPfQmgrGrpTmplateReg4Indx
+                               + ACC100_BYTES_IN_WORD * template_idx;
+               acc100_reg_write(d, address, value);
+#if RTE_ACC100_SINGLE_FEC == 1
+               value = 0;
+#endif
+       }
+
+       /* Queue Group Function mapping */
+       int qman_func_id[5] = {0, 2, 1, 3, 4};
+       address = HWPfQmgrGrpFunction0;
+       value = 0;
+       for (qg_idx = 0; qg_idx < 8; qg_idx++) {
+               acc = accFromQgid(qg_idx, conf);
+               value |= qman_func_id[acc]<<(qg_idx * 4);
+       }
+       acc100_reg_write(d, address, value);
+
+       /* Configuration of the Arbitration QGroup depth to 1 */
+       for (qg_idx = 0; qg_idx < totalQgs; qg_idx++) {
+               address = HWPfQmgrArbQDepthGrp +
+               ACC100_BYTES_IN_WORD * qg_idx;
+               value = 0;
+               acc100_reg_write(d, address, value);
+       }
+
+       /* Enabling AQueues through the Queue hierarchy*/
+       for (vf_idx = 0; vf_idx < ACC100_NUM_VFS; vf_idx++) {
+               for (qg_idx = 0; qg_idx < ACC100_NUM_QGRPS; qg_idx++) {
+                       value = 0;
+                       if (vf_idx < conf->num_vf_bundles &&
+                                       qg_idx < totalQgs)
+                               value = (1 << aqNum(qg_idx, conf)) - 1;
+                       address = HWPfQmgrAqEnableVf
+                                       + vf_idx * ACC100_BYTES_IN_WORD;
+                       value += (qg_idx << 16);
+                       acc100_reg_write(d, address, value);
+               }
+       }
+
+       /* This pointer to ARAM (256kB) is shifted by 2 (4B per register) */
+       uint32_t aram_address = 0;
+       for (qg_idx = 0; qg_idx < totalQgs; qg_idx++) {
+               for (vf_idx = 0; vf_idx < conf->num_vf_bundles; vf_idx++) {
+                       address = HWPfQmgrVfBaseAddr + vf_idx
+                                       * ACC100_BYTES_IN_WORD + qg_idx
+                                       * ACC100_BYTES_IN_WORD * 64;
+                       value = aram_address;
+                       acc100_reg_write(d, address, value);
+                       /* Offset ARAM Address for next memory bank
+                        * - increment of 4B
+                        */
+                       aram_address += aqNum(qg_idx, conf) *
+                                       (1 << aqDepth(qg_idx, conf));
+               }
+       }
+
+       if (aram_address > ACC100_WORDS_IN_ARAM_SIZE) {
+               rte_bbdev_log(ERR, "ARAM Configuration not fitting %d %d\n",
+                               aram_address, ACC100_WORDS_IN_ARAM_SIZE);
+               return -EINVAL;
+       }
+
+       /* ==== HI Configuration ==== */
+
+       /* Prevent Block on Transmit Error */
+       address = HWPfHiBlockTransmitOnErrorEn;
+       value = 0;
+       acc100_reg_write(d, address, value);
+       /* Prevents to drop MSI */
+       address = HWPfHiMsiDropEnableReg;
+       value = 0;
+       acc100_reg_write(d, address, value);
+       /* Set the PF Mode register */
+       address = HWPfHiPfMode;
+       value = (conf->pf_mode_en) ? ACC100_PF_VAL : 0;
+       acc100_reg_write(d, address, value);
+       /* Enable Error Detection in HW */
+       address = HWPfDmaErrorDetectionEn;
+       value = 0x3D7;
+       acc100_reg_write(d, address, value);
+
+       /* QoS overflow init */
+       value = 1;
+       address = HWPfQosmonAEvalOverflow0;
+       acc100_reg_write(d, address, value);
+       address = HWPfQosmonBEvalOverflow0;
+       acc100_reg_write(d, address, value);
+
+       /* HARQ DDR Configuration */
+       unsigned int ddrSizeInMb = 512; /* Fixed to 512 MB per VF for now */
+       for (vf_idx = 0; vf_idx < conf->num_vf_bundles; vf_idx++) {
+               address = HWPfDmaVfDdrBaseRw + vf_idx
+                               * 0x10;
+               value = ((vf_idx * (ddrSizeInMb / 64)) << 16) +
+                               (ddrSizeInMb - 1);
+               acc100_reg_write(d, address, value);
+       }
+       usleep(ACC100_LONG_WAIT);
+
+       /* Workaround in case some 5GUL engines are in an unexpected state */
+       if (numEngines < (ACC100_SIG_UL_5G_LAST + 1))
+               poweron_cleanup(bbdev, d, conf);
+
+       rte_bbdev_log_debug("PF Tip configuration complete for %s", dev_name);
+       return 0;
+}