mbuf: add namespace to offload flags
[dpdk.git] / drivers / net / ionic / ionic_rxtx.c
index 6ecb500..9f602de 100644 (file)
@@ -47,8 +47,6 @@
 #include "ionic_lif.h"
 #include "ionic_rxtx.h"
 
-#define IONIC_RX_RING_DOORBELL_STRIDE          (32 - 1)
-
 /*********************************************************************
  *
  *  TX functions
@@ -59,8 +57,8 @@ void
 ionic_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
                struct rte_eth_txq_info *qinfo)
 {
-       struct ionic_qcq *txq = dev->data->tx_queues[queue_id];
-       struct ionic_queue *q = &txq->q;
+       struct ionic_tx_qcq *txq = dev->data->tx_queues[queue_id];
+       struct ionic_queue *q = &txq->qcq.q;
 
        qinfo->nb_desc = q->num_descs;
        qinfo->conf.offloads = dev->data->dev_conf.txmode.offloads;
@@ -68,10 +66,10 @@ ionic_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
 }
 
 static __rte_always_inline void
-ionic_tx_flush(struct ionic_qcq *txq)
+ionic_tx_flush(struct ionic_tx_qcq *txq)
 {
-       struct ionic_cq *cq = &txq->cq;
-       struct ionic_queue *q = &txq->q;
+       struct ionic_cq *cq = &txq->qcq.cq;
+       struct ionic_queue *q = &txq->qcq.q;
        struct rte_mbuf *txm, *next;
        struct ionic_txq_comp *cq_desc_base = cq->base;
        struct ionic_txq_comp *cq_desc;
@@ -120,21 +118,25 @@ ionic_tx_flush(struct ionic_qcq *txq)
 }
 
 void __rte_cold
-ionic_dev_tx_queue_release(void *tx_queue)
+ionic_dev_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
 {
-       struct ionic_qcq *txq = (struct ionic_qcq *)tx_queue;
+       struct ionic_tx_qcq *txq = dev->data->tx_queues[qid];
+       struct ionic_tx_stats *stats = &txq->stats;
 
        IONIC_PRINT_CALL();
 
+       IONIC_PRINT(DEBUG, "TX queue %u pkts %ju tso %ju",
+               txq->qcq.q.index, stats->packets, stats->tso);
+
        ionic_lif_txq_deinit(txq);
 
-       ionic_qcq_free(txq);
+       ionic_qcq_free(&txq->qcq);
 }
 
 int __rte_cold
 ionic_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
 {
-       struct ionic_qcq *txq;
+       struct ionic_tx_qcq *txq;
 
        IONIC_PRINT(DEBUG, "Stopping TX queue %u", tx_queue_id);
 
@@ -148,7 +150,7 @@ ionic_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
         * before disabling Tx queue
         */
 
-       ionic_qcq_disable(txq);
+       ionic_qcq_disable(&txq->qcq);
 
        ionic_tx_flush(txq);
 
