9beb6f3e6cf37191276f2aa7141a5a45a4031def
[dpdk.git] / drivers / net / sfc / sfc_tx.c
1 /*-
2  *   BSD LICENSE
3  *
4  * Copyright (c) 2016-2017 Solarflare Communications Inc.
5  * All rights reserved.
6  *
7  * This software was jointly developed between OKTET Labs (under contract
8  * for Solarflare) and Solarflare Communications, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  *    this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  *    this list of conditions and the following disclaimer in the documentation
17  *    and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include "sfc.h"
33 #include "sfc_debug.h"
34 #include "sfc_log.h"
35 #include "sfc_ev.h"
36 #include "sfc_tx.h"
37 #include "sfc_tweak.h"
38 #include "sfc_kvargs.h"
39
40 /*
41  * Maximum number of TX queue flush attempts in case of
42  * failure or flush timeout
43  */
44 #define SFC_TX_QFLUSH_ATTEMPTS          (3)
45
46 /*
47  * Time to wait between event queue polling attempts when waiting for TX
48  * queue flush done or flush failed events
49  */
50 #define SFC_TX_QFLUSH_POLL_WAIT_MS      (1)
51
52 /*
53  * Maximum number of event queue polling attempts when waiting for TX queue
54  * flush done or flush failed events; it defines TX queue flush attempt timeout
55  * together with SFC_TX_QFLUSH_POLL_WAIT_MS
56  */
57 #define SFC_TX_QFLUSH_POLL_ATTEMPTS     (2000)
58
59 static int
60 sfc_tx_qcheck_conf(struct sfc_adapter *sa, uint16_t nb_tx_desc,
61                    const struct rte_eth_txconf *tx_conf)
62 {
63         unsigned int flags = tx_conf->txq_flags;
64         const efx_nic_cfg_t *encp = efx_nic_cfg_get(sa->nic);
65         int rc = 0;
66
67         if (tx_conf->tx_rs_thresh != 0) {
68                 sfc_err(sa, "RS bit in transmit descriptor is not supported");
69                 rc = EINVAL;
70         }
71
72         if (tx_conf->tx_free_thresh > EFX_TXQ_LIMIT(nb_tx_desc)) {
73                 sfc_err(sa,
74                         "TxQ free threshold too large: %u vs maximum %u",
75                         tx_conf->tx_free_thresh, EFX_TXQ_LIMIT(nb_tx_desc));
76                 rc = EINVAL;
77         }
78
79         if (tx_conf->tx_thresh.pthresh != 0 ||
80             tx_conf->tx_thresh.hthresh != 0 ||
81             tx_conf->tx_thresh.wthresh != 0) {
82                 sfc_err(sa,
83                         "prefetch/host/writeback thresholds are not supported");
84                 rc = EINVAL;
85         }
86
87         if ((flags & ETH_TXQ_FLAGS_NOVLANOFFL) == 0) {
88                 if (!encp->enc_hw_tx_insert_vlan_enabled) {
89                         sfc_err(sa, "VLAN offload is not supported");
90                         rc = EINVAL;
91                 } else if (~sa->dp_tx->features & SFC_DP_TX_FEAT_VLAN_INSERT) {
92                         sfc_err(sa,
93                                 "VLAN offload is not supported by %s datapath",
94                                 sa->dp_tx->dp.name);
95                         rc = EINVAL;
96                 }
97         }
98
99         if ((flags & ETH_TXQ_FLAGS_NOXSUMSCTP) == 0) {
100                 sfc_err(sa, "SCTP offload is not supported");
101                 rc = EINVAL;
102         }
103
104         /* We either perform both TCP and UDP offload, or no offload at all */
105         if (((flags & ETH_TXQ_FLAGS_NOXSUMTCP) == 0) !=
106             ((flags & ETH_TXQ_FLAGS_NOXSUMUDP) == 0)) {
107                 sfc_err(sa, "TCP and UDP offloads can't be set independently");
108                 rc = EINVAL;
109         }
110
111         return rc;
112 }
113
114 void
115 sfc_tx_qflush_done(struct sfc_txq *txq)
116 {
117         txq->state |= SFC_TXQ_FLUSHED;
118         txq->state &= ~SFC_TXQ_FLUSHING;
119 }
120
121 int
122 sfc_tx_qinit(struct sfc_adapter *sa, unsigned int sw_index,
123              uint16_t nb_tx_desc, unsigned int socket_id,
124              const struct rte_eth_txconf *tx_conf)
125 {
126         const efx_nic_cfg_t *encp = efx_nic_cfg_get(sa->nic);
127         struct sfc_txq_info *txq_info;
128         struct sfc_evq *evq;
129         struct sfc_txq *txq;
130         unsigned int evq_index = sfc_evq_index_by_txq_sw_index(sa, sw_index);
131         int rc = 0;
132         struct sfc_dp_tx_qcreate_info info;
133
134         sfc_log_init(sa, "TxQ = %u", sw_index);
135
136         rc = sfc_tx_qcheck_conf(sa, nb_tx_desc, tx_conf);
137         if (rc != 0)
138                 goto fail_bad_conf;
139
140         SFC_ASSERT(sw_index < sa->txq_count);
141         txq_info = &sa->txq_info[sw_index];
142
143         SFC_ASSERT(nb_tx_desc <= sa->txq_max_entries);
144         txq_info->entries = nb_tx_desc;
145
146         rc = sfc_ev_qinit(sa, evq_index, txq_info->entries, socket_id);
147         if (rc != 0)
148                 goto fail_ev_qinit;
149
150         evq = sa->evq_info[evq_index].evq;
151
152         rc = ENOMEM;
153         txq = rte_zmalloc_socket("sfc-txq", sizeof(*txq), 0, socket_id);
154         if (txq == NULL)
155                 goto fail_txq_alloc;
156
157         txq_info->txq = txq;
158
159         txq->hw_index = sw_index;
160         txq->evq = evq;
161         txq->free_thresh =
162                 (tx_conf->tx_free_thresh) ? tx_conf->tx_free_thresh :
163                 SFC_TX_DEFAULT_FREE_THRESH;
164         txq->flags = tx_conf->txq_flags;
165
166         rc = sfc_dma_alloc(sa, "txq", sw_index, EFX_TXQ_SIZE(txq_info->entries),
167                            socket_id, &txq->mem);
168         if (rc != 0)
169                 goto fail_dma_alloc;
170
171         memset(&info, 0, sizeof(info));
172         info.free_thresh = txq->free_thresh;
173         info.flags = tx_conf->txq_flags;
174         info.txq_entries = txq_info->entries;
175         info.dma_desc_size_max = encp->enc_tx_dma_desc_size_max;
176
177         rc = sa->dp_tx->qcreate(sa->eth_dev->data->port_id, sw_index,
178                                 &SFC_DEV_TO_PCI(sa->eth_dev)->addr,
179                                 socket_id, &info, &txq->dp);
180         if (rc != 0)
181                 goto fail_dp_tx_qinit;
182
183         evq->dp_txq = txq->dp;
184
185         txq->state = SFC_TXQ_INITIALIZED;
186
187         txq_info->deferred_start = (tx_conf->tx_deferred_start != 0);
188
189         return 0;
190
191 fail_dp_tx_qinit:
192         sfc_dma_free(sa, &txq->mem);
193
194 fail_dma_alloc:
195         txq_info->txq = NULL;
196         rte_free(txq);
197
198 fail_txq_alloc:
199         sfc_ev_qfini(sa, evq_index);
200
201 fail_ev_qinit:
202         txq_info->entries = 0;
203
204 fail_bad_conf:
205         sfc_log_init(sa, "failed (TxQ = %u, rc = %d)", sw_index, rc);
206         return rc;
207 }
208
209 void
210 sfc_tx_qfini(struct sfc_adapter *sa, unsigned int sw_index)
211 {
212         struct sfc_txq_info *txq_info;
213         struct sfc_txq *txq;
214
215         sfc_log_init(sa, "TxQ = %u", sw_index);
216
217         SFC_ASSERT(sw_index < sa->txq_count);
218         txq_info = &sa->txq_info[sw_index];
219
220         txq = txq_info->txq;
221         SFC_ASSERT(txq != NULL);
222         SFC_ASSERT(txq->state == SFC_TXQ_INITIALIZED);
223
224         sa->dp_tx->qdestroy(txq->dp);
225         txq->dp = NULL;
226
227         txq_info->txq = NULL;
228         txq_info->entries = 0;
229
230         sfc_dma_free(sa, &txq->mem);
231         rte_free(txq);
232 }
233
234 static int
235 sfc_tx_qinit_info(struct sfc_adapter *sa, unsigned int sw_index)
236 {
237         sfc_log_init(sa, "TxQ = %u", sw_index);
238
239         return 0;
240 }
241
242 static int
243 sfc_tx_check_mode(struct sfc_adapter *sa, const struct rte_eth_txmode *txmode)
244 {
245         int rc = 0;
246
247         switch (txmode->mq_mode) {
248         case ETH_MQ_TX_NONE:
249                 break;
250         default:
251                 sfc_err(sa, "Tx multi-queue mode %u not supported",
252                         txmode->mq_mode);
253                 rc = EINVAL;
254         }
255
256         /*
257          * These features are claimed to be i40e-specific,
258          * but it does make sense to double-check their absence
259          */
260         if (txmode->hw_vlan_reject_tagged) {
261                 sfc_err(sa, "Rejecting tagged packets not supported");
262                 rc = EINVAL;
263         }
264
265         if (txmode->hw_vlan_reject_untagged) {
266                 sfc_err(sa, "Rejecting untagged packets not supported");
267                 rc = EINVAL;
268         }
269
270         if (txmode->hw_vlan_insert_pvid) {
271                 sfc_err(sa, "Port-based VLAN insertion not supported");
272                 rc = EINVAL;
273         }
274
275         return rc;
276 }
277
278 int
279 sfc_tx_init(struct sfc_adapter *sa)
280 {
281         const efx_nic_cfg_t *encp = efx_nic_cfg_get(sa->nic);
282         const struct rte_eth_conf *dev_conf = &sa->eth_dev->data->dev_conf;
283         unsigned int sw_index;
284         int rc = 0;
285
286         /*
287          * The datapath implementation assumes absence of boundary
288          * limits on Tx DMA descriptors. Addition of these checks on
289          * datapath would simply make the datapath slower.
290          */
291         if (encp->enc_tx_dma_desc_boundary != 0) {
292                 rc = ENOTSUP;
293                 goto fail_tx_dma_desc_boundary;
294         }
295
296         rc = sfc_tx_check_mode(sa, &dev_conf->txmode);
297         if (rc != 0)
298                 goto fail_check_mode;
299
300         sa->txq_count = sa->eth_dev->data->nb_tx_queues;
301
302         sa->txq_info = rte_calloc_socket("sfc-txqs", sa->txq_count,
303                                          sizeof(sa->txq_info[0]), 0,
304                                          sa->socket_id);
305         if (sa->txq_info == NULL)
306                 goto fail_txqs_alloc;
307
308         for (sw_index = 0; sw_index < sa->txq_count; ++sw_index) {
309                 rc = sfc_tx_qinit_info(sa, sw_index);
310                 if (rc != 0)
311                         goto fail_tx_qinit_info;
312         }
313
314         return 0;
315
316 fail_tx_qinit_info:
317         rte_free(sa->txq_info);
318         sa->txq_info = NULL;
319
320 fail_txqs_alloc:
321         sa->txq_count = 0;
322
323 fail_check_mode:
324 fail_tx_dma_desc_boundary:
325         sfc_log_init(sa, "failed (rc = %d)", rc);
326         return rc;
327 }
328
329 void
330 sfc_tx_fini(struct sfc_adapter *sa)
331 {
332         int sw_index;
333
334         sw_index = sa->txq_count;
335         while (--sw_index >= 0) {
336                 if (sa->txq_info[sw_index].txq != NULL)
337                         sfc_tx_qfini(sa, sw_index);
338         }
339
340         rte_free(sa->txq_info);
341         sa->txq_info = NULL;
342         sa->txq_count = 0;
343 }
344
345 int
346 sfc_tx_qstart(struct sfc_adapter *sa, unsigned int sw_index)
347 {
348         struct rte_eth_dev_data *dev_data;
349         struct sfc_txq_info *txq_info;
350         struct sfc_txq *txq;
351         struct sfc_evq *evq;
352         uint16_t flags;
353         unsigned int desc_index;
354         int rc = 0;
355
356         sfc_log_init(sa, "TxQ = %u", sw_index);
357
358         SFC_ASSERT(sw_index < sa->txq_count);
359         txq_info = &sa->txq_info[sw_index];
360
361         txq = txq_info->txq;
362
363         SFC_ASSERT(txq->state == SFC_TXQ_INITIALIZED);
364
365         evq = txq->evq;
366
367         rc = sfc_ev_qstart(sa, evq->evq_index);
368         if (rc != 0)
369                 goto fail_ev_qstart;
370
371         /*
372          * It seems that DPDK has no controls regarding IPv4 offloads,
373          * hence, we always enable it here
374          */
375         if ((txq->flags & ETH_TXQ_FLAGS_NOXSUMTCP) ||
376             (txq->flags & ETH_TXQ_FLAGS_NOXSUMUDP)) {
377                 flags = EFX_TXQ_CKSUM_IPV4;
378         } else {
379                 flags = EFX_TXQ_CKSUM_IPV4 | EFX_TXQ_CKSUM_TCPUDP;
380
381                 if (sa->tso)
382                         flags |= EFX_TXQ_FATSOV2;
383         }
384
385         rc = efx_tx_qcreate(sa->nic, sw_index, 0, &txq->mem,
386                             txq_info->entries, 0 /* not used on EF10 */,
387                             flags, evq->common,
388                             &txq->common, &desc_index);
389         if (rc != 0) {
390                 if (sa->tso && (rc == ENOSPC))
391                         sfc_err(sa, "ran out of TSO contexts");
392
393                 goto fail_tx_qcreate;
394         }
395
396         efx_tx_qenable(txq->common);
397
398         txq->state |= SFC_TXQ_STARTED;
399
400         rc = sa->dp_tx->qstart(txq->dp, evq->read_ptr, desc_index);
401         if (rc != 0)
402                 goto fail_dp_qstart;
403
404         /*
405          * It seems to be used by DPDK for debug purposes only ('rte_ether')
406          */
407         dev_data = sa->eth_dev->data;
408         dev_data->tx_queue_state[sw_index] = RTE_ETH_QUEUE_STATE_STARTED;
409
410         return 0;
411
412 fail_dp_qstart:
413         txq->state = SFC_TXQ_INITIALIZED;
414         efx_tx_qdestroy(txq->common);
415
416 fail_tx_qcreate:
417         sfc_ev_qstop(sa, evq->evq_index);
418
419 fail_ev_qstart:
420         return rc;
421 }
422
423 void
424 sfc_tx_qstop(struct sfc_adapter *sa, unsigned int sw_index)
425 {
426         struct rte_eth_dev_data *dev_data;
427         struct sfc_txq_info *txq_info;
428         struct sfc_txq *txq;
429         unsigned int retry_count;
430         unsigned int wait_count;
431
432         sfc_log_init(sa, "TxQ = %u", sw_index);
433
434         SFC_ASSERT(sw_index < sa->txq_count);
435         txq_info = &sa->txq_info[sw_index];
436
437         txq = txq_info->txq;
438
439         if (txq->state == SFC_TXQ_INITIALIZED)
440                 return;
441
442         SFC_ASSERT(txq->state & SFC_TXQ_STARTED);
443
444         sa->dp_tx->qstop(txq->dp, &txq->evq->read_ptr);
445
446         /*
447          * Retry TX queue flushing in case of flush failed or
448          * timeout; in the worst case it can delay for 6 seconds
449          */
450         for (retry_count = 0;
451              ((txq->state & SFC_TXQ_FLUSHED) == 0) &&
452              (retry_count < SFC_TX_QFLUSH_ATTEMPTS);
453              ++retry_count) {
454                 if (efx_tx_qflush(txq->common) != 0) {
455                         txq->state |= SFC_TXQ_FLUSHING;
456                         break;
457                 }
458
459                 /*
460                  * Wait for TX queue flush done or flush failed event at least
461                  * SFC_TX_QFLUSH_POLL_WAIT_MS milliseconds and not more
462                  * than 2 seconds (SFC_TX_QFLUSH_POLL_WAIT_MS multiplied
463                  * by SFC_TX_QFLUSH_POLL_ATTEMPTS)
464                  */
465                 wait_count = 0;
466                 do {
467                         rte_delay_ms(SFC_TX_QFLUSH_POLL_WAIT_MS);
468                         sfc_ev_qpoll(txq->evq);
469                 } while ((txq->state & SFC_TXQ_FLUSHING) &&
470                          wait_count++ < SFC_TX_QFLUSH_POLL_ATTEMPTS);
471
472                 if (txq->state & SFC_TXQ_FLUSHING)
473                         sfc_err(sa, "TxQ %u flush timed out", sw_index);
474
475                 if (txq->state & SFC_TXQ_FLUSHED)
476                         sfc_info(sa, "TxQ %u flushed", sw_index);
477         }
478
479         sa->dp_tx->qreap(txq->dp);
480
481         txq->state = SFC_TXQ_INITIALIZED;
482
483         efx_tx_qdestroy(txq->common);
484
485         sfc_ev_qstop(sa, txq->evq->evq_index);
486
487         /*
488          * It seems to be used by DPDK for debug purposes only ('rte_ether')
489          */
490         dev_data = sa->eth_dev->data;
491         dev_data->tx_queue_state[sw_index] = RTE_ETH_QUEUE_STATE_STOPPED;
492 }
493
494 int
495 sfc_tx_start(struct sfc_adapter *sa)
496 {
497         unsigned int sw_index;
498         int rc = 0;
499
500         sfc_log_init(sa, "txq_count = %u", sa->txq_count);
501
502         if (sa->tso) {
503                 if (!efx_nic_cfg_get(sa->nic)->enc_fw_assisted_tso_v2_enabled) {
504                         sfc_warn(sa, "TSO support was unable to be restored");
505                         sa->tso = B_FALSE;
506                 }
507         }
508
509         rc = efx_tx_init(sa->nic);
510         if (rc != 0)
511                 goto fail_efx_tx_init;
512
513         for (sw_index = 0; sw_index < sa->txq_count; ++sw_index) {
514                 if (!(sa->txq_info[sw_index].deferred_start) ||
515                     sa->txq_info[sw_index].deferred_started) {
516                         rc = sfc_tx_qstart(sa, sw_index);
517                         if (rc != 0)
518                                 goto fail_tx_qstart;
519                 }
520         }
521
522         return 0;
523
524 fail_tx_qstart:
525         while (sw_index-- > 0)
526                 sfc_tx_qstop(sa, sw_index);
527
528         efx_tx_fini(sa->nic);
529
530 fail_efx_tx_init:
531         sfc_log_init(sa, "failed (rc = %d)", rc);
532         return rc;
533 }
534
535 void
536 sfc_tx_stop(struct sfc_adapter *sa)
537 {
538         unsigned int sw_index;
539
540         sfc_log_init(sa, "txq_count = %u", sa->txq_count);
541
542         sw_index = sa->txq_count;
543         while (sw_index-- > 0) {
544                 if (sa->txq_info[sw_index].txq != NULL)
545                         sfc_tx_qstop(sa, sw_index);
546         }
547
548         efx_tx_fini(sa->nic);
549 }
550
551 static void
552 sfc_efx_tx_reap(struct sfc_efx_txq *txq)
553 {
554         unsigned int completed;
555
556         sfc_ev_qpoll(txq->evq);
557
558         for (completed = txq->completed;
559              completed != txq->pending; completed++) {
560                 struct sfc_efx_tx_sw_desc *txd;
561
562                 txd = &txq->sw_ring[completed & txq->ptr_mask];
563
564                 if (txd->mbuf != NULL) {
565                         rte_pktmbuf_free(txd->mbuf);
566                         txd->mbuf = NULL;
567                 }
568         }
569
570         txq->completed = completed;
571 }
572
573 /*
574  * The function is used to insert or update VLAN tag;
575  * the firmware has state of the firmware tag to insert per TxQ
576  * (controlled by option descriptors), hence, if the tag of the
577  * packet to be sent is different from one remembered by the firmware,
578  * the function will update it
579  */
580 static unsigned int
581 sfc_efx_tx_maybe_insert_tag(struct sfc_efx_txq *txq, struct rte_mbuf *m,
582                             efx_desc_t **pend)
583 {
584         uint16_t this_tag = ((m->ol_flags & PKT_TX_VLAN_PKT) ?
585                              m->vlan_tci : 0);
586
587         if (this_tag == txq->hw_vlan_tci)
588                 return 0;
589
590         /*
591          * The expression inside SFC_ASSERT() is not desired to be checked in
592          * a non-debug build because it might be too expensive on the data path
593          */
594         SFC_ASSERT(efx_nic_cfg_get(txq->evq->sa->nic)->enc_hw_tx_insert_vlan_enabled);
595
596         efx_tx_qdesc_vlantci_create(txq->common, rte_cpu_to_be_16(this_tag),
597                                     *pend);
598         (*pend)++;
599         txq->hw_vlan_tci = this_tag;
600
601         return 1;
602 }
603
604 static uint16_t
605 sfc_efx_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
606 {
607         struct sfc_dp_txq *dp_txq = (struct sfc_dp_txq *)tx_queue;
608         struct sfc_efx_txq *txq = sfc_efx_txq_by_dp_txq(dp_txq);
609         unsigned int added = txq->added;
610         unsigned int pushed = added;
611         unsigned int pkts_sent = 0;
612         efx_desc_t *pend = &txq->pend_desc[0];
613         const unsigned int hard_max_fill = EFX_TXQ_LIMIT(txq->ptr_mask + 1);
614         const unsigned int soft_max_fill = hard_max_fill - txq->free_thresh;
615         unsigned int fill_level = added - txq->completed;
616         boolean_t reap_done;
617         int rc __rte_unused;
618         struct rte_mbuf **pktp;
619
620         if (unlikely((txq->flags & SFC_EFX_TXQ_FLAG_RUNNING) == 0))
621                 goto done;
622
623         /*
624          * If insufficient space for a single packet is present,
625          * we should reap; otherwise, we shouldn't do that all the time
626          * to avoid latency increase
627          */
628         reap_done = (fill_level > soft_max_fill);
629
630         if (reap_done) {
631                 sfc_efx_tx_reap(txq);
632                 /*
633                  * Recalculate fill level since 'txq->completed'
634                  * might have changed on reap
635                  */
636                 fill_level = added - txq->completed;
637         }
638
639         for (pkts_sent = 0, pktp = &tx_pkts[0];
640              (pkts_sent < nb_pkts) && (fill_level <= soft_max_fill);
641              pkts_sent++, pktp++) {
642                 struct rte_mbuf         *m_seg = *pktp;
643                 size_t                  pkt_len = m_seg->pkt_len;
644                 unsigned int            pkt_descs = 0;
645                 size_t                  in_off = 0;
646
647                 /*
648                  * Here VLAN TCI is expected to be zero in case if no
649                  * DEV_TX_VLAN_OFFLOAD capability is advertised;
650                  * if the calling app ignores the absence of
651                  * DEV_TX_VLAN_OFFLOAD and pushes VLAN TCI, then
652                  * TX_ERROR will occur
653                  */
654                 pkt_descs += sfc_efx_tx_maybe_insert_tag(txq, m_seg, &pend);
655
656                 if (m_seg->ol_flags & PKT_TX_TCP_SEG) {
657                         /*
658                          * We expect correct 'pkt->l[2, 3, 4]_len' values
659                          * to be set correctly by the caller
660                          */
661                         if (sfc_efx_tso_do(txq, added, &m_seg, &in_off, &pend,
662                                            &pkt_descs, &pkt_len) != 0) {
663                                 /* We may have reached this place for
664                                  * one of the following reasons:
665                                  *
666                                  * 1) Packet header length is greater
667                                  *    than SFC_TSOH_STD_LEN
668                                  * 2) TCP header starts at more then
669                                  *    208 bytes into the frame
670                                  *
671                                  * We will deceive RTE saying that we have sent
672                                  * the packet, but we will actually drop it.
673                                  * Hence, we should revert 'pend' to the
674                                  * previous state (in case we have added
675                                  * VLAN descriptor) and start processing
676                                  * another one packet. But the original
677                                  * mbuf shouldn't be orphaned
678                                  */
679                                 pend -= pkt_descs;
680
681                                 rte_pktmbuf_free(*pktp);
682
683                                 continue;
684                         }
685
686                         /*
687                          * We've only added 2 FATSOv2 option descriptors
688                          * and 1 descriptor for the linearized packet header.
689                          * The outstanding work will be done in the same manner
690                          * as for the usual non-TSO path
691                          */
692                 }
693
694                 for (; m_seg != NULL; m_seg = m_seg->next) {
695                         efsys_dma_addr_t        next_frag;
696                         size_t                  seg_len;
697
698                         seg_len = m_seg->data_len;
699                         next_frag = rte_mbuf_data_dma_addr(m_seg);
700
701                         /*
702                          * If we've started TSO transaction few steps earlier,
703                          * we'll skip packet header using an offset in the
704                          * current segment (which has been set to the
705                          * first one containing payload)
706                          */
707                         seg_len -= in_off;
708                         next_frag += in_off;
709                         in_off = 0;
710
711                         do {
712                                 efsys_dma_addr_t        frag_addr = next_frag;
713                                 size_t                  frag_len;
714
715                                 /*
716                                  * It is assumed here that there is no
717                                  * limitation on address boundary
718                                  * crossing by DMA descriptor.
719                                  */
720                                 frag_len = MIN(seg_len, txq->dma_desc_size_max);
721                                 next_frag += frag_len;
722                                 seg_len -= frag_len;
723                                 pkt_len -= frag_len;
724
725                                 efx_tx_qdesc_dma_create(txq->common,
726                                                         frag_addr, frag_len,
727                                                         (pkt_len == 0),
728                                                         pend++);
729
730                                 pkt_descs++;
731                         } while (seg_len != 0);
732                 }
733
734                 added += pkt_descs;
735
736                 fill_level += pkt_descs;
737                 if (unlikely(fill_level > hard_max_fill)) {
738                         /*
739                          * Our estimation for maximum number of descriptors
740                          * required to send a packet seems to be wrong.
741                          * Try to reap (if we haven't yet).
742                          */
743                         if (!reap_done) {
744                                 sfc_efx_tx_reap(txq);
745                                 reap_done = B_TRUE;
746                                 fill_level = added - txq->completed;
747                                 if (fill_level > hard_max_fill) {
748                                         pend -= pkt_descs;
749                                         break;
750                                 }
751                         } else {
752                                 pend -= pkt_descs;
753                                 break;
754                         }
755                 }
756
757                 /* Assign mbuf to the last used desc */
758                 txq->sw_ring[(added - 1) & txq->ptr_mask].mbuf = *pktp;
759         }
760
761         if (likely(pkts_sent > 0)) {
762                 rc = efx_tx_qdesc_post(txq->common, txq->pend_desc,
763                                        pend - &txq->pend_desc[0],
764                                        txq->completed, &txq->added);
765                 SFC_ASSERT(rc == 0);
766
767                 if (likely(pushed != txq->added))
768                         efx_tx_qpush(txq->common, txq->added, pushed);
769         }
770
771 #if SFC_TX_XMIT_PKTS_REAP_AT_LEAST_ONCE
772         if (!reap_done)
773                 sfc_efx_tx_reap(txq);
774 #endif
775
776 done:
777         return pkts_sent;
778 }
779
780 struct sfc_txq *
781 sfc_txq_by_dp_txq(const struct sfc_dp_txq *dp_txq)
782 {
783         const struct sfc_dp_queue *dpq = &dp_txq->dpq;
784         struct rte_eth_dev *eth_dev;
785         struct sfc_adapter *sa;
786         struct sfc_txq *txq;
787
788         SFC_ASSERT(rte_eth_dev_is_valid_port(dpq->port_id));
789         eth_dev = &rte_eth_devices[dpq->port_id];
790
791         sa = eth_dev->data->dev_private;
792
793         SFC_ASSERT(dpq->queue_id < sa->txq_count);
794         txq = sa->txq_info[dpq->queue_id].txq;
795
796         SFC_ASSERT(txq != NULL);
797         return txq;
798 }
799
800 static sfc_dp_tx_qcreate_t sfc_efx_tx_qcreate;
801 static int
802 sfc_efx_tx_qcreate(uint16_t port_id, uint16_t queue_id,
803                    const struct rte_pci_addr *pci_addr,
804                    int socket_id,
805                    const struct sfc_dp_tx_qcreate_info *info,
806                    struct sfc_dp_txq **dp_txqp)
807 {
808         struct sfc_efx_txq *txq;
809         struct sfc_txq *ctrl_txq;
810         int rc;
811
812         rc = ENOMEM;
813         txq = rte_zmalloc_socket("sfc-efx-txq", sizeof(*txq),
814                                  RTE_CACHE_LINE_SIZE, socket_id);
815         if (txq == NULL)
816                 goto fail_txq_alloc;
817
818         sfc_dp_queue_init(&txq->dp.dpq, port_id, queue_id, pci_addr);
819
820         rc = ENOMEM;
821         txq->pend_desc = rte_calloc_socket("sfc-efx-txq-pend-desc",
822                                            EFX_TXQ_LIMIT(info->txq_entries),
823                                            sizeof(*txq->pend_desc), 0,
824                                            socket_id);
825         if (txq->pend_desc == NULL)
826                 goto fail_pend_desc_alloc;
827
828         rc = ENOMEM;
829         txq->sw_ring = rte_calloc_socket("sfc-efx-txq-sw_ring",
830                                          info->txq_entries,
831                                          sizeof(*txq->sw_ring),
832                                          RTE_CACHE_LINE_SIZE, socket_id);
833         if (txq->sw_ring == NULL)
834                 goto fail_sw_ring_alloc;
835
836         ctrl_txq = sfc_txq_by_dp_txq(&txq->dp);
837         if (ctrl_txq->evq->sa->tso) {
838                 rc = sfc_efx_tso_alloc_tsoh_objs(txq->sw_ring,
839                                                  info->txq_entries, socket_id);
840                 if (rc != 0)
841                         goto fail_alloc_tsoh_objs;
842         }
843
844         txq->evq = ctrl_txq->evq;
845         txq->ptr_mask = info->txq_entries - 1;
846         txq->free_thresh = info->free_thresh;
847         txq->dma_desc_size_max = info->dma_desc_size_max;
848
849         *dp_txqp = &txq->dp;
850         return 0;
851
852 fail_alloc_tsoh_objs:
853         rte_free(txq->sw_ring);
854
855 fail_sw_ring_alloc:
856         rte_free(txq->pend_desc);
857
858 fail_pend_desc_alloc:
859         rte_free(txq);
860
861 fail_txq_alloc:
862         return rc;
863 }
864
865 static sfc_dp_tx_qdestroy_t sfc_efx_tx_qdestroy;
866 static void
867 sfc_efx_tx_qdestroy(struct sfc_dp_txq *dp_txq)
868 {
869         struct sfc_efx_txq *txq = sfc_efx_txq_by_dp_txq(dp_txq);
870
871         sfc_efx_tso_free_tsoh_objs(txq->sw_ring, txq->ptr_mask + 1);
872         rte_free(txq->sw_ring);
873         rte_free(txq->pend_desc);
874         rte_free(txq);
875 }
876
877 static sfc_dp_tx_qstart_t sfc_efx_tx_qstart;
878 static int
879 sfc_efx_tx_qstart(struct sfc_dp_txq *dp_txq,
880                   __rte_unused unsigned int evq_read_ptr,
881                   unsigned int txq_desc_index)
882 {
883         /* libefx-based datapath is specific to libefx-based PMD */
884         struct sfc_efx_txq *txq = sfc_efx_txq_by_dp_txq(dp_txq);
885         struct sfc_txq *ctrl_txq = sfc_txq_by_dp_txq(dp_txq);
886
887         txq->common = ctrl_txq->common;
888
889         txq->pending = txq->completed = txq->added = txq_desc_index;
890         txq->hw_vlan_tci = 0;
891
892         txq->flags |= (SFC_EFX_TXQ_FLAG_STARTED | SFC_EFX_TXQ_FLAG_RUNNING);
893
894         return 0;
895 }
896
897 static sfc_dp_tx_qstop_t sfc_efx_tx_qstop;
898 static void
899 sfc_efx_tx_qstop(struct sfc_dp_txq *dp_txq,
900                  __rte_unused unsigned int *evq_read_ptr)
901 {
902         struct sfc_efx_txq *txq = sfc_efx_txq_by_dp_txq(dp_txq);
903
904         txq->flags &= ~SFC_EFX_TXQ_FLAG_RUNNING;
905 }
906
907 static sfc_dp_tx_qreap_t sfc_efx_tx_qreap;
908 static void
909 sfc_efx_tx_qreap(struct sfc_dp_txq *dp_txq)
910 {
911         struct sfc_efx_txq *txq = sfc_efx_txq_by_dp_txq(dp_txq);
912         unsigned int txds;
913
914         sfc_efx_tx_reap(txq);
915
916         for (txds = 0; txds <= txq->ptr_mask; txds++) {
917                 if (txq->sw_ring[txds].mbuf != NULL) {
918                         rte_pktmbuf_free(txq->sw_ring[txds].mbuf);
919                         txq->sw_ring[txds].mbuf = NULL;
920                 }
921         }
922
923         txq->flags &= ~SFC_EFX_TXQ_FLAG_STARTED;
924 }
925
926 struct sfc_dp_tx sfc_efx_tx = {
927         .dp = {
928                 .name           = SFC_KVARG_DATAPATH_EFX,
929                 .type           = SFC_DP_TX,
930                 .hw_fw_caps     = 0,
931         },
932         .features               = SFC_DP_TX_FEAT_VLAN_INSERT,
933         .qcreate                = sfc_efx_tx_qcreate,
934         .qdestroy               = sfc_efx_tx_qdestroy,
935         .qstart                 = sfc_efx_tx_qstart,
936         .qstop                  = sfc_efx_tx_qstop,
937         .qreap                  = sfc_efx_tx_qreap,
938         .pkt_burst              = sfc_efx_xmit_pkts,
939 };