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