99d20090553c35163d8a63cd6c0bddfc7adf16bf
[dpdk.git] / drivers / net / bnxt / bnxt_txr.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2018 Broadcom
3  * All rights reserved.
4  */
5
6 #include <inttypes.h>
7
8 #include <rte_byteorder.h>
9 #include <rte_malloc.h>
10
11 #include "bnxt.h"
12 #include "bnxt_cpr.h"
13 #include "bnxt_ring.h"
14 #include "bnxt_txq.h"
15 #include "bnxt_txr.h"
16 #include "hsi_struct_def_dpdk.h"
17 #include <stdbool.h>
18
19 /*
20  * TX Ring handling
21  */
22
23 void bnxt_free_tx_rings(struct bnxt *bp)
24 {
25         int i;
26
27         for (i = 0; i < (int)bp->tx_nr_rings; i++) {
28                 struct bnxt_tx_queue *txq = bp->tx_queues[i];
29
30                 if (!txq)
31                         continue;
32
33                 bnxt_free_ring(txq->tx_ring->tx_ring_struct);
34                 rte_free(txq->tx_ring->tx_ring_struct);
35                 rte_free(txq->tx_ring);
36
37                 bnxt_free_ring(txq->cp_ring->cp_ring_struct);
38                 rte_free(txq->cp_ring->cp_ring_struct);
39                 rte_free(txq->cp_ring);
40
41                 rte_free(txq);
42                 bp->tx_queues[i] = NULL;
43         }
44 }
45
46 int bnxt_init_one_tx_ring(struct bnxt_tx_queue *txq)
47 {
48         struct bnxt_tx_ring_info *txr = txq->tx_ring;
49         struct bnxt_ring *ring = txr->tx_ring_struct;
50
51         txq->tx_wake_thresh = ring->ring_size / 2;
52         ring->fw_ring_id = INVALID_HW_RING_ID;
53
54         return 0;
55 }
56
57 int bnxt_init_tx_ring_struct(struct bnxt_tx_queue *txq, unsigned int socket_id)
58 {
59         struct bnxt_cp_ring_info *cpr;
60         struct bnxt_cp_ring_info *nqr;
61         struct bnxt_tx_ring_info *txr;
62         struct bnxt_ring *ring;
63
64         txr = rte_zmalloc_socket("bnxt_tx_ring",
65                                  sizeof(struct bnxt_tx_ring_info),
66                                  RTE_CACHE_LINE_SIZE, socket_id);
67         if (txr == NULL)
68                 return -ENOMEM;
69         txq->tx_ring = txr;
70
71         ring = rte_zmalloc_socket("bnxt_tx_ring_struct",
72                                   sizeof(struct bnxt_ring),
73                                   RTE_CACHE_LINE_SIZE, socket_id);
74         if (ring == NULL)
75                 return -ENOMEM;
76         txr->tx_ring_struct = ring;
77         ring->ring_size = rte_align32pow2(txq->nb_tx_desc);
78         ring->ring_mask = ring->ring_size - 1;
79         ring->bd = (void *)txr->tx_desc_ring;
80         ring->bd_dma = txr->tx_desc_mapping;
81         ring->vmem_size = ring->ring_size * sizeof(struct bnxt_sw_tx_bd);
82         ring->vmem = (void **)&txr->tx_buf_ring;
83
84         cpr = rte_zmalloc_socket("bnxt_tx_ring",
85                                  sizeof(struct bnxt_cp_ring_info),
86                                  RTE_CACHE_LINE_SIZE, socket_id);
87         if (cpr == NULL)
88                 return -ENOMEM;
89         txq->cp_ring = cpr;
90
91         ring = rte_zmalloc_socket("bnxt_tx_ring_struct",
92                                   sizeof(struct bnxt_ring),
93                                   RTE_CACHE_LINE_SIZE, socket_id);
94         if (ring == NULL)
95                 return -ENOMEM;
96         cpr->cp_ring_struct = ring;
97         ring->ring_size = txr->tx_ring_struct->ring_size;
98         ring->ring_mask = ring->ring_size - 1;
99         ring->bd = (void *)cpr->cp_desc_ring;
100         ring->bd_dma = cpr->cp_desc_mapping;
101         ring->vmem_size = 0;
102         ring->vmem = NULL;
103
104         if (BNXT_HAS_NQ(txq->bp)) {
105                 nqr = rte_zmalloc_socket("bnxt_tx_ring_nq",
106                                          sizeof(struct bnxt_cp_ring_info),
107                                          RTE_CACHE_LINE_SIZE, socket_id);
108                 if (nqr == NULL)
109                         return -ENOMEM;
110
111                 txq->nq_ring = nqr;
112
113                 ring = rte_zmalloc_socket("bnxt_tx_ring_struct",
114                                           sizeof(struct bnxt_ring),
115                                           RTE_CACHE_LINE_SIZE, socket_id);
116                 if (ring == NULL)
117                         return -ENOMEM;
118
119                 nqr->cp_ring_struct = ring;
120                 ring->ring_size = txr->tx_ring_struct->ring_size;
121                 ring->ring_mask = ring->ring_size - 1;
122                 ring->bd = (void *)nqr->cp_desc_ring;
123                 ring->bd_dma = nqr->cp_desc_mapping;
124                 ring->vmem_size = 0;
125                 ring->vmem = NULL;
126         }
127
128         return 0;
129 }
130
131 static uint16_t bnxt_start_xmit(struct rte_mbuf *tx_pkt,
132                                 struct bnxt_tx_queue *txq,
133                                 uint16_t *coal_pkts,
134                                 struct tx_bd_long **last_txbd)
135 {
136         struct bnxt_tx_ring_info *txr = txq->tx_ring;
137         struct tx_bd_long *txbd;
138         struct tx_bd_long_hi *txbd1 = NULL;
139         uint32_t vlan_tag_flags, cfa_action;
140         bool long_bd = false;
141         unsigned short nr_bds = 0;
142         struct rte_mbuf *m_seg;
143         struct bnxt_sw_tx_bd *tx_buf;
144         static const uint32_t lhint_arr[4] = {
145                 TX_BD_LONG_FLAGS_LHINT_LT512,
146                 TX_BD_LONG_FLAGS_LHINT_LT1K,
147                 TX_BD_LONG_FLAGS_LHINT_LT2K,
148                 TX_BD_LONG_FLAGS_LHINT_LT2K
149         };
150
151         if (unlikely(is_bnxt_in_error(txq->bp)))
152                 return -EIO;
153
154         if (tx_pkt->ol_flags & (PKT_TX_TCP_SEG | PKT_TX_TCP_CKSUM |
155                                 PKT_TX_UDP_CKSUM | PKT_TX_IP_CKSUM |
156                                 PKT_TX_VLAN_PKT | PKT_TX_OUTER_IP_CKSUM |
157                                 PKT_TX_TUNNEL_GRE | PKT_TX_TUNNEL_VXLAN |
158                                 PKT_TX_TUNNEL_GENEVE | PKT_TX_IEEE1588_TMST))
159                 long_bd = true;
160
161         nr_bds = long_bd + tx_pkt->nb_segs;
162         if (unlikely(bnxt_tx_avail(txq) < nr_bds))
163                 return -ENOMEM;
164
165         /* Check if number of Tx descriptors is above HW limit */
166         if (unlikely(nr_bds > BNXT_MAX_TSO_SEGS)) {
167                 PMD_DRV_LOG(ERR,
168                             "Num descriptors %d exceeds HW limit\n", nr_bds);
169                 return -ENOSPC;
170         }
171
172         /* If packet length is less than minimum packet size, pad it */
173         if (unlikely(rte_pktmbuf_pkt_len(tx_pkt) < BNXT_MIN_PKT_SIZE)) {
174                 uint8_t pad = BNXT_MIN_PKT_SIZE - rte_pktmbuf_pkt_len(tx_pkt);
175                 char *seg = rte_pktmbuf_append(tx_pkt, pad);
176
177                 if (!seg) {
178                         PMD_DRV_LOG(ERR,
179                                     "Failed to pad mbuf by %d bytes\n",
180                                     pad);
181                         return -ENOMEM;
182                 }
183
184                 /* Note: data_len, pkt len are updated in rte_pktmbuf_append */
185                 memset(seg, 0, pad);
186         }
187
188         /* Check non zero data_len */
189         RTE_VERIFY(tx_pkt->data_len);
190
191         tx_buf = &txr->tx_buf_ring[txr->tx_prod];
192         tx_buf->mbuf = tx_pkt;
193         tx_buf->nr_bds = nr_bds;
194
195         txbd = &txr->tx_desc_ring[txr->tx_prod];
196         txbd->opaque = *coal_pkts;
197         txbd->flags_type = nr_bds << TX_BD_LONG_FLAGS_BD_CNT_SFT;
198         txbd->flags_type |= TX_BD_SHORT_FLAGS_COAL_NOW;
199         txbd->flags_type |= TX_BD_LONG_FLAGS_NO_CMPL;
200         txbd->len = tx_pkt->data_len;
201         if (tx_pkt->pkt_len >= 2014)
202                 txbd->flags_type |= TX_BD_LONG_FLAGS_LHINT_GTE2K;
203         else
204                 txbd->flags_type |= lhint_arr[tx_pkt->pkt_len >> 9];
205         txbd->address = rte_cpu_to_le_64(rte_mbuf_data_iova(tx_buf->mbuf));
206         *last_txbd = txbd;
207
208         if (long_bd) {
209                 txbd->flags_type |= TX_BD_LONG_TYPE_TX_BD_LONG;
210                 vlan_tag_flags = 0;
211                 cfa_action = 0;
212                 if (tx_buf->mbuf->ol_flags & PKT_TX_VLAN_PKT) {
213                         /* shurd: Should this mask at
214                          * TX_BD_LONG_CFA_META_VLAN_VID_MASK?
215                          */
216                         vlan_tag_flags = TX_BD_LONG_CFA_META_KEY_VLAN_TAG |
217                                 tx_buf->mbuf->vlan_tci;
218                         /* Currently supports 8021Q, 8021AD vlan offloads
219                          * QINQ1, QINQ2, QINQ3 vlan headers are deprecated
220                          */
221                         /* DPDK only supports 802.11q VLAN packets */
222                         vlan_tag_flags |=
223                                         TX_BD_LONG_CFA_META_VLAN_TPID_TPID8100;
224                 }
225
226                 txr->tx_prod = RING_NEXT(txr->tx_ring_struct, txr->tx_prod);
227
228                 txbd1 = (struct tx_bd_long_hi *)
229                                         &txr->tx_desc_ring[txr->tx_prod];
230                 txbd1->lflags = 0;
231                 txbd1->cfa_meta = vlan_tag_flags;
232                 txbd1->cfa_action = cfa_action;
233
234                 if (tx_pkt->ol_flags & PKT_TX_TCP_SEG) {
235                         uint16_t hdr_size;
236
237                         /* TSO */
238                         txbd1->lflags |= TX_BD_LONG_LFLAGS_LSO |
239                                          TX_BD_LONG_LFLAGS_T_IPID;
240                         hdr_size = tx_pkt->l2_len + tx_pkt->l3_len +
241                                         tx_pkt->l4_len;
242                         hdr_size += (tx_pkt->ol_flags & PKT_TX_TUNNEL_MASK) ?
243                                     tx_pkt->outer_l2_len +
244                                     tx_pkt->outer_l3_len : 0;
245                         /* The hdr_size is multiple of 16bit units not 8bit.
246                          * Hence divide by 2.
247                          */
248                         txbd1->hdr_size = hdr_size >> 1;
249                         txbd1->mss = tx_pkt->tso_segsz;
250                         RTE_VERIFY(txbd1->mss);
251
252                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_IIP_TCP_UDP_CKSUM) ==
253                            PKT_TX_OIP_IIP_TCP_UDP_CKSUM) {
254                         /* Outer IP, Inner IP, Inner TCP/UDP CSO */
255                         txbd1->lflags |= TX_BD_FLG_TIP_IP_TCP_UDP_CHKSUM;
256                         txbd1->mss = 0;
257                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_IIP_TCP_CKSUM) ==
258                            PKT_TX_OIP_IIP_TCP_CKSUM) {
259                         /* Outer IP, Inner IP, Inner TCP/UDP CSO */
260                         txbd1->lflags |= TX_BD_FLG_TIP_IP_TCP_UDP_CHKSUM;
261                         txbd1->mss = 0;
262                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_IIP_UDP_CKSUM) ==
263                            PKT_TX_OIP_IIP_UDP_CKSUM) {
264                         /* Outer IP, Inner IP, Inner TCP/UDP CSO */
265                         txbd1->lflags |= TX_BD_FLG_TIP_IP_TCP_UDP_CHKSUM;
266                         txbd1->mss = 0;
267                 } else if ((tx_pkt->ol_flags & PKT_TX_IIP_TCP_UDP_CKSUM) ==
268                            PKT_TX_IIP_TCP_UDP_CKSUM) {
269                         /* (Inner) IP, (Inner) TCP/UDP CSO */
270                         txbd1->lflags |= TX_BD_FLG_IP_TCP_UDP_CHKSUM;
271                         txbd1->mss = 0;
272                 } else if ((tx_pkt->ol_flags & PKT_TX_IIP_UDP_CKSUM) ==
273                            PKT_TX_IIP_UDP_CKSUM) {
274                         /* (Inner) IP, (Inner) TCP/UDP CSO */
275                         txbd1->lflags |= TX_BD_FLG_IP_TCP_UDP_CHKSUM;
276                         txbd1->mss = 0;
277                 } else if ((tx_pkt->ol_flags & PKT_TX_IIP_TCP_CKSUM) ==
278                            PKT_TX_IIP_TCP_CKSUM) {
279                         /* (Inner) IP, (Inner) TCP/UDP CSO */
280                         txbd1->lflags |= TX_BD_FLG_IP_TCP_UDP_CHKSUM;
281                         txbd1->mss = 0;
282                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_TCP_UDP_CKSUM) ==
283                            PKT_TX_OIP_TCP_UDP_CKSUM) {
284                         /* Outer IP, (Inner) TCP/UDP CSO */
285                         txbd1->lflags |= TX_BD_FLG_TIP_TCP_UDP_CHKSUM;
286                         txbd1->mss = 0;
287                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_UDP_CKSUM) ==
288                            PKT_TX_OIP_UDP_CKSUM) {
289                         /* Outer IP, (Inner) TCP/UDP CSO */
290                         txbd1->lflags |= TX_BD_FLG_TIP_TCP_UDP_CHKSUM;
291                         txbd1->mss = 0;
292                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_TCP_CKSUM) ==
293                            PKT_TX_OIP_TCP_CKSUM) {
294                         /* Outer IP, (Inner) TCP/UDP CSO */
295                         txbd1->lflags |= TX_BD_FLG_TIP_TCP_UDP_CHKSUM;
296                         txbd1->mss = 0;
297                 } else if ((tx_pkt->ol_flags & PKT_TX_OIP_IIP_CKSUM) ==
298                            PKT_TX_OIP_IIP_CKSUM) {
299                         /* Outer IP, Inner IP CSO */
300                         txbd1->lflags |= TX_BD_FLG_TIP_IP_CHKSUM;
301                         txbd1->mss = 0;
302                 } else if ((tx_pkt->ol_flags & PKT_TX_TCP_UDP_CKSUM) ==
303                            PKT_TX_TCP_UDP_CKSUM) {
304                         /* TCP/UDP CSO */
305                         txbd1->lflags |= TX_BD_LONG_LFLAGS_TCP_UDP_CHKSUM;
306                         txbd1->mss = 0;
307                 } else if ((tx_pkt->ol_flags & PKT_TX_TCP_CKSUM) ==
308                            PKT_TX_TCP_CKSUM) {
309                         /* TCP/UDP CSO */
310                         txbd1->lflags |= TX_BD_LONG_LFLAGS_TCP_UDP_CHKSUM;
311                         txbd1->mss = 0;
312                 } else if ((tx_pkt->ol_flags & PKT_TX_UDP_CKSUM) ==
313                            PKT_TX_UDP_CKSUM) {
314                         /* TCP/UDP CSO */
315                         txbd1->lflags |= TX_BD_LONG_LFLAGS_TCP_UDP_CHKSUM;
316                         txbd1->mss = 0;
317                 } else if ((tx_pkt->ol_flags & PKT_TX_IP_CKSUM) ==
318                            PKT_TX_IP_CKSUM) {
319                         /* IP CSO */
320                         txbd1->lflags |= TX_BD_LONG_LFLAGS_IP_CHKSUM;
321                         txbd1->mss = 0;
322                 } else if ((tx_pkt->ol_flags & PKT_TX_OUTER_IP_CKSUM) ==
323                            PKT_TX_OUTER_IP_CKSUM) {
324                         /* IP CSO */
325                         txbd1->lflags |= TX_BD_LONG_LFLAGS_T_IP_CHKSUM;
326                         txbd1->mss = 0;
327                 } else if ((tx_pkt->ol_flags & PKT_TX_IEEE1588_TMST) ==
328                            PKT_TX_IEEE1588_TMST) {
329                         /* PTP */
330                         txbd1->lflags |= TX_BD_LONG_LFLAGS_STAMP;
331                         txbd1->mss = 0;
332                 }
333         } else {
334                 txbd->flags_type |= TX_BD_SHORT_TYPE_TX_BD_SHORT;
335         }
336
337         m_seg = tx_pkt->next;
338         while (m_seg) {
339                 /* Check non zero data_len */
340                 RTE_VERIFY(m_seg->data_len);
341                 txr->tx_prod = RING_NEXT(txr->tx_ring_struct, txr->tx_prod);
342                 tx_buf = &txr->tx_buf_ring[txr->tx_prod];
343                 tx_buf->mbuf = m_seg;
344
345                 txbd = &txr->tx_desc_ring[txr->tx_prod];
346                 txbd->address = rte_cpu_to_le_64(rte_mbuf_data_iova(m_seg));
347                 txbd->flags_type = TX_BD_SHORT_TYPE_TX_BD_SHORT;
348                 txbd->len = m_seg->data_len;
349
350                 m_seg = m_seg->next;
351         }
352
353         txbd->flags_type |= TX_BD_LONG_FLAGS_PACKET_END;
354
355         txr->tx_prod = RING_NEXT(txr->tx_ring_struct, txr->tx_prod);
356
357         return 0;
358 }
359
360 static void bnxt_tx_cmp(struct bnxt_tx_queue *txq, int nr_pkts)
361 {
362         struct bnxt_tx_ring_info *txr = txq->tx_ring;
363         struct rte_mempool *pool = NULL;
364         struct rte_mbuf **free = txq->free;
365         uint16_t cons = txr->tx_cons;
366         unsigned int blk = 0;
367         int i, j;
368
369         for (i = 0; i < nr_pkts; i++) {
370                 struct rte_mbuf *mbuf;
371                 struct bnxt_sw_tx_bd *tx_buf = &txr->tx_buf_ring[cons];
372                 unsigned short nr_bds = tx_buf->nr_bds;
373
374                 for (j = 0; j < nr_bds; j++) {
375                         mbuf = tx_buf->mbuf;
376                         tx_buf->mbuf = NULL;
377                         cons = RING_NEXT(txr->tx_ring_struct, cons);
378                         tx_buf = &txr->tx_buf_ring[cons];
379                         if (!mbuf)      /* long_bd's tx_buf ? */
380                                 continue;
381
382                         mbuf = rte_pktmbuf_prefree_seg(mbuf);
383                         if (unlikely(!mbuf))
384                                 continue;
385
386                         /* EW - no need to unmap DMA memory? */
387
388                         if (likely(mbuf->pool == pool)) {
389                                 /* Add mbuf to the bulk free array */
390                                 free[blk++] = mbuf;
391                         } else {
392                                 /* Found an mbuf from a different pool. Free
393                                  * mbufs accumulated so far to the previous
394                                  * pool
395                                  */
396                                 if (likely(pool != NULL))
397                                         rte_mempool_put_bulk(pool,
398                                                              (void *)free,
399                                                              blk);
400
401                                 /* Start accumulating mbufs in a new pool */
402                                 free[0] = mbuf;
403                                 pool = mbuf->pool;
404                                 blk = 1;
405                         }
406                 }
407         }
408         if (blk)
409                 rte_mempool_put_bulk(pool, (void *)free, blk);
410
411         txr->tx_cons = cons;
412 }
413
414 static int bnxt_handle_tx_cp(struct bnxt_tx_queue *txq)
415 {
416         struct bnxt_cp_ring_info *cpr = txq->cp_ring;
417         uint32_t raw_cons = cpr->cp_raw_cons;
418         uint32_t cons;
419         uint32_t nb_tx_pkts = 0;
420         struct tx_cmpl *txcmp;
421         struct cmpl_base *cp_desc_ring = cpr->cp_desc_ring;
422         struct bnxt_ring *cp_ring_struct = cpr->cp_ring_struct;
423         uint32_t ring_mask = cp_ring_struct->ring_mask;
424         uint32_t opaque = 0;
425
426         if (bnxt_tx_bds_in_hw(txq) < txq->tx_free_thresh)
427                 return 0;
428
429         do {
430                 cons = RING_CMPL(ring_mask, raw_cons);
431                 txcmp = (struct tx_cmpl *)&cpr->cp_desc_ring[cons];
432                 rte_prefetch_non_temporal(&cp_desc_ring[(cons + 2) &
433                                                         ring_mask]);
434
435                 if (!CMPL_VALID(txcmp, cpr->valid))
436                         break;
437                 opaque = rte_cpu_to_le_32(txcmp->opaque);
438                 NEXT_CMPL(cpr, cons, cpr->valid, 1);
439                 rte_prefetch0(&cp_desc_ring[cons]);
440
441                 if (CMP_TYPE(txcmp) == TX_CMPL_TYPE_TX_L2)
442                         nb_tx_pkts += opaque;
443                 else
444                         RTE_LOG_DP(ERR, PMD,
445                                         "Unhandled CMP type %02x\n",
446                                         CMP_TYPE(txcmp));
447                 raw_cons = cons;
448         } while (nb_tx_pkts < ring_mask);
449
450         if (nb_tx_pkts) {
451                 bnxt_tx_cmp(txq, nb_tx_pkts);
452                 cpr->cp_raw_cons = raw_cons;
453                 bnxt_db_cq(cpr);
454         }
455
456         return nb_tx_pkts;
457 }
458
459 uint16_t bnxt_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
460                                uint16_t nb_pkts)
461 {
462         int rc;
463         uint16_t nb_tx_pkts = 0;
464         uint16_t coal_pkts = 0;
465         struct bnxt_tx_queue *txq = tx_queue;
466         struct tx_bd_long *last_txbd = NULL;
467
468         /* Handle TX completions */
469         bnxt_handle_tx_cp(txq);
470
471         /* Tx queue was stopped; wait for it to be restarted */
472         if (unlikely(!txq->tx_started)) {
473                 PMD_DRV_LOG(DEBUG, "Tx q stopped;return\n");
474                 return 0;
475         }
476
477         /* Handle TX burst request */
478         for (nb_tx_pkts = 0; nb_tx_pkts < nb_pkts; nb_tx_pkts++) {
479                 coal_pkts++;
480                 rc = bnxt_start_xmit(tx_pkts[nb_tx_pkts], txq,
481                                      &coal_pkts, &last_txbd);
482
483                 if (unlikely(rc))
484                         break;
485         }
486
487         if (likely(nb_tx_pkts)) {
488                 /* Request a completion on the last packet */
489                 last_txbd->flags_type &= ~TX_BD_LONG_FLAGS_NO_CMPL;
490                 bnxt_db_write(&txq->tx_ring->tx_db, txq->tx_ring->tx_prod);
491         }
492
493         return nb_tx_pkts;
494 }
495
496 /*
497  * Dummy DPDK callback for TX.
498  *
499  * This function is used to temporarily replace the real callback during
500  * unsafe control operations on the queue, or in case of error.
501  */
502 uint16_t
503 bnxt_dummy_xmit_pkts(void *tx_queue __rte_unused,
504                      struct rte_mbuf **tx_pkts __rte_unused,
505                      uint16_t nb_pkts __rte_unused)
506 {
507         return 0;
508 }
509
510 int bnxt_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
511 {
512         struct bnxt *bp = dev->data->dev_private;
513         struct bnxt_tx_queue *txq = bp->tx_queues[tx_queue_id];
514         int rc = 0;
515
516         rc = is_bnxt_in_error(bp);
517         if (rc)
518                 return rc;
519
520         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
521         txq->tx_started = true;
522         PMD_DRV_LOG(DEBUG, "Tx queue started\n");
523
524         return 0;
525 }
526
527 int bnxt_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
528 {
529         struct bnxt *bp = dev->data->dev_private;
530         struct bnxt_tx_queue *txq = bp->tx_queues[tx_queue_id];
531         int rc = 0;
532
533         rc = is_bnxt_in_error(bp);
534         if (rc)
535                 return rc;
536
537         /* Handle TX completions */
538         bnxt_handle_tx_cp(txq);
539
540         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
541         txq->tx_started = false;
542         PMD_DRV_LOG(DEBUG, "Tx queue stopped\n");
543
544         return 0;
545 }