common/mlx5: introduce common library
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx_vec.c
index 340292a..5505762 100644 (file)
 #include <rte_mempool.h>
 #include <rte_prefetch.h>
 
+#include <mlx5_prm.h>
+
+#include "mlx5_defs.h"
 #include "mlx5.h"
 #include "mlx5_utils.h"
 #include "mlx5_rxtx.h"
 #include "mlx5_rxtx_vec.h"
 #include "mlx5_autoconf.h"
-#include "mlx5_defs.h"
-#include "mlx5_prm.h"
 
 #if defined RTE_ARCH_X86_64
 #include "mlx5_rxtx_vec_sse.h"
 #elif defined RTE_ARCH_ARM64
 #include "mlx5_rxtx_vec_neon.h"
+#elif defined RTE_ARCH_PPC_64
+#include "mlx5_rxtx_vec_altivec.h"
 #else
 #error "This should not be compiled if SIMD instructions are not supported."
 #endif
 
-/**
- * Count the number of packets having same ol_flags and same metadata (if
- * PKT_TX_METADATA is set in ol_flags), and calculate cs_flags.
- *
- * @param pkts
- *   Pointer to array of packets.
- * @param pkts_n
- *   Number of packets.
- * @param cs_flags
- *   Pointer of flags to be returned.
- * @param metadata
- *   Pointer of metadata to be returned.
- * @param txq_offloads
- *   Offloads enabled on Tx queue
- *
- * @return
- *   Number of packets having same ol_flags and metadata, if relevant.
- */
-static inline unsigned int
-txq_calc_offload(struct rte_mbuf **pkts, uint16_t pkts_n, uint8_t *cs_flags,
-                rte_be32_t *metadata, const uint64_t txq_offloads)
-{
-       unsigned int pos;
-       const uint64_t cksum_ol_mask =
-               PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM |
-               PKT_TX_UDP_CKSUM | PKT_TX_TUNNEL_GRE |
-               PKT_TX_TUNNEL_VXLAN | PKT_TX_OUTER_IP_CKSUM;
-       rte_be32_t p0_metadata, pn_metadata;
-
-       if (!pkts_n)
-               return 0;
-       p0_metadata = pkts[0]->ol_flags & PKT_TX_METADATA ?
-                       pkts[0]->tx_metadata : 0;
-       /* Count the number of packets having same offload parameters. */
-       for (pos = 1; pos < pkts_n; ++pos) {
-               /* Check if packet has same checksum flags. */
-               if ((txq_offloads & MLX5_VEC_TX_CKSUM_OFFLOAD_CAP) &&
-                   ((pkts[pos]->ol_flags ^ pkts[0]->ol_flags) & cksum_ol_mask))
-                       break;
-               /* Check if packet has same metadata. */
-               if (txq_offloads & DEV_TX_OFFLOAD_MATCH_METADATA) {
-                       pn_metadata = pkts[pos]->ol_flags & PKT_TX_METADATA ?
-                                       pkts[pos]->tx_metadata : 0;
-                       if (pn_metadata != p0_metadata)
-                               break;
-               }
-       }
-       *cs_flags = txq_ol_cksum_to_cs(pkts[0]);
-       *metadata = p0_metadata;
-       return pos;
-}
-
-/**
- * DPDK callback for vectorized TX.
- *
- * @param dpdk_txq
- *   Generic pointer to TX queue structure.
- * @param[in] pkts
- *   Packets to transmit.
- * @param pkts_n
- *   Number of packets in array.
- *
- * @return
- *   Number of packets successfully transmitted (<= pkts_n).
- */
-uint16_t
-mlx5_tx_burst_raw_vec(void *dpdk_txq, struct rte_mbuf **pkts,
-                     uint16_t pkts_n)
-{
-       struct mlx5_txq_data *txq = (struct mlx5_txq_data *)dpdk_txq;
-       uint16_t nb_tx = 0;
-
-       while (pkts_n > nb_tx) {
-               uint16_t n;
-               uint16_t ret;
-
-               n = RTE_MIN((uint16_t)(pkts_n - nb_tx), MLX5_VPMD_TX_MAX_BURST);
-               ret = txq_burst_v(txq, &pkts[nb_tx], n, 0, 0);
-               nb_tx += ret;
-               if (!ret)
-                       break;
-       }
-       return nb_tx;
-}
-
-/**
- * DPDK callback for vectorized TX with multi-seg packets and offload.
- *
- * @param dpdk_txq
- *   Generic pointer to TX queue structure.
- * @param[in] pkts
- *   Packets to transmit.
- * @param pkts_n
- *   Number of packets in array.
- *
- * @return
- *   Number of packets successfully transmitted (<= pkts_n).
- */
-uint16_t
-mlx5_tx_burst_vec(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
-{
-       struct mlx5_txq_data *txq = (struct mlx5_txq_data *)dpdk_txq;
-       uint16_t nb_tx = 0;
-
-       while (pkts_n > nb_tx) {
-               uint8_t cs_flags = 0;
-               uint16_t n;
-               uint16_t ret;
-               rte_be32_t metadata = 0;
-
-               /* Transmit multi-seg packets in the head of pkts list. */
-               if ((txq->offloads & DEV_TX_OFFLOAD_MULTI_SEGS) &&
-                   NB_SEGS(pkts[nb_tx]) > 1)
-                       nb_tx += txq_scatter_v(txq,
-                                              &pkts[nb_tx],
-                                              pkts_n - nb_tx);
-               n = RTE_MIN((uint16_t)(pkts_n - nb_tx), MLX5_VPMD_TX_MAX_BURST);
-               if (txq->offloads & DEV_TX_OFFLOAD_MULTI_SEGS)
-                       n = txq_count_contig_single_seg(&pkts[nb_tx], n);
-               if (txq->offloads & (MLX5_VEC_TX_CKSUM_OFFLOAD_CAP |
-                                    DEV_TX_OFFLOAD_MATCH_METADATA))
-                       n = txq_calc_offload(&pkts[nb_tx], n,
-                                            &cs_flags, &metadata,
-                                            txq->offloads);
-               ret = txq_burst_v(txq, &pkts[nb_tx], n, cs_flags, metadata);
-               nb_tx += ret;
-               if (!ret)
-                       break;
-       }
-       return nb_tx;
-}
-
 /**
  * Skip error packets.
  *
@@ -197,7 +68,7 @@ rxq_handle_pending_error(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts,
        for (i = 0; i < pkts_n; ++i) {
                struct rte_mbuf *pkt = pkts[i];
 
-               if (pkt->packet_type == RTE_PTYPE_ALL_MASK) {
+               if (pkt->packet_type == RTE_PTYPE_ALL_MASK || rxq->err_state) {
 #ifdef MLX5_PMD_SOFT_COUNTERS
                        err_bytes += PKT_LEN(pkt);
 #endif
@@ -212,6 +83,7 @@ rxq_handle_pending_error(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts,
        rxq->stats.ipackets -= (pkts_n - n);
        rxq->stats.ibytes -= err_bytes;
 #endif
+       mlx5_rx_err_handle(rxq, 1);
        return n;
 }
 
@@ -236,54 +108,11 @@ mlx5_rx_burst_vec(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
        uint64_t err = 0;
 
        nb_rx = rxq_burst_v(rxq, pkts, pkts_n, &err);
-       if (unlikely(err))
+       if (unlikely(err | rxq->err_state))
                nb_rx = rxq_handle_pending_error(rxq, pkts, nb_rx);
        return nb_rx;
 }
 
-/**
- * Check Tx queue flags are set for raw vectorized Tx.
- *
- * @param dev
- *   Pointer to Ethernet device.
- *
- * @return
- *   1 if supported, negative errno value if not.
- */
-int __attribute__((cold))
-mlx5_check_raw_vec_tx_support(struct rte_eth_dev *dev)
-{
-       uint64_t offloads = dev->data->dev_conf.txmode.offloads;
-
-       /* Doesn't support any offload. */
-       if (offloads)
-               return -ENOTSUP;
-       return 1;
-}
-
-/**
- * Check a device can support vectorized TX.
- *
- * @param dev
- *   Pointer to Ethernet device.
- *
- * @return
- *   1 if supported, negative errno value if not.
- */
-int __attribute__((cold))
-mlx5_check_vec_tx_support(struct rte_eth_dev *dev)
-{
-       struct priv *priv = dev->data->dev_private;
-       uint64_t offloads = dev->data->dev_conf.txmode.offloads;
-
-       if (!priv->config.tx_vec_en ||
-           priv->txqs_n > (unsigned int)priv->config.txqs_vec ||
-           priv->config.mps != MLX5_MPW_ENHANCED ||
-           offloads & ~MLX5_VEC_TX_OFFLOAD_CAP)
-               return -ENOTSUP;
-       return 1;
-}
-
 /**
  * Check a RX queue can support vectorized RX.
  *
@@ -303,6 +132,8 @@ mlx5_rxq_check_vec_support(struct mlx5_rxq_data *rxq)
                return -ENOTSUP;
        if (!ctrl->priv->config.rx_vec_en || rxq->sges_n != 0)
                return -ENOTSUP;
+       if (rxq->lro)
+               return -ENOTSUP;
        return 1;
 }
 
@@ -318,7 +149,7 @@ mlx5_rxq_check_vec_support(struct mlx5_rxq_data *rxq)
 int __attribute__((cold))
 mlx5_check_vec_rx_support(struct rte_eth_dev *dev)
 {
-       struct priv *priv = dev->data->dev_private;
+       struct mlx5_priv *priv = dev->data->dev_private;
        uint16_t i;
 
        if (!priv->config.rx_vec_en)