net: add rte prefix to ether defines
[dpdk.git] / drivers / net / iavf / iavf_rxtx.c
index 988a68f..3b83605 100644 (file)
@@ -92,11 +92,11 @@ check_tx_thresh(uint16_t nb_desc, uint16_t tx_rs_thresh,
        return 0;
 }
 
-#ifdef RTE_LIBRTE_AVF_INC_VECTOR
+#ifdef RTE_LIBRTE_IAVF_INC_VECTOR
 static inline bool
-check_rx_vec_allow(struct avf_rx_queue *rxq)
+check_rx_vec_allow(struct iavf_rx_queue *rxq)
 {
-       if (rxq->rx_free_thresh >= AVF_VPMD_RX_MAX_BURST &&
+       if (rxq->rx_free_thresh >= IAVF_VPMD_RX_MAX_BURST &&
            rxq->nb_rx_desc % rxq->rx_free_thresh == 0) {
                PMD_INIT_LOG(DEBUG, "Vector Rx can be enabled on this rxq.");
                return TRUE;
@@ -107,11 +107,11 @@ check_rx_vec_allow(struct avf_rx_queue *rxq)
 }
 
 static inline bool
-check_tx_vec_allow(struct avf_tx_queue *txq)
+check_tx_vec_allow(struct iavf_tx_queue *txq)
 {
-       if (!(txq->offloads & AVF_NO_VECTOR_FLAGS) &&
-           txq->rs_thresh >= AVF_VPMD_TX_MAX_BURST &&
-           txq->rs_thresh <= AVF_VPMD_TX_MAX_FREE_BUF) {
+       if (!(txq->offloads & IAVF_NO_VECTOR_FLAGS) &&
+           txq->rs_thresh >= IAVF_VPMD_TX_MAX_BURST &&
+           txq->rs_thresh <= IAVF_VPMD_TX_MAX_FREE_BUF) {
                PMD_INIT_LOG(DEBUG, "Vector tx can be enabled on this txq.");
                return TRUE;
        }
@@ -121,15 +121,15 @@ check_tx_vec_allow(struct avf_tx_queue *txq)
 #endif
 
 static inline bool
-check_rx_bulk_allow(struct avf_rx_queue *rxq)
+check_rx_bulk_allow(struct iavf_rx_queue *rxq)
 {
        int ret = TRUE;
 
-       if (!(rxq->rx_free_thresh >= AVF_RX_MAX_BURST)) {
+       if (!(rxq->rx_free_thresh >= IAVF_RX_MAX_BURST)) {
                PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions: "
                             "rxq->rx_free_thresh=%d, "
-                            "AVF_RX_MAX_BURST=%d",
-                            rxq->rx_free_thresh, AVF_RX_MAX_BURST);
+                            "IAVF_RX_MAX_BURST=%d",
+                            rxq->rx_free_thresh, IAVF_RX_MAX_BURST);
                ret = FALSE;
        } else if (rxq->nb_rx_desc % rxq->rx_free_thresh != 0) {
                PMD_INIT_LOG(DEBUG, "Rx Burst Bulk Alloc Preconditions: "
@@ -142,21 +142,21 @@ check_rx_bulk_allow(struct avf_rx_queue *rxq)
 }
 
 static inline void
-reset_rx_queue(struct avf_rx_queue *rxq)
+reset_rx_queue(struct iavf_rx_queue *rxq)
 {
        uint16_t len, i;
 
        if (!rxq)
                return;
 
-       len = rxq->nb_rx_desc + AVF_RX_MAX_BURST;
+       len = rxq->nb_rx_desc + IAVF_RX_MAX_BURST;
 
-       for (i = 0; i < len * sizeof(union avf_rx_desc); i++)
+       for (i = 0; i < len * sizeof(union iavf_rx_desc); i++)
                ((volatile char *)rxq->rx_ring)[i] = 0;
 
        memset(&rxq->fake_mbuf, 0x0, sizeof(rxq->fake_mbuf));
 
-       for (i = 0; i < AVF_RX_MAX_BURST; i++)
+       for (i = 0; i < IAVF_RX_MAX_BURST; i++)
                rxq->sw_ring[rxq->nb_rx_desc + i] = &rxq->fake_mbuf;
 
        /* for rx bulk */
@@ -171,9 +171,9 @@ reset_rx_queue(struct avf_rx_queue *rxq)
 }
 
 static inline void
-reset_tx_queue(struct avf_tx_queue *txq)
+reset_tx_queue(struct iavf_tx_queue *txq)
 {
-       struct avf_tx_entry *txe;
+       struct iavf_tx_entry *txe;
        uint16_t i, prev, size;
 
        if (!txq) {
@@ -182,14 +182,14 @@ reset_tx_queue(struct avf_tx_queue *txq)
        }
 
        txe = txq->sw_ring;
-       size = sizeof(struct avf_tx_desc) * txq->nb_tx_desc;
+       size = sizeof(struct iavf_tx_desc) * txq->nb_tx_desc;
        for (i = 0; i < size; i++)
                ((volatile char *)txq->tx_ring)[i] = 0;
 
        prev = (uint16_t)(txq->nb_tx_desc - 1);
        for (i = 0; i < txq->nb_tx_desc; i++) {
                txq->tx_ring[i].cmd_type_offset_bsz =
-                       rte_cpu_to_le_64(AVF_TX_DESC_DTYPE_DESC_DONE);
+                       rte_cpu_to_le_64(IAVF_TX_DESC_DTYPE_DESC_DONE);
                txe[i].mbuf =  NULL;
                txe[i].last_id = i;
                txe[prev].next_id = i;
@@ -207,9 +207,9 @@ reset_tx_queue(struct avf_tx_queue *txq)
 }
 
 static int
-alloc_rxq_mbufs(struct avf_rx_queue *rxq)
+alloc_rxq_mbufs(struct iavf_rx_queue *rxq)
 {
-       volatile union avf_rx_desc *rxd;
+       volatile union iavf_rx_desc *rxd;
        struct rte_mbuf *mbuf = NULL;
        uint64_t dma_addr;
        uint16_t i;
@@ -233,7 +233,7 @@ alloc_rxq_mbufs(struct avf_rx_queue *rxq)
                rxd = &rxq->rx_ring[i];
                rxd->read.pkt_addr = dma_addr;
                rxd->read.hdr_addr = 0;
-#ifndef RTE_LIBRTE_AVF_16BYTE_RX_DESC
+#ifndef RTE_LIBRTE_IAVF_16BYTE_RX_DESC
                rxd->read.rsvd1 = 0;
                rxd->read.rsvd2 = 0;
 #endif
@@ -245,7 +245,7 @@ alloc_rxq_mbufs(struct avf_rx_queue *rxq)
 }
 
 static inline void
-release_rxq_mbufs(struct avf_rx_queue *rxq)
+release_rxq_mbufs(struct iavf_rx_queue *rxq)
 {
        uint16_t i;
 
@@ -272,7 +272,7 @@ release_rxq_mbufs(struct avf_rx_queue *rxq)
 }
 
 static inline void
-release_txq_mbufs(struct avf_tx_queue *txq)
+release_txq_mbufs(struct iavf_tx_queue *txq)
 {
        uint16_t i;
 
@@ -289,24 +289,24 @@ release_txq_mbufs(struct avf_tx_queue *txq)
        }
 }
 
-static const struct avf_rxq_ops def_rxq_ops = {
+static const struct iavf_rxq_ops def_rxq_ops = {
        .release_mbufs = release_rxq_mbufs,
 };
 
-static const struct avf_txq_ops def_txq_ops = {
+static const struct iavf_txq_ops def_txq_ops = {
        .release_mbufs = release_txq_mbufs,
 };
 
 int
-avf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
+iavf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
                       uint16_t nb_desc, unsigned int socket_id,
                       const struct rte_eth_rxconf *rx_conf,
                       struct rte_mempool *mp)
 {
-       struct avf_hw *hw = AVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
-       struct avf_adapter *ad =
-               AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
-       struct avf_rx_queue *rxq;
+       struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+       struct iavf_adapter *ad =
+               IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+       struct iavf_rx_queue *rxq;
        const struct rte_memzone *mz;
        uint32_t ring_size;
        uint16_t len;
@@ -314,9 +314,9 @@ avf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
 
        PMD_INIT_FUNC_TRACE();
 
-       if (nb_desc % AVF_ALIGN_RING_DESC != 0 ||
-           nb_desc > AVF_MAX_RING_DESC ||
-           nb_desc < AVF_MIN_RING_DESC) {
+       if (nb_desc % IAVF_ALIGN_RING_DESC != 0 ||
+           nb_desc > IAVF_MAX_RING_DESC ||
+           nb_desc < IAVF_MIN_RING_DESC) {
                PMD_INIT_LOG(ERR, "Number (%u) of receive descriptors is "
                             "invalid", nb_desc);
                return -EINVAL;
@@ -324,20 +324,20 @@ avf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
 
        /* Check free threshold */
        rx_free_thresh = (rx_conf->rx_free_thresh == 0) ?
-                        AVF_DEFAULT_RX_FREE_THRESH :
+                        IAVF_DEFAULT_RX_FREE_THRESH :
                         rx_conf->rx_free_thresh;
        if (check_rx_thresh(nb_desc, rx_free_thresh) != 0)
                return -EINVAL;
 
        /* Free memory if needed */
        if (dev->data->rx_queues[queue_idx]) {
-               avf_dev_rx_queue_release(dev->data->rx_queues[queue_idx]);
+               iavf_dev_rx_queue_release(dev->data->rx_queues[queue_idx]);
                dev->data->rx_queues[queue_idx] = NULL;
        }
 
        /* Allocate the rx queue data structure */
-       rxq = rte_zmalloc_socket("avf rxq",
-                                sizeof(struct avf_rx_queue),
+       rxq = rte_zmalloc_socket("iavf rxq",
+                                sizeof(struct iavf_rx_queue),
                                 RTE_CACHE_LINE_SIZE,
                                 socket_id);
        if (!rxq) {
@@ -356,12 +356,12 @@ avf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
        rxq->rx_hdr_len = 0;
 
        len = rte_pktmbuf_data_room_size(rxq->mp) - RTE_PKTMBUF_HEADROOM;
-       rxq->rx_buf_len = RTE_ALIGN(len, (1 << AVF_RXQ_CTX_DBUFF_SHIFT));
+       rxq->rx_buf_len = RTE_ALIGN(len, (1 << IAVF_RXQ_CTX_DBUFF_SHIFT));
 
        /* Allocate the software ring. */
-       len = nb_desc + AVF_RX_MAX_BURST;
+       len = nb_desc + IAVF_RX_MAX_BURST;
        rxq->sw_ring =
-               rte_zmalloc_socket("avf rx sw ring",
+               rte_zmalloc_socket("iavf rx sw ring",
                                   sizeof(struct rte_mbuf *) * len,
                                   RTE_CACHE_LINE_SIZE,
                                   socket_id);
@@ -374,11 +374,11 @@ avf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
        /* Allocate the maximun number of RX ring hardware descriptor with
         * a liitle more to support bulk allocate.
         */
-       len = AVF_MAX_RING_DESC + AVF_RX_MAX_BURST;
-       ring_size = RTE_ALIGN(len * sizeof(union avf_rx_desc),
-                             AVF_DMA_MEM_ALIGN);
+       len = IAVF_MAX_RING_DESC + IAVF_RX_MAX_BURST;
+       ring_size = RTE_ALIGN(len * sizeof(union iavf_rx_desc),
+                             IAVF_DMA_MEM_ALIGN);
        mz = rte_eth_dma_zone_reserve(dev, "rx_ring", queue_idx,
-                                     ring_size, AVF_RING_BASE_ALIGN,
+                                     ring_size, IAVF_RING_BASE_ALIGN,
                                      socket_id);
        if (!mz) {
                PMD_INIT_LOG(ERR, "Failed to reserve DMA memory for RX");
@@ -389,13 +389,13 @@ avf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
        /* Zero all the descriptors in the ring. */
        memset(mz->addr, 0, ring_size);
        rxq->rx_ring_phys_addr = mz->iova;
-       rxq->rx_ring = (union avf_rx_desc *)mz->addr;
+       rxq->rx_ring = (union iavf_rx_desc *)mz->addr;
 
        rxq->mz = mz;
        reset_rx_queue(rxq);
        rxq->q_set = TRUE;
        dev->data->rx_queues[queue_idx] = rxq;
-       rxq->qrx_tail = hw->hw_addr + AVF_QRX_TAIL1(rxq->queue_id);
+       rxq->qrx_tail = hw->hw_addr + IAVF_QRX_TAIL1(rxq->queue_id);
        rxq->ops = &def_rxq_ops;
 
        if (check_rx_bulk_allow(rxq) == TRUE) {
@@ -411,7 +411,7 @@ avf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
                ad->rx_bulk_alloc_allowed = false;
        }
 
-#ifdef RTE_LIBRTE_AVF_INC_VECTOR
+#ifdef RTE_LIBRTE_IAVF_INC_VECTOR
        if (check_rx_vec_allow(rxq) == FALSE)
                ad->rx_vec_allowed = false;
 #endif
@@ -419,14 +419,14 @@ avf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
 }
 
 int
-avf_dev_tx_queue_setup(struct rte_eth_dev *dev,
+iavf_dev_tx_queue_setup(struct rte_eth_dev *dev,
                       uint16_t queue_idx,
                       uint16_t nb_desc,
                       unsigned int socket_id,
                       const struct rte_eth_txconf *tx_conf)
 {
-       struct avf_hw *hw = AVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
-       struct avf_tx_queue *txq;
+       struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+       struct iavf_tx_queue *txq;
        const struct rte_memzone *mz;
        uint32_t ring_size;
        uint16_t tx_rs_thresh, tx_free_thresh;
@@ -436,9 +436,9 @@ avf_dev_tx_queue_setup(struct rte_eth_dev *dev,
 
        offloads = tx_conf->offloads | dev->data->dev_conf.txmode.offloads;
 
-       if (nb_desc % AVF_ALIGN_RING_DESC != 0 ||
-           nb_desc > AVF_MAX_RING_DESC ||
-           nb_desc < AVF_MIN_RING_DESC) {
+       if (nb_desc % IAVF_ALIGN_RING_DESC != 0 ||
+           nb_desc > IAVF_MAX_RING_DESC ||
+           nb_desc < IAVF_MIN_RING_DESC) {
                PMD_INIT_LOG(ERR, "Number (%u) of transmit descriptors is "
                            "invalid", nb_desc);
                return -EINVAL;
@@ -452,13 +452,13 @@ avf_dev_tx_queue_setup(struct rte_eth_dev *dev,
 
        /* Free memory if needed. */
        if (dev->data->tx_queues[queue_idx]) {
-               avf_dev_tx_queue_release(dev->data->tx_queues[queue_idx]);
+               iavf_dev_tx_queue_release(dev->data->tx_queues[queue_idx]);
                dev->data->tx_queues[queue_idx] = NULL;
        }
 
        /* Allocate the TX queue data structure. */
-       txq = rte_zmalloc_socket("avf txq",
-                                sizeof(struct avf_tx_queue),
+       txq = rte_zmalloc_socket("iavf txq",
+                                sizeof(struct iavf_tx_queue),
                                 RTE_CACHE_LINE_SIZE,
                                 socket_id);
        if (!txq) {
@@ -477,8 +477,8 @@ avf_dev_tx_queue_setup(struct rte_eth_dev *dev,
 
        /* Allocate software ring */
        txq->sw_ring =
-               rte_zmalloc_socket("avf tx sw ring",
-                                  sizeof(struct avf_tx_entry) * nb_desc,
+               rte_zmalloc_socket("iavf tx sw ring",
+                                  sizeof(struct iavf_tx_entry) * nb_desc,
                                   RTE_CACHE_LINE_SIZE,
                                   socket_id);
        if (!txq->sw_ring) {
@@ -488,10 +488,10 @@ avf_dev_tx_queue_setup(struct rte_eth_dev *dev,
        }
 
        /* Allocate TX hardware ring descriptors. */
-       ring_size = sizeof(struct avf_tx_desc) * AVF_MAX_RING_DESC;
-       ring_size = RTE_ALIGN(ring_size, AVF_DMA_MEM_ALIGN);
+       ring_size = sizeof(struct iavf_tx_desc) * IAVF_MAX_RING_DESC;
+       ring_size = RTE_ALIGN(ring_size, IAVF_DMA_MEM_ALIGN);
        mz = rte_eth_dma_zone_reserve(dev, "tx_ring", queue_idx,
-                                     ring_size, AVF_RING_BASE_ALIGN,
+                                     ring_size, IAVF_RING_BASE_ALIGN,
                                      socket_id);
        if (!mz) {
                PMD_INIT_LOG(ERR, "Failed to reserve DMA memory for TX");
@@ -500,19 +500,19 @@ avf_dev_tx_queue_setup(struct rte_eth_dev *dev,
                return -ENOMEM;
        }
        txq->tx_ring_phys_addr = mz->iova;
-       txq->tx_ring = (struct avf_tx_desc *)mz->addr;
+       txq->tx_ring = (struct iavf_tx_desc *)mz->addr;
 
        txq->mz = mz;
        reset_tx_queue(txq);
        txq->q_set = TRUE;
        dev->data->tx_queues[queue_idx] = txq;
-       txq->qtx_tail = hw->hw_addr + AVF_QTX_TAIL1(queue_idx);
+       txq->qtx_tail = hw->hw_addr + IAVF_QTX_TAIL1(queue_idx);
        txq->ops = &def_txq_ops;
 
-#ifdef RTE_LIBRTE_AVF_INC_VECTOR
+#ifdef RTE_LIBRTE_IAVF_INC_VECTOR
        if (check_tx_vec_allow(txq) == FALSE) {
-               struct avf_adapter *ad =
-                       AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+               struct iavf_adapter *ad =
+                       IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
                ad->tx_vec_allowed = false;
        }
 #endif
@@ -521,12 +521,12 @@ avf_dev_tx_queue_setup(struct rte_eth_dev *dev,
 }
 
 int
-avf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
+iavf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
 {
-       struct avf_adapter *adapter =
-               AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
-       struct avf_hw *hw = AVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
-       struct avf_rx_queue *rxq;
+       struct iavf_adapter *adapter =
+               IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+       struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+       struct iavf_rx_queue *rxq;
        int err = 0;
 
        PMD_DRV_FUNC_TRACE();
@@ -545,11 +545,11 @@ avf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
        rte_wmb();
 
        /* Init the RX tail register. */
-       AVF_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
-       AVF_WRITE_FLUSH(hw);
+       IAVF_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
+       IAVF_WRITE_FLUSH(hw);
 
        /* Ready to switch the queue on */
-       err = avf_switch_queue(adapter, rx_queue_id, TRUE, TRUE);
+       err = iavf_switch_queue(adapter, rx_queue_id, TRUE, TRUE);
        if (err)
                PMD_DRV_LOG(ERR, "Failed to switch RX queue %u on",
                            rx_queue_id);
@@ -561,12 +561,12 @@ avf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
 }
 
 int
-avf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
+iavf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
 {
-       struct avf_adapter *adapter =
-               AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
-       struct avf_hw *hw = AVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
-       struct avf_tx_queue *txq;
+       struct iavf_adapter *adapter =
+               IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+       struct iavf_hw *hw = IAVF_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+       struct iavf_tx_queue *txq;
        int err = 0;
 
        PMD_DRV_FUNC_TRACE();
@@ -577,11 +577,11 @@ avf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
        txq = dev->data->tx_queues[tx_queue_id];
 
        /* Init the RX tail register. */
-       AVF_PCI_REG_WRITE(txq->qtx_tail, 0);
-       AVF_WRITE_FLUSH(hw);
+       IAVF_PCI_REG_WRITE(txq->qtx_tail, 0);
+       IAVF_WRITE_FLUSH(hw);
 
        /* Ready to switch the queue on */
-       err = avf_switch_queue(adapter, tx_queue_id, FALSE, TRUE);
+       err = iavf_switch_queue(adapter, tx_queue_id, FALSE, TRUE);
 
        if (err)
                PMD_DRV_LOG(ERR, "Failed to switch TX queue %u on",
@@ -594,11 +594,11 @@ avf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
 }
 
 int
-avf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
+iavf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
 {
-       struct avf_adapter *adapter =
-               AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
-       struct avf_rx_queue *rxq;
+       struct iavf_adapter *adapter =
+               IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+       struct iavf_rx_queue *rxq;
        int err;
 
        PMD_DRV_FUNC_TRACE();
@@ -606,7 +606,7 @@ avf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
        if (rx_queue_id >= dev->data->nb_rx_queues)
                return -EINVAL;
 
-       err = avf_switch_queue(adapter, rx_queue_id, TRUE, FALSE);
+       err = iavf_switch_queue(adapter, rx_queue_id, TRUE, FALSE);
        if (err) {
                PMD_DRV_LOG(ERR, "Failed to switch RX queue %u off",
                            rx_queue_id);
@@ -622,11 +622,11 @@ avf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
 }
 
 int
-avf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
+iavf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
 {
-       struct avf_adapter *adapter =
-               AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
-       struct avf_tx_queue *txq;
+       struct iavf_adapter *adapter =
+               IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+       struct iavf_tx_queue *txq;
        int err;
 
        PMD_DRV_FUNC_TRACE();
@@ -634,7 +634,7 @@ avf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
        if (tx_queue_id >= dev->data->nb_tx_queues)
                return -EINVAL;
 
-       err = avf_switch_queue(adapter, tx_queue_id, FALSE, FALSE);
+       err = iavf_switch_queue(adapter, tx_queue_id, FALSE, FALSE);
        if (err) {
                PMD_DRV_LOG(ERR, "Failed to switch TX queue %u off",
                            tx_queue_id);
@@ -650,9 +650,9 @@ avf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
 }
 
 void
-avf_dev_rx_queue_release(void *rxq)
+iavf_dev_rx_queue_release(void *rxq)
 {
-       struct avf_rx_queue *q = (struct avf_rx_queue *)rxq;
+       struct iavf_rx_queue *q = (struct iavf_rx_queue *)rxq;
 
        if (!q)
                return;
@@ -664,9 +664,9 @@ avf_dev_rx_queue_release(void *rxq)
 }
 
 void
-avf_dev_tx_queue_release(void *txq)
+iavf_dev_tx_queue_release(void *txq)
 {
-       struct avf_tx_queue *q = (struct avf_tx_queue *)txq;
+       struct iavf_tx_queue *q = (struct iavf_tx_queue *)txq;
 
        if (!q)
                return;
@@ -678,16 +678,16 @@ avf_dev_tx_queue_release(void *txq)
 }
 
 void
-avf_stop_queues(struct rte_eth_dev *dev)
+iavf_stop_queues(struct rte_eth_dev *dev)
 {
-       struct avf_adapter *adapter =
-               AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
-       struct avf_rx_queue *rxq;
-       struct avf_tx_queue *txq;
+       struct iavf_adapter *adapter =
+               IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+       struct iavf_rx_queue *rxq;
+       struct iavf_tx_queue *txq;
        int ret, i;
 
        /* Stop All queues */
-       ret = avf_disable_queues(adapter);
+       ret = iavf_disable_queues(adapter);
        if (ret)
                PMD_DRV_LOG(WARNING, "Fail to stop queues");
 
@@ -710,10 +710,10 @@ avf_stop_queues(struct rte_eth_dev *dev)
 }
 
 static inline void
-avf_rxd_to_vlan_tci(struct rte_mbuf *mb, volatile union avf_rx_desc *rxdp)
+iavf_rxd_to_vlan_tci(struct rte_mbuf *mb, volatile union iavf_rx_desc *rxdp)
 {
        if (rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len) &
-               (1 << AVF_RX_DESC_STATUS_L2TAG1P_SHIFT)) {
+               (1 << IAVF_RX_DESC_STATUS_L2TAG1P_SHIFT)) {
                mb->ol_flags |= PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
                mb->vlan_tci =
                        rte_le_to_cpu_16(rxdp->wb.qword0.lo_dword.l2tag1);
@@ -724,29 +724,29 @@ avf_rxd_to_vlan_tci(struct rte_mbuf *mb, volatile union avf_rx_desc *rxdp)
 
 /* Translate the rx descriptor status and error fields to pkt flags */
 static inline uint64_t
-avf_rxd_to_pkt_flags(uint64_t qword)
+iavf_rxd_to_pkt_flags(uint64_t qword)
 {
        uint64_t flags;
-       uint64_t error_bits = (qword >> AVF_RXD_QW1_ERROR_SHIFT);
+       uint64_t error_bits = (qword >> IAVF_RXD_QW1_ERROR_SHIFT);
 
-#define AVF_RX_ERR_BITS 0x3f
+#define IAVF_RX_ERR_BITS 0x3f
 
        /* Check if RSS_HASH */
-       flags = (((qword >> AVF_RX_DESC_STATUS_FLTSTAT_SHIFT) &
-                                       AVF_RX_DESC_FLTSTAT_RSS_HASH) ==
-                       AVF_RX_DESC_FLTSTAT_RSS_HASH) ? PKT_RX_RSS_HASH : 0;
+       flags = (((qword >> IAVF_RX_DESC_STATUS_FLTSTAT_SHIFT) &
+                                       IAVF_RX_DESC_FLTSTAT_RSS_HASH) ==
+                       IAVF_RX_DESC_FLTSTAT_RSS_HASH) ? PKT_RX_RSS_HASH : 0;
 
-       if (likely((error_bits & AVF_RX_ERR_BITS) == 0)) {
+       if (likely((error_bits & IAVF_RX_ERR_BITS) == 0)) {
                flags |= (PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD);
                return flags;
        }
 
-       if (unlikely(error_bits & (1 << AVF_RX_DESC_ERROR_IPE_SHIFT)))
+       if (unlikely(error_bits & (1 << IAVF_RX_DESC_ERROR_IPE_SHIFT)))
                flags |= PKT_RX_IP_CKSUM_BAD;
        else
                flags |= PKT_RX_IP_CKSUM_GOOD;
 
-       if (unlikely(error_bits & (1 << AVF_RX_DESC_ERROR_L4E_SHIFT)))
+       if (unlikely(error_bits & (1 << IAVF_RX_DESC_ERROR_L4E_SHIFT)))
                flags |= PKT_RX_L4_CKSUM_BAD;
        else
                flags |= PKT_RX_L4_CKSUM_GOOD;
@@ -758,12 +758,12 @@ avf_rxd_to_pkt_flags(uint64_t qword)
 
 /* implement recv_pkts */
 uint16_t
-avf_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
+iavf_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
 {
-       volatile union avf_rx_desc *rx_ring;
-       volatile union avf_rx_desc *rxdp;
-       struct avf_rx_queue *rxq;
-       union avf_rx_desc rxd;
+       volatile union iavf_rx_desc *rx_ring;
+       volatile union iavf_rx_desc *rxdp;
+       struct iavf_rx_queue *rxq;
+       union iavf_rx_desc rxd;
        struct rte_mbuf *rxe;
        struct rte_eth_dev *dev;
        struct rte_mbuf *rxm;
@@ -804,13 +804,13 @@ avf_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
        while (nb_rx < nb_pkts) {
                rxdp = &rx_ring[rx_id];
                qword1 = rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len);
-               rx_status = (qword1 & AVF_RXD_QW1_STATUS_MASK) >>
-                           AVF_RXD_QW1_STATUS_SHIFT;
+               rx_status = (qword1 & IAVF_RXD_QW1_STATUS_MASK) >>
+                           IAVF_RXD_QW1_STATUS_SHIFT;
 
                /* Check the DD bit first */
-               if (!(rx_status & (1 << AVF_RX_DESC_STATUS_DD_SHIFT)))
+               if (!(rx_status & (1 << IAVF_RX_DESC_STATUS_DD_SHIFT)))
                        break;
-               AVF_DUMP_RX_DESC(rxq, rxdp, rx_id);
+               IAVF_DUMP_RX_DESC(rxq, rxdp, rx_id);
 
                nmb = rte_mbuf_raw_alloc(rxq->mp);
                if (unlikely(!nmb)) {
@@ -846,8 +846,8 @@ avf_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
                rxdp->read.hdr_addr = 0;
                rxdp->read.pkt_addr = dma_addr;
 
-               rx_packet_len = ((qword1 & AVF_RXD_QW1_LENGTH_PBUF_MASK) >>
-                               AVF_RXD_QW1_LENGTH_PBUF_SHIFT) - rxq->crc_len;
+               rx_packet_len = ((qword1 & IAVF_RXD_QW1_LENGTH_PBUF_MASK) >>
+                               IAVF_RXD_QW1_LENGTH_PBUF_SHIFT) - rxq->crc_len;
 
                rxm->data_off = RTE_PKTMBUF_HEADROOM;
                rte_prefetch0(RTE_PTR_ADD(rxm->buf_addr, RTE_PKTMBUF_HEADROOM));
@@ -857,11 +857,11 @@ avf_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
                rxm->data_len = rx_packet_len;
                rxm->port = rxq->port_id;
                rxm->ol_flags = 0;
-               avf_rxd_to_vlan_tci(rxm, &rxd);
-               pkt_flags = avf_rxd_to_pkt_flags(qword1);
+               iavf_rxd_to_vlan_tci(rxm, &rxd);
+               pkt_flags = iavf_rxd_to_pkt_flags(qword1);
                rxm->packet_type =
                        ptype_tbl[(uint8_t)((qword1 &
-                       AVF_RXD_QW1_PTYPE_MASK) >> AVF_RXD_QW1_PTYPE_SHIFT)];
+                       IAVF_RXD_QW1_PTYPE_MASK) >> IAVF_RXD_QW1_PTYPE_SHIFT)];
 
                if (pkt_flags & PKT_RX_RSS_HASH)
                        rxm->hash.rss =
@@ -886,7 +886,7 @@ avf_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
                           rx_id, nb_hold, nb_rx);
                rx_id = (uint16_t)((rx_id == 0) ?
                        (rxq->nb_rx_desc - 1) : (rx_id - 1));
-               AVF_PCI_REG_WRITE(rxq->qrx_tail, rx_id);
+               IAVF_PCI_REG_WRITE(rxq->qrx_tail, rx_id);
                nb_hold = 0;
        }
        rxq->nb_rx_hold = nb_hold;
@@ -896,11 +896,11 @@ avf_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
 
 /* implement recv_scattered_pkts  */
 uint16_t
-avf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
+iavf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                        uint16_t nb_pkts)
 {
-       struct avf_rx_queue *rxq = rx_queue;
-       union avf_rx_desc rxd;
+       struct iavf_rx_queue *rxq = rx_queue;
+       union iavf_rx_desc rxd;
        struct rte_mbuf *rxe;
        struct rte_mbuf *first_seg = rxq->pkt_first_seg;
        struct rte_mbuf *last_seg = rxq->pkt_last_seg;
@@ -913,8 +913,8 @@ avf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
        uint64_t dma_addr;
        uint64_t pkt_flags;
 
-       volatile union avf_rx_desc *rx_ring = rxq->rx_ring;
-       volatile union avf_rx_desc *rxdp;
+       volatile union iavf_rx_desc *rx_ring = rxq->rx_ring;
+       volatile union iavf_rx_desc *rxdp;
        static const uint32_t ptype_tbl[UINT8_MAX + 1] __rte_cache_aligned = {
                /* [0] reserved */
                [1] = RTE_PTYPE_L2_ETHER,
@@ -938,13 +938,13 @@ avf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
        while (nb_rx < nb_pkts) {
                rxdp = &rx_ring[rx_id];
                qword1 = rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len);
-               rx_status = (qword1 & AVF_RXD_QW1_STATUS_MASK) >>
-                           AVF_RXD_QW1_STATUS_SHIFT;
+               rx_status = (qword1 & IAVF_RXD_QW1_STATUS_MASK) >>
+                           IAVF_RXD_QW1_STATUS_SHIFT;
 
                /* Check the DD bit */
-               if (!(rx_status & (1 << AVF_RX_DESC_STATUS_DD_SHIFT)))
+               if (!(rx_status & (1 << IAVF_RX_DESC_STATUS_DD_SHIFT)))
                        break;
-               AVF_DUMP_RX_DESC(rxq, rxdp, rx_id);
+               IAVF_DUMP_RX_DESC(rxq, rxdp, rx_id);
 
                nmb = rte_mbuf_raw_alloc(rxq->mp);
                if (unlikely(!nmb)) {
@@ -982,8 +982,8 @@ avf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                /* Set data buffer address and data length of the mbuf */
                rxdp->read.hdr_addr = 0;
                rxdp->read.pkt_addr = dma_addr;
-               rx_packet_len = (qword1 & AVF_RXD_QW1_LENGTH_PBUF_MASK) >>
-                                AVF_RXD_QW1_LENGTH_PBUF_SHIFT;
+               rx_packet_len = (qword1 & IAVF_RXD_QW1_LENGTH_PBUF_MASK) >>
+                                IAVF_RXD_QW1_LENGTH_PBUF_SHIFT;
                rxm->data_len = rx_packet_len;
                rxm->data_off = RTE_PKTMBUF_HEADROOM;
 
@@ -1009,7 +1009,7 @@ avf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                 * update the pointer to the last mbuf of the current scattered
                 * packet and continue to parse the RX ring.
                 */
-               if (!(rx_status & (1 << AVF_RX_DESC_STATUS_EOF_SHIFT))) {
+               if (!(rx_status & (1 << IAVF_RX_DESC_STATUS_EOF_SHIFT))) {
                        last_seg = rxm;
                        continue;
                }
@@ -1025,26 +1025,26 @@ avf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                 */
                rxm->next = NULL;
                if (unlikely(rxq->crc_len > 0)) {
-                       first_seg->pkt_len -= ETHER_CRC_LEN;
-                       if (rx_packet_len <= ETHER_CRC_LEN) {
+                       first_seg->pkt_len -= RTE_ETHER_CRC_LEN;
+                       if (rx_packet_len <= RTE_ETHER_CRC_LEN) {
                                rte_pktmbuf_free_seg(rxm);
                                first_seg->nb_segs--;
                                last_seg->data_len =
                                        (uint16_t)(last_seg->data_len -
-                                       (ETHER_CRC_LEN - rx_packet_len));
+                                       (RTE_ETHER_CRC_LEN - rx_packet_len));
                                last_seg->next = NULL;
                        } else
                                rxm->data_len = (uint16_t)(rx_packet_len -
-                                                               ETHER_CRC_LEN);
+                                                       RTE_ETHER_CRC_LEN);
                }
 
                first_seg->port = rxq->port_id;
                first_seg->ol_flags = 0;
-               avf_rxd_to_vlan_tci(first_seg, &rxd);
-               pkt_flags = avf_rxd_to_pkt_flags(qword1);
+               iavf_rxd_to_vlan_tci(first_seg, &rxd);
+               pkt_flags = iavf_rxd_to_pkt_flags(qword1);
                first_seg->packet_type =
                        ptype_tbl[(uint8_t)((qword1 &
-                       AVF_RXD_QW1_PTYPE_MASK) >> AVF_RXD_QW1_PTYPE_SHIFT)];
+                       IAVF_RXD_QW1_PTYPE_MASK) >> IAVF_RXD_QW1_PTYPE_SHIFT)];
 
                if (pkt_flags & PKT_RX_RSS_HASH)
                        first_seg->hash.rss =
@@ -1079,7 +1079,7 @@ avf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
                           rx_id, nb_hold, nb_rx);
                rx_id = (uint16_t)(rx_id == 0 ?
                        (rxq->nb_rx_desc - 1) : (rx_id - 1));
-               AVF_PCI_REG_WRITE(rxq->qrx_tail, rx_id);
+               IAVF_PCI_REG_WRITE(rxq->qrx_tail, rx_id);
                nb_hold = 0;
        }
        rxq->nb_rx_hold = nb_hold;
@@ -1087,17 +1087,17 @@ avf_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
        return nb_rx;
 }
 
-#define AVF_LOOK_AHEAD 8
+#define IAVF_LOOK_AHEAD 8
 static inline int
-avf_rx_scan_hw_ring(struct avf_rx_queue *rxq)
+iavf_rx_scan_hw_ring(struct iavf_rx_queue *rxq)
 {
-       volatile union avf_rx_desc *rxdp;
+       volatile union iavf_rx_desc *rxdp;
        struct rte_mbuf **rxep;
        struct rte_mbuf *mb;
        uint16_t pkt_len;
        uint64_t qword1;
        uint32_t rx_status;
-       int32_t s[AVF_LOOK_AHEAD], nb_dd;
+       int32_t s[IAVF_LOOK_AHEAD], nb_dd;
        int32_t i, j, nb_rx = 0;
        uint64_t pkt_flags;
        static const uint32_t ptype_tbl[UINT8_MAX + 1] __rte_cache_aligned = {
@@ -1124,53 +1124,53 @@ avf_rx_scan_hw_ring(struct avf_rx_queue *rxq)
        rxep = &rxq->sw_ring[rxq->rx_tail];
 
        qword1 = rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len);
-       rx_status = (qword1 & AVF_RXD_QW1_STATUS_MASK) >>
-                   AVF_RXD_QW1_STATUS_SHIFT;
+       rx_status = (qword1 & IAVF_RXD_QW1_STATUS_MASK) >>
+                   IAVF_RXD_QW1_STATUS_SHIFT;
 
        /* Make sure there is at least 1 packet to receive */
-       if (!(rx_status & (1 << AVF_RX_DESC_STATUS_DD_SHIFT)))
+       if (!(rx_status & (1 << IAVF_RX_DESC_STATUS_DD_SHIFT)))
                return 0;
 
        /* Scan LOOK_AHEAD descriptors at a time to determine which
         * descriptors reference packets that are ready to be received.
         */
-       for (i = 0; i < AVF_RX_MAX_BURST; i += AVF_LOOK_AHEAD,
-            rxdp += AVF_LOOK_AHEAD, rxep += AVF_LOOK_AHEAD) {
+       for (i = 0; i < IAVF_RX_MAX_BURST; i += IAVF_LOOK_AHEAD,
+            rxdp += IAVF_LOOK_AHEAD, rxep += IAVF_LOOK_AHEAD) {
                /* Read desc statuses backwards to avoid race condition */
-               for (j = AVF_LOOK_AHEAD - 1; j >= 0; j--) {
+               for (j = IAVF_LOOK_AHEAD - 1; j >= 0; j--) {
                        qword1 = rte_le_to_cpu_64(
                                rxdp[j].wb.qword1.status_error_len);
-                       s[j] = (qword1 & AVF_RXD_QW1_STATUS_MASK) >>
-                              AVF_RXD_QW1_STATUS_SHIFT;
+                       s[j] = (qword1 & IAVF_RXD_QW1_STATUS_MASK) >>
+                              IAVF_RXD_QW1_STATUS_SHIFT;
                }
 
                rte_smp_rmb();
 
                /* Compute how many status bits were set */
-               for (j = 0, nb_dd = 0; j < AVF_LOOK_AHEAD; j++)
-                       nb_dd += s[j] & (1 << AVF_RX_DESC_STATUS_DD_SHIFT);
+               for (j = 0, nb_dd = 0; j < IAVF_LOOK_AHEAD; j++)
+                       nb_dd += s[j] & (1 << IAVF_RX_DESC_STATUS_DD_SHIFT);
 
                nb_rx += nb_dd;
 
                /* Translate descriptor info to mbuf parameters */
                for (j = 0; j < nb_dd; j++) {
-                       AVF_DUMP_RX_DESC(rxq, &rxdp[j],
-                                        rxq->rx_tail + i * AVF_LOOK_AHEAD + j);
+                       IAVF_DUMP_RX_DESC(rxq, &rxdp[j],
+                                        rxq->rx_tail + i * IAVF_LOOK_AHEAD + j);
 
                        mb = rxep[j];
                        qword1 = rte_le_to_cpu_64
                                        (rxdp[j].wb.qword1.status_error_len);
-                       pkt_len = ((qword1 & AVF_RXD_QW1_LENGTH_PBUF_MASK) >>
-                                 AVF_RXD_QW1_LENGTH_PBUF_SHIFT) - rxq->crc_len;
+                       pkt_len = ((qword1 & IAVF_RXD_QW1_LENGTH_PBUF_MASK) >>
+                                 IAVF_RXD_QW1_LENGTH_PBUF_SHIFT) - rxq->crc_len;
                        mb->data_len = pkt_len;
                        mb->pkt_len = pkt_len;
                        mb->ol_flags = 0;
-                       avf_rxd_to_vlan_tci(mb, &rxdp[j]);
-                       pkt_flags = avf_rxd_to_pkt_flags(qword1);
+                       iavf_rxd_to_vlan_tci(mb, &rxdp[j]);
+                       pkt_flags = iavf_rxd_to_pkt_flags(qword1);
                        mb->packet_type =
                                ptype_tbl[(uint8_t)((qword1 &
-                               AVF_RXD_QW1_PTYPE_MASK) >>
-                               AVF_RXD_QW1_PTYPE_SHIFT)];
+                               IAVF_RXD_QW1_PTYPE_MASK) >>
+                               IAVF_RXD_QW1_PTYPE_SHIFT)];
 
                        if (pkt_flags & PKT_RX_RSS_HASH)
                                mb->hash.rss = rte_le_to_cpu_32(
@@ -1179,10 +1179,10 @@ avf_rx_scan_hw_ring(struct avf_rx_queue *rxq)
                        mb->ol_flags |= pkt_flags;
                }
 
-               for (j = 0; j < AVF_LOOK_AHEAD; j++)
+               for (j = 0; j < IAVF_LOOK_AHEAD; j++)
                        rxq->rx_stage[i + j] = rxep[j];
 
-               if (nb_dd != AVF_LOOK_AHEAD)
+               if (nb_dd != IAVF_LOOK_AHEAD)
                        break;
        }
 
@@ -1194,7 +1194,7 @@ avf_rx_scan_hw_ring(struct avf_rx_queue *rxq)
 }
 
 static inline uint16_t
-avf_rx_fill_from_stage(struct avf_rx_queue *rxq,
+iavf_rx_fill_from_stage(struct iavf_rx_queue *rxq,
                       struct rte_mbuf **rx_pkts,
                       uint16_t nb_pkts)
 {
@@ -1213,9 +1213,9 @@ avf_rx_fill_from_stage(struct avf_rx_queue *rxq,
 }
 
 static inline int
-avf_rx_alloc_bufs(struct avf_rx_queue *rxq)
+iavf_rx_alloc_bufs(struct iavf_rx_queue *rxq)
 {
-       volatile union avf_rx_desc *rxdp;
+       volatile union iavf_rx_desc *rxdp;
        struct rte_mbuf **rxep;
        struct rte_mbuf *mb;
        uint16_t alloc_idx, i;
@@ -1252,7 +1252,7 @@ avf_rx_alloc_bufs(struct avf_rx_queue *rxq)
 
        /* Update rx tail register */
        rte_wmb();
-       AVF_PCI_REG_WRITE_RELAXED(rxq->qrx_tail, rxq->rx_free_trigger);
+       IAVF_PCI_REG_WRITE_RELAXED(rxq->qrx_tail, rxq->rx_free_trigger);
 
        rxq->rx_free_trigger =
                (uint16_t)(rxq->rx_free_trigger + rxq->rx_free_thresh);
@@ -1265,22 +1265,22 @@ avf_rx_alloc_bufs(struct avf_rx_queue *rxq)
 static inline uint16_t
 rx_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
 {
-       struct avf_rx_queue *rxq = (struct avf_rx_queue *)rx_queue;
+       struct iavf_rx_queue *rxq = (struct iavf_rx_queue *)rx_queue;
        uint16_t nb_rx = 0;
 
        if (!nb_pkts)
                return 0;
 
        if (rxq->rx_nb_avail)
-               return avf_rx_fill_from_stage(rxq, rx_pkts, nb_pkts);
+               return iavf_rx_fill_from_stage(rxq, rx_pkts, nb_pkts);
 
-       nb_rx = (uint16_t)avf_rx_scan_hw_ring(rxq);
+       nb_rx = (uint16_t)iavf_rx_scan_hw_ring(rxq);
        rxq->rx_next_avail = 0;
        rxq->rx_nb_avail = nb_rx;
        rxq->rx_tail = (uint16_t)(rxq->rx_tail + nb_rx);
 
        if (rxq->rx_tail > rxq->rx_free_trigger) {
-               if (avf_rx_alloc_bufs(rxq) != 0) {
+               if (iavf_rx_alloc_bufs(rxq) != 0) {
                        uint16_t i, j;
 
                        /* TODO: count rx_mbuf_alloc_failed here */
@@ -1302,13 +1302,13 @@ rx_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
                   rxq->rx_tail, nb_rx);
 
        if (rxq->rx_nb_avail)
-               return avf_rx_fill_from_stage(rxq, rx_pkts, nb_pkts);
+               return iavf_rx_fill_from_stage(rxq, rx_pkts, nb_pkts);
 
        return 0;
 }
 
 static uint16_t
-avf_recv_pkts_bulk_alloc(void *rx_queue,
+iavf_recv_pkts_bulk_alloc(void *rx_queue,
                         struct rte_mbuf **rx_pkts,
                         uint16_t nb_pkts)
 {
@@ -1317,11 +1317,11 @@ avf_recv_pkts_bulk_alloc(void *rx_queue,
        if (unlikely(nb_pkts == 0))
                return 0;
 
-       if (likely(nb_pkts <= AVF_RX_MAX_BURST))
+       if (likely(nb_pkts <= IAVF_RX_MAX_BURST))
                return rx_recv_pkts(rx_queue, rx_pkts, nb_pkts);
 
        while (nb_pkts) {
-               n = RTE_MIN(nb_pkts, AVF_RX_MAX_BURST);
+               n = RTE_MIN(nb_pkts, IAVF_RX_MAX_BURST);
                count = rx_recv_pkts(rx_queue, &rx_pkts[nb_rx], n);
                nb_rx = (uint16_t)(nb_rx + count);
                nb_pkts = (uint16_t)(nb_pkts - count);
@@ -1333,15 +1333,15 @@ avf_recv_pkts_bulk_alloc(void *rx_queue,
 }
 
 static inline int
-avf_xmit_cleanup(struct avf_tx_queue *txq)
+iavf_xmit_cleanup(struct iavf_tx_queue *txq)
 {
-       struct avf_tx_entry *sw_ring = txq->sw_ring;
+       struct iavf_tx_entry *sw_ring = txq->sw_ring;
        uint16_t last_desc_cleaned = txq->last_desc_cleaned;
        uint16_t nb_tx_desc = txq->nb_tx_desc;
        uint16_t desc_to_clean_to;
        uint16_t nb_tx_to_clean;
 
-       volatile struct avf_tx_desc *txd = txq->tx_ring;
+       volatile struct iavf_tx_desc *txd = txq->tx_ring;
 
        desc_to_clean_to = (uint16_t)(last_desc_cleaned + txq->rs_thresh);
        if (desc_to_clean_to >= nb_tx_desc)
@@ -1349,8 +1349,8 @@ avf_xmit_cleanup(struct avf_tx_queue *txq)
 
        desc_to_clean_to = sw_ring[desc_to_clean_to].last_id;
        if ((txd[desc_to_clean_to].cmd_type_offset_bsz &
-                       rte_cpu_to_le_64(AVF_TXD_QW1_DTYPE_MASK)) !=
-                       rte_cpu_to_le_64(AVF_TX_DESC_DTYPE_DESC_DONE)) {
+                       rte_cpu_to_le_64(IAVF_TXD_QW1_DTYPE_MASK)) !=
+                       rte_cpu_to_le_64(IAVF_TX_DESC_DTYPE_DESC_DONE)) {
                PMD_TX_FREE_LOG(DEBUG, "TX descriptor %4u is not done "
                                "(port=%d queue=%d)", desc_to_clean_to,
                                txq->port_id, txq->queue_id);
@@ -1374,7 +1374,7 @@ avf_xmit_cleanup(struct avf_tx_queue *txq)
 
 /* Check if the context descriptor is needed for TX offloading */
 static inline uint16_t
-avf_calc_context_desc(uint64_t flags)
+iavf_calc_context_desc(uint64_t flags)
 {
        static uint64_t mask = PKT_TX_TCP_SEG;
 
@@ -1382,53 +1382,53 @@ avf_calc_context_desc(uint64_t flags)
 }
 
 static inline void
-avf_txd_enable_checksum(uint64_t ol_flags,
+iavf_txd_enable_checksum(uint64_t ol_flags,
                        uint32_t *td_cmd,
                        uint32_t *td_offset,
-                       union avf_tx_offload tx_offload)
+                       union iavf_tx_offload tx_offload)
 {
        /* Set MACLEN */
        *td_offset |= (tx_offload.l2_len >> 1) <<
-                     AVF_TX_DESC_LENGTH_MACLEN_SHIFT;
+                     IAVF_TX_DESC_LENGTH_MACLEN_SHIFT;
 
        /* Enable L3 checksum offloads */
        if (ol_flags & PKT_TX_IP_CKSUM) {
-               *td_cmd |= AVF_TX_DESC_CMD_IIPT_IPV4_CSUM;
+               *td_cmd |= IAVF_TX_DESC_CMD_IIPT_IPV4_CSUM;
                *td_offset |= (tx_offload.l3_len >> 2) <<
-                             AVF_TX_DESC_LENGTH_IPLEN_SHIFT;
+                             IAVF_TX_DESC_LENGTH_IPLEN_SHIFT;
        } else if (ol_flags & PKT_TX_IPV4) {
-               *td_cmd |= AVF_TX_DESC_CMD_IIPT_IPV4;
+               *td_cmd |= IAVF_TX_DESC_CMD_IIPT_IPV4;
                *td_offset |= (tx_offload.l3_len >> 2) <<
-                             AVF_TX_DESC_LENGTH_IPLEN_SHIFT;
+                             IAVF_TX_DESC_LENGTH_IPLEN_SHIFT;
        } else if (ol_flags & PKT_TX_IPV6) {
-               *td_cmd |= AVF_TX_DESC_CMD_IIPT_IPV6;
+               *td_cmd |= IAVF_TX_DESC_CMD_IIPT_IPV6;
                *td_offset |= (tx_offload.l3_len >> 2) <<
-                             AVF_TX_DESC_LENGTH_IPLEN_SHIFT;
+                             IAVF_TX_DESC_LENGTH_IPLEN_SHIFT;
        }
 
        if (ol_flags & PKT_TX_TCP_SEG) {
-               *td_cmd |= AVF_TX_DESC_CMD_L4T_EOFT_TCP;
+               *td_cmd |= IAVF_TX_DESC_CMD_L4T_EOFT_TCP;
                *td_offset |= (tx_offload.l4_len >> 2) <<
-                             AVF_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
+                             IAVF_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
                return;
        }
 
        /* Enable L4 checksum offloads */
        switch (ol_flags & PKT_TX_L4_MASK) {
        case PKT_TX_TCP_CKSUM:
-               *td_cmd |= AVF_TX_DESC_CMD_L4T_EOFT_TCP;
+               *td_cmd |= IAVF_TX_DESC_CMD_L4T_EOFT_TCP;
                *td_offset |= (sizeof(struct tcp_hdr) >> 2) <<
-                             AVF_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
+                             IAVF_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
                break;
        case PKT_TX_SCTP_CKSUM:
-               *td_cmd |= AVF_TX_DESC_CMD_L4T_EOFT_SCTP;
+               *td_cmd |= IAVF_TX_DESC_CMD_L4T_EOFT_SCTP;
                *td_offset |= (sizeof(struct sctp_hdr) >> 2) <<
-                             AVF_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
+                             IAVF_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
                break;
        case PKT_TX_UDP_CKSUM:
-               *td_cmd |= AVF_TX_DESC_CMD_L4T_EOFT_UDP;
+               *td_cmd |= IAVF_TX_DESC_CMD_L4T_EOFT_UDP;
                *td_offset |= (sizeof(struct udp_hdr) >> 2) <<
-                             AVF_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
+                             IAVF_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
                break;
        default:
                break;
@@ -1439,7 +1439,7 @@ avf_txd_enable_checksum(uint64_t ol_flags,
  * support IP -> L4 and IP -> IP -> L4
  */
 static inline uint64_t
-avf_set_tso_ctx(struct rte_mbuf *mbuf, union avf_tx_offload tx_offload)
+iavf_set_tso_ctx(struct rte_mbuf *mbuf, union iavf_tx_offload tx_offload)
 {
        uint64_t ctx_desc = 0;
        uint32_t cd_cmd, hdr_len, cd_tso_len;
@@ -1456,39 +1456,39 @@ avf_set_tso_ctx(struct rte_mbuf *mbuf, union avf_tx_offload tx_offload)
                  tx_offload.l3_len +
                  tx_offload.l4_len;
 
-       cd_cmd = AVF_TX_CTX_DESC_TSO;
+       cd_cmd = IAVF_TX_CTX_DESC_TSO;
        cd_tso_len = mbuf->pkt_len - hdr_len;
-       ctx_desc |= ((uint64_t)cd_cmd << AVF_TXD_CTX_QW1_CMD_SHIFT) |
-                    ((uint64_t)cd_tso_len << AVF_TXD_CTX_QW1_TSO_LEN_SHIFT) |
-                    ((uint64_t)mbuf->tso_segsz << AVF_TXD_CTX_QW1_MSS_SHIFT);
+       ctx_desc |= ((uint64_t)cd_cmd << IAVF_TXD_CTX_QW1_CMD_SHIFT) |
+                    ((uint64_t)cd_tso_len << IAVF_TXD_CTX_QW1_TSO_LEN_SHIFT) |
+                    ((uint64_t)mbuf->tso_segsz << IAVF_TXD_CTX_QW1_MSS_SHIFT);
 
        return ctx_desc;
 }
 
 /* Construct the tx flags */
 static inline uint64_t
-avf_build_ctob(uint32_t td_cmd, uint32_t td_offset, unsigned int size,
+iavf_build_ctob(uint32_t td_cmd, uint32_t td_offset, unsigned int size,
               uint32_t td_tag)
 {
-       return rte_cpu_to_le_64(AVF_TX_DESC_DTYPE_DATA |
-                               ((uint64_t)td_cmd  << AVF_TXD_QW1_CMD_SHIFT) |
+       return rte_cpu_to_le_64(IAVF_TX_DESC_DTYPE_DATA |
+                               ((uint64_t)td_cmd  << IAVF_TXD_QW1_CMD_SHIFT) |
                                ((uint64_t)td_offset <<
-                                AVF_TXD_QW1_OFFSET_SHIFT) |
+                                IAVF_TXD_QW1_OFFSET_SHIFT) |
                                ((uint64_t)size  <<
-                                AVF_TXD_QW1_TX_BUF_SZ_SHIFT) |
+                                IAVF_TXD_QW1_TX_BUF_SZ_SHIFT) |
                                ((uint64_t)td_tag  <<
-                                AVF_TXD_QW1_L2TAG1_SHIFT));
+                                IAVF_TXD_QW1_L2TAG1_SHIFT));
 }
 
 /* TX function */
 uint16_t
-avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
+iavf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
 {
-       volatile struct avf_tx_desc *txd;
-       volatile struct avf_tx_desc *txr;
-       struct avf_tx_queue *txq;
-       struct avf_tx_entry *sw_ring;
-       struct avf_tx_entry *txe, *txn;
+       volatile struct iavf_tx_desc *txd;
+       volatile struct iavf_tx_desc *txr;
+       struct iavf_tx_queue *txq;
+       struct iavf_tx_entry *sw_ring;
+       struct iavf_tx_entry *txe, *txn;
        struct rte_mbuf *tx_pkt;
        struct rte_mbuf *m_seg;
        uint16_t tx_id;
@@ -1502,7 +1502,7 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
        uint16_t tx_last;
        uint16_t slen;
        uint64_t buf_dma_addr;
-       union avf_tx_offload tx_offload = {0};
+       union iavf_tx_offload tx_offload = {0};
 
        txq = tx_queue;
        sw_ring = txq->sw_ring;
@@ -1512,7 +1512,7 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
 
        /* Check if the descriptor ring needs to be cleaned. */
        if (txq->nb_free < txq->free_thresh)
-               avf_xmit_cleanup(txq);
+               iavf_xmit_cleanup(txq);
 
        for (nb_tx = 0; nb_tx < nb_pkts; nb_tx++) {
                td_cmd = 0;
@@ -1529,7 +1529,7 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
                tx_offload.tso_segsz = tx_pkt->tso_segsz;
 
                /* Calculate the number of context descriptors needed. */
-               nb_ctx = avf_calc_context_desc(ol_flags);
+               nb_ctx = iavf_calc_context_desc(ol_flags);
 
                /* The number of descriptors that must be allocated for
                 * a packet equals to the number of the segments of that
@@ -1547,14 +1547,14 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
                           txq->port_id, txq->queue_id, tx_id, tx_last);
 
                if (nb_used > txq->nb_free) {
-                       if (avf_xmit_cleanup(txq)) {
+                       if (iavf_xmit_cleanup(txq)) {
                                if (nb_tx == 0)
                                        return 0;
                                goto end_of_tx;
                        }
                        if (unlikely(nb_used > txq->rs_thresh)) {
                                while (nb_used > txq->nb_free) {
-                                       if (avf_xmit_cleanup(txq)) {
+                                       if (iavf_xmit_cleanup(txq)) {
                                                if (nb_tx == 0)
                                                        return 0;
                                                goto end_of_tx;
@@ -1565,7 +1565,7 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
 
                /* Descriptor based VLAN insertion */
                if (ol_flags & PKT_TX_VLAN_PKT) {
-                       td_cmd |= AVF_TX_DESC_CMD_IL2TAG1;
+                       td_cmd |= IAVF_TX_DESC_CMD_IL2TAG1;
                        td_tag = tx_pkt->vlan_tci;
                }
 
@@ -1575,14 +1575,14 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
                td_cmd |= 0x04;
 
                /* Enable checksum offloading */
-               if (ol_flags & AVF_TX_CKSUM_OFFLOAD_MASK)
-                       avf_txd_enable_checksum(ol_flags, &td_cmd,
+               if (ol_flags & IAVF_TX_CKSUM_OFFLOAD_MASK)
+                       iavf_txd_enable_checksum(ol_flags, &td_cmd,
                                                &td_offset, tx_offload);
 
                if (nb_ctx) {
                        /* Setup TX context descriptor if required */
                        uint64_t cd_type_cmd_tso_mss =
-                               AVF_TX_DESC_DTYPE_CONTEXT;
+                               IAVF_TX_DESC_DTYPE_CONTEXT;
 
                        txn = &sw_ring[txe->next_id];
                        RTE_MBUF_PREFETCH_TO_FREE(txn->mbuf);
@@ -1594,9 +1594,9 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
                        /* TSO enabled */
                        if (ol_flags & PKT_TX_TCP_SEG)
                                cd_type_cmd_tso_mss |=
-                                       avf_set_tso_ctx(tx_pkt, tx_offload);
+                                       iavf_set_tso_ctx(tx_pkt, tx_offload);
 
-                       AVF_DUMP_TX_DESC(txq, &txr[tx_id], tx_id);
+                       IAVF_DUMP_TX_DESC(txq, &txr[tx_id], tx_id);
                        txe->last_id = tx_last;
                        tx_id = txe->next_id;
                        txe = txn;
@@ -1615,12 +1615,12 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
                        slen = m_seg->data_len;
                        buf_dma_addr = rte_mbuf_data_iova(m_seg);
                        txd->buffer_addr = rte_cpu_to_le_64(buf_dma_addr);
-                       txd->cmd_type_offset_bsz = avf_build_ctob(td_cmd,
+                       txd->cmd_type_offset_bsz = iavf_build_ctob(td_cmd,
                                                                  td_offset,
                                                                  slen,
                                                                  td_tag);
 
-                       AVF_DUMP_TX_DESC(txq, txd, tx_id);
+                       IAVF_DUMP_TX_DESC(txq, txd, tx_id);
                        txe->last_id = tx_last;
                        tx_id = txe->next_id;
                        txe = txn;
@@ -1628,7 +1628,7 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
                } while (m_seg);
 
                /* The last packet data descriptor needs End Of Packet (EOP) */
-               td_cmd |= AVF_TX_DESC_CMD_EOP;
+               td_cmd |= IAVF_TX_DESC_CMD_EOP;
                txq->nb_used = (uint16_t)(txq->nb_used + nb_used);
                txq->nb_free = (uint16_t)(txq->nb_free - nb_used);
 
@@ -1637,7 +1637,7 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
                                   "%4u (port=%d queue=%d)",
                                   tx_last, txq->port_id, txq->queue_id);
 
-                       td_cmd |= AVF_TX_DESC_CMD_RS;
+                       td_cmd |= IAVF_TX_DESC_CMD_RS;
 
                        /* Update txq RS bit counters */
                        txq->nb_used = 0;
@@ -1645,8 +1645,8 @@ avf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
 
                txd->cmd_type_offset_bsz |=
                        rte_cpu_to_le_64(((uint64_t)td_cmd) <<
-                                        AVF_TXD_QW1_CMD_SHIFT);
-               AVF_DUMP_TX_DESC(txq, txd, tx_id);
+                                        IAVF_TXD_QW1_CMD_SHIFT);
+               IAVF_DUMP_TX_DESC(txq, txd, tx_id);
        }
 
 end_of_tx:
@@ -1655,24 +1655,24 @@ end_of_tx:
        PMD_TX_LOG(DEBUG, "port_id=%u queue_id=%u tx_tail=%u nb_tx=%u",
                   txq->port_id, txq->queue_id, tx_id, nb_tx);
 
-       AVF_PCI_REG_WRITE_RELAXED(txq->qtx_tail, tx_id);
+       IAVF_PCI_REG_WRITE_RELAXED(txq->qtx_tail, tx_id);
        txq->tx_tail = tx_id;
 
        return nb_tx;
 }
 
 static uint16_t
-avf_xmit_pkts_vec(void *tx_queue, struct rte_mbuf **tx_pkts,
+iavf_xmit_pkts_vec(void *tx_queue, struct rte_mbuf **tx_pkts,
                  uint16_t nb_pkts)
 {
        uint16_t nb_tx = 0;
-       struct avf_tx_queue *txq = (struct avf_tx_queue *)tx_queue;
+       struct iavf_tx_queue *txq = (struct iavf_tx_queue *)tx_queue;
 
        while (nb_pkts) {
                uint16_t ret, num;
 
                num = (uint16_t)RTE_MIN(nb_pkts, txq->rs_thresh);
-               ret = avf_xmit_fixed_burst_vec(tx_queue, &tx_pkts[nb_tx], num);
+               ret = iavf_xmit_fixed_burst_vec(tx_queue, &tx_pkts[nb_tx], num);
                nb_tx += ret;
                nb_pkts -= ret;
                if (ret < num)
@@ -1684,7 +1684,7 @@ avf_xmit_pkts_vec(void *tx_queue, struct rte_mbuf **tx_pkts,
 
 /* TX prep functions */
 uint16_t
-avf_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
+iavf_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
              uint16_t nb_pkts)
 {
        int i, ret;
@@ -1695,20 +1695,20 @@ avf_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
                m = tx_pkts[i];
                ol_flags = m->ol_flags;
 
-               /* Check condition for nb_segs > AVF_TX_MAX_MTU_SEG. */
+               /* Check condition for nb_segs > IAVF_TX_MAX_MTU_SEG. */
                if (!(ol_flags & PKT_TX_TCP_SEG)) {
-                       if (m->nb_segs > AVF_TX_MAX_MTU_SEG) {
+                       if (m->nb_segs > IAVF_TX_MAX_MTU_SEG) {
                                rte_errno = -EINVAL;
                                return i;
                        }
-               } else if ((m->tso_segsz < AVF_MIN_TSO_MSS) ||
-                          (m->tso_segsz > AVF_MAX_TSO_MSS)) {
+               } else if ((m->tso_segsz < IAVF_MIN_TSO_MSS) ||
+                          (m->tso_segsz > IAVF_MAX_TSO_MSS)) {
                        /* MSS outside the range are considered malicious */
                        rte_errno = -EINVAL;
                        return i;
                }
 
-               if (ol_flags & AVF_TX_OFFLOAD_NOTSUP_MASK) {
+               if (ol_flags & IAVF_TX_OFFLOAD_NOTSUP_MASK) {
                        rte_errno = -ENOTSUP;
                        return i;
                }
@@ -1732,77 +1732,77 @@ avf_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
 
 /* choose rx function*/
 void
-avf_set_rx_function(struct rte_eth_dev *dev)
+iavf_set_rx_function(struct rte_eth_dev *dev)
 {
-       struct avf_adapter *adapter =
-               AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
-       struct avf_rx_queue *rxq;
+       struct iavf_adapter *adapter =
+               IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+       struct iavf_rx_queue *rxq;
        int i;
 
        if (adapter->rx_vec_allowed) {
                if (dev->data->scattered_rx) {
                        PMD_DRV_LOG(DEBUG, "Using Vector Scattered Rx callback"
                                    " (port=%d).", dev->data->port_id);
-                       dev->rx_pkt_burst = avf_recv_scattered_pkts_vec;
+                       dev->rx_pkt_burst = iavf_recv_scattered_pkts_vec;
                } else {
                        PMD_DRV_LOG(DEBUG, "Using Vector Rx callback"
                                    " (port=%d).", dev->data->port_id);
-                       dev->rx_pkt_burst = avf_recv_pkts_vec;
+                       dev->rx_pkt_burst = iavf_recv_pkts_vec;
                }
                for (i = 0; i < dev->data->nb_rx_queues; i++) {
                        rxq = dev->data->rx_queues[i];
                        if (!rxq)
                                continue;
-                       avf_rxq_vec_setup(rxq);
+                       iavf_rxq_vec_setup(rxq);
                }
        } else if (dev->data->scattered_rx) {
                PMD_DRV_LOG(DEBUG, "Using a Scattered Rx callback (port=%d).",
                            dev->data->port_id);
-               dev->rx_pkt_burst = avf_recv_scattered_pkts;
+               dev->rx_pkt_burst = iavf_recv_scattered_pkts;
        } else if (adapter->rx_bulk_alloc_allowed) {
                PMD_DRV_LOG(DEBUG, "Using bulk Rx callback (port=%d).",
                            dev->data->port_id);
-               dev->rx_pkt_burst = avf_recv_pkts_bulk_alloc;
+               dev->rx_pkt_burst = iavf_recv_pkts_bulk_alloc;
        } else {
                PMD_DRV_LOG(DEBUG, "Using Basic Rx callback (port=%d).",
                            dev->data->port_id);
-               dev->rx_pkt_burst = avf_recv_pkts;
+               dev->rx_pkt_burst = iavf_recv_pkts;
        }
 }
 
 /* choose tx function*/
 void
-avf_set_tx_function(struct rte_eth_dev *dev)
+iavf_set_tx_function(struct rte_eth_dev *dev)
 {
-       struct avf_adapter *adapter =
-               AVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
-       struct avf_tx_queue *txq;
+       struct iavf_adapter *adapter =
+               IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
+       struct iavf_tx_queue *txq;
        int i;
 
        if (adapter->tx_vec_allowed) {
                PMD_DRV_LOG(DEBUG, "Using Vector Tx callback (port=%d).",
                            dev->data->port_id);
-               dev->tx_pkt_burst = avf_xmit_pkts_vec;
+               dev->tx_pkt_burst = iavf_xmit_pkts_vec;
                dev->tx_pkt_prepare = NULL;
                for (i = 0; i < dev->data->nb_tx_queues; i++) {
                        txq = dev->data->tx_queues[i];
                        if (!txq)
                                continue;
-                       avf_txq_vec_setup(txq);
+                       iavf_txq_vec_setup(txq);
                }
        } else {
                PMD_DRV_LOG(DEBUG, "Using Basic Tx callback (port=%d).",
                            dev->data->port_id);
-               dev->tx_pkt_burst = avf_xmit_pkts;
-               dev->tx_pkt_prepare = avf_prep_pkts;
+               dev->tx_pkt_burst = iavf_xmit_pkts;
+               dev->tx_pkt_prepare = iavf_prep_pkts;
        }
 }
 
 void
-avf_dev_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
+iavf_dev_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
                     struct rte_eth_rxq_info *qinfo)
 {
-       struct avf_rx_queue *rxq;
+       struct iavf_rx_queue *rxq;
 
        rxq = dev->data->rx_queues[queue_id];
 
@@ -1816,10 +1816,10 @@ avf_dev_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
 }
 
 void
-avf_dev_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
+iavf_dev_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
                     struct rte_eth_txq_info *qinfo)
 {
-       struct avf_tx_queue *txq;
+       struct iavf_tx_queue *txq;
 
        txq = dev->data->tx_queues[queue_id];
 
@@ -1833,25 +1833,25 @@ avf_dev_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
 
 /* Get the number of used descriptors of a rx queue */
 uint32_t
-avf_dev_rxq_count(struct rte_eth_dev *dev, uint16_t queue_id)
+iavf_dev_rxq_count(struct rte_eth_dev *dev, uint16_t queue_id)
 {
-#define AVF_RXQ_SCAN_INTERVAL 4
-       volatile union avf_rx_desc *rxdp;
-       struct avf_rx_queue *rxq;
+#define IAVF_RXQ_SCAN_INTERVAL 4
+       volatile union iavf_rx_desc *rxdp;
+       struct iavf_rx_queue *rxq;
        uint16_t desc = 0;
 
        rxq = dev->data->rx_queues[queue_id];
        rxdp = &rxq->rx_ring[rxq->rx_tail];
        while ((desc < rxq->nb_rx_desc) &&
               ((rte_le_to_cpu_64(rxdp->wb.qword1.status_error_len) &
-                AVF_RXD_QW1_STATUS_MASK) >> AVF_RXD_QW1_STATUS_SHIFT) &
-              (1 << AVF_RX_DESC_STATUS_DD_SHIFT)) {
+                IAVF_RXD_QW1_STATUS_MASK) >> IAVF_RXD_QW1_STATUS_SHIFT) &
+              (1 << IAVF_RX_DESC_STATUS_DD_SHIFT)) {
                /* Check the DD bit of a rx descriptor of each 4 in a group,
                 * to avoid checking too frequently and downgrading performance
                 * too much.
                 */
-               desc += AVF_RXQ_SCAN_INTERVAL;
-               rxdp += AVF_RXQ_SCAN_INTERVAL;
+               desc += IAVF_RXQ_SCAN_INTERVAL;
+               rxdp += IAVF_RXQ_SCAN_INTERVAL;
                if (rxq->rx_tail + desc >= rxq->nb_rx_desc)
                        rxdp = &(rxq->rx_ring[rxq->rx_tail +
                                        desc - rxq->nb_rx_desc]);
@@ -1861,9 +1861,9 @@ avf_dev_rxq_count(struct rte_eth_dev *dev, uint16_t queue_id)
 }
 
 int
-avf_dev_rx_desc_status(void *rx_queue, uint16_t offset)
+iavf_dev_rx_desc_status(void *rx_queue, uint16_t offset)
 {
-       struct avf_rx_queue *rxq = rx_queue;
+       struct iavf_rx_queue *rxq = rx_queue;
        volatile uint64_t *status;
        uint64_t mask;
        uint32_t desc;
@@ -1879,8 +1879,8 @@ avf_dev_rx_desc_status(void *rx_queue, uint16_t offset)
                desc -= rxq->nb_rx_desc;
 
        status = &rxq->rx_ring[desc].wb.qword1.status_error_len;
-       mask = rte_le_to_cpu_64((1ULL << AVF_RX_DESC_STATUS_DD_SHIFT)
-               << AVF_RXD_QW1_STATUS_SHIFT);
+       mask = rte_le_to_cpu_64((1ULL << IAVF_RX_DESC_STATUS_DD_SHIFT)
+               << IAVF_RXD_QW1_STATUS_SHIFT);
        if (*status & mask)
                return RTE_ETH_RX_DESC_DONE;
 
@@ -1888,9 +1888,9 @@ avf_dev_rx_desc_status(void *rx_queue, uint16_t offset)
 }
 
 int
-avf_dev_tx_desc_status(void *tx_queue, uint16_t offset)
+iavf_dev_tx_desc_status(void *tx_queue, uint16_t offset)
 {
-       struct avf_tx_queue *txq = tx_queue;
+       struct iavf_tx_queue *txq = tx_queue;
        volatile uint64_t *status;
        uint64_t mask, expect;
        uint32_t desc;
@@ -1909,9 +1909,9 @@ avf_dev_tx_desc_status(void *tx_queue, uint16_t offset)
        }
 
        status = &txq->tx_ring[desc].cmd_type_offset_bsz;
-       mask = rte_le_to_cpu_64(AVF_TXD_QW1_DTYPE_MASK);
+       mask = rte_le_to_cpu_64(IAVF_TXD_QW1_DTYPE_MASK);
        expect = rte_cpu_to_le_64(
-                AVF_TX_DESC_DTYPE_DESC_DONE << AVF_TXD_QW1_DTYPE_SHIFT);
+                IAVF_TX_DESC_DTYPE_DESC_DONE << IAVF_TXD_QW1_DTYPE_SHIFT);
        if ((*status & mask) == expect)
                return RTE_ETH_TX_DESC_DONE;
 
@@ -1919,7 +1919,7 @@ avf_dev_tx_desc_status(void *tx_queue, uint16_t offset)
 }
 
 __rte_weak uint16_t
-avf_recv_pkts_vec(__rte_unused void *rx_queue,
+iavf_recv_pkts_vec(__rte_unused void *rx_queue,
                  __rte_unused struct rte_mbuf **rx_pkts,
                  __rte_unused uint16_t nb_pkts)
 {
@@ -1927,7 +1927,7 @@ avf_recv_pkts_vec(__rte_unused void *rx_queue,
 }
 
 __rte_weak uint16_t
-avf_recv_scattered_pkts_vec(__rte_unused void *rx_queue,
+iavf_recv_scattered_pkts_vec(__rte_unused void *rx_queue,
                            __rte_unused struct rte_mbuf **rx_pkts,
                            __rte_unused uint16_t nb_pkts)
 {
@@ -1935,7 +1935,7 @@ avf_recv_scattered_pkts_vec(__rte_unused void *rx_queue,
 }
 
 __rte_weak uint16_t
-avf_xmit_fixed_burst_vec(__rte_unused void *tx_queue,
+iavf_xmit_fixed_burst_vec(__rte_unused void *tx_queue,
                         __rte_unused struct rte_mbuf **tx_pkts,
                         __rte_unused uint16_t nb_pkts)
 {
@@ -1943,13 +1943,13 @@ avf_xmit_fixed_burst_vec(__rte_unused void *tx_queue,
 }
 
 __rte_weak int
-avf_rxq_vec_setup(__rte_unused struct avf_rx_queue *rxq)
+iavf_rxq_vec_setup(__rte_unused struct iavf_rx_queue *rxq)
 {
        return -1;
 }
 
 __rte_weak int
-avf_txq_vec_setup(__rte_unused struct avf_tx_queue *txq)
+iavf_txq_vec_setup(__rte_unused struct iavf_tx_queue *txq)
 {
        return -1;
 }