@@ -161,7 +163,7 @@ ionic_dev_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id,
                const struct rte_eth_txconf *tx_conf)
 {
        struct ionic_lif *lif = IONIC_ETH_DEV_TO_LIF(eth_dev);
-       struct ionic_qcq *txq;
+       struct ionic_tx_qcq *txq;
        uint64_t offloads;
        int err;
 
@@ -183,15 +185,14 @@ ionic_dev_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id,
 
        /* Free memory prior to re-allocation if needed... */
        if (eth_dev->data->tx_queues[tx_queue_id] != NULL) {
-               void *tx_queue = eth_dev->data->tx_queues[tx_queue_id];
-               ionic_dev_tx_queue_release(tx_queue);
+               ionic_dev_tx_queue_release(eth_dev, tx_queue_id);
                eth_dev->data->tx_queues[tx_queue_id] = NULL;
        }
 
        eth_dev->data->tx_queue_state[tx_queue_id] =
                RTE_ETH_QUEUE_STATE_STOPPED;
 
-       err = ionic_tx_qcq_alloc(lif, tx_queue_id, nb_desc, &txq);
+       err = ionic_tx_qcq_alloc(lif, socket_id, tx_queue_id, nb_desc, &txq);
        if (err) {
                IONIC_PRINT(DEBUG, "Queue allocation failure");
                return -EINVAL;
@@ -202,11 +203,11 @@ ionic_dev_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id,
                txq->flags |= IONIC_QCQ_F_DEFERRED;
 
        /* Convert the offload flags into queue flags */
-       if (offloads & DEV_TX_OFFLOAD_IPV4_CKSUM)
+       if (offloads & RTE_ETH_TX_OFFLOAD_IPV4_CKSUM)
                txq->flags |= IONIC_QCQ_F_CSUM_L3;
-       if (offloads & DEV_TX_OFFLOAD_TCP_CKSUM)
+       if (offloads & RTE_ETH_TX_OFFLOAD_TCP_CKSUM)
                txq->flags |= IONIC_QCQ_F_CSUM_TCP;
-       if (offloads & DEV_TX_OFFLOAD_UDP_CKSUM)
+       if (offloads & RTE_ETH_TX_OFFLOAD_UDP_CKSUM)
                txq->flags |= IONIC_QCQ_F_CSUM_UDP;
 
        eth_dev->data->tx_queues[tx_queue_id] = txq;
@@ -221,7 +222,7 @@ int __rte_cold
 ionic_dev_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
 {
        uint8_t *tx_queue_state = eth_dev->data->tx_queue_state;
-       struct ionic_qcq *txq;
+       struct ionic_tx_qcq *txq;
        int err;
 
        if (tx_queue_state[tx_queue_id] == RTE_ETH_QUEUE_STATE_STARTED) {
@@ -233,14 +234,14 @@ ionic_dev_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
        txq = eth_dev->data->tx_queues[tx_queue_id];
 
        IONIC_PRINT(DEBUG, "Starting TX queue %u, %u descs",
-               tx_queue_id, txq->q.num_descs);
+               tx_queue_id, txq->qcq.q.num_descs);
 
        if (!(txq->flags & IONIC_QCQ_F_INITED)) {
                err = ionic_lif_txq_init(txq);
                if (err)
                        return err;
        } else {
-               ionic_qcq_enable(txq);
+               ionic_qcq_enable(&txq->qcq);
        }
 
        tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
@@ -256,7 +257,7 @@ ionic_tx_tcp_pseudo_csum(struct rte_mbuf *txm)
        struct rte_tcp_hdr *tcp_hdr = (struct rte_tcp_hdr *)
                (l3_hdr + txm->l3_len);
 
-       if (txm->ol_flags & PKT_TX_IP_CKSUM) {
+       if (txm->ol_flags & RTE_MBUF_F_TX_IP_CKSUM) {
                struct rte_ipv4_hdr *ipv4_hdr = (struct rte_ipv4_hdr *)l3_hdr;
                ipv4_hdr->hdr_checksum = 0;
                tcp_hdr->cksum = 0;
@@ -277,7 +278,7 @@ ionic_tx_tcp_inner_pseudo_csum(struct rte_mbuf *txm)
        struct rte_tcp_hdr *tcp_hdr = (struct rte_tcp_hdr *)
                (l3_hdr + txm->l3_len);
 
-       if (txm->ol_flags & PKT_TX_IPV4) {
+       if (txm->ol_flags & RTE_MBUF_F_TX_IPV4) {
                struct rte_ipv4_hdr *ipv4_hdr = (struct rte_ipv4_hdr *)l3_hdr;
                ipv4_hdr->hdr_checksum = 0;
                tcp_hdr->cksum = 0;
@@ -298,6 +299,7 @@ ionic_tx_tso_post(struct ionic_queue *q, struct ionic_txq_desc *desc,
                uint16_t vlan_tci, bool has_vlan,
                bool start, bool done)
 {
+       void **info;
        uint8_t flags = 0;
        flags |= has_vlan ? IONIC_TXQ_DESC_FLAG_VLAN : 0;
        flags |= encap ? IONIC_TXQ_DESC_FLAG_ENCAP : 0;
@@ -311,12 +313,18 @@ ionic_tx_tso_post(struct ionic_queue *q, struct ionic_txq_desc *desc,
        desc->hdr_len = hdrlen;
        desc->mss = mss;
 
-       ionic_q_post(q, done, done ? txm : NULL);
+       if (done) {
+               info = IONIC_INFO_PTR(q, q->head_idx);
+               info[0] = txm;
+       }
+
+       q->head_idx = Q_NEXT_TO_POST(q, 1);
 }
 
 static struct ionic_txq_desc *
-ionic_tx_tso_next(struct ionic_queue *q, struct ionic_txq_sg_elem **elem)
+ionic_tx_tso_next(struct ionic_tx_qcq *txq, struct ionic_txq_sg_elem **elem)
 {
+       struct ionic_queue *q = &txq->qcq.q;
        struct ionic_txq_desc *desc_base = q->base;
        struct ionic_txq_sg_desc_v1 *sg_desc_base = q->sg_base;
        struct ionic_txq_desc *desc = &desc_base[q->head_idx];
@@ -327,11 +335,10 @@ ionic_tx_tso_next(struct ionic_queue *q, struct ionic_txq_sg_elem **elem)
 }
 
 static int
-ionic_tx_tso(struct ionic_qcq *txq, struct rte_mbuf *txm,
-               bool not_xmit_more)
+ionic_tx_tso(struct ionic_tx_qcq *txq, struct rte_mbuf *txm)
 {
-       struct ionic_queue *q = &txq->q;
-       struct ionic_tx_stats *stats = IONIC_Q_TO_TX_STATS(q);
+       struct ionic_queue *q = &txq->qcq.q;
+       struct ionic_tx_stats *stats = &txq->stats;
        struct ionic_txq_desc *desc;
        struct ionic_txq_sg_elem *elem;
        struct rte_mbuf *txm_seg;
@@ -348,14 +355,14 @@ ionic_tx_tso(struct ionic_qcq *txq, struct rte_mbuf *txm,
        uint32_t offset = 0;
        bool start, done;
        bool encap;
-       bool has_vlan = !!(txm->ol_flags & PKT_TX_VLAN_PKT);
+       bool has_vlan = !!(txm->ol_flags & RTE_MBUF_F_TX_VLAN);
        uint16_t vlan_tci = txm->vlan_tci;
        uint64_t ol_flags = txm->ol_flags;
 
-       encap = ((ol_flags & PKT_TX_OUTER_IP_CKSUM) ||
-               (ol_flags & PKT_TX_OUTER_UDP_CKSUM)) &&
-               ((ol_flags & PKT_TX_OUTER_IPV4) ||
-               (ol_flags & PKT_TX_OUTER_IPV6));
+       encap = ((ol_flags & RTE_MBUF_F_TX_OUTER_IP_CKSUM) ||
+                (ol_flags & RTE_MBUF_F_TX_OUTER_UDP_CKSUM)) &&
+               ((ol_flags & RTE_MBUF_F_TX_OUTER_IPV4) ||
+                (ol_flags & RTE_MBUF_F_TX_OUTER_IPV6));
 
        /* Preload inner-most TCP csum field with IP pseudo hdr
         * calculated with IP length set to zero.  HW will later
@@ -375,7 +382,7 @@ ionic_tx_tso(struct ionic_qcq *txq, struct rte_mbuf *txm,
        left = txm->data_len;
        data_iova = rte_mbuf_data_iova(txm);
 
-       desc = ionic_tx_tso_next(q, &elem);
+       desc = ionic_tx_tso_next(txq, &elem);
        start = true;
 
        /* Chop data up into desc segments */
@@ -396,8 +403,8 @@ ionic_tx_tso(struct ionic_qcq *txq, struct rte_mbuf *txm,
                        hdrlen, mss,
                        encap,
                        vlan_tci, has_vlan,
-                       start, done && not_xmit_more);
-               desc = ionic_tx_tso_next(q, &elem);
+                       start, done);
+               desc = ionic_tx_tso_next(txq, &elem);
                start = false;
                seglen = mss;
        }
@@ -409,7 +416,6 @@ ionic_tx_tso(struct ionic_qcq *txq, struct rte_mbuf *txm,
                offset = 0;
                data_iova = rte_mbuf_data_iova(txm_seg);
                left = txm_seg->data_len;
-               stats->frags++;
 
                while (left > 0) {
                        next_addr = rte_cpu_to_le_64(data_iova + offset);
@@ -438,8 +444,8 @@ ionic_tx_tso(struct ionic_qcq *txq, struct rte_mbuf *txm,
                                hdrlen, mss,
                                encap,
                                vlan_tci, has_vlan,
-                               start, done && not_xmit_more);
-                       desc = ionic_tx_tso_next(q, &elem);
+                               start, done);
+                       desc = ionic_tx_tso_next(txq, &elem);
                        start = false;
                }
 
@@ -452,17 +458,15 @@ ionic_tx_tso(struct ionic_qcq *txq, struct rte_mbuf *txm,
 }
 
 static __rte_always_inline int
-ionic_tx(struct ionic_qcq *txq, struct rte_mbuf *txm,
-               bool not_xmit_more)
+ionic_tx(struct ionic_tx_qcq *txq, struct rte_mbuf *txm)
 {
-       struct ionic_queue *q = &txq->q;
-       struct ionic_txq_desc *desc_base = q->base;
+       struct ionic_queue *q = &txq->qcq.q;
+       struct ionic_txq_desc *desc, *desc_base = q->base;
        struct ionic_txq_sg_desc_v1 *sg_desc_base = q->sg_base;
-       struct ionic_txq_desc *desc = &desc_base[q->head_idx];
-       struct ionic_txq_sg_desc_v1 *sg_desc = &sg_desc_base[q->head_idx];
-       struct ionic_txq_sg_elem *elem = sg_desc->elems;
-       struct ionic_tx_stats *stats = IONIC_Q_TO_TX_STATS(q);
+       struct ionic_txq_sg_elem *elem;
+       struct ionic_tx_stats *stats = &txq->stats;
        struct rte_mbuf *txm_seg;
+       void **info;
        bool encap;
        bool has_vlan;
        uint64_t ol_flags = txm->ol_flags;
@@ -470,15 +474,18 @@ ionic_tx(struct ionic_qcq *txq, struct rte_mbuf *txm,
        uint8_t opcode = IONIC_TXQ_DESC_OPCODE_CSUM_NONE;
        uint8_t flags = 0;
 
-       if ((ol_flags & PKT_TX_IP_CKSUM) &&
+       desc = &desc_base[q->head_idx];
+       info = IONIC_INFO_PTR(q, q->head_idx);
+
+       if ((ol_flags & RTE_MBUF_F_TX_IP_CKSUM) &&
            (txq->flags & IONIC_QCQ_F_CSUM_L3)) {
                opcode = IONIC_TXQ_DESC_OPCODE_CSUM_HW;
                flags |= IONIC_TXQ_DESC_FLAG_CSUM_L3;
        }
 
-       if (((ol_flags & PKT_TX_TCP_CKSUM) &&
+       if (((ol_flags & RTE_MBUF_F_TX_TCP_CKSUM) &&
             (txq->flags & IONIC_QCQ_F_CSUM_TCP)) ||
-           ((ol_flags & PKT_TX_UDP_CKSUM) &&
+           ((ol_flags & RTE_MBUF_F_TX_UDP_CKSUM) &&
             (txq->flags & IONIC_QCQ_F_CSUM_UDP))) {
                opcode = IONIC_TXQ_DESC_OPCODE_CSUM_HW;
                flags |= IONIC_TXQ_DESC_FLAG_CSUM_L4;
@@ -487,11 +494,11 @@ ionic_tx(struct ionic_qcq *txq, struct rte_mbuf *txm,
        if (opcode == IONIC_TXQ_DESC_OPCODE_CSUM_NONE)
                stats->no_csum++;
 
-       has_vlan = (ol_flags & PKT_TX_VLAN_PKT);
-       encap = ((ol_flags & PKT_TX_OUTER_IP_CKSUM) ||
-                       (ol_flags & PKT_TX_OUTER_UDP_CKSUM)) &&
-                       ((ol_flags & PKT_TX_OUTER_IPV4) ||
-                       (ol_flags & PKT_TX_OUTER_IPV6));
+       has_vlan = (ol_flags & RTE_MBUF_F_TX_VLAN);
+       encap = ((ol_flags & RTE_MBUF_F_TX_OUTER_IP_CKSUM) ||
+                       (ol_flags & RTE_MBUF_F_TX_OUTER_UDP_CKSUM)) &&
+                       ((ol_flags & RTE_MBUF_F_TX_OUTER_IPV4) ||
+                        (ol_flags & RTE_MBUF_F_TX_OUTER_IPV6));
 
        flags |= has_vlan ? IONIC_TXQ_DESC_FLAG_VLAN : 0;
        flags |= encap ? IONIC_TXQ_DESC_FLAG_ENCAP : 0;
@@ -502,16 +509,19 @@ ionic_tx(struct ionic_qcq *txq, struct rte_mbuf *txm,
        desc->len = txm->data_len;
        desc->vlan_tci = txm->vlan_tci;
 
+       info[0] = txm;
+
+       elem = sg_desc_base[q->head_idx].elems;
+
        txm_seg = txm->next;
        while (txm_seg != NULL) {
                elem->len = txm_seg->data_len;
                elem->addr = rte_cpu_to_le_64(rte_mbuf_data_iova(txm_seg));
-               stats->frags++;
                elem++;
                txm_seg = txm_seg->next;
        }
 
-       ionic_q_post(q, not_xmit_more, txm);
+       q->head_idx = Q_NEXT_TO_POST(q, 1);
 
        return 0;
 }
@@ -520,26 +530,24 @@ uint16_t
 ionic_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
                uint16_t nb_pkts)
 {
-       struct ionic_qcq *txq = (struct ionic_qcq *)tx_queue;
-       struct ionic_queue *q = &txq->q;
-       struct ionic_tx_stats *stats = IONIC_Q_TO_TX_STATS(q);
+       struct ionic_tx_qcq *txq = tx_queue;
+       struct ionic_queue *q = &txq->qcq.q;
+       struct ionic_tx_stats *stats = &txq->stats;
        uint32_t next_q_head_idx;
        uint32_t bytes_tx = 0;
-       uint16_t nb_tx = 0;
+       uint16_t nb_avail, nb_tx = 0;
        int err;
-       bool last;
 
        /* Cleaning old buffers */
        ionic_tx_flush(txq);
 
-       if (unlikely(ionic_q_space_avail(q) < nb_pkts)) {
-               stats->stop += nb_pkts;
-               return 0;
+       nb_avail = ionic_q_space_avail(q);
+       if (unlikely(nb_avail < nb_pkts)) {
+               stats->stop += nb_pkts - nb_avail;
+               nb_pkts = nb_avail;
        }
 
        while (nb_tx < nb_pkts) {
-               last = (nb_tx == (nb_pkts - 1));
-
                next_q_head_idx = Q_NEXT_TO_POST(q, 1);
                if ((next_q_head_idx & 0x3) == 0) {
                        struct ionic_txq_desc *desc_base = q->base;
@@ -547,14 +555,12 @@ ionic_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
                        rte_prefetch0(&q->info[next_q_head_idx]);
                }
 
-               if (tx_pkts[nb_tx]->ol_flags & PKT_TX_TCP_SEG)
-                       err = ionic_tx_tso(txq, tx_pkts[nb_tx], last);
+               if (tx_pkts[nb_tx]->ol_flags & RTE_MBUF_F_TX_TCP_SEG)
+                       err = ionic_tx_tso(txq, tx_pkts[nb_tx]);
                else
-                       err = ionic_tx(txq, tx_pkts[nb_tx], last);
+                       err = ionic_tx(txq, tx_pkts[nb_tx]);
                if (err) {
                        stats->drop += nb_pkts - nb_tx;
-                       if (nb_tx > 0)
-                               ionic_q_flush(q);
                        break;
                }
 
@@ -562,6 +568,11 @@ ionic_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
                nb_tx++;
        }
 
+       if (nb_tx > 0) {
+               rte_wmb();
+               ionic_q_flush(q);
+       }
+
        stats->packets += nb_tx;
        stats->bytes += bytes_tx;
 
@@ -574,21 +585,20 @@ ionic_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
  *
  **********************************************************************/
 
-#define IONIC_TX_OFFLOAD_MASK (        \
-       PKT_TX_IPV4 |           \
-       PKT_TX_IPV6 |           \
-       PKT_TX_VLAN |           \
-       PKT_TX_IP_CKSUM |       \
-       PKT_TX_TCP_SEG |        \
-       PKT_TX_L4_MASK)
+#define IONIC_TX_OFFLOAD_MASK (RTE_MBUF_F_TX_IPV4 |            \
+       RTE_MBUF_F_TX_IPV6 |            \
+       RTE_MBUF_F_TX_VLAN |            \
+       RTE_MBUF_F_TX_IP_CKSUM |        \
+       RTE_MBUF_F_TX_TCP_SEG | \
+       RTE_MBUF_F_TX_L4_MASK)
 
 #define IONIC_TX_OFFLOAD_NOTSUP_MASK \
-       (PKT_TX_OFFLOAD_MASK ^ IONIC_TX_OFFLOAD_MASK)
+       (RTE_MBUF_F_TX_OFFLOAD_MASK ^ IONIC_TX_OFFLOAD_MASK)
 
 uint16_t
-ionic_prep_pkts(void *tx_queue __rte_unused, struct rte_mbuf **tx_pkts,
-               uint16_t nb_pkts)
+ionic_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
 {
+       struct ionic_tx_qcq *txq = tx_queue;
        struct rte_mbuf *txm;
        uint64_t offloads;
        int i = 0;
@@ -596,7 +606,7 @@ ionic_prep_pkts(void *tx_queue __rte_unused, struct rte_mbuf **tx_pkts,
        for (i = 0; i < nb_pkts; i++) {
                txm = tx_pkts[i];
 
-               if (txm->nb_segs > IONIC_TX_MAX_SG_ELEMS_V1 + 1) {
+               if (txm->nb_segs > txq->num_segs_fw) {
                        rte_errno = -EINVAL;
                        break;
                }
@@ -625,8 +635,8 @@ void
 ionic_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
                struct rte_eth_rxq_info *qinfo)
 {
-       struct ionic_qcq *rxq = dev->data->rx_queues[queue_id];
-       struct ionic_queue *q = &rxq->q;
+       struct ionic_rx_qcq *rxq = dev->data->rx_queues[queue_id];
+       struct ionic_queue *q = &rxq->qcq.q;
 
        qinfo->mp = rxq->mb_pool;
        qinfo->scattered_rx = dev->data->scattered_rx;
@@ -636,9 +646,9 @@ ionic_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
 }
 
 static void __rte_cold
-ionic_rx_empty(struct ionic_queue *q)
+ionic_rx_empty(struct ionic_rx_qcq *rxq)
 {
-       struct ionic_qcq *rxq = IONIC_Q_TO_QCQ(q);
+       struct ionic_queue *q = &rxq->qcq.q;
        struct rte_mbuf *mbuf;
        void **info;
 
@@ -652,17 +662,26 @@ ionic_rx_empty(struct ionic_queue *q)
 }
 
 void __rte_cold
-ionic_dev_rx_queue_release(void *rx_queue)
+ionic_dev_rx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
 {
-       struct ionic_qcq *rxq = (struct ionic_qcq *)rx_queue;
+       struct ionic_rx_qcq *rxq = dev->data->rx_queues[qid];
+       struct ionic_rx_stats *stats;
+
+       if (!rxq)
+               return;
 
        IONIC_PRINT_CALL();
 
-       ionic_rx_empty(&rxq->q);
+       stats = &rxq->stats;
+
+       IONIC_PRINT(DEBUG, "RX queue %u pkts %ju mtod %ju",
+               rxq->qcq.q.index, stats->packets, stats->mtods);
+
+       ionic_rx_empty(rxq);
 
        ionic_lif_rxq_deinit(rxq);
 
-       ionic_qcq_free(rxq);
+       ionic_qcq_free(&rxq->qcq);
 }
 
 int __rte_cold
@@ -674,7 +693,7 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
                struct rte_mempool *mp)
 {
        struct ionic_lif *lif = IONIC_ETH_DEV_TO_LIF(eth_dev);
-       struct ionic_qcq *rxq;
+       struct ionic_rx_qcq *rxq;
        uint64_t offloads;
        int err;
 
@@ -705,15 +724,15 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
 
        /* Free memory prior to re-allocation if needed... */
        if (eth_dev->data->rx_queues[rx_queue_id] != NULL) {
-               void *rx_queue = eth_dev->data->rx_queues[rx_queue_id];
-               ionic_dev_rx_queue_release(rx_queue);
+               ionic_dev_rx_queue_release(eth_dev, rx_queue_id);
                eth_dev->data->rx_queues[rx_queue_id] = NULL;
        }
 
        eth_dev->data->rx_queue_state[rx_queue_id] =
                RTE_ETH_QUEUE_STATE_STOPPED;
 
-       err = ionic_rx_qcq_alloc(lif, rx_queue_id, nb_desc, &rxq);
+       err = ionic_rx_qcq_alloc(lif, socket_id, rx_queue_id, nb_desc,
+                       &rxq);
        if (err) {
                IONIC_PRINT(ERR, "Queue %d allocation failure", rx_queue_id);
                return -EINVAL;
@@ -723,11 +742,11 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
 
        /*
         * Note: the interface does not currently support
-        * DEV_RX_OFFLOAD_KEEP_CRC, please also consider ETHER_CRC_LEN
+        * RTE_ETH_RX_OFFLOAD_KEEP_CRC, please also consider ETHER_CRC_LEN
         * when the adapter will be able to keep the CRC and subtract
         * it to the length for all received packets:
         * if (eth_dev->data->dev_conf.rxmode.offloads &
-        *     DEV_RX_OFFLOAD_KEEP_CRC)
+        *     RTE_ETH_RX_OFFLOAD_KEEP_CRC)
         *   rxq->crc_len = ETHER_CRC_LEN;
         */
 
@@ -741,20 +760,20 @@ ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
 }
 
 static __rte_always_inline void
-ionic_rx_clean(struct ionic_qcq *rxq,
+ionic_rx_clean(struct ionic_rx_qcq *rxq,
                uint32_t q_desc_index, uint32_t cq_desc_index,
                void *service_cb_arg)
 {
-       struct ionic_queue *q = &rxq->q;
-       struct ionic_cq *cq = &rxq->cq;
+       struct ionic_queue *q = &rxq->qcq.q;
+       struct ionic_cq *cq = &rxq->qcq.cq;
        struct ionic_rxq_comp *cq_desc_base = cq->base;
        struct ionic_rxq_comp *cq_desc = &cq_desc_base[cq_desc_index];
        struct rte_mbuf *rxm, *rxm_seg;
        uint32_t max_frame_size =
-               rxq->lif->eth_dev->data->dev_conf.rxmode.max_rx_pkt_len;
+               rxq->qcq.lif->eth_dev->data->mtu + RTE_ETHER_HDR_LEN;
        uint64_t pkt_flags = 0;
        uint32_t pkt_type;
-       struct ionic_rx_stats *stats = IONIC_Q_TO_RX_STATS(q);
+       struct ionic_rx_stats *stats = &rxq->stats;
        struct ionic_rx_service *recv_args = (struct ionic_rx_service *)
                service_cb_arg;
        uint32_t buf_size = (uint16_t)
@@ -803,7 +822,7 @@ ionic_rx_clean(struct ionic_qcq *rxq,
        rte_prefetch1((char *)rxm->buf_addr + rxm->data_off);
        rxm->nb_segs = 1; /* cq_desc->num_sg_elems */
        rxm->pkt_len = cq_desc->len;
-       rxm->port = rxq->lif->port_id;
+       rxm->port = rxq->qcq.lif->port_id;
 
        left = cq_desc->len;
 
@@ -820,30 +839,30 @@ ionic_rx_clean(struct ionic_qcq *rxq,
        }
 
        /* RSS */
-       pkt_flags |= PKT_RX_RSS_HASH;
+       pkt_flags |= RTE_MBUF_F_RX_RSS_HASH;
        rxm->hash.rss = cq_desc->rss_hash;
 
        /* Vlan Strip */
        if (cq_desc->csum_flags & IONIC_RXQ_COMP_CSUM_F_VLAN) {
-               pkt_flags |= PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
+               pkt_flags |= RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED;
                rxm->vlan_tci = cq_desc->vlan_tci;
        }
 
        /* Checksum */
        if (cq_desc->csum_flags & IONIC_RXQ_COMP_CSUM_F_CALC) {
                if (cq_desc->csum_flags & IONIC_RXQ_COMP_CSUM_F_IP_OK)
-                       pkt_flags |= PKT_RX_IP_CKSUM_GOOD;
+                       pkt_flags |= RTE_MBUF_F_RX_IP_CKSUM_GOOD;
                else if (cq_desc->csum_flags & IONIC_RXQ_COMP_CSUM_F_IP_BAD)
-                       pkt_flags |= PKT_RX_IP_CKSUM_BAD;
+                       pkt_flags |= RTE_MBUF_F_RX_IP_CKSUM_BAD;
 
                if ((cq_desc->csum_flags & IONIC_RXQ_COMP_CSUM_F_TCP_OK) ||
                        (cq_desc->csum_flags & IONIC_RXQ_COMP_CSUM_F_UDP_OK))
-                       pkt_flags |= PKT_RX_L4_CKSUM_GOOD;
+                       pkt_flags |= RTE_MBUF_F_RX_L4_CKSUM_GOOD;
                else if ((cq_desc->csum_flags &
                                IONIC_RXQ_COMP_CSUM_F_TCP_BAD) ||
                                (cq_desc->csum_flags &
                                IONIC_RXQ_COMP_CSUM_F_UDP_BAD))
-                       pkt_flags |= PKT_RX_L4_CKSUM_BAD;
+                       pkt_flags |= RTE_MBUF_F_RX_L4_CKSUM_BAD;
        }
 
        rxm->ol_flags = pkt_flags;
@@ -881,6 +900,7 @@ ionic_rx_clean(struct ionic_qcq *rxq,
                                pkt_type = RTE_PTYPE_L2_ETHER_ARP;
                        else
                                pkt_type = RTE_PTYPE_UNKNOWN;
+                       stats->mtods++;
                        break;
                }
        }
@@ -905,21 +925,23 @@ ionic_rx_recycle(struct ionic_queue *q, uint32_t q_desc_index,
        new->addr = old->addr;
        new->len = old->len;
 
-       ionic_q_post(q, true, mbuf);
+       q->info[q->head_idx] = mbuf;
+
+       q->head_idx = Q_NEXT_TO_POST(q, 1);
+
+       ionic_q_flush(q);
 }
 
 static __rte_always_inline int
-ionic_rx_fill(struct ionic_qcq *rxq, uint32_t len)
+ionic_rx_fill(struct ionic_rx_qcq *rxq, uint32_t len)
 {
-       struct ionic_queue *q = &rxq->q;
-       struct ionic_rxq_desc *desc_base = q->base;
-       struct ionic_rxq_sg_desc *sg_desc_base = q->sg_base;
-       struct ionic_rxq_desc *desc;
-       struct ionic_rxq_sg_desc *sg_desc;
+       struct ionic_queue *q = &rxq->qcq.q;
+       struct ionic_rxq_desc *desc, *desc_base = q->base;
+       struct ionic_rxq_sg_desc *sg_desc, *sg_desc_base = q->sg_base;
        struct ionic_rxq_sg_elem *elem;
+       void **info;
        rte_iova_t dma_addr;
        uint32_t i, j, nsegs, buf_size, size;
-       bool ring_doorbell;
 
        buf_size = (uint16_t)(rte_pktmbuf_data_room_size(rxq->mb_pool) -
                RTE_PKTMBUF_HEADROOM);
@@ -934,6 +956,8 @@ ionic_rx_fill(struct ionic_qcq *rxq, uint32_t len)
                        return -ENOMEM;
                }
 
+               info = IONIC_INFO_PTR(q, q->head_idx);
+
                nsegs = (len + buf_size - 1) / buf_size;
 
                desc = &desc_base[q->head_idx];
@@ -973,12 +997,13 @@ ionic_rx_fill(struct ionic_qcq *rxq, uint32_t len)
                        IONIC_PRINT(ERR, "Rx SG size is not sufficient (%d < %d)",
                                size, len);
 
-               ring_doorbell = ((q->head_idx + 1) &
-                       IONIC_RX_RING_DOORBELL_STRIDE) == 0;
+               info[0] = rxm;
 
-               ionic_q_post(q, ring_doorbell, rxm);
+               q->head_idx = Q_NEXT_TO_POST(q, 1);
        }
 
+       ionic_q_flush(q);
+
        return 0;
 }
 
@@ -988,9 +1013,9 @@ ionic_rx_fill(struct ionic_qcq *rxq, uint32_t len)
 int __rte_cold
 ionic_dev_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
 {
-       uint32_t frame_size = eth_dev->data->dev_conf.rxmode.max_rx_pkt_len;
+       uint32_t frame_size = eth_dev->data->mtu + RTE_ETHER_HDR_LEN;
        uint8_t *rx_queue_state = eth_dev->data->rx_queue_state;
-       struct ionic_qcq *rxq;
+       struct ionic_rx_qcq *rxq;
        int err;
 
        if (rx_queue_state[rx_queue_id] == RTE_ETH_QUEUE_STATE_STARTED) {
@@ -1002,14 +1027,14 @@ ionic_dev_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
        rxq = eth_dev->data->rx_queues[rx_queue_id];
 
        IONIC_PRINT(DEBUG, "Starting RX queue %u, %u descs (size: %u)",
-               rx_queue_id, rxq->q.num_descs, frame_size);
+               rx_queue_id, rxq->qcq.q.num_descs, frame_size);
 
        if (!(rxq->flags & IONIC_QCQ_F_INITED)) {
                err = ionic_lif_rxq_init(rxq);
                if (err)
                        return err;
        } else {
-               ionic_qcq_enable(rxq);
+               ionic_qcq_enable(&rxq->qcq);
        }
 
        /* Allocate buffers for descriptor rings */
@@ -1025,13 +1050,12 @@ ionic_dev_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
 }
 
 static __rte_always_inline void
-ionic_rxq_service(struct ionic_qcq *rxq, uint32_t work_to_do,
+ionic_rxq_service(struct ionic_rx_qcq *rxq, uint32_t work_to_do,
                void *service_cb_arg)
 {
-       struct ionic_cq *cq = &rxq->cq;
-       struct ionic_queue *q = &rxq->q;
-       struct ionic_rxq_comp *cq_desc_base = cq->base;
-       struct ionic_rxq_comp *cq_desc;
+       struct ionic_cq *cq = &rxq->qcq.cq;
+       struct ionic_queue *q = &rxq->qcq.q;
+       struct ionic_rxq_comp *cq_desc, *cq_desc_base = cq->base;
        bool more;
        uint32_t curr_q_tail_idx, curr_cq_tail_idx;
        uint32_t work_done = 0;
@@ -1080,7 +1104,7 @@ ionic_rxq_service(struct ionic_qcq *rxq, uint32_t work_to_do,
 int __rte_cold
 ionic_dev_rx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
 {
-       struct ionic_qcq *rxq;
+       struct ionic_rx_qcq *rxq;
 
        IONIC_PRINT(DEBUG, "Stopping RX queue %u", rx_queue_id);
 
@@ -1089,7 +1113,7 @@ ionic_dev_rx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
        eth_dev->data->rx_queue_state[rx_queue_id] =
                RTE_ETH_QUEUE_STATE_STOPPED;
 
-       ionic_qcq_disable(rxq);
+       ionic_qcq_disable(&rxq->qcq);
 
        /* Flush */
        ionic_rxq_service(rxq, -1, NULL);
@@ -1101,9 +1125,9 @@ uint16_t
 ionic_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                uint16_t nb_pkts)
 {
-       struct ionic_qcq *rxq = (struct ionic_qcq *)rx_queue;
+       struct ionic_rx_qcq *rxq = rx_queue;
        uint32_t frame_size =
-               rxq->lif->eth_dev->data->dev_conf.rxmode.max_rx_pkt_len;
+               rxq->qcq.lif->eth_dev->data->mtu + RTE_ETHER_HDR_LEN;
        struct ionic_rx_service service_cb_arg;
 
        service_cb_arg.rx_pkts = rx_pkts;