avf: rework TX one-by-one loop
[vpp.git] / src / plugins / avf / output.c
index cbc85b8..cd5c97b 100644 (file)
@@ -47,8 +47,8 @@ struct avf_ip4_psh
 
 struct avf_ip6_psh
 {
-  u32 src[4];
-  u32 dst[4];
+  ip6_address_t src;
+  ip6_address_t dst;
   u32 l4len;
   u32 proto;
 };
@@ -57,17 +57,17 @@ static_always_inline u64
 avf_tx_prepare_cksum (vlib_buffer_t * b, u8 is_tso)
 {
   u64 flags = 0;
-  if (!is_tso && !(b->flags & ((VNET_BUFFER_F_OFFLOAD_IP_CKSUM |
-                               VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
-                               VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))))
+  if (!is_tso && !(b->flags & VNET_BUFFER_F_OFFLOAD))
     return 0;
-  u32 is_tcp = is_tso || b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
-  u32 is_udp = !is_tso && b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
+
+  u32 oflags = vnet_buffer2 (b)->oflags;
+  u32 is_tcp = is_tso || oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM;
+  u32 is_udp = !is_tso && oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM;
   u32 is_ip4 = b->flags & VNET_BUFFER_F_IS_IP4;
   u32 is_ip6 = b->flags & VNET_BUFFER_F_IS_IP6;
   ASSERT (!is_tcp || !is_udp);
   ASSERT (is_ip4 || is_ip6);
-  i16 l2_hdr_offset = vnet_buffer (b)->l2_hdr_offset;
+  i16 l2_hdr_offset = b->current_data;
   i16 l3_hdr_offset = vnet_buffer (b)->l3_hdr_offset;
   i16 l4_hdr_offset = vnet_buffer (b)->l4_hdr_offset;
   u16 l2_len = l3_hdr_offset - l2_hdr_offset;
@@ -113,8 +113,8 @@ avf_tx_prepare_cksum (vlib_buffer_t * b, u8 is_tso)
       else
        {
          struct avf_ip6_psh psh = { 0 };
-         clib_memcpy_fast (&psh.src, &ip6->src_address, 16);
-         clib_memcpy_fast (&psh.dst, &ip6->dst_address, 16);
+         psh.src = ip6->src_address;
+         psh.dst = ip6->dst_address;
          psh.proto = clib_host_to_net_u32 ((u32) ip6->protocol);
          psh.l4len = is_tso ? 0 : ip6->payload_length;
          sum = ~ip_csum (&psh, sizeof (psh));
@@ -129,74 +129,119 @@ avf_tx_prepare_cksum (vlib_buffer_t * b, u8 is_tso)
   return flags;
 }
 
-static_always_inline int
-avf_tx_fill_ctx_desc (vlib_main_t * vm, avf_txq_t * txq, avf_tx_desc_t * d,
-                     vlib_buffer_t * b)
+static_always_inline u32
+avf_tx_fill_ctx_desc (vlib_main_t *vm, avf_txq_t *txq, avf_tx_desc_t *d,
+                     vlib_buffer_t *b)
 {
-  vlib_buffer_t *ctx_ph = vlib_get_buffer (vm, txq->ctx_desc_placeholder_bi);
+  vlib_buffer_t *ctx_ph;
+  u32 *bi = txq->ph_bufs;
+
+next:
+  ctx_ph = vlib_get_buffer (vm, bi[0]);
   if (PREDICT_FALSE (ctx_ph->ref_count == 255))
     {
-      /* We need a new placeholder buffer */
-      u32 new_bi;
-      u8 bpi = vlib_buffer_pool_get_default_for_numa (vm, vm->numa_node);
-      if (PREDICT_TRUE
-         (vlib_buffer_alloc_from_pool (vm, &new_bi, 1, bpi) == 1))
-       {
-         /* Remove our own reference on the current placeholder buffer */
-         ctx_ph->ref_count--;
-         /* Replace with the new placeholder buffer */
-         txq->ctx_desc_placeholder_bi = new_bi;
-         ctx_ph = vlib_get_buffer (vm, new_bi);
-       }
-      else
-       /* Impossible to enqueue a ctx descriptor, fail */
-       return 1;
+      bi++;
+      goto next;
     }
 
   /* Acquire a reference on the placeholder buffer */
   ctx_ph->ref_count++;
 
-  u16 l234hdr_sz =
-    vnet_buffer (b)->l4_hdr_offset -
-    vnet_buffer (b)->l2_hdr_offset + vnet_buffer2 (b)->gso_l4_hdr_sz;
+  u16 l234hdr_sz = vnet_buffer (b)->l4_hdr_offset - b->current_data +
+                  vnet_buffer2 (b)->gso_l4_hdr_sz;
   u16 tlen = vlib_buffer_length_in_chain (vm, b) - l234hdr_sz;
   d[0].qword[0] = 0;
   d[0].qword[1] = AVF_TXD_DTYP_CTX | AVF_TXD_CTX_CMD_TSO
     | AVF_TXD_CTX_SEG_MSS (vnet_buffer2 (b)->gso_size) |
     AVF_TXD_CTX_SEG_TLEN (tlen);
-  return 0;
+  return bi[0];
 }
 
+static_always_inline void
+avf_tx_copy_desc (avf_tx_desc_t *d, avf_tx_desc_t *s, u32 n_descs)
+{
+#if defined CLIB_HAVE_VEC512
+  while (n_descs >= 8)
+    {
+      u64x8u *dv = (u64x8u *) d;
+      u64x8u *sv = (u64x8u *) s;
+
+      dv[0] = sv[0];
+      dv[1] = sv[1];
+
+      /* next */
+      d += 8;
+      s += 8;
+      n_descs -= 8;
+    }
+#elif defined CLIB_HAVE_VEC256
+  while (n_descs >= 4)
+    {
+      u64x4u *dv = (u64x4u *) d;
+      u64x4u *sv = (u64x4u *) s;
+
+      dv[0] = sv[0];
+      dv[1] = sv[1];
+
+      /* next */
+      d += 4;
+      s += 4;
+      n_descs -= 4;
+    }
+#elif defined CLIB_HAVE_VEC128
+  while (n_descs >= 2)
+    {
+      u64x2u *dv = (u64x2u *) d;
+      u64x2u *sv = (u64x2u *) s;
+
+      dv[0] = sv[0];
+      dv[1] = sv[1];
 
+      /* next */
+      d += 2;
+      s += 2;
+      n_descs -= 2;
+    }
+#endif
+  while (n_descs)
+    {
+      d[0].qword[0] = s[0].qword[0];
+      d[0].qword[1] = s[0].qword[1];
+      d++;
+      s++;
+      n_descs--;
+    }
+}
+
+static_always_inline void
+avf_tx_fill_data_desc (vlib_main_t *vm, avf_tx_desc_t *d, vlib_buffer_t *b,
+                      u64 cmd, int use_va_dma)
+{
+  if (use_va_dma)
+    d->qword[0] = vlib_buffer_get_current_va (b);
+  else
+    d->qword[0] = vlib_buffer_get_current_pa (vm, b);
+  d->qword[1] = (((u64) b->current_length) << 34 | cmd | AVF_TXD_CMD_RSV);
+}
 static_always_inline u16
-avf_tx_enqueue (vlib_main_t * vm, vlib_node_runtime_t * node, avf_txq_t * txq,
-               u32 * buffers, u32 n_packets, int use_va_dma)
+avf_tx_prepare (vlib_main_t *vm, vlib_node_runtime_t *node, avf_txq_t *txq,
+               u32 *buffers, u32 n_packets, u16 *n_enq_descs, int use_va_dma)
 {
-  u16 next = txq->next;
-  u64 bits = AVF_TXD_CMD_EOP | AVF_TXD_CMD_RSV;
-  const u32 offload_mask = VNET_BUFFER_F_OFFLOAD_IP_CKSUM |
-    VNET_BUFFER_F_OFFLOAD_TCP_CKSUM | VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
-    VNET_BUFFER_F_GSO;
-  u64 one_by_one_offload_flags = 0;
-  int is_tso;
-  u16 n_desc = 0;
-  u16 *slot, n_desc_left, n_packets_left = n_packets;
-  u16 mask = txq->size - 1;
+  const u64 cmd_eop = AVF_TXD_CMD_EOP;
+  u16 n_free_desc, n_desc_left, n_packets_left = n_packets;
   vlib_buffer_t *b[4];
-  avf_tx_desc_t *d = txq->descs + next;
-  u16 n_desc_needed;
-  vlib_buffer_t *b0;
+  avf_tx_desc_t *d = txq->tmp_descs;
+  u32 *tb = txq->tmp_bufs;
 
-  /* avoid ring wrap */
-  n_desc_left = txq->size - clib_max (txq->next, txq->n_enqueued + 8);
+  n_free_desc = n_desc_left = txq->size - txq->n_enqueued - 8;
 
   if (n_desc_left == 0)
     return 0;
 
-  /* Fast path, no ring wrap */
   while (n_packets_left && n_desc_left)
     {
-      u32 or_flags;
+      u32 flags, or_flags;
+
       if (n_packets_left < 8 || n_desc_left < 4)
        goto one_by_one;
 
@@ -212,62 +257,62 @@ avf_tx_enqueue (vlib_main_t * vm, vlib_node_runtime_t * node, avf_txq_t * txq,
 
       or_flags = b[0]->flags | b[1]->flags | b[2]->flags | b[3]->flags;
 
-      if (or_flags & (VLIB_BUFFER_NEXT_PRESENT | offload_mask))
+      if (PREDICT_FALSE (or_flags &
+                        (VLIB_BUFFER_NEXT_PRESENT | VNET_BUFFER_F_OFFLOAD |
+                         VNET_BUFFER_F_GSO)))
        goto one_by_one;
 
-      vlib_buffer_copy_indices (txq->bufs + next, buffers, 4);
+      vlib_buffer_copy_indices (tb, buffers, 4);
 
-      if (use_va_dma)
-       {
-         d[0].qword[0] = vlib_buffer_get_current_va (b[0]);
-         d[1].qword[0] = vlib_buffer_get_current_va (b[1]);
-         d[2].qword[0] = vlib_buffer_get_current_va (b[2]);
-         d[3].qword[0] = vlib_buffer_get_current_va (b[3]);
-       }
-      else
-       {
-         d[0].qword[0] = vlib_buffer_get_current_pa (vm, b[0]);
-         d[1].qword[0] = vlib_buffer_get_current_pa (vm, b[1]);
-         d[2].qword[0] = vlib_buffer_get_current_pa (vm, b[2]);
-         d[3].qword[0] = vlib_buffer_get_current_pa (vm, b[3]);
-       }
+      avf_tx_fill_data_desc (vm, d + 0, b[0], cmd_eop, use_va_dma);
+      avf_tx_fill_data_desc (vm, d + 1, b[1], cmd_eop, use_va_dma);
+      avf_tx_fill_data_desc (vm, d + 2, b[2], cmd_eop, use_va_dma);
+      avf_tx_fill_data_desc (vm, d + 3, b[3], cmd_eop, use_va_dma);
 
-      d[0].qword[1] = ((u64) b[0]->current_length) << 34 | bits;
-      d[1].qword[1] = ((u64) b[1]->current_length) << 34 | bits;
-      d[2].qword[1] = ((u64) b[2]->current_length) << 34 | bits;
-      d[3].qword[1] = ((u64) b[3]->current_length) << 34 | bits;
-
-      next += 4;
-      n_desc += 4;
       buffers += 4;
       n_packets_left -= 4;
       n_desc_left -= 4;
       d += 4;
+      tb += 4;
       continue;
 
     one_by_one:
-      one_by_one_offload_flags = 0;
-      txq->bufs[next] = buffers[0];
+      tb[0] = buffers[0];
       b[0] = vlib_get_buffer (vm, buffers[0]);
-      is_tso = ! !(b[0]->flags & VNET_BUFFER_F_GSO);
-      if (PREDICT_FALSE (is_tso || b[0]->flags & offload_mask))
-       one_by_one_offload_flags |= avf_tx_prepare_cksum (b[0], is_tso);
+      flags = b[0]->flags;
+
+      /* No chained buffers or TSO case */
+      if (PREDICT_TRUE (
+           (flags & (VLIB_BUFFER_NEXT_PRESENT | VNET_BUFFER_F_GSO)) == 0))
+       {
+         u64 cmd = cmd_eop;
 
-      /* Deal with chain buffer if present */
-      if (is_tso || b[0]->flags & VLIB_BUFFER_NEXT_PRESENT)
+         if (PREDICT_FALSE (flags & VNET_BUFFER_F_OFFLOAD))
+           cmd |= avf_tx_prepare_cksum (b[0], 0 /* is_tso */);
+
+         avf_tx_fill_data_desc (vm, d, b[0], cmd, use_va_dma);
+       }
+      else
        {
-         n_desc_needed = 1 + is_tso;
-         b0 = b[0];
+         u16 n_desc_needed = 1;
+         u64 cmd = 0;
 
-         /* Wish there were a buffer count for chain buffer */
-         while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
+         if (flags & VLIB_BUFFER_NEXT_PRESENT)
            {
-             b0 = vlib_get_buffer (vm, b0->next_buffer);
-             n_desc_needed++;
+             vlib_buffer_t *next = vlib_get_buffer (vm, b[0]->next_buffer);
+             n_desc_needed = 2;
+             while (next->flags & VLIB_BUFFER_NEXT_PRESENT)
+               {
+                 next = vlib_get_buffer (vm, next->next_buffer);
+                 n_desc_needed++;
+               }
            }
 
-         /* spec says data descriptor is limited to 8 segments */
-         if (PREDICT_FALSE (!is_tso && n_desc_needed > 8))
+         if (flags & VNET_BUFFER_F_GSO)
+           {
+             n_desc_needed++;
+           }
+         else if (PREDICT_FALSE (n_desc_needed > 8))
            {
              vlib_buffer_free_one (vm, buffers[0]);
              vlib_error_count (vm, node->node_index,
@@ -278,172 +323,47 @@ avf_tx_enqueue (vlib_main_t * vm, vlib_node_runtime_t * node, avf_txq_t * txq,
            }
 
          if (PREDICT_FALSE (n_desc_left < n_desc_needed))
-           /*
-            * Slow path may be able to to deal with this since it can handle
-            * ring wrap
-            */
            break;
 
-         /* Enqueue a context descriptor if needed */
-         if (PREDICT_FALSE (is_tso))
+         if (flags & VNET_BUFFER_F_GSO)
            {
-             if (avf_tx_fill_ctx_desc (vm, txq, d, b[0]))
-               /* Failure to acquire ref on ctx placeholder */
-               break;
-             txq->bufs[next + 1] = txq->bufs[next];
-             txq->bufs[next] = txq->ctx_desc_placeholder_bi;
-             next += 1;
-             n_desc += 1;
+             /* Enqueue a context descriptor */
+             tb[1] = tb[0];
+             tb[0] = avf_tx_fill_ctx_desc (vm, txq, d, b[0]);
              n_desc_left -= 1;
              d += 1;
+             tb += 1;
+             cmd = avf_tx_prepare_cksum (b[0], 1 /* is_tso */);
            }
-         while (b[0]->flags & VLIB_BUFFER_NEXT_PRESENT)
+         else if (flags & VNET_BUFFER_F_OFFLOAD)
            {
-             if (use_va_dma)
-               d[0].qword[0] = vlib_buffer_get_current_va (b[0]);
-             else
-               d[0].qword[0] = vlib_buffer_get_current_pa (vm, b[0]);
+             cmd = avf_tx_prepare_cksum (b[0], 0 /* is_tso */);
+           }
 
-             d[0].qword[1] = (((u64) b[0]->current_length) << 34) |
-               AVF_TXD_CMD_RSV | one_by_one_offload_flags;
+         /* Deal with chain buffer if present */
+         while (b[0]->flags & VLIB_BUFFER_NEXT_PRESENT)
+           {
+             avf_tx_fill_data_desc (vm, d, b[0], cmd, use_va_dma);
 
-             next += 1;
-             n_desc += 1;
              n_desc_left -= 1;
              d += 1;
+             tb += 1;
 
-             txq->bufs[next] = b[0]->next_buffer;
+             tb[0] = b[0]->next_buffer;
              b[0] = vlib_get_buffer (vm, b[0]->next_buffer);
            }
-       }
 
-      if (use_va_dma)
-       d[0].qword[0] = vlib_buffer_get_current_va (b[0]);
-      else
-       d[0].qword[0] = vlib_buffer_get_current_pa (vm, b[0]);
-
-      d[0].qword[1] =
-       (((u64) b[0]->current_length) << 34) | bits |
-       one_by_one_offload_flags;
+         avf_tx_fill_data_desc (vm, d, b[0], cmd_eop | cmd, use_va_dma);
+       }
 
-      next += 1;
-      n_desc += 1;
       buffers += 1;
       n_packets_left -= 1;
       n_desc_left -= 1;
       d += 1;
+      tb += 1;
     }
 
-  /* Slow path to support ring wrap */
-  if (PREDICT_FALSE (n_packets_left))
-    {
-      txq->n_enqueued += n_desc;
-
-      n_desc = 0;
-      d = txq->descs + (next & mask);
-
-      /* +8 to be consistent with fast path */
-      n_desc_left = txq->size - (txq->n_enqueued + 8);
-
-      while (n_packets_left && n_desc_left)
-       {
-
-         txq->bufs[next & mask] = buffers[0];
-         b[0] = vlib_get_buffer (vm, buffers[0]);
-
-         one_by_one_offload_flags = 0;
-         is_tso = ! !(b[0]->flags & VNET_BUFFER_F_GSO);
-         if (PREDICT_FALSE (is_tso || b[0]->flags & offload_mask))
-           one_by_one_offload_flags |= avf_tx_prepare_cksum (b[0], is_tso);
-
-         /* Deal with chain buffer if present */
-         if (is_tso || b[0]->flags & VLIB_BUFFER_NEXT_PRESENT)
-           {
-             n_desc_needed = 1 + is_tso;
-             b0 = b[0];
-
-             while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
-               {
-                 b0 = vlib_get_buffer (vm, b0->next_buffer);
-                 n_desc_needed++;
-               }
-
-             /* Spec says data descriptor is limited to 8 segments */
-             if (PREDICT_FALSE (!is_tso && n_desc_needed > 8))
-               {
-                 vlib_buffer_free_one (vm, buffers[0]);
-                 vlib_error_count (vm, node->node_index,
-                                   AVF_TX_ERROR_SEGMENT_SIZE_EXCEEDED, 1);
-                 n_packets_left -= 1;
-                 buffers += 1;
-                 continue;
-               }
-
-             if (PREDICT_FALSE (n_desc_left < n_desc_needed))
-               break;
-
-             /* Enqueue a context descriptor if needed */
-             if (PREDICT_FALSE (is_tso))
-               {
-                 if (avf_tx_fill_ctx_desc (vm, txq, d, b[0]))
-                   /* Failure to acquire ref on ctx placeholder */
-                   break;
-
-                 txq->bufs[(next + 1) & mask] = txq->bufs[next & mask];
-                 txq->bufs[next & mask] = txq->ctx_desc_placeholder_bi;
-                 next += 1;
-                 n_desc += 1;
-                 n_desc_left -= 1;
-                 d = txq->descs + (next & mask);
-               }
-             while (b[0]->flags & VLIB_BUFFER_NEXT_PRESENT)
-               {
-                 if (use_va_dma)
-                   d[0].qword[0] = vlib_buffer_get_current_va (b[0]);
-                 else
-                   d[0].qword[0] = vlib_buffer_get_current_pa (vm, b[0]);
-
-                 d[0].qword[1] = (((u64) b[0]->current_length) << 34) |
-                   AVF_TXD_CMD_RSV | one_by_one_offload_flags;
-
-                 next += 1;
-                 n_desc += 1;
-                 n_desc_left -= 1;
-                 d = txq->descs + (next & mask);
-
-                 txq->bufs[next & mask] = b[0]->next_buffer;
-                 b[0] = vlib_get_buffer (vm, b[0]->next_buffer);
-               }
-           }
-
-         if (use_va_dma)
-           d[0].qword[0] = vlib_buffer_get_current_va (b[0]);
-         else
-           d[0].qword[0] = vlib_buffer_get_current_pa (vm, b[0]);
-
-         d[0].qword[1] =
-           (((u64) b[0]->current_length) << 34) | bits |
-           one_by_one_offload_flags;
-
-         next += 1;
-         n_desc += 1;
-         buffers += 1;
-         n_packets_left -= 1;
-         n_desc_left -= 1;
-         d = txq->descs + (next & mask);
-       }
-    }
-
-  if ((slot = clib_ring_enq (txq->rs_slots)))
-    {
-      u16 rs_slot = slot[0] = (next - 1) & mask;
-      d = txq->descs + rs_slot;
-      d[0].qword[1] |= AVF_TXD_CMD_RS;
-    }
-
-  txq->next = next & mask;
-  clib_atomic_store_rel_n (txq->qtx_tail, txq->next);
-  txq->n_enqueued += n_desc;
+  *n_enq_descs = n_free_desc - n_desc_left;
   return n_packets - n_packets_left;
 }
 
@@ -456,8 +376,10 @@ VNET_DEVICE_CLASS_TX_FN (avf_device_class) (vlib_main_t * vm,
   u32 thread_index = vm->thread_index;
   u8 qid = thread_index;
   avf_txq_t *txq = vec_elt_at_index (ad->txqs, qid % ad->num_queue_pairs);
+  u16 next = txq->next;
+  u16 mask = txq->size - 1;
   u32 *buffers = vlib_frame_vector_args (frame);
-  u16 n_enq, n_left;
+  u16 n_enq, n_left, n_desc, *slot;
   u16 n_retry = 2;
 
   clib_spinlock_lock_if_init (&txq->lock);
@@ -497,12 +419,45 @@ retry:
        }
     }
 
+  n_desc = 0;
   if (ad->flags & AVF_DEVICE_F_VA_DMA)
-    n_enq = avf_tx_enqueue (vm, node, txq, buffers, n_left, 1);
+    n_enq = avf_tx_prepare (vm, node, txq, buffers, n_left, &n_desc, 1);
   else
-    n_enq = avf_tx_enqueue (vm, node, txq, buffers, n_left, 0);
+    n_enq = avf_tx_prepare (vm, node, txq, buffers, n_left, &n_desc, 0);
 
-  n_left -= n_enq;
+  if (n_desc)
+    {
+      if (PREDICT_TRUE (next + n_desc <= txq->size))
+       {
+         /* no wrap */
+         avf_tx_copy_desc (txq->descs + next, txq->tmp_descs, n_desc);
+         vlib_buffer_copy_indices (txq->bufs + next, txq->tmp_bufs, n_desc);
+       }
+      else
+       {
+         /* wrap */
+         u32 n_not_wrap = txq->size - next;
+         avf_tx_copy_desc (txq->descs + next, txq->tmp_descs, n_not_wrap);
+         avf_tx_copy_desc (txq->descs, txq->tmp_descs + n_not_wrap,
+                           n_desc - n_not_wrap);
+         vlib_buffer_copy_indices (txq->bufs + next, txq->tmp_bufs,
+                                   n_not_wrap);
+         vlib_buffer_copy_indices (txq->bufs, txq->tmp_bufs + n_not_wrap,
+                                   n_desc - n_not_wrap);
+       }
+
+      next += n_desc;
+      if ((slot = clib_ring_enq (txq->rs_slots)))
+       {
+         u16 rs_slot = slot[0] = (next - 1) & mask;
+         txq->descs[rs_slot].qword[1] |= AVF_TXD_CMD_RS;
+       }
+
+      txq->next = next & mask;
+      avf_tail_write (txq->qtx_tail, txq->next);
+      txq->n_enqueued += n_desc;
+      n_left -= n_enq;
+    }
 
   if (n_left)
     {