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