Multiversioning: Device (tx) function constructor
[vpp.git] / src / plugins / avf / output.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #include <vlib/vlib.h>
19 #include <vlib/unix/unix.h>
20 #include <vlib/pci/pci.h>
21 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/devices/devices.h>
23
24 #include <avf/avf.h>
25
26 #define AVF_TXQ_DESC_CMD(x)             (1 << (x + 4))
27 #define AVF_TXQ_DESC_CMD_EOP            AVF_TXQ_DESC_CMD(0)
28 #define AVF_TXQ_DESC_CMD_RS             AVF_TXQ_DESC_CMD(1)
29 #define AVF_TXQ_DESC_CMD_RSV            AVF_TXQ_DESC_CMD(2)
30
31 static_always_inline u8
32 avf_tx_desc_get_dtyp (avf_tx_desc_t * d)
33 {
34   return d->qword[1] & 0x0f;
35 }
36
37 VNET_DEVICE_CLASS_TX_FN (avf_device_class) (vlib_main_t * vm,
38                                             vlib_node_runtime_t * node,
39                                             vlib_frame_t * frame)
40 {
41   avf_main_t *am = &avf_main;
42   vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
43   avf_device_t *ad = pool_elt_at_index (am->devices, rd->dev_instance);
44   u32 thread_index = vm->thread_index;
45   u8 qid = thread_index;
46   avf_txq_t *txq = vec_elt_at_index (ad->txqs, qid % ad->num_queue_pairs);
47   avf_tx_desc_t *d0, *d1, *d2, *d3;
48   u32 *buffers = vlib_frame_args (frame);
49   u32 bi0, bi1, bi2, bi3;
50   u16 n_left = frame->n_vectors;
51   vlib_buffer_t *b0, *b1, *b2, *b3;
52   u16 mask = txq->size - 1;
53   u64 bits = (AVF_TXQ_DESC_CMD_EOP | AVF_TXQ_DESC_CMD_RS |
54               AVF_TXQ_DESC_CMD_RSV);
55
56   clib_spinlock_lock_if_init (&txq->lock);
57
58   /* release cosumed bufs */
59   if (txq->n_enqueued)
60     {
61       u16 first, slot, n_free = 0;
62       first = slot = (txq->next - txq->n_enqueued) & mask;
63       d0 = txq->descs + slot;
64       while (n_free < txq->n_enqueued && avf_tx_desc_get_dtyp (d0) == 0x0F)
65         {
66           n_free++;
67           slot = (slot + 1) & mask;
68           d0 = txq->descs + slot;
69         }
70
71       if (n_free)
72         {
73           txq->n_enqueued -= n_free;
74           vlib_buffer_free_from_ring (vm, txq->bufs, first, txq->size,
75                                       n_free);
76         }
77     }
78
79   while (n_left >= 8)
80     {
81       u16 slot0, slot1, slot2, slot3;
82
83       vlib_prefetch_buffer_with_index (vm, buffers[4], LOAD);
84       vlib_prefetch_buffer_with_index (vm, buffers[5], LOAD);
85       vlib_prefetch_buffer_with_index (vm, buffers[6], LOAD);
86       vlib_prefetch_buffer_with_index (vm, buffers[7], LOAD);
87
88       slot0 = txq->next;
89       slot1 = (txq->next + 1) & mask;
90       slot2 = (txq->next + 2) & mask;
91       slot3 = (txq->next + 3) & mask;
92
93       d0 = txq->descs + slot0;
94       d1 = txq->descs + slot1;
95       d2 = txq->descs + slot2;
96       d3 = txq->descs + slot3;
97
98       bi0 = buffers[0];
99       bi1 = buffers[1];
100       bi2 = buffers[2];
101       bi3 = buffers[3];
102
103       txq->bufs[slot0] = bi0;
104       txq->bufs[slot1] = bi1;
105       txq->bufs[slot2] = bi2;
106       txq->bufs[slot3] = bi3;
107       b0 = vlib_get_buffer (vm, bi0);
108       b1 = vlib_get_buffer (vm, bi1);
109       b2 = vlib_get_buffer (vm, bi2);
110       b3 = vlib_get_buffer (vm, bi3);
111
112 #if 0
113       d->qword[0] = vlib_get_buffer_data_physical_address (vm, bi0) +
114         b0->current_data;
115 #else
116       d0->qword[0] = pointer_to_uword (b0->data) + b0->current_data;
117       d1->qword[0] = pointer_to_uword (b1->data) + b1->current_data;
118       d2->qword[0] = pointer_to_uword (b2->data) + b2->current_data;
119       d3->qword[0] = pointer_to_uword (b3->data) + b3->current_data;
120
121 #endif
122       d0->qword[1] = ((u64) b0->current_length) << 34 | bits;
123       d1->qword[1] = ((u64) b1->current_length) << 34 | bits;
124       d2->qword[1] = ((u64) b2->current_length) << 34 | bits;
125       d3->qword[1] = ((u64) b3->current_length) << 34 | bits;
126
127       txq->next = (txq->next + 4) & mask;
128       txq->n_enqueued += 4;
129       buffers += 4;
130       n_left -= 4;
131     }
132
133   while (n_left)
134     {
135       d0 = txq->descs + txq->next;
136       bi0 = buffers[0];
137       txq->bufs[txq->next] = bi0;
138       b0 = vlib_get_buffer (vm, bi0);
139
140 #if 0
141       d->qword[0] = vlib_get_buffer_data_physical_address (vm, bi0) +
142         b0->current_data;
143 #else
144       d0->qword[0] = pointer_to_uword (b0->data) + b0->current_data;
145 #endif
146       d0->qword[1] = (((u64) b0->current_length) << 34) | bits;
147
148       txq->next = (txq->next + 1) & mask;
149       txq->n_enqueued++;
150       buffers++;
151       n_left--;
152     }
153   CLIB_MEMORY_BARRIER ();
154   *(txq->qtx_tail) = txq->next;
155
156   clib_spinlock_unlock_if_init (&txq->lock);
157
158   return frame->n_vectors - n_left;
159 }
160
161 /*
162  * fd.io coding-style-patch-verification: ON
163  *
164  * Local Variables:
165  * eval: (c-set-style "gnu")
166  * End:
167  */