xref: /openbmc/linux/drivers/net/ethernet/mellanox/mlx4/en_tx.c (revision 4d75f5c664195b970e1cd2fd25b65b5eff257a0a)
1 /*
2  * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  *
32  */
33 
34 #include <asm/page.h>
35 #include <linux/mlx4/cq.h>
36 #include <linux/slab.h>
37 #include <linux/mlx4/qp.h>
38 #include <linux/skbuff.h>
39 #include <linux/if_vlan.h>
40 #include <linux/prefetch.h>
41 #include <linux/vmalloc.h>
42 #include <linux/tcp.h>
43 #include <linux/ip.h>
44 #include <linux/ipv6.h>
45 #include <linux/indirect_call_wrapper.h>
46 #include <net/ipv6.h>
47 
48 #include "mlx4_en.h"
49 
mlx4_en_create_tx_ring(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring ** pring,u32 size,u16 stride,int node,int queue_index)50 int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv,
51 			   struct mlx4_en_tx_ring **pring, u32 size,
52 			   u16 stride, int node, int queue_index)
53 {
54 	struct mlx4_en_dev *mdev = priv->mdev;
55 	struct mlx4_en_tx_ring *ring;
56 	int tmp;
57 	int err;
58 
59 	ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
60 	if (!ring) {
61 		en_err(priv, "Failed allocating TX ring\n");
62 		return -ENOMEM;
63 	}
64 
65 	ring->size = size;
66 	ring->size_mask = size - 1;
67 	ring->sp_stride = stride;
68 	ring->full_size = ring->size - HEADROOM - MLX4_MAX_DESC_TXBBS;
69 
70 	tmp = size * sizeof(struct mlx4_en_tx_info);
71 	ring->tx_info = kvmalloc_node(tmp, GFP_KERNEL, node);
72 	if (!ring->tx_info) {
73 		err = -ENOMEM;
74 		goto err_ring;
75 	}
76 
77 	en_dbg(DRV, priv, "Allocated tx_info ring at addr:%p size:%d\n",
78 		 ring->tx_info, tmp);
79 
80 	ring->bounce_buf = kmalloc_node(MLX4_TX_BOUNCE_BUFFER_SIZE,
81 					GFP_KERNEL, node);
82 	if (!ring->bounce_buf) {
83 		ring->bounce_buf = kmalloc(MLX4_TX_BOUNCE_BUFFER_SIZE,
84 					   GFP_KERNEL);
85 		if (!ring->bounce_buf) {
86 			err = -ENOMEM;
87 			goto err_info;
88 		}
89 	}
90 	ring->buf_size = ALIGN(size * ring->sp_stride, MLX4_EN_PAGE_SIZE);
91 
92 	/* Allocate HW buffers on provided NUMA node */
93 	set_dev_node(&mdev->dev->persist->pdev->dev, node);
94 	err = mlx4_alloc_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size);
95 	set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
96 	if (err) {
97 		en_err(priv, "Failed allocating hwq resources\n");
98 		goto err_bounce;
99 	}
100 
101 	ring->buf = ring->sp_wqres.buf.direct.buf;
102 
103 	en_dbg(DRV, priv, "Allocated TX ring (addr:%p) - buf:%p size:%d buf_size:%d dma:%llx\n",
104 	       ring, ring->buf, ring->size, ring->buf_size,
105 	       (unsigned long long) ring->sp_wqres.buf.direct.map);
106 
107 	err = mlx4_qp_reserve_range(mdev->dev, 1, 1, &ring->qpn,
108 				    MLX4_RESERVE_ETH_BF_QP,
109 				    MLX4_RES_USAGE_DRIVER);
110 	if (err) {
111 		en_err(priv, "failed reserving qp for TX ring\n");
112 		goto err_hwq_res;
113 	}
114 
115 	err = mlx4_qp_alloc(mdev->dev, ring->qpn, &ring->sp_qp);
116 	if (err) {
117 		en_err(priv, "Failed allocating qp %d\n", ring->qpn);
118 		goto err_reserve;
119 	}
120 	ring->sp_qp.event = mlx4_en_sqp_event;
121 
122 	err = mlx4_bf_alloc(mdev->dev, &ring->bf, node);
123 	if (err) {
124 		en_dbg(DRV, priv, "working without blueflame (%d)\n", err);
125 		ring->bf.uar = &mdev->priv_uar;
126 		ring->bf.uar->map = mdev->uar_map;
127 		ring->bf_enabled = false;
128 		ring->bf_alloced = false;
129 		priv->pflags &= ~MLX4_EN_PRIV_FLAGS_BLUEFLAME;
130 	} else {
131 		ring->bf_alloced = true;
132 		ring->bf_enabled = !!(priv->pflags &
133 				      MLX4_EN_PRIV_FLAGS_BLUEFLAME);
134 	}
135 	ring->doorbell_address = ring->bf.uar->map + MLX4_SEND_DOORBELL;
136 
137 	ring->hwtstamp_tx_type = priv->hwtstamp_config.tx_type;
138 	ring->queue_index = queue_index;
139 
140 	if (queue_index < priv->num_tx_rings_p_up)
141 		cpumask_set_cpu(cpumask_local_spread(queue_index,
142 						     priv->mdev->dev->numa_node),
143 				&ring->sp_affinity_mask);
144 
145 	*pring = ring;
146 	return 0;
147 
148 err_reserve:
149 	mlx4_qp_release_range(mdev->dev, ring->qpn, 1);
150 err_hwq_res:
151 	mlx4_free_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size);
152 err_bounce:
153 	kfree(ring->bounce_buf);
154 	ring->bounce_buf = NULL;
155 err_info:
156 	kvfree(ring->tx_info);
157 	ring->tx_info = NULL;
158 err_ring:
159 	kfree(ring);
160 	*pring = NULL;
161 	return err;
162 }
163 
mlx4_en_destroy_tx_ring(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring ** pring)164 void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv,
165 			     struct mlx4_en_tx_ring **pring)
166 {
167 	struct mlx4_en_dev *mdev = priv->mdev;
168 	struct mlx4_en_tx_ring *ring = *pring;
169 	en_dbg(DRV, priv, "Destroying tx ring, qpn: %d\n", ring->qpn);
170 
171 	if (ring->bf_alloced)
172 		mlx4_bf_free(mdev->dev, &ring->bf);
173 	mlx4_qp_remove(mdev->dev, &ring->sp_qp);
174 	mlx4_qp_free(mdev->dev, &ring->sp_qp);
175 	mlx4_qp_release_range(priv->mdev->dev, ring->qpn, 1);
176 	mlx4_free_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size);
177 	kfree(ring->bounce_buf);
178 	ring->bounce_buf = NULL;
179 	kvfree(ring->tx_info);
180 	ring->tx_info = NULL;
181 	kfree(ring);
182 	*pring = NULL;
183 }
184 
mlx4_en_activate_tx_ring(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,int cq,int user_prio)185 int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv,
186 			     struct mlx4_en_tx_ring *ring,
187 			     int cq, int user_prio)
188 {
189 	struct mlx4_en_dev *mdev = priv->mdev;
190 	int err;
191 
192 	ring->sp_cqn = cq;
193 	ring->prod = 0;
194 	ring->cons = 0xffffffff;
195 	ring->last_nr_txbb = 1;
196 	memset(ring->tx_info, 0, ring->size * sizeof(struct mlx4_en_tx_info));
197 	memset(ring->buf, 0, ring->buf_size);
198 	ring->free_tx_desc = mlx4_en_free_tx_desc;
199 
200 	ring->sp_qp_state = MLX4_QP_STATE_RST;
201 	ring->doorbell_qpn = cpu_to_be32(ring->sp_qp.qpn << 8);
202 	ring->mr_key = cpu_to_be32(mdev->mr.key);
203 
204 	mlx4_en_fill_qp_context(priv, ring->size, ring->sp_stride, 1, 0, ring->qpn,
205 				ring->sp_cqn, user_prio, &ring->sp_context);
206 	if (ring->bf_alloced)
207 		ring->sp_context.usr_page =
208 			cpu_to_be32(mlx4_to_hw_uar_index(mdev->dev,
209 							 ring->bf.uar->index));
210 
211 	err = mlx4_qp_to_ready(mdev->dev, &ring->sp_wqres.mtt, &ring->sp_context,
212 			       &ring->sp_qp, &ring->sp_qp_state);
213 	if (!cpumask_empty(&ring->sp_affinity_mask))
214 		netif_set_xps_queue(priv->dev, &ring->sp_affinity_mask,
215 				    ring->queue_index);
216 
217 	return err;
218 }
219 
mlx4_en_deactivate_tx_ring(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring)220 void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv,
221 				struct mlx4_en_tx_ring *ring)
222 {
223 	struct mlx4_en_dev *mdev = priv->mdev;
224 
225 	mlx4_qp_modify(mdev->dev, NULL, ring->sp_qp_state,
226 		       MLX4_QP_STATE_RST, NULL, 0, 0, &ring->sp_qp);
227 }
228 
mlx4_en_is_tx_ring_full(struct mlx4_en_tx_ring * ring)229 static inline bool mlx4_en_is_tx_ring_full(struct mlx4_en_tx_ring *ring)
230 {
231 	u32 used = READ_ONCE(ring->prod) - READ_ONCE(ring->cons);
232 
233 	return used > ring->full_size;
234 }
235 
mlx4_en_stamp_wqe(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,int index,u8 owner)236 static void mlx4_en_stamp_wqe(struct mlx4_en_priv *priv,
237 			      struct mlx4_en_tx_ring *ring, int index,
238 			      u8 owner)
239 {
240 	__be32 stamp = cpu_to_be32(STAMP_VAL | (!!owner << STAMP_SHIFT));
241 	struct mlx4_en_tx_desc *tx_desc = ring->buf + (index << LOG_TXBB_SIZE);
242 	struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
243 	void *end = ring->buf + ring->buf_size;
244 	__be32 *ptr = (__be32 *)tx_desc;
245 	int i;
246 
247 	/* Optimize the common case when there are no wraparounds */
248 	if (likely((void *)tx_desc +
249 		   (tx_info->nr_txbb << LOG_TXBB_SIZE) <= end)) {
250 		/* Stamp the freed descriptor */
251 		for (i = 0; i < tx_info->nr_txbb << LOG_TXBB_SIZE;
252 		     i += STAMP_STRIDE) {
253 			*ptr = stamp;
254 			ptr += STAMP_DWORDS;
255 		}
256 	} else {
257 		/* Stamp the freed descriptor */
258 		for (i = 0; i < tx_info->nr_txbb << LOG_TXBB_SIZE;
259 		     i += STAMP_STRIDE) {
260 			*ptr = stamp;
261 			ptr += STAMP_DWORDS;
262 			if ((void *)ptr >= end) {
263 				ptr = ring->buf;
264 				stamp ^= cpu_to_be32(0x80000000);
265 			}
266 		}
267 	}
268 }
269 
270 INDIRECT_CALLABLE_DECLARE(u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
271 						   struct mlx4_en_tx_ring *ring,
272 						   int index, u64 timestamp,
273 						   int napi_mode));
274 
mlx4_en_free_tx_desc(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,int index,u64 timestamp,int napi_mode)275 u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
276 			 struct mlx4_en_tx_ring *ring,
277 			 int index, u64 timestamp,
278 			 int napi_mode)
279 {
280 	struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
281 	struct mlx4_en_tx_desc *tx_desc = ring->buf + (index << LOG_TXBB_SIZE);
282 	struct mlx4_wqe_data_seg *data = (void *) tx_desc + tx_info->data_offset;
283 	void *end = ring->buf + ring->buf_size;
284 	struct sk_buff *skb = tx_info->skb;
285 	int nr_maps = tx_info->nr_maps;
286 	int i;
287 
288 	/* We do not touch skb here, so prefetch skb->users location
289 	 * to speedup consume_skb()
290 	 */
291 	prefetchw(&skb->users);
292 
293 	if (unlikely(timestamp)) {
294 		struct skb_shared_hwtstamps hwts;
295 
296 		mlx4_en_fill_hwtstamps(priv->mdev, &hwts, timestamp);
297 		skb_tstamp_tx(skb, &hwts);
298 	}
299 
300 	if (!tx_info->inl) {
301 		if (tx_info->linear)
302 			dma_unmap_single(priv->ddev,
303 					 tx_info->map0_dma,
304 					 tx_info->map0_byte_count,
305 					 DMA_TO_DEVICE);
306 		else
307 			dma_unmap_page(priv->ddev,
308 				       tx_info->map0_dma,
309 				       tx_info->map0_byte_count,
310 				       DMA_TO_DEVICE);
311 		/* Optimize the common case when there are no wraparounds */
312 		if (likely((void *)tx_desc +
313 			   (tx_info->nr_txbb << LOG_TXBB_SIZE) <= end)) {
314 			for (i = 1; i < nr_maps; i++) {
315 				data++;
316 				dma_unmap_page(priv->ddev,
317 					(dma_addr_t)be64_to_cpu(data->addr),
318 					be32_to_cpu(data->byte_count),
319 					DMA_TO_DEVICE);
320 			}
321 		} else {
322 			if ((void *)data >= end)
323 				data = ring->buf + ((void *)data - end);
324 
325 			for (i = 1; i < nr_maps; i++) {
326 				data++;
327 				/* Check for wraparound before unmapping */
328 				if ((void *) data >= end)
329 					data = ring->buf;
330 				dma_unmap_page(priv->ddev,
331 					(dma_addr_t)be64_to_cpu(data->addr),
332 					be32_to_cpu(data->byte_count),
333 					DMA_TO_DEVICE);
334 			}
335 		}
336 	}
337 	napi_consume_skb(skb, napi_mode);
338 
339 	return tx_info->nr_txbb;
340 }
341 
342 INDIRECT_CALLABLE_DECLARE(u32 mlx4_en_recycle_tx_desc(struct mlx4_en_priv *priv,
343 						      struct mlx4_en_tx_ring *ring,
344 						      int index, u64 timestamp,
345 						      int napi_mode));
346 
mlx4_en_recycle_tx_desc(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,int index,u64 timestamp,int napi_mode)347 u32 mlx4_en_recycle_tx_desc(struct mlx4_en_priv *priv,
348 			    struct mlx4_en_tx_ring *ring,
349 			    int index, u64 timestamp,
350 			    int napi_mode)
351 {
352 	struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
353 	struct mlx4_en_rx_alloc frame = {
354 		.page = tx_info->page,
355 		.dma = tx_info->map0_dma,
356 	};
357 
358 	if (!napi_mode || !mlx4_en_rx_recycle(ring->recycle_ring, &frame)) {
359 		dma_unmap_page(priv->ddev, tx_info->map0_dma,
360 			       PAGE_SIZE, priv->dma_dir);
361 		put_page(tx_info->page);
362 	}
363 
364 	return tx_info->nr_txbb;
365 }
366 
mlx4_en_free_tx_buf(struct net_device * dev,struct mlx4_en_tx_ring * ring)367 int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring)
368 {
369 	struct mlx4_en_priv *priv = netdev_priv(dev);
370 	int cnt = 0;
371 
372 	/* Skip last polled descriptor */
373 	ring->cons += ring->last_nr_txbb;
374 	en_dbg(DRV, priv, "Freeing Tx buf - cons:0x%x prod:0x%x\n",
375 		 ring->cons, ring->prod);
376 
377 	if ((u32) (ring->prod - ring->cons) > ring->size) {
378 		if (netif_msg_tx_err(priv))
379 			en_warn(priv, "Tx consumer passed producer!\n");
380 		return 0;
381 	}
382 
383 	while (ring->cons != ring->prod) {
384 		ring->last_nr_txbb = ring->free_tx_desc(priv, ring,
385 						ring->cons & ring->size_mask,
386 						0, 0 /* Non-NAPI caller */);
387 		ring->cons += ring->last_nr_txbb;
388 		cnt++;
389 	}
390 
391 	if (ring->tx_queue)
392 		netdev_tx_reset_queue(ring->tx_queue);
393 
394 	if (cnt)
395 		en_dbg(DRV, priv, "Freed %d uncompleted tx descriptors\n", cnt);
396 
397 	return cnt;
398 }
399 
mlx4_en_handle_err_cqe(struct mlx4_en_priv * priv,struct mlx4_err_cqe * err_cqe,u16 cqe_index,struct mlx4_en_tx_ring * ring)400 static void mlx4_en_handle_err_cqe(struct mlx4_en_priv *priv, struct mlx4_err_cqe *err_cqe,
401 				   u16 cqe_index, struct mlx4_en_tx_ring *ring)
402 {
403 	struct mlx4_en_dev *mdev = priv->mdev;
404 	struct mlx4_en_tx_info *tx_info;
405 	struct mlx4_en_tx_desc *tx_desc;
406 	u16 wqe_index;
407 	int desc_size;
408 
409 	en_err(priv, "CQE error - cqn 0x%x, ci 0x%x, vendor syndrome: 0x%x syndrome: 0x%x\n",
410 	       ring->sp_cqn, cqe_index, err_cqe->vendor_err_syndrome, err_cqe->syndrome);
411 	print_hex_dump(KERN_WARNING, "", DUMP_PREFIX_OFFSET, 16, 1, err_cqe, sizeof(*err_cqe),
412 		       false);
413 
414 	wqe_index = be16_to_cpu(err_cqe->wqe_index) & ring->size_mask;
415 	tx_info = &ring->tx_info[wqe_index];
416 	desc_size = tx_info->nr_txbb << LOG_TXBB_SIZE;
417 	en_err(priv, "Related WQE - qpn 0x%x, wqe index 0x%x, wqe size 0x%x\n", ring->qpn,
418 	       wqe_index, desc_size);
419 	tx_desc = ring->buf + (wqe_index << LOG_TXBB_SIZE);
420 	print_hex_dump(KERN_WARNING, "", DUMP_PREFIX_OFFSET, 16, 1, tx_desc, desc_size, false);
421 
422 	if (test_and_set_bit(MLX4_EN_STATE_FLAG_RESTARTING, &priv->state))
423 		return;
424 
425 	en_err(priv, "Scheduling port restart\n");
426 	queue_work(mdev->workqueue, &priv->restart_task);
427 }
428 
mlx4_en_process_tx_cq(struct net_device * dev,struct mlx4_en_cq * cq,int napi_budget)429 int mlx4_en_process_tx_cq(struct net_device *dev,
430 			  struct mlx4_en_cq *cq, int napi_budget)
431 {
432 	struct mlx4_en_priv *priv = netdev_priv(dev);
433 	struct mlx4_cq *mcq = &cq->mcq;
434 	struct mlx4_en_tx_ring *ring = priv->tx_ring[cq->type][cq->ring];
435 	struct mlx4_cqe *cqe;
436 	u16 index, ring_index, stamp_index;
437 	u32 txbbs_skipped = 0;
438 	u32 txbbs_stamp = 0;
439 	u32 cons_index = mcq->cons_index;
440 	int size = cq->size;
441 	u32 size_mask = ring->size_mask;
442 	struct mlx4_cqe *buf = cq->buf;
443 	u32 packets = 0;
444 	u32 bytes = 0;
445 	int factor = priv->cqe_factor;
446 	int done = 0;
447 	int budget = priv->tx_work_limit;
448 	u32 last_nr_txbb;
449 	u32 ring_cons;
450 
451 	if (unlikely(!priv->port_up))
452 		return 0;
453 	if (unlikely(!napi_budget) && cq->type == TX_XDP)
454 		return 0;
455 
456 	netdev_txq_bql_complete_prefetchw(ring->tx_queue);
457 
458 	index = cons_index & size_mask;
459 	cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor;
460 	last_nr_txbb = READ_ONCE(ring->last_nr_txbb);
461 	ring_cons = READ_ONCE(ring->cons);
462 	ring_index = ring_cons & size_mask;
463 	stamp_index = ring_index;
464 
465 	/* Process all completed CQEs */
466 	while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
467 			cons_index & size) && (done < budget)) {
468 		u16 new_index;
469 
470 		/*
471 		 * make sure we read the CQE after we read the
472 		 * ownership bit
473 		 */
474 		dma_rmb();
475 
476 		if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
477 			     MLX4_CQE_OPCODE_ERROR))
478 			if (!test_and_set_bit(MLX4_EN_TX_RING_STATE_RECOVERING, &ring->state))
479 				mlx4_en_handle_err_cqe(priv, (struct mlx4_err_cqe *)cqe, index,
480 						       ring);
481 
482 		/* Skip over last polled CQE */
483 		new_index = be16_to_cpu(cqe->wqe_index) & size_mask;
484 
485 		do {
486 			u64 timestamp = 0;
487 
488 			txbbs_skipped += last_nr_txbb;
489 			ring_index = (ring_index + last_nr_txbb) & size_mask;
490 
491 			if (unlikely(ring->tx_info[ring_index].ts_requested))
492 				timestamp = mlx4_en_get_cqe_ts(cqe);
493 
494 			/* free next descriptor */
495 			last_nr_txbb = INDIRECT_CALL_2(ring->free_tx_desc,
496 						       mlx4_en_free_tx_desc,
497 						       mlx4_en_recycle_tx_desc,
498 					priv, ring, ring_index,
499 					timestamp, napi_budget);
500 
501 			mlx4_en_stamp_wqe(priv, ring, stamp_index,
502 					  !!((ring_cons + txbbs_stamp) &
503 						ring->size));
504 			stamp_index = ring_index;
505 			txbbs_stamp = txbbs_skipped;
506 			packets++;
507 			bytes += ring->tx_info[ring_index].nr_bytes;
508 		} while ((++done < budget) && (ring_index != new_index));
509 
510 		++cons_index;
511 		index = cons_index & size_mask;
512 		cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor;
513 	}
514 
515 	/*
516 	 * To prevent CQ overflow we first update CQ consumer and only then
517 	 * the ring consumer.
518 	 */
519 	mcq->cons_index = cons_index;
520 	mlx4_cq_set_ci(mcq);
521 	wmb();
522 
523 	/* we want to dirty this cache line once */
524 	WRITE_ONCE(ring->last_nr_txbb, last_nr_txbb);
525 	WRITE_ONCE(ring->cons, ring_cons + txbbs_skipped);
526 
527 	if (cq->type == TX_XDP)
528 		return done;
529 
530 	netdev_tx_completed_queue(ring->tx_queue, packets, bytes);
531 
532 	/* Wakeup Tx queue if this stopped, and ring is not full.
533 	 */
534 	if (netif_tx_queue_stopped(ring->tx_queue) &&
535 	    !mlx4_en_is_tx_ring_full(ring)) {
536 		netif_tx_wake_queue(ring->tx_queue);
537 		ring->wake_queue++;
538 	}
539 
540 	return done;
541 }
542 
mlx4_en_tx_irq(struct mlx4_cq * mcq)543 void mlx4_en_tx_irq(struct mlx4_cq *mcq)
544 {
545 	struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
546 	struct mlx4_en_priv *priv = netdev_priv(cq->dev);
547 
548 	if (likely(priv->port_up))
549 		napi_schedule_irqoff(&cq->napi);
550 	else
551 		mlx4_en_arm_cq(priv, cq);
552 }
553 
554 /* TX CQ polling - called by NAPI */
mlx4_en_poll_tx_cq(struct napi_struct * napi,int budget)555 int mlx4_en_poll_tx_cq(struct napi_struct *napi, int budget)
556 {
557 	struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
558 	struct net_device *dev = cq->dev;
559 	struct mlx4_en_priv *priv = netdev_priv(dev);
560 	int work_done;
561 
562 	work_done = mlx4_en_process_tx_cq(dev, cq, budget);
563 	if (work_done >= budget)
564 		return budget;
565 
566 	if (napi_complete_done(napi, work_done))
567 		mlx4_en_arm_cq(priv, cq);
568 
569 	return 0;
570 }
571 
mlx4_en_bounce_to_desc(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,u32 index,unsigned int desc_size)572 static struct mlx4_en_tx_desc *mlx4_en_bounce_to_desc(struct mlx4_en_priv *priv,
573 						      struct mlx4_en_tx_ring *ring,
574 						      u32 index,
575 						      unsigned int desc_size)
576 {
577 	u32 copy = (ring->size - index) << LOG_TXBB_SIZE;
578 	int i;
579 
580 	for (i = desc_size - copy - 4; i >= 0; i -= 4) {
581 		if ((i & (TXBB_SIZE - 1)) == 0)
582 			wmb();
583 
584 		*((u32 *) (ring->buf + i)) =
585 			*((u32 *) (ring->bounce_buf + copy + i));
586 	}
587 
588 	for (i = copy - 4; i >= 4 ; i -= 4) {
589 		if ((i & (TXBB_SIZE - 1)) == 0)
590 			wmb();
591 
592 		*((u32 *)(ring->buf + (index << LOG_TXBB_SIZE) + i)) =
593 			*((u32 *) (ring->bounce_buf + i));
594 	}
595 
596 	/* Return real descriptor location */
597 	return ring->buf + (index << LOG_TXBB_SIZE);
598 }
599 
600 /* Decide if skb can be inlined in tx descriptor to avoid dma mapping
601  *
602  * It seems strange we do not simply use skb_copy_bits().
603  * This would allow to inline all skbs iff skb->len <= inline_thold
604  *
605  * Note that caller already checked skb was not a gso packet
606  */
is_inline(int inline_thold,const struct sk_buff * skb,const struct skb_shared_info * shinfo,void ** pfrag)607 static bool is_inline(int inline_thold, const struct sk_buff *skb,
608 		      const struct skb_shared_info *shinfo,
609 		      void **pfrag)
610 {
611 	void *ptr;
612 
613 	if (skb->len > inline_thold || !inline_thold)
614 		return false;
615 
616 	if (shinfo->nr_frags == 1) {
617 		ptr = skb_frag_address_safe(&shinfo->frags[0]);
618 		if (unlikely(!ptr))
619 			return false;
620 		*pfrag = ptr;
621 		return true;
622 	}
623 	if (shinfo->nr_frags)
624 		return false;
625 	return true;
626 }
627 
inline_size(const struct sk_buff * skb)628 static int inline_size(const struct sk_buff *skb)
629 {
630 	if (skb->len + CTRL_SIZE + sizeof(struct mlx4_wqe_inline_seg)
631 	    <= MLX4_INLINE_ALIGN)
632 		return ALIGN(skb->len + CTRL_SIZE +
633 			     sizeof(struct mlx4_wqe_inline_seg), 16);
634 	else
635 		return ALIGN(skb->len + CTRL_SIZE + 2 *
636 			     sizeof(struct mlx4_wqe_inline_seg), 16);
637 }
638 
get_real_size(const struct sk_buff * skb,const struct skb_shared_info * shinfo,struct net_device * dev,int * lso_header_size,bool * inline_ok,void ** pfrag,int * hopbyhop)639 static int get_real_size(const struct sk_buff *skb,
640 			 const struct skb_shared_info *shinfo,
641 			 struct net_device *dev,
642 			 int *lso_header_size,
643 			 bool *inline_ok,
644 			 void **pfrag,
645 			 int *hopbyhop)
646 {
647 	struct mlx4_en_priv *priv = netdev_priv(dev);
648 	int real_size;
649 
650 	if (shinfo->gso_size) {
651 		*inline_ok = false;
652 		*hopbyhop = 0;
653 		if (skb->encapsulation) {
654 			*lso_header_size = skb_inner_tcp_all_headers(skb);
655 		} else {
656 			/* Detects large IPV6 TCP packets and prepares for removal of
657 			 * HBH header that has been pushed by ip6_xmit(),
658 			 * mainly so that tcpdump can dissect them.
659 			 */
660 			if (ipv6_has_hopopt_jumbo(skb))
661 				*hopbyhop = sizeof(struct hop_jumbo_hdr);
662 			*lso_header_size = skb_tcp_all_headers(skb);
663 		}
664 		real_size = CTRL_SIZE + shinfo->nr_frags * DS_SIZE +
665 			ALIGN(*lso_header_size - *hopbyhop + 4, DS_SIZE);
666 		if (unlikely(*lso_header_size != skb_headlen(skb))) {
667 			/* We add a segment for the skb linear buffer only if
668 			 * it contains data */
669 			if (*lso_header_size < skb_headlen(skb))
670 				real_size += DS_SIZE;
671 			else {
672 				if (netif_msg_tx_err(priv))
673 					en_warn(priv, "Non-linear headers\n");
674 				return 0;
675 			}
676 		}
677 	} else {
678 		*lso_header_size = 0;
679 		*inline_ok = is_inline(priv->prof->inline_thold, skb,
680 				       shinfo, pfrag);
681 
682 		if (*inline_ok)
683 			real_size = inline_size(skb);
684 		else
685 			real_size = CTRL_SIZE +
686 				    (shinfo->nr_frags + 1) * DS_SIZE;
687 	}
688 
689 	return real_size;
690 }
691 
build_inline_wqe(struct mlx4_en_tx_desc * tx_desc,const struct sk_buff * skb,const struct skb_shared_info * shinfo,void * fragptr)692 static void build_inline_wqe(struct mlx4_en_tx_desc *tx_desc,
693 			     const struct sk_buff *skb,
694 			     const struct skb_shared_info *shinfo,
695 			     void *fragptr)
696 {
697 	struct mlx4_wqe_inline_seg *inl = &tx_desc->inl;
698 	int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - sizeof(*inl);
699 	unsigned int hlen = skb_headlen(skb);
700 
701 	if (skb->len <= spc) {
702 		if (likely(skb->len >= MIN_PKT_LEN)) {
703 			inl->byte_count = cpu_to_be32(1 << 31 | skb->len);
704 		} else {
705 			inl->byte_count = cpu_to_be32(1 << 31 | MIN_PKT_LEN);
706 			memset(inl->data + skb->len, 0,
707 			       MIN_PKT_LEN - skb->len);
708 		}
709 		skb_copy_from_linear_data(skb, inl->data, hlen);
710 		if (shinfo->nr_frags)
711 			memcpy(inl->data + hlen, fragptr,
712 			       skb_frag_size(&shinfo->frags[0]));
713 
714 	} else {
715 		inl->byte_count = cpu_to_be32(1 << 31 | spc);
716 		if (hlen <= spc) {
717 			skb_copy_from_linear_data(skb, inl->data, hlen);
718 			if (hlen < spc) {
719 				memcpy(inl->data + hlen,
720 				       fragptr, spc - hlen);
721 				fragptr +=  spc - hlen;
722 			}
723 			inl = (void *)inl->data + spc;
724 			memcpy(inl->data, fragptr, skb->len - spc);
725 		} else {
726 			skb_copy_from_linear_data(skb, inl->data, spc);
727 			inl = (void *)inl->data + spc;
728 			skb_copy_from_linear_data_offset(skb, spc, inl->data,
729 							 hlen - spc);
730 			if (shinfo->nr_frags)
731 				memcpy(inl->data + hlen - spc,
732 				       fragptr,
733 				       skb_frag_size(&shinfo->frags[0]));
734 		}
735 
736 		dma_wmb();
737 		inl->byte_count = cpu_to_be32(1 << 31 | (skb->len - spc));
738 	}
739 }
740 
mlx4_en_select_queue(struct net_device * dev,struct sk_buff * skb,struct net_device * sb_dev)741 u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb,
742 			 struct net_device *sb_dev)
743 {
744 	struct mlx4_en_priv *priv = netdev_priv(dev);
745 	u16 rings_p_up = priv->num_tx_rings_p_up;
746 
747 	if (netdev_get_num_tc(dev))
748 		return netdev_pick_tx(dev, skb, NULL);
749 
750 	return netdev_pick_tx(dev, skb, NULL) % rings_p_up;
751 }
752 
mlx4_bf_copy(void __iomem * dst,const void * src,unsigned int bytecnt)753 static void mlx4_bf_copy(void __iomem *dst, const void *src,
754 			 unsigned int bytecnt)
755 {
756 	__iowrite64_copy(dst, src, bytecnt / 8);
757 }
758 
mlx4_en_xmit_doorbell(struct mlx4_en_tx_ring * ring)759 void mlx4_en_xmit_doorbell(struct mlx4_en_tx_ring *ring)
760 {
761 	wmb();
762 	/* Since there is no iowrite*_native() that writes the
763 	 * value as is, without byteswapping - using the one
764 	 * the doesn't do byteswapping in the relevant arch
765 	 * endianness.
766 	 */
767 #if defined(__LITTLE_ENDIAN)
768 	iowrite32(
769 #else
770 	iowrite32be(
771 #endif
772 		  (__force u32)ring->doorbell_qpn, ring->doorbell_address);
773 }
774 
mlx4_en_tx_write_desc(struct mlx4_en_tx_ring * ring,struct mlx4_en_tx_desc * tx_desc,union mlx4_wqe_qpn_vlan qpn_vlan,int desc_size,int bf_index,__be32 op_own,bool bf_ok,bool send_doorbell)775 static void mlx4_en_tx_write_desc(struct mlx4_en_tx_ring *ring,
776 				  struct mlx4_en_tx_desc *tx_desc,
777 				  union mlx4_wqe_qpn_vlan qpn_vlan,
778 				  int desc_size, int bf_index,
779 				  __be32 op_own, bool bf_ok,
780 				  bool send_doorbell)
781 {
782 	tx_desc->ctrl.qpn_vlan = qpn_vlan;
783 
784 	if (bf_ok) {
785 		op_own |= htonl((bf_index & 0xffff) << 8);
786 		/* Ensure new descriptor hits memory
787 		 * before setting ownership of this descriptor to HW
788 		 */
789 		dma_wmb();
790 		tx_desc->ctrl.owner_opcode = op_own;
791 
792 		wmb();
793 
794 		mlx4_bf_copy(ring->bf.reg + ring->bf.offset, &tx_desc->ctrl,
795 			     desc_size);
796 
797 		wmb();
798 
799 		ring->bf.offset ^= ring->bf.buf_size;
800 	} else {
801 		/* Ensure new descriptor hits memory
802 		 * before setting ownership of this descriptor to HW
803 		 */
804 		dma_wmb();
805 		tx_desc->ctrl.owner_opcode = op_own;
806 		if (send_doorbell)
807 			mlx4_en_xmit_doorbell(ring);
808 		else
809 			ring->xmit_more++;
810 	}
811 }
812 
mlx4_en_build_dma_wqe(struct mlx4_en_priv * priv,struct skb_shared_info * shinfo,struct mlx4_wqe_data_seg * data,struct sk_buff * skb,int lso_header_size,__be32 mr_key,struct mlx4_en_tx_info * tx_info)813 static bool mlx4_en_build_dma_wqe(struct mlx4_en_priv *priv,
814 				  struct skb_shared_info *shinfo,
815 				  struct mlx4_wqe_data_seg *data,
816 				  struct sk_buff *skb,
817 				  int lso_header_size,
818 				  __be32 mr_key,
819 				  struct mlx4_en_tx_info *tx_info)
820 {
821 	struct device *ddev = priv->ddev;
822 	dma_addr_t dma = 0;
823 	u32 byte_count = 0;
824 	int i_frag;
825 
826 	/* Map fragments if any */
827 	for (i_frag = shinfo->nr_frags - 1; i_frag >= 0; i_frag--) {
828 		const skb_frag_t *frag = &shinfo->frags[i_frag];
829 		byte_count = skb_frag_size(frag);
830 		dma = skb_frag_dma_map(ddev, frag,
831 				       0, byte_count,
832 				       DMA_TO_DEVICE);
833 		if (dma_mapping_error(ddev, dma))
834 			goto tx_drop_unmap;
835 
836 		data->addr = cpu_to_be64(dma);
837 		data->lkey = mr_key;
838 		dma_wmb();
839 		data->byte_count = cpu_to_be32(byte_count);
840 		--data;
841 	}
842 
843 	/* Map linear part if needed */
844 	if (tx_info->linear) {
845 		byte_count = skb_headlen(skb) - lso_header_size;
846 
847 		dma = dma_map_single(ddev, skb->data +
848 				     lso_header_size, byte_count,
849 				     DMA_TO_DEVICE);
850 		if (dma_mapping_error(ddev, dma))
851 			goto tx_drop_unmap;
852 
853 		data->addr = cpu_to_be64(dma);
854 		data->lkey = mr_key;
855 		dma_wmb();
856 		data->byte_count = cpu_to_be32(byte_count);
857 	}
858 	/* tx completion can avoid cache line miss for common cases */
859 	tx_info->map0_dma = dma;
860 	tx_info->map0_byte_count = byte_count;
861 
862 	return true;
863 
864 tx_drop_unmap:
865 	en_err(priv, "DMA mapping error\n");
866 
867 	while (++i_frag < shinfo->nr_frags) {
868 		++data;
869 		dma_unmap_page(ddev, (dma_addr_t)be64_to_cpu(data->addr),
870 			       be32_to_cpu(data->byte_count),
871 			       DMA_TO_DEVICE);
872 	}
873 
874 	return false;
875 }
876 
mlx4_en_xmit(struct sk_buff * skb,struct net_device * dev)877 netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev)
878 {
879 	struct skb_shared_info *shinfo = skb_shinfo(skb);
880 	struct mlx4_en_priv *priv = netdev_priv(dev);
881 	union mlx4_wqe_qpn_vlan	qpn_vlan = {};
882 	struct mlx4_en_tx_ring *ring;
883 	struct mlx4_en_tx_desc *tx_desc;
884 	struct mlx4_wqe_data_seg *data;
885 	struct mlx4_en_tx_info *tx_info;
886 	u32 __maybe_unused ring_cons;
887 	int tx_ind;
888 	int nr_txbb;
889 	int desc_size;
890 	int real_size;
891 	u32 index, bf_index;
892 	struct ipv6hdr *h6;
893 	__be32 op_own;
894 	int lso_header_size;
895 	void *fragptr = NULL;
896 	bool bounce = false;
897 	bool send_doorbell;
898 	bool stop_queue;
899 	bool inline_ok;
900 	u8 data_offset;
901 	int hopbyhop;
902 	bool bf_ok;
903 
904 	tx_ind = skb_get_queue_mapping(skb);
905 	ring = priv->tx_ring[TX][tx_ind];
906 
907 	if (unlikely(!priv->port_up))
908 		goto tx_drop;
909 
910 	real_size = get_real_size(skb, shinfo, dev, &lso_header_size,
911 				  &inline_ok, &fragptr, &hopbyhop);
912 	if (unlikely(!real_size))
913 		goto tx_drop_count;
914 
915 	/* Align descriptor to TXBB size */
916 	desc_size = ALIGN(real_size, TXBB_SIZE);
917 	nr_txbb = desc_size >> LOG_TXBB_SIZE;
918 
919 	bf_ok = ring->bf_enabled;
920 	if (skb_vlan_tag_present(skb)) {
921 		u16 vlan_proto;
922 
923 		qpn_vlan.vlan_tag = cpu_to_be16(skb_vlan_tag_get(skb));
924 		vlan_proto = be16_to_cpu(skb->vlan_proto);
925 		if (vlan_proto == ETH_P_8021AD)
926 			qpn_vlan.ins_vlan = MLX4_WQE_CTRL_INS_SVLAN;
927 		else if (vlan_proto == ETH_P_8021Q)
928 			qpn_vlan.ins_vlan = MLX4_WQE_CTRL_INS_CVLAN;
929 		else
930 			qpn_vlan.ins_vlan = 0;
931 		bf_ok = false;
932 	}
933 
934 	netdev_txq_bql_enqueue_prefetchw(ring->tx_queue);
935 
936 	/* Packet is good - grab an index and transmit it */
937 	index = ring->prod & ring->size_mask;
938 	bf_index = ring->prod;
939 
940 	/* See if we have enough space for whole descriptor TXBB for setting
941 	 * SW ownership on next descriptor; if not, use a bounce buffer. */
942 	if (likely(index + nr_txbb <= ring->size))
943 		tx_desc = ring->buf + (index << LOG_TXBB_SIZE);
944 	else {
945 		if (unlikely(nr_txbb > MLX4_MAX_DESC_TXBBS)) {
946 			if (netif_msg_tx_err(priv))
947 				en_warn(priv, "Oversized header or SG list\n");
948 			goto tx_drop_count;
949 		}
950 		tx_desc = (struct mlx4_en_tx_desc *) ring->bounce_buf;
951 		bounce = true;
952 		bf_ok = false;
953 	}
954 
955 	/* Save skb in tx_info ring */
956 	tx_info = &ring->tx_info[index];
957 	tx_info->skb = skb;
958 	tx_info->nr_txbb = nr_txbb;
959 
960 	if (!lso_header_size) {
961 		data = &tx_desc->data;
962 		data_offset = offsetof(struct mlx4_en_tx_desc, data);
963 	} else {
964 		int lso_align = ALIGN(lso_header_size - hopbyhop + 4, DS_SIZE);
965 
966 		data = (void *)&tx_desc->lso + lso_align;
967 		data_offset = offsetof(struct mlx4_en_tx_desc, lso) + lso_align;
968 	}
969 
970 	/* valid only for none inline segments */
971 	tx_info->data_offset = data_offset;
972 
973 	tx_info->inl = inline_ok;
974 
975 	tx_info->linear = lso_header_size < skb_headlen(skb) && !inline_ok;
976 
977 	tx_info->nr_maps = shinfo->nr_frags + tx_info->linear;
978 	data += tx_info->nr_maps - 1;
979 
980 	if (!tx_info->inl)
981 		if (!mlx4_en_build_dma_wqe(priv, shinfo, data, skb,
982 					   lso_header_size, ring->mr_key,
983 					   tx_info))
984 			goto tx_drop_count;
985 
986 	/*
987 	 * For timestamping add flag to skb_shinfo and
988 	 * set flag for further reference
989 	 */
990 	tx_info->ts_requested = 0;
991 	if (unlikely(ring->hwtstamp_tx_type == HWTSTAMP_TX_ON &&
992 		     shinfo->tx_flags & SKBTX_HW_TSTAMP)) {
993 		shinfo->tx_flags |= SKBTX_IN_PROGRESS;
994 		tx_info->ts_requested = 1;
995 	}
996 
997 	/* Prepare ctrl segement apart opcode+ownership, which depends on
998 	 * whether LSO is used */
999 	tx_desc->ctrl.srcrb_flags = priv->ctrl_flags;
1000 	if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
1001 		if (!skb->encapsulation)
1002 			tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
1003 								 MLX4_WQE_CTRL_TCP_UDP_CSUM);
1004 		else
1005 			tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM);
1006 		ring->tx_csum++;
1007 	}
1008 
1009 	if (priv->flags & MLX4_EN_FLAG_ENABLE_HW_LOOPBACK) {
1010 		struct ethhdr *ethh;
1011 
1012 		/* Copy dst mac address to wqe. This allows loopback in eSwitch,
1013 		 * so that VFs and PF can communicate with each other
1014 		 */
1015 		ethh = (struct ethhdr *)skb->data;
1016 		tx_desc->ctrl.srcrb_flags16[0] = get_unaligned((__be16 *)ethh->h_dest);
1017 		tx_desc->ctrl.imm = get_unaligned((__be32 *)(ethh->h_dest + 2));
1018 	}
1019 
1020 	/* Handle LSO (TSO) packets */
1021 	if (lso_header_size) {
1022 		int i;
1023 
1024 		/* Mark opcode as LSO */
1025 		op_own = cpu_to_be32(MLX4_OPCODE_LSO | (1 << 6)) |
1026 			((ring->prod & ring->size) ?
1027 				cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
1028 
1029 		lso_header_size -= hopbyhop;
1030 		/* Fill in the LSO prefix */
1031 		tx_desc->lso.mss_hdr_size = cpu_to_be32(
1032 			shinfo->gso_size << 16 | lso_header_size);
1033 
1034 
1035 		if (unlikely(hopbyhop)) {
1036 			/* remove the HBH header.
1037 			 * Layout: [Ethernet header][IPv6 header][HBH][TCP header]
1038 			 */
1039 			memcpy(tx_desc->lso.header, skb->data, ETH_HLEN + sizeof(*h6));
1040 			h6 = (struct ipv6hdr *)((char *)tx_desc->lso.header + ETH_HLEN);
1041 			h6->nexthdr = IPPROTO_TCP;
1042 			/* Copy the TCP header after the IPv6 one */
1043 			memcpy(h6 + 1,
1044 			       skb->data + ETH_HLEN + sizeof(*h6) +
1045 					sizeof(struct hop_jumbo_hdr),
1046 			       tcp_hdrlen(skb));
1047 			/* Leave ipv6 payload_len set to 0, as LSO v2 specs request. */
1048 		} else {
1049 			/* Copy headers;
1050 			 * note that we already verified that it is linear
1051 			 */
1052 			memcpy(tx_desc->lso.header, skb->data, lso_header_size);
1053 		}
1054 		ring->tso_packets++;
1055 
1056 		i = shinfo->gso_segs;
1057 		tx_info->nr_bytes = skb->len + (i - 1) * lso_header_size;
1058 		ring->packets += i;
1059 	} else {
1060 		/* Normal (Non LSO) packet */
1061 		op_own = cpu_to_be32(MLX4_OPCODE_SEND) |
1062 			((ring->prod & ring->size) ?
1063 			 cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
1064 		tx_info->nr_bytes = max_t(unsigned int, skb->len, ETH_ZLEN);
1065 		ring->packets++;
1066 	}
1067 	ring->bytes += tx_info->nr_bytes;
1068 
1069 	if (tx_info->inl)
1070 		build_inline_wqe(tx_desc, skb, shinfo, fragptr);
1071 
1072 	if (skb->encapsulation) {
1073 		union {
1074 			struct iphdr *v4;
1075 			struct ipv6hdr *v6;
1076 			unsigned char *hdr;
1077 		} ip;
1078 		u8 proto;
1079 
1080 		ip.hdr = skb_inner_network_header(skb);
1081 		proto = (ip.v4->version == 4) ? ip.v4->protocol :
1082 						ip.v6->nexthdr;
1083 
1084 		if (proto == IPPROTO_TCP || proto == IPPROTO_UDP)
1085 			op_own |= cpu_to_be32(MLX4_WQE_CTRL_IIP | MLX4_WQE_CTRL_ILP);
1086 		else
1087 			op_own |= cpu_to_be32(MLX4_WQE_CTRL_IIP);
1088 	}
1089 
1090 	WRITE_ONCE(ring->prod, ring->prod + nr_txbb);
1091 
1092 	/* If we used a bounce buffer then copy descriptor back into place */
1093 	if (unlikely(bounce))
1094 		tx_desc = mlx4_en_bounce_to_desc(priv, ring, index, desc_size);
1095 
1096 	skb_tx_timestamp(skb);
1097 
1098 	/* Check available TXBBs And 2K spare for prefetch */
1099 	stop_queue = mlx4_en_is_tx_ring_full(ring);
1100 	if (unlikely(stop_queue)) {
1101 		netif_tx_stop_queue(ring->tx_queue);
1102 		ring->queue_stopped++;
1103 	}
1104 
1105 	send_doorbell = __netdev_tx_sent_queue(ring->tx_queue,
1106 					       tx_info->nr_bytes,
1107 					       netdev_xmit_more());
1108 
1109 	real_size = (real_size / 16) & 0x3f;
1110 
1111 	bf_ok &= desc_size <= MAX_BF && send_doorbell;
1112 
1113 	if (bf_ok)
1114 		qpn_vlan.bf_qpn = ring->doorbell_qpn | cpu_to_be32(real_size);
1115 	else
1116 		qpn_vlan.fence_size = real_size;
1117 
1118 	mlx4_en_tx_write_desc(ring, tx_desc, qpn_vlan, desc_size, bf_index,
1119 			      op_own, bf_ok, send_doorbell);
1120 
1121 	if (unlikely(stop_queue)) {
1122 		/* If queue was emptied after the if (stop_queue) , and before
1123 		 * the netif_tx_stop_queue() - need to wake the queue,
1124 		 * or else it will remain stopped forever.
1125 		 * Need a memory barrier to make sure ring->cons was not
1126 		 * updated before queue was stopped.
1127 		 */
1128 		smp_rmb();
1129 
1130 		if (unlikely(!mlx4_en_is_tx_ring_full(ring))) {
1131 			netif_tx_wake_queue(ring->tx_queue);
1132 			ring->wake_queue++;
1133 		}
1134 	}
1135 	return NETDEV_TX_OK;
1136 
1137 tx_drop_count:
1138 	ring->tx_dropped++;
1139 tx_drop:
1140 	dev_kfree_skb_any(skb);
1141 	return NETDEV_TX_OK;
1142 }
1143 
1144 #define MLX4_EN_XDP_TX_NRTXBB  1
1145 #define MLX4_EN_XDP_TX_REAL_SZ (((CTRL_SIZE + MLX4_EN_XDP_TX_NRTXBB * DS_SIZE) \
1146 				 / 16) & 0x3f)
1147 
mlx4_en_init_tx_xdp_ring_descs(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring)1148 void mlx4_en_init_tx_xdp_ring_descs(struct mlx4_en_priv *priv,
1149 				    struct mlx4_en_tx_ring *ring)
1150 {
1151 	int i;
1152 
1153 	for (i = 0; i < ring->size; i++) {
1154 		struct mlx4_en_tx_info *tx_info = &ring->tx_info[i];
1155 		struct mlx4_en_tx_desc *tx_desc = ring->buf +
1156 			(i << LOG_TXBB_SIZE);
1157 
1158 		tx_info->map0_byte_count = PAGE_SIZE;
1159 		tx_info->nr_txbb = MLX4_EN_XDP_TX_NRTXBB;
1160 		tx_info->data_offset = offsetof(struct mlx4_en_tx_desc, data);
1161 		tx_info->ts_requested = 0;
1162 		tx_info->nr_maps = 1;
1163 		tx_info->linear = 1;
1164 		tx_info->inl = 0;
1165 
1166 		tx_desc->data.lkey = ring->mr_key;
1167 		tx_desc->ctrl.qpn_vlan.fence_size = MLX4_EN_XDP_TX_REAL_SZ;
1168 		tx_desc->ctrl.srcrb_flags = priv->ctrl_flags;
1169 	}
1170 }
1171 
mlx4_en_xmit_frame(struct mlx4_en_rx_ring * rx_ring,struct mlx4_en_rx_alloc * frame,struct mlx4_en_priv * priv,unsigned int length,int tx_ind,bool * doorbell_pending)1172 netdev_tx_t mlx4_en_xmit_frame(struct mlx4_en_rx_ring *rx_ring,
1173 			       struct mlx4_en_rx_alloc *frame,
1174 			       struct mlx4_en_priv *priv, unsigned int length,
1175 			       int tx_ind, bool *doorbell_pending)
1176 {
1177 	struct mlx4_en_tx_desc *tx_desc;
1178 	struct mlx4_en_tx_info *tx_info;
1179 	struct mlx4_wqe_data_seg *data;
1180 	struct mlx4_en_tx_ring *ring;
1181 	dma_addr_t dma;
1182 	__be32 op_own;
1183 	int index;
1184 
1185 	if (unlikely(!priv->port_up))
1186 		goto tx_drop;
1187 
1188 	ring = priv->tx_ring[TX_XDP][tx_ind];
1189 
1190 	if (unlikely(mlx4_en_is_tx_ring_full(ring)))
1191 		goto tx_drop_count;
1192 
1193 	index = ring->prod & ring->size_mask;
1194 	tx_info = &ring->tx_info[index];
1195 
1196 	tx_desc = ring->buf + (index << LOG_TXBB_SIZE);
1197 	data = &tx_desc->data;
1198 
1199 	dma = frame->dma;
1200 
1201 	tx_info->page = frame->page;
1202 	frame->page = NULL;
1203 	tx_info->map0_dma = dma;
1204 	tx_info->nr_bytes = max_t(unsigned int, length, ETH_ZLEN);
1205 
1206 	dma_sync_single_range_for_device(priv->ddev, dma, frame->page_offset,
1207 					 length, DMA_TO_DEVICE);
1208 
1209 	data->addr = cpu_to_be64(dma + frame->page_offset);
1210 	dma_wmb();
1211 	data->byte_count = cpu_to_be32(length);
1212 
1213 	/* tx completion can avoid cache line miss for common cases */
1214 
1215 	op_own = cpu_to_be32(MLX4_OPCODE_SEND) |
1216 		((ring->prod & ring->size) ?
1217 		 cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
1218 
1219 	rx_ring->xdp_tx++;
1220 
1221 	WRITE_ONCE(ring->prod, ring->prod + MLX4_EN_XDP_TX_NRTXBB);
1222 
1223 	/* Ensure new descriptor hits memory
1224 	 * before setting ownership of this descriptor to HW
1225 	 */
1226 	dma_wmb();
1227 	tx_desc->ctrl.owner_opcode = op_own;
1228 	ring->xmit_more++;
1229 
1230 	*doorbell_pending = true;
1231 
1232 	return NETDEV_TX_OK;
1233 
1234 tx_drop_count:
1235 	rx_ring->xdp_tx_full++;
1236 	*doorbell_pending = true;
1237 tx_drop:
1238 	return NETDEV_TX_BUSY;
1239 }
1240