xref: /openbmc/linux/drivers/net/ethernet/mellanox/mlx4/en_tx.c (revision 1ac731c529cd4d6adbce134754b51ff7d822b145)
15a2cc190SJeff Kirsher /*
25a2cc190SJeff Kirsher  * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
35a2cc190SJeff Kirsher  *
45a2cc190SJeff Kirsher  * This software is available to you under a choice of one of two
55a2cc190SJeff Kirsher  * licenses.  You may choose to be licensed under the terms of the GNU
65a2cc190SJeff Kirsher  * General Public License (GPL) Version 2, available from the file
75a2cc190SJeff Kirsher  * COPYING in the main directory of this source tree, or the
85a2cc190SJeff Kirsher  * OpenIB.org BSD license below:
95a2cc190SJeff Kirsher  *
105a2cc190SJeff Kirsher  *     Redistribution and use in source and binary forms, with or
115a2cc190SJeff Kirsher  *     without modification, are permitted provided that the following
125a2cc190SJeff Kirsher  *     conditions are met:
135a2cc190SJeff Kirsher  *
145a2cc190SJeff Kirsher  *      - Redistributions of source code must retain the above
155a2cc190SJeff Kirsher  *        copyright notice, this list of conditions and the following
165a2cc190SJeff Kirsher  *        disclaimer.
175a2cc190SJeff Kirsher  *
185a2cc190SJeff Kirsher  *      - Redistributions in binary form must reproduce the above
195a2cc190SJeff Kirsher  *        copyright notice, this list of conditions and the following
205a2cc190SJeff Kirsher  *        disclaimer in the documentation and/or other materials
215a2cc190SJeff Kirsher  *        provided with the distribution.
225a2cc190SJeff Kirsher  *
235a2cc190SJeff Kirsher  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
245a2cc190SJeff Kirsher  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
255a2cc190SJeff Kirsher  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
265a2cc190SJeff Kirsher  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
275a2cc190SJeff Kirsher  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
285a2cc190SJeff Kirsher  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
295a2cc190SJeff Kirsher  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
305a2cc190SJeff Kirsher  * SOFTWARE.
315a2cc190SJeff Kirsher  *
325a2cc190SJeff Kirsher  */
335a2cc190SJeff Kirsher 
345a2cc190SJeff Kirsher #include <asm/page.h>
355a2cc190SJeff Kirsher #include <linux/mlx4/cq.h>
365a2cc190SJeff Kirsher #include <linux/slab.h>
375a2cc190SJeff Kirsher #include <linux/mlx4/qp.h>
385a2cc190SJeff Kirsher #include <linux/skbuff.h>
395a2cc190SJeff Kirsher #include <linux/if_vlan.h>
4029d40c90SEric Dumazet #include <linux/prefetch.h>
415a2cc190SJeff Kirsher #include <linux/vmalloc.h>
425a2cc190SJeff Kirsher #include <linux/tcp.h>
43837052d0SOr Gerlitz #include <linux/ip.h>
4409067122SAlexander Duyck #include <linux/ipv6.h>
45310660a1SEric Dumazet #include <linux/indirect_call_wrapper.h>
461169a642SEric Dumazet #include <net/ipv6.h>
475a2cc190SJeff Kirsher 
485a2cc190SJeff Kirsher #include "mlx4_en.h"
495a2cc190SJeff Kirsher 
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)505a2cc190SJeff Kirsher int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv,
51ddae0349SEugenia Emantayev 			   struct mlx4_en_tx_ring **pring, u32 size,
52d03a68f8SIdo Shamay 			   u16 stride, int node, int queue_index)
535a2cc190SJeff Kirsher {
545a2cc190SJeff Kirsher 	struct mlx4_en_dev *mdev = priv->mdev;
5541d942d5SEugenia Emantayev 	struct mlx4_en_tx_ring *ring;
565a2cc190SJeff Kirsher 	int tmp;
575a2cc190SJeff Kirsher 	int err;
585a2cc190SJeff Kirsher 
59163561a4SEugenia Emantayev 	ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
60163561a4SEugenia Emantayev 	if (!ring) {
6141d942d5SEugenia Emantayev 		en_err(priv, "Failed allocating TX ring\n");
6241d942d5SEugenia Emantayev 		return -ENOMEM;
6341d942d5SEugenia Emantayev 	}
6441d942d5SEugenia Emantayev 
655a2cc190SJeff Kirsher 	ring->size = size;
665a2cc190SJeff Kirsher 	ring->size_mask = size - 1;
67e3f42f84SEric Dumazet 	ring->sp_stride = stride;
6835f31ff0SEric Dumazet 	ring->full_size = ring->size - HEADROOM - MLX4_MAX_DESC_TXBBS;
695a2cc190SJeff Kirsher 
705a2cc190SJeff Kirsher 	tmp = size * sizeof(struct mlx4_en_tx_info);
71752ade68SMichal Hocko 	ring->tx_info = kvmalloc_node(tmp, GFP_KERNEL, node);
7241d942d5SEugenia Emantayev 	if (!ring->tx_info) {
7341d942d5SEugenia Emantayev 		err = -ENOMEM;
7441d942d5SEugenia Emantayev 		goto err_ring;
7541d942d5SEugenia Emantayev 	}
76e404decbSJoe Perches 
775a2cc190SJeff Kirsher 	en_dbg(DRV, priv, "Allocated tx_info ring at addr:%p size:%d\n",
785a2cc190SJeff Kirsher 		 ring->tx_info, tmp);
795a2cc190SJeff Kirsher 
8035f31ff0SEric Dumazet 	ring->bounce_buf = kmalloc_node(MLX4_TX_BOUNCE_BUFFER_SIZE,
8135f31ff0SEric Dumazet 					GFP_KERNEL, node);
82163561a4SEugenia Emantayev 	if (!ring->bounce_buf) {
8335f31ff0SEric Dumazet 		ring->bounce_buf = kmalloc(MLX4_TX_BOUNCE_BUFFER_SIZE,
8435f31ff0SEric Dumazet 					   GFP_KERNEL);
855a2cc190SJeff Kirsher 		if (!ring->bounce_buf) {
865a2cc190SJeff Kirsher 			err = -ENOMEM;
8741d942d5SEugenia Emantayev 			goto err_info;
885a2cc190SJeff Kirsher 		}
89163561a4SEugenia Emantayev 	}
90e3f42f84SEric Dumazet 	ring->buf_size = ALIGN(size * ring->sp_stride, MLX4_EN_PAGE_SIZE);
915a2cc190SJeff Kirsher 
92163561a4SEugenia Emantayev 	/* Allocate HW buffers on provided NUMA node */
93872bf2fbSYishai Hadas 	set_dev_node(&mdev->dev->persist->pdev->dev, node);
94e3f42f84SEric Dumazet 	err = mlx4_alloc_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size);
95872bf2fbSYishai Hadas 	set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
965a2cc190SJeff Kirsher 	if (err) {
975a2cc190SJeff Kirsher 		en_err(priv, "Failed allocating hwq resources\n");
985a2cc190SJeff Kirsher 		goto err_bounce;
995a2cc190SJeff Kirsher 	}
1005a2cc190SJeff Kirsher 
101e3f42f84SEric Dumazet 	ring->buf = ring->sp_wqres.buf.direct.buf;
1025a2cc190SJeff Kirsher 
1031a91de28SJoe Perches 	en_dbg(DRV, priv, "Allocated TX ring (addr:%p) - buf:%p size:%d buf_size:%d dma:%llx\n",
1041a91de28SJoe Perches 	       ring, ring->buf, ring->size, ring->buf_size,
105e3f42f84SEric Dumazet 	       (unsigned long long) ring->sp_wqres.buf.direct.map);
1065a2cc190SJeff Kirsher 
107ddae0349SEugenia Emantayev 	err = mlx4_qp_reserve_range(mdev->dev, 1, 1, &ring->qpn,
108f3301870SMoshe Shemesh 				    MLX4_RESERVE_ETH_BF_QP,
109f3301870SMoshe Shemesh 				    MLX4_RES_USAGE_DRIVER);
110ddae0349SEugenia Emantayev 	if (err) {
111ddae0349SEugenia Emantayev 		en_err(priv, "failed reserving qp for TX ring\n");
11273898db0SHaggai Abramovsky 		goto err_hwq_res;
113ddae0349SEugenia Emantayev 	}
114ddae0349SEugenia Emantayev 
1158900b894SLeon Romanovsky 	err = mlx4_qp_alloc(mdev->dev, ring->qpn, &ring->sp_qp);
1165a2cc190SJeff Kirsher 	if (err) {
1175a2cc190SJeff Kirsher 		en_err(priv, "Failed allocating qp %d\n", ring->qpn);
118ddae0349SEugenia Emantayev 		goto err_reserve;
1195a2cc190SJeff Kirsher 	}
120e3f42f84SEric Dumazet 	ring->sp_qp.event = mlx4_en_sqp_event;
1215a2cc190SJeff Kirsher 
122163561a4SEugenia Emantayev 	err = mlx4_bf_alloc(mdev->dev, &ring->bf, node);
1235a2cc190SJeff Kirsher 	if (err) {
1241a91de28SJoe Perches 		en_dbg(DRV, priv, "working without blueflame (%d)\n", err);
1255a2cc190SJeff Kirsher 		ring->bf.uar = &mdev->priv_uar;
1265a2cc190SJeff Kirsher 		ring->bf.uar->map = mdev->uar_map;
1275a2cc190SJeff Kirsher 		ring->bf_enabled = false;
1280fef9d03SAmir Vadai 		ring->bf_alloced = false;
1290fef9d03SAmir Vadai 		priv->pflags &= ~MLX4_EN_PRIV_FLAGS_BLUEFLAME;
1300fef9d03SAmir Vadai 	} else {
1310fef9d03SAmir Vadai 		ring->bf_alloced = true;
1320fef9d03SAmir Vadai 		ring->bf_enabled = !!(priv->pflags &
1330fef9d03SAmir Vadai 				      MLX4_EN_PRIV_FLAGS_BLUEFLAME);
1340fef9d03SAmir Vadai 	}
1359ac93627SEric Dumazet 	ring->doorbell_address = ring->bf.uar->map + MLX4_SEND_DOORBELL;
1365a2cc190SJeff Kirsher 
137ec693d47SAmir Vadai 	ring->hwtstamp_tx_type = priv->hwtstamp_config.tx_type;
138d03a68f8SIdo Shamay 	ring->queue_index = queue_index;
139d03a68f8SIdo Shamay 
14042eab005SBenjamin Poirier 	if (queue_index < priv->num_tx_rings_p_up)
141f36963c9SRusty Russell 		cpumask_set_cpu(cpumask_local_spread(queue_index,
142f36963c9SRusty Russell 						     priv->mdev->dev->numa_node),
143e3f42f84SEric Dumazet 				&ring->sp_affinity_mask);
144ec693d47SAmir Vadai 
14541d942d5SEugenia Emantayev 	*pring = ring;
1465a2cc190SJeff Kirsher 	return 0;
1475a2cc190SJeff Kirsher 
148ddae0349SEugenia Emantayev err_reserve:
149ddae0349SEugenia Emantayev 	mlx4_qp_release_range(mdev->dev, ring->qpn, 1);
1505a2cc190SJeff Kirsher err_hwq_res:
151e3f42f84SEric Dumazet 	mlx4_free_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size);
1525a2cc190SJeff Kirsher err_bounce:
1535a2cc190SJeff Kirsher 	kfree(ring->bounce_buf);
1545a2cc190SJeff Kirsher 	ring->bounce_buf = NULL;
15541d942d5SEugenia Emantayev err_info:
156dc9b06d1SEric Dumazet 	kvfree(ring->tx_info);
1575a2cc190SJeff Kirsher 	ring->tx_info = NULL;
15841d942d5SEugenia Emantayev err_ring:
15941d942d5SEugenia Emantayev 	kfree(ring);
16041d942d5SEugenia Emantayev 	*pring = NULL;
1615a2cc190SJeff Kirsher 	return err;
1625a2cc190SJeff Kirsher }
1635a2cc190SJeff Kirsher 
mlx4_en_destroy_tx_ring(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring ** pring)1645a2cc190SJeff Kirsher void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv,
16541d942d5SEugenia Emantayev 			     struct mlx4_en_tx_ring **pring)
1665a2cc190SJeff Kirsher {
1675a2cc190SJeff Kirsher 	struct mlx4_en_dev *mdev = priv->mdev;
16841d942d5SEugenia Emantayev 	struct mlx4_en_tx_ring *ring = *pring;
1695a2cc190SJeff Kirsher 	en_dbg(DRV, priv, "Destroying tx ring, qpn: %d\n", ring->qpn);
1705a2cc190SJeff Kirsher 
1710fef9d03SAmir Vadai 	if (ring->bf_alloced)
1725a2cc190SJeff Kirsher 		mlx4_bf_free(mdev->dev, &ring->bf);
173e3f42f84SEric Dumazet 	mlx4_qp_remove(mdev->dev, &ring->sp_qp);
174e3f42f84SEric Dumazet 	mlx4_qp_free(mdev->dev, &ring->sp_qp);
1750eb08514SEran Ben Elisha 	mlx4_qp_release_range(priv->mdev->dev, ring->qpn, 1);
176e3f42f84SEric Dumazet 	mlx4_free_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size);
1775a2cc190SJeff Kirsher 	kfree(ring->bounce_buf);
1785a2cc190SJeff Kirsher 	ring->bounce_buf = NULL;
179dc9b06d1SEric Dumazet 	kvfree(ring->tx_info);
1805a2cc190SJeff Kirsher 	ring->tx_info = NULL;
18141d942d5SEugenia Emantayev 	kfree(ring);
18241d942d5SEugenia Emantayev 	*pring = NULL;
1835a2cc190SJeff Kirsher }
1845a2cc190SJeff Kirsher 
mlx4_en_activate_tx_ring(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,int cq,int user_prio)1855a2cc190SJeff Kirsher int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv,
1865a2cc190SJeff Kirsher 			     struct mlx4_en_tx_ring *ring,
1870e98b523SAmir Vadai 			     int cq, int user_prio)
1885a2cc190SJeff Kirsher {
1895a2cc190SJeff Kirsher 	struct mlx4_en_dev *mdev = priv->mdev;
1905a2cc190SJeff Kirsher 	int err;
1915a2cc190SJeff Kirsher 
192e3f42f84SEric Dumazet 	ring->sp_cqn = cq;
1935a2cc190SJeff Kirsher 	ring->prod = 0;
1945a2cc190SJeff Kirsher 	ring->cons = 0xffffffff;
1955a2cc190SJeff Kirsher 	ring->last_nr_txbb = 1;
1965a2cc190SJeff Kirsher 	memset(ring->tx_info, 0, ring->size * sizeof(struct mlx4_en_tx_info));
1975a2cc190SJeff Kirsher 	memset(ring->buf, 0, ring->buf_size);
1989ecc2d86SBrenden Blanco 	ring->free_tx_desc = mlx4_en_free_tx_desc;
1995a2cc190SJeff Kirsher 
200e3f42f84SEric Dumazet 	ring->sp_qp_state = MLX4_QP_STATE_RST;
201e3f42f84SEric Dumazet 	ring->doorbell_qpn = cpu_to_be32(ring->sp_qp.qpn << 8);
2026a4e8121SEric Dumazet 	ring->mr_key = cpu_to_be32(mdev->mr.key);
2035a2cc190SJeff Kirsher 
204e3f42f84SEric Dumazet 	mlx4_en_fill_qp_context(priv, ring->size, ring->sp_stride, 1, 0, ring->qpn,
205e3f42f84SEric Dumazet 				ring->sp_cqn, user_prio, &ring->sp_context);
2060fef9d03SAmir Vadai 	if (ring->bf_alloced)
207e3f42f84SEric Dumazet 		ring->sp_context.usr_page =
20885743f1eSHuy Nguyen 			cpu_to_be32(mlx4_to_hw_uar_index(mdev->dev,
20985743f1eSHuy Nguyen 							 ring->bf.uar->index));
2105a2cc190SJeff Kirsher 
211e3f42f84SEric Dumazet 	err = mlx4_qp_to_ready(mdev->dev, &ring->sp_wqres.mtt, &ring->sp_context,
212e3f42f84SEric Dumazet 			       &ring->sp_qp, &ring->sp_qp_state);
213e3f42f84SEric Dumazet 	if (!cpumask_empty(&ring->sp_affinity_mask))
214e3f42f84SEric Dumazet 		netif_set_xps_queue(priv->dev, &ring->sp_affinity_mask,
215d03a68f8SIdo Shamay 				    ring->queue_index);
2165a2cc190SJeff Kirsher 
2175a2cc190SJeff Kirsher 	return err;
2185a2cc190SJeff Kirsher }
2195a2cc190SJeff Kirsher 
mlx4_en_deactivate_tx_ring(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring)2205a2cc190SJeff Kirsher void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv,
2215a2cc190SJeff Kirsher 				struct mlx4_en_tx_ring *ring)
2225a2cc190SJeff Kirsher {
2235a2cc190SJeff Kirsher 	struct mlx4_en_dev *mdev = priv->mdev;
2245a2cc190SJeff Kirsher 
225e3f42f84SEric Dumazet 	mlx4_qp_modify(mdev->dev, NULL, ring->sp_qp_state,
226e3f42f84SEric Dumazet 		       MLX4_QP_STATE_RST, NULL, 0, 0, &ring->sp_qp);
2275a2cc190SJeff Kirsher }
2285a2cc190SJeff Kirsher 
mlx4_en_is_tx_ring_full(struct mlx4_en_tx_ring * ring)229488a9b48SIdo Shamay static inline bool mlx4_en_is_tx_ring_full(struct mlx4_en_tx_ring *ring)
230488a9b48SIdo Shamay {
231*9a714997SJakub Kicinski 	u32 used = READ_ONCE(ring->prod) - READ_ONCE(ring->cons);
232*9a714997SJakub Kicinski 
233*9a714997SJakub Kicinski 	return used > ring->full_size;
234488a9b48SIdo Shamay }
235488a9b48SIdo Shamay 
mlx4_en_stamp_wqe(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,int index,u8 owner)2362d4b6466SEugenia Emantayev static void mlx4_en_stamp_wqe(struct mlx4_en_priv *priv,
2372d4b6466SEugenia Emantayev 			      struct mlx4_en_tx_ring *ring, int index,
2382d4b6466SEugenia Emantayev 			      u8 owner)
2392d4b6466SEugenia Emantayev {
2402d4b6466SEugenia Emantayev 	__be32 stamp = cpu_to_be32(STAMP_VAL | (!!owner << STAMP_SHIFT));
2419573e0d3STariq Toukan 	struct mlx4_en_tx_desc *tx_desc = ring->buf + (index << LOG_TXBB_SIZE);
2422d4b6466SEugenia Emantayev 	struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
2432d4b6466SEugenia Emantayev 	void *end = ring->buf + ring->buf_size;
2442d4b6466SEugenia Emantayev 	__be32 *ptr = (__be32 *)tx_desc;
2452d4b6466SEugenia Emantayev 	int i;
2462d4b6466SEugenia Emantayev 
2472d4b6466SEugenia Emantayev 	/* Optimize the common case when there are no wraparounds */
2489573e0d3STariq Toukan 	if (likely((void *)tx_desc +
2499573e0d3STariq Toukan 		   (tx_info->nr_txbb << LOG_TXBB_SIZE) <= end)) {
2502d4b6466SEugenia Emantayev 		/* Stamp the freed descriptor */
2519573e0d3STariq Toukan 		for (i = 0; i < tx_info->nr_txbb << LOG_TXBB_SIZE;
2522d4b6466SEugenia Emantayev 		     i += STAMP_STRIDE) {
2532d4b6466SEugenia Emantayev 			*ptr = stamp;
2542d4b6466SEugenia Emantayev 			ptr += STAMP_DWORDS;
2552d4b6466SEugenia Emantayev 		}
2562d4b6466SEugenia Emantayev 	} else {
2572d4b6466SEugenia Emantayev 		/* Stamp the freed descriptor */
2589573e0d3STariq Toukan 		for (i = 0; i < tx_info->nr_txbb << LOG_TXBB_SIZE;
2592d4b6466SEugenia Emantayev 		     i += STAMP_STRIDE) {
2602d4b6466SEugenia Emantayev 			*ptr = stamp;
2612d4b6466SEugenia Emantayev 			ptr += STAMP_DWORDS;
2622d4b6466SEugenia Emantayev 			if ((void *)ptr >= end) {
2632d4b6466SEugenia Emantayev 				ptr = ring->buf;
2642d4b6466SEugenia Emantayev 				stamp ^= cpu_to_be32(0x80000000);
2652d4b6466SEugenia Emantayev 			}
2662d4b6466SEugenia Emantayev 		}
2672d4b6466SEugenia Emantayev 	}
2682d4b6466SEugenia Emantayev }
2692d4b6466SEugenia Emantayev 
270310660a1SEric Dumazet INDIRECT_CALLABLE_DECLARE(u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
271310660a1SEric Dumazet 						   struct mlx4_en_tx_ring *ring,
272310660a1SEric Dumazet 						   int index, u64 timestamp,
273310660a1SEric Dumazet 						   int napi_mode));
2745a2cc190SJeff Kirsher 
mlx4_en_free_tx_desc(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,int index,u64 timestamp,int napi_mode)2759ecc2d86SBrenden Blanco u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
2765a2cc190SJeff Kirsher 			 struct mlx4_en_tx_ring *ring,
277cf97050dSTariq Toukan 			 int index, u64 timestamp,
278b4a53379SJesper Dangaard Brouer 			 int napi_mode)
2795a2cc190SJeff Kirsher {
2805a2cc190SJeff Kirsher 	struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
2819573e0d3STariq Toukan 	struct mlx4_en_tx_desc *tx_desc = ring->buf + (index << LOG_TXBB_SIZE);
2825a2cc190SJeff Kirsher 	struct mlx4_wqe_data_seg *data = (void *) tx_desc + tx_info->data_offset;
2835a2cc190SJeff Kirsher 	void *end = ring->buf + ring->buf_size;
2843d03641cSEric Dumazet 	struct sk_buff *skb = tx_info->skb;
2853d03641cSEric Dumazet 	int nr_maps = tx_info->nr_maps;
2865a2cc190SJeff Kirsher 	int i;
2873d03641cSEric Dumazet 
28829d40c90SEric Dumazet 	/* We do not touch skb here, so prefetch skb->users location
28929d40c90SEric Dumazet 	 * to speedup consume_skb()
29029d40c90SEric Dumazet 	 */
29129d40c90SEric Dumazet 	prefetchw(&skb->users);
29229d40c90SEric Dumazet 
2933d03641cSEric Dumazet 	if (unlikely(timestamp)) {
294ec693d47SAmir Vadai 		struct skb_shared_hwtstamps hwts;
295ec693d47SAmir Vadai 
2963d03641cSEric Dumazet 		mlx4_en_fill_hwtstamps(priv->mdev, &hwts, timestamp);
297ec693d47SAmir Vadai 		skb_tstamp_tx(skb, &hwts);
298ec693d47SAmir Vadai 	}
2995a2cc190SJeff Kirsher 
3005a2cc190SJeff Kirsher 	if (!tx_info->inl) {
3013d03641cSEric Dumazet 		if (tx_info->linear)
302ebf8c9aaSYevgeny Petrilin 			dma_unmap_single(priv->ddev,
3033d03641cSEric Dumazet 					 tx_info->map0_dma,
3043d03641cSEric Dumazet 					 tx_info->map0_byte_count,
305eb9c5c0dSChristophe JAILLET 					 DMA_TO_DEVICE);
3063d03641cSEric Dumazet 		else
3073d03641cSEric Dumazet 			dma_unmap_page(priv->ddev,
3083d03641cSEric Dumazet 				       tx_info->map0_dma,
3093d03641cSEric Dumazet 				       tx_info->map0_byte_count,
310eb9c5c0dSChristophe JAILLET 				       DMA_TO_DEVICE);
3114c07c132STariq Toukan 		/* Optimize the common case when there are no wraparounds */
3124c07c132STariq Toukan 		if (likely((void *)tx_desc +
3134c07c132STariq Toukan 			   (tx_info->nr_txbb << LOG_TXBB_SIZE) <= end)) {
3143d03641cSEric Dumazet 			for (i = 1; i < nr_maps; i++) {
3153d03641cSEric Dumazet 				data++;
3163d03641cSEric Dumazet 				dma_unmap_page(priv->ddev,
3175a2cc190SJeff Kirsher 					(dma_addr_t)be64_to_cpu(data->addr),
3185a2cc190SJeff Kirsher 					be32_to_cpu(data->byte_count),
319eb9c5c0dSChristophe JAILLET 					DMA_TO_DEVICE);
3205a2cc190SJeff Kirsher 			}
3215a2cc190SJeff Kirsher 		} else {
3224c07c132STariq Toukan 			if ((void *)data >= end)
3235a2cc190SJeff Kirsher 				data = ring->buf + ((void *)data - end);
3245a2cc190SJeff Kirsher 
3253d03641cSEric Dumazet 			for (i = 1; i < nr_maps; i++) {
3263d03641cSEric Dumazet 				data++;
3275a2cc190SJeff Kirsher 				/* Check for wraparound before unmapping */
3285a2cc190SJeff Kirsher 				if ((void *) data >= end)
3295a2cc190SJeff Kirsher 					data = ring->buf;
330ebf8c9aaSYevgeny Petrilin 				dma_unmap_page(priv->ddev,
3315a2cc190SJeff Kirsher 					(dma_addr_t)be64_to_cpu(data->addr),
3323d03641cSEric Dumazet 					be32_to_cpu(data->byte_count),
333eb9c5c0dSChristophe JAILLET 					DMA_TO_DEVICE);
3345a2cc190SJeff Kirsher 			}
3355a2cc190SJeff Kirsher 		}
3365a2cc190SJeff Kirsher 	}
337b4a53379SJesper Dangaard Brouer 	napi_consume_skb(skb, napi_mode);
338b4a53379SJesper Dangaard Brouer 
3395a2cc190SJeff Kirsher 	return tx_info->nr_txbb;
3405a2cc190SJeff Kirsher }
3415a2cc190SJeff Kirsher 
342310660a1SEric Dumazet INDIRECT_CALLABLE_DECLARE(u32 mlx4_en_recycle_tx_desc(struct mlx4_en_priv *priv,
343310660a1SEric Dumazet 						      struct mlx4_en_tx_ring *ring,
344310660a1SEric Dumazet 						      int index, u64 timestamp,
345310660a1SEric Dumazet 						      int napi_mode));
346310660a1SEric Dumazet 
mlx4_en_recycle_tx_desc(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,int index,u64 timestamp,int napi_mode)3479ecc2d86SBrenden Blanco u32 mlx4_en_recycle_tx_desc(struct mlx4_en_priv *priv,
3489ecc2d86SBrenden Blanco 			    struct mlx4_en_tx_ring *ring,
349cf97050dSTariq Toukan 			    int index, u64 timestamp,
3509ecc2d86SBrenden Blanco 			    int napi_mode)
3519ecc2d86SBrenden Blanco {
3529ecc2d86SBrenden Blanco 	struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
3539ecc2d86SBrenden Blanco 	struct mlx4_en_rx_alloc frame = {
3549ecc2d86SBrenden Blanco 		.page = tx_info->page,
3559ecc2d86SBrenden Blanco 		.dma = tx_info->map0_dma,
3569ecc2d86SBrenden Blanco 	};
3579ecc2d86SBrenden Blanco 
358b2b8a927SJonathan Lemon 	if (!napi_mode || !mlx4_en_rx_recycle(ring->recycle_ring, &frame)) {
3599ecc2d86SBrenden Blanco 		dma_unmap_page(priv->ddev, tx_info->map0_dma,
36069ba9431SEric Dumazet 			       PAGE_SIZE, priv->dma_dir);
3619ecc2d86SBrenden Blanco 		put_page(tx_info->page);
3629ecc2d86SBrenden Blanco 	}
3639ecc2d86SBrenden Blanco 
3649ecc2d86SBrenden Blanco 	return tx_info->nr_txbb;
3659ecc2d86SBrenden Blanco }
3665a2cc190SJeff Kirsher 
mlx4_en_free_tx_buf(struct net_device * dev,struct mlx4_en_tx_ring * ring)3675a2cc190SJeff Kirsher int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring)
3685a2cc190SJeff Kirsher {
3695a2cc190SJeff Kirsher 	struct mlx4_en_priv *priv = netdev_priv(dev);
3705a2cc190SJeff Kirsher 	int cnt = 0;
3715a2cc190SJeff Kirsher 
3725a2cc190SJeff Kirsher 	/* Skip last polled descriptor */
3735a2cc190SJeff Kirsher 	ring->cons += ring->last_nr_txbb;
3745a2cc190SJeff Kirsher 	en_dbg(DRV, priv, "Freeing Tx buf - cons:0x%x prod:0x%x\n",
3755a2cc190SJeff Kirsher 		 ring->cons, ring->prod);
3765a2cc190SJeff Kirsher 
3775a2cc190SJeff Kirsher 	if ((u32) (ring->prod - ring->cons) > ring->size) {
3785a2cc190SJeff Kirsher 		if (netif_msg_tx_err(priv))
3795a2cc190SJeff Kirsher 			en_warn(priv, "Tx consumer passed producer!\n");
3805a2cc190SJeff Kirsher 		return 0;
3815a2cc190SJeff Kirsher 	}
3825a2cc190SJeff Kirsher 
3835a2cc190SJeff Kirsher 	while (ring->cons != ring->prod) {
3849ecc2d86SBrenden Blanco 		ring->last_nr_txbb = ring->free_tx_desc(priv, ring,
3855a2cc190SJeff Kirsher 						ring->cons & ring->size_mask,
386cf97050dSTariq Toukan 						0, 0 /* Non-NAPI caller */);
3875a2cc190SJeff Kirsher 		ring->cons += ring->last_nr_txbb;
3885a2cc190SJeff Kirsher 		cnt++;
3895a2cc190SJeff Kirsher 	}
3905a2cc190SJeff Kirsher 
39167f8b1dcSTariq Toukan 	if (ring->tx_queue)
39241b74920STom Herbert 		netdev_tx_reset_queue(ring->tx_queue);
39341b74920STom Herbert 
3945a2cc190SJeff Kirsher 	if (cnt)
3955a2cc190SJeff Kirsher 		en_dbg(DRV, priv, "Freed %d uncompleted tx descriptors\n", cnt);
3965a2cc190SJeff Kirsher 
3975a2cc190SJeff Kirsher 	return cnt;
3985a2cc190SJeff Kirsher }
3995a2cc190SJeff Kirsher 
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)400ba603d9dSMoshe Shemesh static void mlx4_en_handle_err_cqe(struct mlx4_en_priv *priv, struct mlx4_err_cqe *err_cqe,
401ba603d9dSMoshe Shemesh 				   u16 cqe_index, struct mlx4_en_tx_ring *ring)
402ba603d9dSMoshe Shemesh {
403ba603d9dSMoshe Shemesh 	struct mlx4_en_dev *mdev = priv->mdev;
404ba603d9dSMoshe Shemesh 	struct mlx4_en_tx_info *tx_info;
405ba603d9dSMoshe Shemesh 	struct mlx4_en_tx_desc *tx_desc;
406ba603d9dSMoshe Shemesh 	u16 wqe_index;
407ba603d9dSMoshe Shemesh 	int desc_size;
408ba603d9dSMoshe Shemesh 
409ba603d9dSMoshe Shemesh 	en_err(priv, "CQE error - cqn 0x%x, ci 0x%x, vendor syndrome: 0x%x syndrome: 0x%x\n",
410ba603d9dSMoshe Shemesh 	       ring->sp_cqn, cqe_index, err_cqe->vendor_err_syndrome, err_cqe->syndrome);
411ba603d9dSMoshe Shemesh 	print_hex_dump(KERN_WARNING, "", DUMP_PREFIX_OFFSET, 16, 1, err_cqe, sizeof(*err_cqe),
412ba603d9dSMoshe Shemesh 		       false);
413ba603d9dSMoshe Shemesh 
414ba603d9dSMoshe Shemesh 	wqe_index = be16_to_cpu(err_cqe->wqe_index) & ring->size_mask;
415ba603d9dSMoshe Shemesh 	tx_info = &ring->tx_info[wqe_index];
416ba603d9dSMoshe Shemesh 	desc_size = tx_info->nr_txbb << LOG_TXBB_SIZE;
417ba603d9dSMoshe Shemesh 	en_err(priv, "Related WQE - qpn 0x%x, wqe index 0x%x, wqe size 0x%x\n", ring->qpn,
418ba603d9dSMoshe Shemesh 	       wqe_index, desc_size);
419ba603d9dSMoshe Shemesh 	tx_desc = ring->buf + (wqe_index << LOG_TXBB_SIZE);
420ba603d9dSMoshe Shemesh 	print_hex_dump(KERN_WARNING, "", DUMP_PREFIX_OFFSET, 16, 1, tx_desc, desc_size, false);
421ba603d9dSMoshe Shemesh 
422ba603d9dSMoshe Shemesh 	if (test_and_set_bit(MLX4_EN_STATE_FLAG_RESTARTING, &priv->state))
423ba603d9dSMoshe Shemesh 		return;
424ba603d9dSMoshe Shemesh 
425ba603d9dSMoshe Shemesh 	en_err(priv, "Scheduling port restart\n");
426ba603d9dSMoshe Shemesh 	queue_work(mdev->workqueue, &priv->restart_task);
427ba603d9dSMoshe Shemesh }
428ba603d9dSMoshe Shemesh 
mlx4_en_process_tx_cq(struct net_device * dev,struct mlx4_en_cq * cq,int napi_budget)429cf4058dbSEric Dumazet int mlx4_en_process_tx_cq(struct net_device *dev,
430b4a53379SJesper Dangaard Brouer 			  struct mlx4_en_cq *cq, int napi_budget)
4315a2cc190SJeff Kirsher {
4325a2cc190SJeff Kirsher 	struct mlx4_en_priv *priv = netdev_priv(dev);
4335a2cc190SJeff Kirsher 	struct mlx4_cq *mcq = &cq->mcq;
43467f8b1dcSTariq Toukan 	struct mlx4_en_tx_ring *ring = priv->tx_ring[cq->type][cq->ring];
435f0ab34f0SYevgeny Petrilin 	struct mlx4_cqe *cqe;
436cc26a490STariq Toukan 	u16 index, ring_index, stamp_index;
4375a2cc190SJeff Kirsher 	u32 txbbs_skipped = 0;
4382d4b6466SEugenia Emantayev 	u32 txbbs_stamp = 0;
439f0ab34f0SYevgeny Petrilin 	u32 cons_index = mcq->cons_index;
440f0ab34f0SYevgeny Petrilin 	int size = cq->size;
441f0ab34f0SYevgeny Petrilin 	u32 size_mask = ring->size_mask;
442f0ab34f0SYevgeny Petrilin 	struct mlx4_cqe *buf = cq->buf;
4435b263f53SYevgeny Petrilin 	u32 packets = 0;
4445b263f53SYevgeny Petrilin 	u32 bytes = 0;
44508ff3235SOr Gerlitz 	int factor = priv->cqe_factor;
4460276a330SEugenia Emantayev 	int done = 0;
447fbc6daf1SAmir Vadai 	int budget = priv->tx_work_limit;
448fb1843eeSEric Dumazet 	u32 last_nr_txbb;
449fb1843eeSEric Dumazet 	u32 ring_cons;
4505a2cc190SJeff Kirsher 
451cc26a490STariq Toukan 	if (unlikely(!priv->port_up))
452cf4058dbSEric Dumazet 		return 0;
4535a2cc190SJeff Kirsher 
45453511453SEric Dumazet 	netdev_txq_bql_complete_prefetchw(ring->tx_queue);
45553511453SEric Dumazet 
456f0ab34f0SYevgeny Petrilin 	index = cons_index & size_mask;
457b1b6b4daSIdo Shamay 	cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor;
4586aa7de05SMark Rutland 	last_nr_txbb = READ_ONCE(ring->last_nr_txbb);
4596aa7de05SMark Rutland 	ring_cons = READ_ONCE(ring->cons);
460fb1843eeSEric Dumazet 	ring_index = ring_cons & size_mask;
4612d4b6466SEugenia Emantayev 	stamp_index = ring_index;
4625a2cc190SJeff Kirsher 
463f0ab34f0SYevgeny Petrilin 	/* Process all completed CQEs */
464f0ab34f0SYevgeny Petrilin 	while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
4650276a330SEugenia Emantayev 			cons_index & size) && (done < budget)) {
466cc26a490STariq Toukan 		u16 new_index;
467cc26a490STariq Toukan 
468f0ab34f0SYevgeny Petrilin 		/*
469f0ab34f0SYevgeny Petrilin 		 * make sure we read the CQE after we read the
470f0ab34f0SYevgeny Petrilin 		 * ownership bit
471f0ab34f0SYevgeny Petrilin 		 */
47212b3375fSAlexander Duyck 		dma_rmb();
473f0ab34f0SYevgeny Petrilin 
474bd2f631dSAmir Vadai 		if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
475ba603d9dSMoshe Shemesh 			     MLX4_CQE_OPCODE_ERROR))
476ba603d9dSMoshe Shemesh 			if (!test_and_set_bit(MLX4_EN_TX_RING_STATE_RECOVERING, &ring->state))
477ba603d9dSMoshe Shemesh 				mlx4_en_handle_err_cqe(priv, (struct mlx4_err_cqe *)cqe, index,
478ba603d9dSMoshe Shemesh 						       ring);
479bd2f631dSAmir Vadai 
480f0ab34f0SYevgeny Petrilin 		/* Skip over last polled CQE */
481f0ab34f0SYevgeny Petrilin 		new_index = be16_to_cpu(cqe->wqe_index) & size_mask;
482f0ab34f0SYevgeny Petrilin 
483f0ab34f0SYevgeny Petrilin 		do {
484fc96256cSEric Dumazet 			u64 timestamp = 0;
485fc96256cSEric Dumazet 
486fb1843eeSEric Dumazet 			txbbs_skipped += last_nr_txbb;
487fb1843eeSEric Dumazet 			ring_index = (ring_index + last_nr_txbb) & size_mask;
488fc96256cSEric Dumazet 
489fc96256cSEric Dumazet 			if (unlikely(ring->tx_info[ring_index].ts_requested))
490ec693d47SAmir Vadai 				timestamp = mlx4_en_get_cqe_ts(cqe);
491ec693d47SAmir Vadai 
492f0ab34f0SYevgeny Petrilin 			/* free next descriptor */
493310660a1SEric Dumazet 			last_nr_txbb = INDIRECT_CALL_2(ring->free_tx_desc,
494310660a1SEric Dumazet 						       mlx4_en_free_tx_desc,
495310660a1SEric Dumazet 						       mlx4_en_recycle_tx_desc,
496f0ab34f0SYevgeny Petrilin 					priv, ring, ring_index,
497cf97050dSTariq Toukan 					timestamp, napi_budget);
4982d4b6466SEugenia Emantayev 
4992d4b6466SEugenia Emantayev 			mlx4_en_stamp_wqe(priv, ring, stamp_index,
500fb1843eeSEric Dumazet 					  !!((ring_cons + txbbs_stamp) &
5012d4b6466SEugenia Emantayev 						ring->size));
5022d4b6466SEugenia Emantayev 			stamp_index = ring_index;
5032d4b6466SEugenia Emantayev 			txbbs_stamp = txbbs_skipped;
5045b263f53SYevgeny Petrilin 			packets++;
5055b263f53SYevgeny Petrilin 			bytes += ring->tx_info[ring_index].nr_bytes;
5060276a330SEugenia Emantayev 		} while ((++done < budget) && (ring_index != new_index));
5075a2cc190SJeff Kirsher 
508f0ab34f0SYevgeny Petrilin 		++cons_index;
509f0ab34f0SYevgeny Petrilin 		index = cons_index & size_mask;
510b1b6b4daSIdo Shamay 		cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor;
511f0ab34f0SYevgeny Petrilin 	}
5125a2cc190SJeff Kirsher 
5135a2cc190SJeff Kirsher 	/*
5145a2cc190SJeff Kirsher 	 * To prevent CQ overflow we first update CQ consumer and only then
5155a2cc190SJeff Kirsher 	 * the ring consumer.
5165a2cc190SJeff Kirsher 	 */
517f0ab34f0SYevgeny Petrilin 	mcq->cons_index = cons_index;
5185a2cc190SJeff Kirsher 	mlx4_cq_set_ci(mcq);
5195a2cc190SJeff Kirsher 	wmb();
520fb1843eeSEric Dumazet 
521fb1843eeSEric Dumazet 	/* we want to dirty this cache line once */
5226aa7de05SMark Rutland 	WRITE_ONCE(ring->last_nr_txbb, last_nr_txbb);
5236aa7de05SMark Rutland 	WRITE_ONCE(ring->cons, ring_cons + txbbs_skipped);
524fb1843eeSEric Dumazet 
525cc26a490STariq Toukan 	if (cq->type == TX_XDP)
526cf4058dbSEric Dumazet 		return done;
5279ecc2d86SBrenden Blanco 
5285b263f53SYevgeny Petrilin 	netdev_tx_completed_queue(ring->tx_queue, packets, bytes);
5295a2cc190SJeff Kirsher 
530488a9b48SIdo Shamay 	/* Wakeup Tx queue if this stopped, and ring is not full.
531c18520bdSYevgeny Petrilin 	 */
532488a9b48SIdo Shamay 	if (netif_tx_queue_stopped(ring->tx_queue) &&
533488a9b48SIdo Shamay 	    !mlx4_en_is_tx_ring_full(ring)) {
5345b263f53SYevgeny Petrilin 		netif_tx_wake_queue(ring->tx_queue);
53515bffdffSEugenia Emantayev 		ring->wake_queue++;
5365a2cc190SJeff Kirsher 	}
537cc26a490STariq Toukan 
538cf4058dbSEric Dumazet 	return done;
5395a2cc190SJeff Kirsher }
5405a2cc190SJeff Kirsher 
mlx4_en_tx_irq(struct mlx4_cq * mcq)5415a2cc190SJeff Kirsher void mlx4_en_tx_irq(struct mlx4_cq *mcq)
5425a2cc190SJeff Kirsher {
5435a2cc190SJeff Kirsher 	struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
5445a2cc190SJeff Kirsher 	struct mlx4_en_priv *priv = netdev_priv(cq->dev);
5455a2cc190SJeff Kirsher 
546477b35b4SEric Dumazet 	if (likely(priv->port_up))
547477b35b4SEric Dumazet 		napi_schedule_irqoff(&cq->napi);
5480276a330SEugenia Emantayev 	else
549e22979d9SYevgeny Petrilin 		mlx4_en_arm_cq(priv, cq);
5505a2cc190SJeff Kirsher }
5515a2cc190SJeff Kirsher 
5520276a330SEugenia Emantayev /* TX CQ polling - called by NAPI */
mlx4_en_poll_tx_cq(struct napi_struct * napi,int budget)5530276a330SEugenia Emantayev int mlx4_en_poll_tx_cq(struct napi_struct *napi, int budget)
5540276a330SEugenia Emantayev {
5550276a330SEugenia Emantayev 	struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
5560276a330SEugenia Emantayev 	struct net_device *dev = cq->dev;
5570276a330SEugenia Emantayev 	struct mlx4_en_priv *priv = netdev_priv(dev);
558cf4058dbSEric Dumazet 	int work_done;
5590276a330SEugenia Emantayev 
560cf4058dbSEric Dumazet 	work_done = mlx4_en_process_tx_cq(dev, cq, budget);
561cf4058dbSEric Dumazet 	if (work_done >= budget)
562fbc6daf1SAmir Vadai 		return budget;
5630276a330SEugenia Emantayev 
564cf4058dbSEric Dumazet 	if (napi_complete_done(napi, work_done))
5650276a330SEugenia Emantayev 		mlx4_en_arm_cq(priv, cq);
566fbc6daf1SAmir Vadai 
567fbc6daf1SAmir Vadai 	return 0;
5680276a330SEugenia Emantayev }
5695a2cc190SJeff Kirsher 
mlx4_en_bounce_to_desc(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring,u32 index,unsigned int desc_size)5705a2cc190SJeff Kirsher static struct mlx4_en_tx_desc *mlx4_en_bounce_to_desc(struct mlx4_en_priv *priv,
5715a2cc190SJeff Kirsher 						      struct mlx4_en_tx_ring *ring,
5725a2cc190SJeff Kirsher 						      u32 index,
5735a2cc190SJeff Kirsher 						      unsigned int desc_size)
5745a2cc190SJeff Kirsher {
5759573e0d3STariq Toukan 	u32 copy = (ring->size - index) << LOG_TXBB_SIZE;
5765a2cc190SJeff Kirsher 	int i;
5775a2cc190SJeff Kirsher 
5785a2cc190SJeff Kirsher 	for (i = desc_size - copy - 4; i >= 0; i -= 4) {
5795a2cc190SJeff Kirsher 		if ((i & (TXBB_SIZE - 1)) == 0)
5805a2cc190SJeff Kirsher 			wmb();
5815a2cc190SJeff Kirsher 
5825a2cc190SJeff Kirsher 		*((u32 *) (ring->buf + i)) =
5835a2cc190SJeff Kirsher 			*((u32 *) (ring->bounce_buf + copy + i));
5845a2cc190SJeff Kirsher 	}
5855a2cc190SJeff Kirsher 
5865a2cc190SJeff Kirsher 	for (i = copy - 4; i >= 4 ; i -= 4) {
5875a2cc190SJeff Kirsher 		if ((i & (TXBB_SIZE - 1)) == 0)
5885a2cc190SJeff Kirsher 			wmb();
5895a2cc190SJeff Kirsher 
5909573e0d3STariq Toukan 		*((u32 *)(ring->buf + (index << LOG_TXBB_SIZE) + i)) =
5915a2cc190SJeff Kirsher 			*((u32 *) (ring->bounce_buf + i));
5925a2cc190SJeff Kirsher 	}
5935a2cc190SJeff Kirsher 
5945a2cc190SJeff Kirsher 	/* Return real descriptor location */
5959573e0d3STariq Toukan 	return ring->buf + (index << LOG_TXBB_SIZE);
5965a2cc190SJeff Kirsher }
5975a2cc190SJeff Kirsher 
598acea73d6SEric Dumazet /* Decide if skb can be inlined in tx descriptor to avoid dma mapping
599acea73d6SEric Dumazet  *
600acea73d6SEric Dumazet  * It seems strange we do not simply use skb_copy_bits().
601acea73d6SEric Dumazet  * This would allow to inline all skbs iff skb->len <= inline_thold
602acea73d6SEric Dumazet  *
603acea73d6SEric Dumazet  * Note that caller already checked skb was not a gso packet
604acea73d6SEric Dumazet  */
is_inline(int inline_thold,const struct sk_buff * skb,const struct skb_shared_info * shinfo,void ** pfrag)6057dfa4b41SEric Dumazet static bool is_inline(int inline_thold, const struct sk_buff *skb,
606b9d8839aSEric Dumazet 		      const struct skb_shared_info *shinfo,
6077dfa4b41SEric Dumazet 		      void **pfrag)
6085a2cc190SJeff Kirsher {
6095a2cc190SJeff Kirsher 	void *ptr;
6105a2cc190SJeff Kirsher 
611acea73d6SEric Dumazet 	if (skb->len > inline_thold || !inline_thold)
612acea73d6SEric Dumazet 		return false;
613acea73d6SEric Dumazet 
614b9d8839aSEric Dumazet 	if (shinfo->nr_frags == 1) {
615b9d8839aSEric Dumazet 		ptr = skb_frag_address_safe(&shinfo->frags[0]);
6165a2cc190SJeff Kirsher 		if (unlikely(!ptr))
617acea73d6SEric Dumazet 			return false;
6185a2cc190SJeff Kirsher 		*pfrag = ptr;
619acea73d6SEric Dumazet 		return true;
6205a2cc190SJeff Kirsher 	}
621acea73d6SEric Dumazet 	if (shinfo->nr_frags)
622acea73d6SEric Dumazet 		return false;
623acea73d6SEric Dumazet 	return true;
6245a2cc190SJeff Kirsher }
6255a2cc190SJeff Kirsher 
inline_size(const struct sk_buff * skb)6267dfa4b41SEric Dumazet static int inline_size(const struct sk_buff *skb)
6275a2cc190SJeff Kirsher {
6285a2cc190SJeff Kirsher 	if (skb->len + CTRL_SIZE + sizeof(struct mlx4_wqe_inline_seg)
6295a2cc190SJeff Kirsher 	    <= MLX4_INLINE_ALIGN)
6305a2cc190SJeff Kirsher 		return ALIGN(skb->len + CTRL_SIZE +
6315a2cc190SJeff Kirsher 			     sizeof(struct mlx4_wqe_inline_seg), 16);
6325a2cc190SJeff Kirsher 	else
6335a2cc190SJeff Kirsher 		return ALIGN(skb->len + CTRL_SIZE + 2 *
6345a2cc190SJeff Kirsher 			     sizeof(struct mlx4_wqe_inline_seg), 16);
6355a2cc190SJeff Kirsher }
6365a2cc190SJeff Kirsher 
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)6377dfa4b41SEric Dumazet static int get_real_size(const struct sk_buff *skb,
638b9d8839aSEric Dumazet 			 const struct skb_shared_info *shinfo,
6397dfa4b41SEric Dumazet 			 struct net_device *dev,
640acea73d6SEric Dumazet 			 int *lso_header_size,
641acea73d6SEric Dumazet 			 bool *inline_ok,
6421169a642SEric Dumazet 			 void **pfrag,
6431169a642SEric Dumazet 			 int *hopbyhop)
6445a2cc190SJeff Kirsher {
6455a2cc190SJeff Kirsher 	struct mlx4_en_priv *priv = netdev_priv(dev);
6465a2cc190SJeff Kirsher 	int real_size;
6475a2cc190SJeff Kirsher 
648b9d8839aSEric Dumazet 	if (shinfo->gso_size) {
649acea73d6SEric Dumazet 		*inline_ok = false;
6501169a642SEric Dumazet 		*hopbyhop = 0;
6511169a642SEric Dumazet 		if (skb->encapsulation) {
652504148feSEric Dumazet 			*lso_header_size = skb_inner_tcp_all_headers(skb);
6531169a642SEric Dumazet 		} else {
6541169a642SEric Dumazet 			/* Detects large IPV6 TCP packets and prepares for removal of
6551169a642SEric Dumazet 			 * HBH header that has been pushed by ip6_xmit(),
6561169a642SEric Dumazet 			 * mainly so that tcpdump can dissect them.
6571169a642SEric Dumazet 			 */
6581169a642SEric Dumazet 			if (ipv6_has_hopopt_jumbo(skb))
6591169a642SEric Dumazet 				*hopbyhop = sizeof(struct hop_jumbo_hdr);
660504148feSEric Dumazet 			*lso_header_size = skb_tcp_all_headers(skb);
6611169a642SEric Dumazet 		}
662b9d8839aSEric Dumazet 		real_size = CTRL_SIZE + shinfo->nr_frags * DS_SIZE +
6631169a642SEric Dumazet 			ALIGN(*lso_header_size - *hopbyhop + 4, DS_SIZE);
6645a2cc190SJeff Kirsher 		if (unlikely(*lso_header_size != skb_headlen(skb))) {
6655a2cc190SJeff Kirsher 			/* We add a segment for the skb linear buffer only if
6665a2cc190SJeff Kirsher 			 * it contains data */
6675a2cc190SJeff Kirsher 			if (*lso_header_size < skb_headlen(skb))
6685a2cc190SJeff Kirsher 				real_size += DS_SIZE;
6695a2cc190SJeff Kirsher 			else {
6705a2cc190SJeff Kirsher 				if (netif_msg_tx_err(priv))
6715a2cc190SJeff Kirsher 					en_warn(priv, "Non-linear headers\n");
6725a2cc190SJeff Kirsher 				return 0;
6735a2cc190SJeff Kirsher 			}
6745a2cc190SJeff Kirsher 		}
6755a2cc190SJeff Kirsher 	} else {
6765a2cc190SJeff Kirsher 		*lso_header_size = 0;
677acea73d6SEric Dumazet 		*inline_ok = is_inline(priv->prof->inline_thold, skb,
678acea73d6SEric Dumazet 				       shinfo, pfrag);
679acea73d6SEric Dumazet 
680acea73d6SEric Dumazet 		if (*inline_ok)
6815a2cc190SJeff Kirsher 			real_size = inline_size(skb);
682acea73d6SEric Dumazet 		else
683acea73d6SEric Dumazet 			real_size = CTRL_SIZE +
684acea73d6SEric Dumazet 				    (shinfo->nr_frags + 1) * DS_SIZE;
6855a2cc190SJeff Kirsher 	}
6865a2cc190SJeff Kirsher 
6875a2cc190SJeff Kirsher 	return real_size;
6885a2cc190SJeff Kirsher }
6895a2cc190SJeff Kirsher 
build_inline_wqe(struct mlx4_en_tx_desc * tx_desc,const struct sk_buff * skb,const struct skb_shared_info * shinfo,void * fragptr)6907dfa4b41SEric Dumazet static void build_inline_wqe(struct mlx4_en_tx_desc *tx_desc,
6917dfa4b41SEric Dumazet 			     const struct sk_buff *skb,
692b9d8839aSEric Dumazet 			     const struct skb_shared_info *shinfo,
693224e92e0SBrenden Blanco 			     void *fragptr)
6945a2cc190SJeff Kirsher {
6955a2cc190SJeff Kirsher 	struct mlx4_wqe_inline_seg *inl = &tx_desc->inl;
69631975e27Sstephen hemminger 	int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - sizeof(*inl);
697e533ac7eSEric Dumazet 	unsigned int hlen = skb_headlen(skb);
6985a2cc190SJeff Kirsher 
6995a2cc190SJeff Kirsher 	if (skb->len <= spc) {
70093591aaaSEugenia Emantayev 		if (likely(skb->len >= MIN_PKT_LEN)) {
7015a2cc190SJeff Kirsher 			inl->byte_count = cpu_to_be32(1 << 31 | skb->len);
70293591aaaSEugenia Emantayev 		} else {
70393591aaaSEugenia Emantayev 			inl->byte_count = cpu_to_be32(1 << 31 | MIN_PKT_LEN);
704f8f185e3SKees Cook 			memset(inl->data + skb->len, 0,
70593591aaaSEugenia Emantayev 			       MIN_PKT_LEN - skb->len);
70693591aaaSEugenia Emantayev 		}
707f8f185e3SKees Cook 		skb_copy_from_linear_data(skb, inl->data, hlen);
708b9d8839aSEric Dumazet 		if (shinfo->nr_frags)
709f8f185e3SKees Cook 			memcpy(inl->data + hlen, fragptr,
710b9d8839aSEric Dumazet 			       skb_frag_size(&shinfo->frags[0]));
7115a2cc190SJeff Kirsher 
7125a2cc190SJeff Kirsher 	} else {
7135a2cc190SJeff Kirsher 		inl->byte_count = cpu_to_be32(1 << 31 | spc);
714e533ac7eSEric Dumazet 		if (hlen <= spc) {
715f8f185e3SKees Cook 			skb_copy_from_linear_data(skb, inl->data, hlen);
716e533ac7eSEric Dumazet 			if (hlen < spc) {
717f8f185e3SKees Cook 				memcpy(inl->data + hlen,
718e533ac7eSEric Dumazet 				       fragptr, spc - hlen);
719e533ac7eSEric Dumazet 				fragptr +=  spc - hlen;
7205a2cc190SJeff Kirsher 			}
721f8f185e3SKees Cook 			inl = (void *)inl->data + spc;
722f8f185e3SKees Cook 			memcpy(inl->data, fragptr, skb->len - spc);
7235a2cc190SJeff Kirsher 		} else {
724f8f185e3SKees Cook 			skb_copy_from_linear_data(skb, inl->data, spc);
725f8f185e3SKees Cook 			inl = (void *)inl->data + spc;
726f8f185e3SKees Cook 			skb_copy_from_linear_data_offset(skb, spc, inl->data,
727e533ac7eSEric Dumazet 							 hlen - spc);
728b9d8839aSEric Dumazet 			if (shinfo->nr_frags)
729f8f185e3SKees Cook 				memcpy(inl->data + hlen - spc,
730b9d8839aSEric Dumazet 				       fragptr,
731b9d8839aSEric Dumazet 				       skb_frag_size(&shinfo->frags[0]));
7325a2cc190SJeff Kirsher 		}
7335a2cc190SJeff Kirsher 
73412b3375fSAlexander Duyck 		dma_wmb();
7355a2cc190SJeff Kirsher 		inl->byte_count = cpu_to_be32(1 << 31 | (skb->len - spc));
7365a2cc190SJeff Kirsher 	}
7375a2cc190SJeff Kirsher }
7385a2cc190SJeff Kirsher 
mlx4_en_select_queue(struct net_device * dev,struct sk_buff * skb,struct net_device * sb_dev)739f663dd9aSJason Wang u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb,
740a350ecceSPaolo Abeni 			 struct net_device *sb_dev)
7415a2cc190SJeff Kirsher {
742bc6a4744SAmir Vadai 	struct mlx4_en_priv *priv = netdev_priv(dev);
743d317966bSAmir Vadai 	u16 rings_p_up = priv->num_tx_rings_p_up;
7445a2cc190SJeff Kirsher 
7454b5e5b7eSAlaa Hleihel 	if (netdev_get_num_tc(dev))
746a350ecceSPaolo Abeni 		return netdev_pick_tx(dev, skb, NULL);
747bc6a4744SAmir Vadai 
748a350ecceSPaolo Abeni 	return netdev_pick_tx(dev, skb, NULL) % rings_p_up;
7495a2cc190SJeff Kirsher }
7505a2cc190SJeff Kirsher 
mlx4_bf_copy(void __iomem * dst,const void * src,unsigned int bytecnt)7517dfa4b41SEric Dumazet static void mlx4_bf_copy(void __iomem *dst, const void *src,
7527dfa4b41SEric Dumazet 			 unsigned int bytecnt)
7535a2cc190SJeff Kirsher {
7545a2cc190SJeff Kirsher 	__iowrite64_copy(dst, src, bytecnt / 8);
7555a2cc190SJeff Kirsher }
7565a2cc190SJeff Kirsher 
mlx4_en_xmit_doorbell(struct mlx4_en_tx_ring * ring)757224e92e0SBrenden Blanco void mlx4_en_xmit_doorbell(struct mlx4_en_tx_ring *ring)
758224e92e0SBrenden Blanco {
759224e92e0SBrenden Blanco 	wmb();
760224e92e0SBrenden Blanco 	/* Since there is no iowrite*_native() that writes the
761224e92e0SBrenden Blanco 	 * value as is, without byteswapping - using the one
762224e92e0SBrenden Blanco 	 * the doesn't do byteswapping in the relevant arch
763224e92e0SBrenden Blanco 	 * endianness.
764224e92e0SBrenden Blanco 	 */
765224e92e0SBrenden Blanco #if defined(__LITTLE_ENDIAN)
766224e92e0SBrenden Blanco 	iowrite32(
767224e92e0SBrenden Blanco #else
768224e92e0SBrenden Blanco 	iowrite32be(
769224e92e0SBrenden Blanco #endif
7709ac93627SEric Dumazet 		  (__force u32)ring->doorbell_qpn, ring->doorbell_address);
771224e92e0SBrenden Blanco }
772224e92e0SBrenden Blanco 
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)773224e92e0SBrenden Blanco static void mlx4_en_tx_write_desc(struct mlx4_en_tx_ring *ring,
774224e92e0SBrenden Blanco 				  struct mlx4_en_tx_desc *tx_desc,
775224e92e0SBrenden Blanco 				  union mlx4_wqe_qpn_vlan qpn_vlan,
776224e92e0SBrenden Blanco 				  int desc_size, int bf_index,
777224e92e0SBrenden Blanco 				  __be32 op_own, bool bf_ok,
778224e92e0SBrenden Blanco 				  bool send_doorbell)
779224e92e0SBrenden Blanco {
780224e92e0SBrenden Blanco 	tx_desc->ctrl.qpn_vlan = qpn_vlan;
781224e92e0SBrenden Blanco 
782224e92e0SBrenden Blanco 	if (bf_ok) {
783224e92e0SBrenden Blanco 		op_own |= htonl((bf_index & 0xffff) << 8);
784224e92e0SBrenden Blanco 		/* Ensure new descriptor hits memory
785224e92e0SBrenden Blanco 		 * before setting ownership of this descriptor to HW
786224e92e0SBrenden Blanco 		 */
787224e92e0SBrenden Blanco 		dma_wmb();
788224e92e0SBrenden Blanco 		tx_desc->ctrl.owner_opcode = op_own;
789224e92e0SBrenden Blanco 
790224e92e0SBrenden Blanco 		wmb();
791224e92e0SBrenden Blanco 
792224e92e0SBrenden Blanco 		mlx4_bf_copy(ring->bf.reg + ring->bf.offset, &tx_desc->ctrl,
793224e92e0SBrenden Blanco 			     desc_size);
794224e92e0SBrenden Blanco 
795224e92e0SBrenden Blanco 		wmb();
796224e92e0SBrenden Blanco 
797224e92e0SBrenden Blanco 		ring->bf.offset ^= ring->bf.buf_size;
798224e92e0SBrenden Blanco 	} else {
799224e92e0SBrenden Blanco 		/* Ensure new descriptor hits memory
800224e92e0SBrenden Blanco 		 * before setting ownership of this descriptor to HW
801224e92e0SBrenden Blanco 		 */
802224e92e0SBrenden Blanco 		dma_wmb();
803224e92e0SBrenden Blanco 		tx_desc->ctrl.owner_opcode = op_own;
804224e92e0SBrenden Blanco 		if (send_doorbell)
805224e92e0SBrenden Blanco 			mlx4_en_xmit_doorbell(ring);
806224e92e0SBrenden Blanco 		else
807224e92e0SBrenden Blanco 			ring->xmit_more++;
808224e92e0SBrenden Blanco 	}
809224e92e0SBrenden Blanco }
810224e92e0SBrenden Blanco 
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)811f28186d6STariq Toukan static bool mlx4_en_build_dma_wqe(struct mlx4_en_priv *priv,
812f28186d6STariq Toukan 				  struct skb_shared_info *shinfo,
813f28186d6STariq Toukan 				  struct mlx4_wqe_data_seg *data,
814f28186d6STariq Toukan 				  struct sk_buff *skb,
815f28186d6STariq Toukan 				  int lso_header_size,
816f28186d6STariq Toukan 				  __be32 mr_key,
817f28186d6STariq Toukan 				  struct mlx4_en_tx_info *tx_info)
818f28186d6STariq Toukan {
819f28186d6STariq Toukan 	struct device *ddev = priv->ddev;
820f28186d6STariq Toukan 	dma_addr_t dma = 0;
821f28186d6STariq Toukan 	u32 byte_count = 0;
822f28186d6STariq Toukan 	int i_frag;
823f28186d6STariq Toukan 
824f28186d6STariq Toukan 	/* Map fragments if any */
825f28186d6STariq Toukan 	for (i_frag = shinfo->nr_frags - 1; i_frag >= 0; i_frag--) {
826d7840976SMatthew Wilcox (Oracle) 		const skb_frag_t *frag = &shinfo->frags[i_frag];
827f28186d6STariq Toukan 		byte_count = skb_frag_size(frag);
828f28186d6STariq Toukan 		dma = skb_frag_dma_map(ddev, frag,
829f28186d6STariq Toukan 				       0, byte_count,
830f28186d6STariq Toukan 				       DMA_TO_DEVICE);
831f28186d6STariq Toukan 		if (dma_mapping_error(ddev, dma))
832f28186d6STariq Toukan 			goto tx_drop_unmap;
833f28186d6STariq Toukan 
834f28186d6STariq Toukan 		data->addr = cpu_to_be64(dma);
835f28186d6STariq Toukan 		data->lkey = mr_key;
836f28186d6STariq Toukan 		dma_wmb();
837f28186d6STariq Toukan 		data->byte_count = cpu_to_be32(byte_count);
838f28186d6STariq Toukan 		--data;
839f28186d6STariq Toukan 	}
840f28186d6STariq Toukan 
841f28186d6STariq Toukan 	/* Map linear part if needed */
842f28186d6STariq Toukan 	if (tx_info->linear) {
843f28186d6STariq Toukan 		byte_count = skb_headlen(skb) - lso_header_size;
844f28186d6STariq Toukan 
845f28186d6STariq Toukan 		dma = dma_map_single(ddev, skb->data +
846f28186d6STariq Toukan 				     lso_header_size, byte_count,
847eb9c5c0dSChristophe JAILLET 				     DMA_TO_DEVICE);
848f28186d6STariq Toukan 		if (dma_mapping_error(ddev, dma))
849f28186d6STariq Toukan 			goto tx_drop_unmap;
850f28186d6STariq Toukan 
851f28186d6STariq Toukan 		data->addr = cpu_to_be64(dma);
852f28186d6STariq Toukan 		data->lkey = mr_key;
853f28186d6STariq Toukan 		dma_wmb();
854f28186d6STariq Toukan 		data->byte_count = cpu_to_be32(byte_count);
855f28186d6STariq Toukan 	}
856f28186d6STariq Toukan 	/* tx completion can avoid cache line miss for common cases */
857f28186d6STariq Toukan 	tx_info->map0_dma = dma;
858f28186d6STariq Toukan 	tx_info->map0_byte_count = byte_count;
859f28186d6STariq Toukan 
860f28186d6STariq Toukan 	return true;
861f28186d6STariq Toukan 
862f28186d6STariq Toukan tx_drop_unmap:
863f28186d6STariq Toukan 	en_err(priv, "DMA mapping error\n");
864f28186d6STariq Toukan 
865f28186d6STariq Toukan 	while (++i_frag < shinfo->nr_frags) {
866f28186d6STariq Toukan 		++data;
867f28186d6STariq Toukan 		dma_unmap_page(ddev, (dma_addr_t)be64_to_cpu(data->addr),
868f28186d6STariq Toukan 			       be32_to_cpu(data->byte_count),
869eb9c5c0dSChristophe JAILLET 			       DMA_TO_DEVICE);
870f28186d6STariq Toukan 	}
871f28186d6STariq Toukan 
872f28186d6STariq Toukan 	return false;
873f28186d6STariq Toukan }
874f28186d6STariq Toukan 
mlx4_en_xmit(struct sk_buff * skb,struct net_device * dev)8755a2cc190SJeff Kirsher netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev)
8765a2cc190SJeff Kirsher {
877b9d8839aSEric Dumazet 	struct skb_shared_info *shinfo = skb_shinfo(skb);
8785a2cc190SJeff Kirsher 	struct mlx4_en_priv *priv = netdev_priv(dev);
879224e92e0SBrenden Blanco 	union mlx4_wqe_qpn_vlan	qpn_vlan = {};
8805a2cc190SJeff Kirsher 	struct mlx4_en_tx_ring *ring;
8815a2cc190SJeff Kirsher 	struct mlx4_en_tx_desc *tx_desc;
8825a2cc190SJeff Kirsher 	struct mlx4_wqe_data_seg *data;
8835a2cc190SJeff Kirsher 	struct mlx4_en_tx_info *tx_info;
8847c8c0291SJesse Brandeburg 	u32 __maybe_unused ring_cons;
885f28186d6STariq Toukan 	int tx_ind;
8865a2cc190SJeff Kirsher 	int nr_txbb;
8875a2cc190SJeff Kirsher 	int desc_size;
8885a2cc190SJeff Kirsher 	int real_size;
8895a2cc190SJeff Kirsher 	u32 index, bf_index;
8901169a642SEric Dumazet 	struct ipv6hdr *h6;
8915a2cc190SJeff Kirsher 	__be32 op_own;
8925a2cc190SJeff Kirsher 	int lso_header_size;
893acea73d6SEric Dumazet 	void *fragptr = NULL;
8945a2cc190SJeff Kirsher 	bool bounce = false;
8955804283dSEric Dumazet 	bool send_doorbell;
896fe971b95SEric Dumazet 	bool stop_queue;
897acea73d6SEric Dumazet 	bool inline_ok;
898f28186d6STariq Toukan 	u8 data_offset;
8991169a642SEric Dumazet 	int hopbyhop;
900224e92e0SBrenden Blanco 	bool bf_ok;
9015a2cc190SJeff Kirsher 
902f905c79eSEric Dumazet 	tx_ind = skb_get_queue_mapping(skb);
90367f8b1dcSTariq Toukan 	ring = priv->tx_ring[TX][tx_ind];
904f905c79eSEric Dumazet 
905f28186d6STariq Toukan 	if (unlikely(!priv->port_up))
90663a664b7SEric Dumazet 		goto tx_drop;
90763a664b7SEric Dumazet 
908acea73d6SEric Dumazet 	real_size = get_real_size(skb, shinfo, dev, &lso_header_size,
9091169a642SEric Dumazet 				  &inline_ok, &fragptr, &hopbyhop);
9105a2cc190SJeff Kirsher 	if (unlikely(!real_size))
9117a61fc86SMoshe Shemesh 		goto tx_drop_count;
9125a2cc190SJeff Kirsher 
9135a2cc190SJeff Kirsher 	/* Align descriptor to TXBB size */
9145a2cc190SJeff Kirsher 	desc_size = ALIGN(real_size, TXBB_SIZE);
9159573e0d3STariq Toukan 	nr_txbb = desc_size >> LOG_TXBB_SIZE;
9165a2cc190SJeff Kirsher 
917224e92e0SBrenden Blanco 	bf_ok = ring->bf_enabled;
918e38af4faSHadar Hen Zion 	if (skb_vlan_tag_present(skb)) {
919f28186d6STariq Toukan 		u16 vlan_proto;
920f28186d6STariq Toukan 
921224e92e0SBrenden Blanco 		qpn_vlan.vlan_tag = cpu_to_be16(skb_vlan_tag_get(skb));
922e38af4faSHadar Hen Zion 		vlan_proto = be16_to_cpu(skb->vlan_proto);
923224e92e0SBrenden Blanco 		if (vlan_proto == ETH_P_8021AD)
924224e92e0SBrenden Blanco 			qpn_vlan.ins_vlan = MLX4_WQE_CTRL_INS_SVLAN;
925224e92e0SBrenden Blanco 		else if (vlan_proto == ETH_P_8021Q)
926224e92e0SBrenden Blanco 			qpn_vlan.ins_vlan = MLX4_WQE_CTRL_INS_CVLAN;
927224e92e0SBrenden Blanco 		else
928224e92e0SBrenden Blanco 			qpn_vlan.ins_vlan = 0;
929224e92e0SBrenden Blanco 		bf_ok = false;
930e38af4faSHadar Hen Zion 	}
9315a2cc190SJeff Kirsher 
93253511453SEric Dumazet 	netdev_txq_bql_enqueue_prefetchw(ring->tx_queue);
93329d40c90SEric Dumazet 
9345a2cc190SJeff Kirsher 	/* Packet is good - grab an index and transmit it */
9355a2cc190SJeff Kirsher 	index = ring->prod & ring->size_mask;
9365a2cc190SJeff Kirsher 	bf_index = ring->prod;
9375a2cc190SJeff Kirsher 
9385a2cc190SJeff Kirsher 	/* See if we have enough space for whole descriptor TXBB for setting
9395a2cc190SJeff Kirsher 	 * SW ownership on next descriptor; if not, use a bounce buffer. */
9405a2cc190SJeff Kirsher 	if (likely(index + nr_txbb <= ring->size))
9419573e0d3STariq Toukan 		tx_desc = ring->buf + (index << LOG_TXBB_SIZE);
9425a2cc190SJeff Kirsher 	else {
9430e706f79SEric Dumazet 		if (unlikely(nr_txbb > MLX4_MAX_DESC_TXBBS)) {
9440e706f79SEric Dumazet 			if (netif_msg_tx_err(priv))
9450e706f79SEric Dumazet 				en_warn(priv, "Oversized header or SG list\n");
9460e706f79SEric Dumazet 			goto tx_drop_count;
9470e706f79SEric Dumazet 		}
9485a2cc190SJeff Kirsher 		tx_desc = (struct mlx4_en_tx_desc *) ring->bounce_buf;
9495a2cc190SJeff Kirsher 		bounce = true;
950224e92e0SBrenden Blanco 		bf_ok = false;
9515a2cc190SJeff Kirsher 	}
9525a2cc190SJeff Kirsher 
9535a2cc190SJeff Kirsher 	/* Save skb in tx_info ring */
9545a2cc190SJeff Kirsher 	tx_info = &ring->tx_info[index];
9555a2cc190SJeff Kirsher 	tx_info->skb = skb;
9565a2cc190SJeff Kirsher 	tx_info->nr_txbb = nr_txbb;
9575a2cc190SJeff Kirsher 
958f28186d6STariq Toukan 	if (!lso_header_size) {
9597dfa4b41SEric Dumazet 		data = &tx_desc->data;
960f28186d6STariq Toukan 		data_offset = offsetof(struct mlx4_en_tx_desc, data);
961f28186d6STariq Toukan 	} else {
9621169a642SEric Dumazet 		int lso_align = ALIGN(lso_header_size - hopbyhop + 4, DS_SIZE);
963f28186d6STariq Toukan 
964f28186d6STariq Toukan 		data = (void *)&tx_desc->lso + lso_align;
965f28186d6STariq Toukan 		data_offset = offsetof(struct mlx4_en_tx_desc, lso) + lso_align;
966f28186d6STariq Toukan 	}
967237a3a3bSAmir Vadai 
968237a3a3bSAmir Vadai 	/* valid only for none inline segments */
969f28186d6STariq Toukan 	tx_info->data_offset = data_offset;
970237a3a3bSAmir Vadai 
971acea73d6SEric Dumazet 	tx_info->inl = inline_ok;
972acea73d6SEric Dumazet 
973f28186d6STariq Toukan 	tx_info->linear = lso_header_size < skb_headlen(skb) && !inline_ok;
974237a3a3bSAmir Vadai 
975b9d8839aSEric Dumazet 	tx_info->nr_maps = shinfo->nr_frags + tx_info->linear;
9763d03641cSEric Dumazet 	data += tx_info->nr_maps - 1;
977237a3a3bSAmir Vadai 
978f28186d6STariq Toukan 	if (!tx_info->inl)
979f28186d6STariq Toukan 		if (!mlx4_en_build_dma_wqe(priv, shinfo, data, skb,
980f28186d6STariq Toukan 					   lso_header_size, ring->mr_key,
981f28186d6STariq Toukan 					   tx_info))
982f28186d6STariq Toukan 			goto tx_drop_count;
983237a3a3bSAmir Vadai 
984ec693d47SAmir Vadai 	/*
985ec693d47SAmir Vadai 	 * For timestamping add flag to skb_shinfo and
986ec693d47SAmir Vadai 	 * set flag for further reference
987ec693d47SAmir Vadai 	 */
988e70602a8SEric Dumazet 	tx_info->ts_requested = 0;
9897dfa4b41SEric Dumazet 	if (unlikely(ring->hwtstamp_tx_type == HWTSTAMP_TX_ON &&
9907dfa4b41SEric Dumazet 		     shinfo->tx_flags & SKBTX_HW_TSTAMP)) {
9917dfa4b41SEric Dumazet 		shinfo->tx_flags |= SKBTX_IN_PROGRESS;
992ec693d47SAmir Vadai 		tx_info->ts_requested = 1;
993ec693d47SAmir Vadai 	}
994ec693d47SAmir Vadai 
9955a2cc190SJeff Kirsher 	/* Prepare ctrl segement apart opcode+ownership, which depends on
9965a2cc190SJeff Kirsher 	 * whether LSO is used */
99760d6fe99SAmir Vadai 	tx_desc->ctrl.srcrb_flags = priv->ctrl_flags;
9985a2cc190SJeff Kirsher 	if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
999a4f2dacbSOr Gerlitz 		if (!skb->encapsulation)
10005a2cc190SJeff Kirsher 			tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
10015a2cc190SJeff Kirsher 								 MLX4_WQE_CTRL_TCP_UDP_CSUM);
1002a4f2dacbSOr Gerlitz 		else
1003a4f2dacbSOr Gerlitz 			tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM);
1004ad04378cSYevgeny Petrilin 		ring->tx_csum++;
10055a2cc190SJeff Kirsher 	}
10065a2cc190SJeff Kirsher 
100779aeaccdSYan Burman 	if (priv->flags & MLX4_EN_FLAG_ENABLE_HW_LOOPBACK) {
10085f1cd200SAmir Vadai 		struct ethhdr *ethh;
10095f1cd200SAmir Vadai 
1010213815a1SYan Burman 		/* Copy dst mac address to wqe. This allows loopback in eSwitch,
1011213815a1SYan Burman 		 * so that VFs and PF can communicate with each other
1012213815a1SYan Burman 		 */
101362212171SEric Dumazet 		ethh = (struct ethhdr *)skb->data;
101418f973afSEric Dumazet 		tx_desc->ctrl.srcrb_flags16[0] = get_unaligned((__be16 *)ethh->h_dest);
101518f973afSEric Dumazet 		tx_desc->ctrl.imm = get_unaligned((__be32 *)(ethh->h_dest + 2));
1016213815a1SYan Burman 	}
1017213815a1SYan Burman 
10185a2cc190SJeff Kirsher 	/* Handle LSO (TSO) packets */
10195a2cc190SJeff Kirsher 	if (lso_header_size) {
1020b9d8839aSEric Dumazet 		int i;
1021b9d8839aSEric Dumazet 
10225a2cc190SJeff Kirsher 		/* Mark opcode as LSO */
10235a2cc190SJeff Kirsher 		op_own = cpu_to_be32(MLX4_OPCODE_LSO | (1 << 6)) |
10245a2cc190SJeff Kirsher 			((ring->prod & ring->size) ?
10255a2cc190SJeff Kirsher 				cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
10265a2cc190SJeff Kirsher 
10271169a642SEric Dumazet 		lso_header_size -= hopbyhop;
10285a2cc190SJeff Kirsher 		/* Fill in the LSO prefix */
10295a2cc190SJeff Kirsher 		tx_desc->lso.mss_hdr_size = cpu_to_be32(
1030b9d8839aSEric Dumazet 			shinfo->gso_size << 16 | lso_header_size);
10315a2cc190SJeff Kirsher 
10325a2cc190SJeff Kirsher 
10331169a642SEric Dumazet 		if (unlikely(hopbyhop)) {
10341169a642SEric Dumazet 			/* remove the HBH header.
10351169a642SEric Dumazet 			 * Layout: [Ethernet header][IPv6 header][HBH][TCP header]
10361169a642SEric Dumazet 			 */
10371169a642SEric Dumazet 			memcpy(tx_desc->lso.header, skb->data, ETH_HLEN + sizeof(*h6));
10381169a642SEric Dumazet 			h6 = (struct ipv6hdr *)((char *)tx_desc->lso.header + ETH_HLEN);
10391169a642SEric Dumazet 			h6->nexthdr = IPPROTO_TCP;
10401169a642SEric Dumazet 			/* Copy the TCP header after the IPv6 one */
10411169a642SEric Dumazet 			memcpy(h6 + 1,
10421169a642SEric Dumazet 			       skb->data + ETH_HLEN + sizeof(*h6) +
10431169a642SEric Dumazet 					sizeof(struct hop_jumbo_hdr),
10441169a642SEric Dumazet 			       tcp_hdrlen(skb));
10451169a642SEric Dumazet 			/* Leave ipv6 payload_len set to 0, as LSO v2 specs request. */
10461169a642SEric Dumazet 		} else {
10471169a642SEric Dumazet 			/* Copy headers;
10481169a642SEric Dumazet 			 * note that we already verified that it is linear
10491169a642SEric Dumazet 			 */
10501169a642SEric Dumazet 			memcpy(tx_desc->lso.header, skb->data, lso_header_size);
10511169a642SEric Dumazet 		}
10529fab426dSEric Dumazet 		ring->tso_packets++;
1053b9d8839aSEric Dumazet 
105475d04aa3SEric Dumazet 		i = shinfo->gso_segs;
10555b263f53SYevgeny Petrilin 		tx_info->nr_bytes = skb->len + (i - 1) * lso_header_size;
10565a2cc190SJeff Kirsher 		ring->packets += i;
10575a2cc190SJeff Kirsher 	} else {
10585a2cc190SJeff Kirsher 		/* Normal (Non LSO) packet */
10595a2cc190SJeff Kirsher 		op_own = cpu_to_be32(MLX4_OPCODE_SEND) |
10605a2cc190SJeff Kirsher 			((ring->prod & ring->size) ?
10615a2cc190SJeff Kirsher 			 cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
10625b263f53SYevgeny Petrilin 		tx_info->nr_bytes = max_t(unsigned int, skb->len, ETH_ZLEN);
10635a2cc190SJeff Kirsher 		ring->packets++;
10645a2cc190SJeff Kirsher 	}
10655b263f53SYevgeny Petrilin 	ring->bytes += tx_info->nr_bytes;
10665a2cc190SJeff Kirsher 
1067acea73d6SEric Dumazet 	if (tx_info->inl)
1068224e92e0SBrenden Blanco 		build_inline_wqe(tx_desc, skb, shinfo, fragptr);
10695a2cc190SJeff Kirsher 
1070837052d0SOr Gerlitz 	if (skb->encapsulation) {
107109067122SAlexander Duyck 		union {
107209067122SAlexander Duyck 			struct iphdr *v4;
107309067122SAlexander Duyck 			struct ipv6hdr *v6;
107409067122SAlexander Duyck 			unsigned char *hdr;
107509067122SAlexander Duyck 		} ip;
107609067122SAlexander Duyck 		u8 proto;
107709067122SAlexander Duyck 
107809067122SAlexander Duyck 		ip.hdr = skb_inner_network_header(skb);
107909067122SAlexander Duyck 		proto = (ip.v4->version == 4) ? ip.v4->protocol :
108009067122SAlexander Duyck 						ip.v6->nexthdr;
108109067122SAlexander Duyck 
108209067122SAlexander Duyck 		if (proto == IPPROTO_TCP || proto == IPPROTO_UDP)
1083837052d0SOr Gerlitz 			op_own |= cpu_to_be32(MLX4_WQE_CTRL_IIP | MLX4_WQE_CTRL_ILP);
1084837052d0SOr Gerlitz 		else
1085837052d0SOr Gerlitz 			op_own |= cpu_to_be32(MLX4_WQE_CTRL_IIP);
1086837052d0SOr Gerlitz 	}
1087837052d0SOr Gerlitz 
1088*9a714997SJakub Kicinski 	WRITE_ONCE(ring->prod, ring->prod + nr_txbb);
10895a2cc190SJeff Kirsher 
10905a2cc190SJeff Kirsher 	/* If we used a bounce buffer then copy descriptor back into place */
10917dfa4b41SEric Dumazet 	if (unlikely(bounce))
10925a2cc190SJeff Kirsher 		tx_desc = mlx4_en_bounce_to_desc(priv, ring, index, desc_size);
10935a2cc190SJeff Kirsher 
1094eb0cabbdSAmir Vadai 	skb_tx_timestamp(skb);
1095eb0cabbdSAmir Vadai 
1096fe971b95SEric Dumazet 	/* Check available TXBBs And 2K spare for prefetch */
1097488a9b48SIdo Shamay 	stop_queue = mlx4_en_is_tx_ring_full(ring);
1098fe971b95SEric Dumazet 	if (unlikely(stop_queue)) {
1099fe971b95SEric Dumazet 		netif_tx_stop_queue(ring->tx_queue);
1100fe971b95SEric Dumazet 		ring->queue_stopped++;
1101fe971b95SEric Dumazet 	}
1102c2973444SEric Dumazet 
1103c2973444SEric Dumazet 	send_doorbell = __netdev_tx_sent_queue(ring->tx_queue,
1104c2973444SEric Dumazet 					       tx_info->nr_bytes,
11053c31ff22SFlorian Westphal 					       netdev_xmit_more());
11065804283dSEric Dumazet 
11076a4e8121SEric Dumazet 	real_size = (real_size / 16) & 0x3f;
11086a4e8121SEric Dumazet 
1109224e92e0SBrenden Blanco 	bf_ok &= desc_size <= MAX_BF && send_doorbell;
1110ec570940SAmir Vadai 
1111224e92e0SBrenden Blanco 	if (bf_ok)
1112224e92e0SBrenden Blanco 		qpn_vlan.bf_qpn = ring->doorbell_qpn | cpu_to_be32(real_size);
1113092bf0fcSJack Morgenstein 	else
1114224e92e0SBrenden Blanco 		qpn_vlan.fence_size = real_size;
1115e38af4faSHadar Hen Zion 
1116224e92e0SBrenden Blanco 	mlx4_en_tx_write_desc(ring, tx_desc, qpn_vlan, desc_size, bf_index,
1117224e92e0SBrenden Blanco 			      op_own, bf_ok, send_doorbell);
11185a2cc190SJeff Kirsher 
1119fe971b95SEric Dumazet 	if (unlikely(stop_queue)) {
1120fe971b95SEric Dumazet 		/* If queue was emptied after the if (stop_queue) , and before
1121fe971b95SEric Dumazet 		 * the netif_tx_stop_queue() - need to wake the queue,
1122fe971b95SEric Dumazet 		 * or else it will remain stopped forever.
1123fe971b95SEric Dumazet 		 * Need a memory barrier to make sure ring->cons was not
1124fe971b95SEric Dumazet 		 * updated before queue was stopped.
1125fe971b95SEric Dumazet 		 */
1126fe971b95SEric Dumazet 		smp_rmb();
1127fe971b95SEric Dumazet 
1128488a9b48SIdo Shamay 		if (unlikely(!mlx4_en_is_tx_ring_full(ring))) {
1129fe971b95SEric Dumazet 			netif_tx_wake_queue(ring->tx_queue);
1130fe971b95SEric Dumazet 			ring->wake_queue++;
1131fe971b95SEric Dumazet 		}
1132fe971b95SEric Dumazet 	}
11335a2cc190SJeff Kirsher 	return NETDEV_TX_OK;
11345a2cc190SJeff Kirsher 
11357a61fc86SMoshe Shemesh tx_drop_count:
11367a61fc86SMoshe Shemesh 	ring->tx_dropped++;
11375a2cc190SJeff Kirsher tx_drop:
11385a2cc190SJeff Kirsher 	dev_kfree_skb_any(skb);
11395a2cc190SJeff Kirsher 	return NETDEV_TX_OK;
11405a2cc190SJeff Kirsher }
11415a2cc190SJeff Kirsher 
114236ea7964STariq Toukan #define MLX4_EN_XDP_TX_NRTXBB  1
114336ea7964STariq Toukan #define MLX4_EN_XDP_TX_REAL_SZ (((CTRL_SIZE + MLX4_EN_XDP_TX_NRTXBB * DS_SIZE) \
114436ea7964STariq Toukan 				 / 16) & 0x3f)
114536ea7964STariq Toukan 
mlx4_en_init_tx_xdp_ring_descs(struct mlx4_en_priv * priv,struct mlx4_en_tx_ring * ring)1146f025fd60STariq Toukan void mlx4_en_init_tx_xdp_ring_descs(struct mlx4_en_priv *priv,
1147f025fd60STariq Toukan 				    struct mlx4_en_tx_ring *ring)
1148f025fd60STariq Toukan {
1149f025fd60STariq Toukan 	int i;
1150f025fd60STariq Toukan 
1151f025fd60STariq Toukan 	for (i = 0; i < ring->size; i++) {
1152f025fd60STariq Toukan 		struct mlx4_en_tx_info *tx_info = &ring->tx_info[i];
1153f025fd60STariq Toukan 		struct mlx4_en_tx_desc *tx_desc = ring->buf +
1154f025fd60STariq Toukan 			(i << LOG_TXBB_SIZE);
1155f025fd60STariq Toukan 
1156f025fd60STariq Toukan 		tx_info->map0_byte_count = PAGE_SIZE;
1157f025fd60STariq Toukan 		tx_info->nr_txbb = MLX4_EN_XDP_TX_NRTXBB;
1158f025fd60STariq Toukan 		tx_info->data_offset = offsetof(struct mlx4_en_tx_desc, data);
1159f025fd60STariq Toukan 		tx_info->ts_requested = 0;
1160f025fd60STariq Toukan 		tx_info->nr_maps = 1;
1161f025fd60STariq Toukan 		tx_info->linear = 1;
1162f025fd60STariq Toukan 		tx_info->inl = 0;
1163f025fd60STariq Toukan 
1164f025fd60STariq Toukan 		tx_desc->data.lkey = ring->mr_key;
1165f025fd60STariq Toukan 		tx_desc->ctrl.qpn_vlan.fence_size = MLX4_EN_XDP_TX_REAL_SZ;
1166f025fd60STariq Toukan 		tx_desc->ctrl.srcrb_flags = priv->ctrl_flags;
1167f025fd60STariq Toukan 	}
1168f025fd60STariq Toukan }
1169f025fd60STariq Toukan 
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)117015fca2c8STariq Toukan netdev_tx_t mlx4_en_xmit_frame(struct mlx4_en_rx_ring *rx_ring,
117115fca2c8STariq Toukan 			       struct mlx4_en_rx_alloc *frame,
11725dad61b8STariq Toukan 			       struct mlx4_en_priv *priv, unsigned int length,
117336ea7964STariq Toukan 			       int tx_ind, bool *doorbell_pending)
11749ecc2d86SBrenden Blanco {
11759ecc2d86SBrenden Blanco 	struct mlx4_en_tx_desc *tx_desc;
11769ecc2d86SBrenden Blanco 	struct mlx4_en_tx_info *tx_info;
117736ea7964STariq Toukan 	struct mlx4_wqe_data_seg *data;
117836ea7964STariq Toukan 	struct mlx4_en_tx_ring *ring;
11799ecc2d86SBrenden Blanco 	dma_addr_t dma;
11809ecc2d86SBrenden Blanco 	__be32 op_own;
118136ea7964STariq Toukan 	int index;
11829ecc2d86SBrenden Blanco 
118336ea7964STariq Toukan 	if (unlikely(!priv->port_up))
118436ea7964STariq Toukan 		goto tx_drop;
11859ecc2d86SBrenden Blanco 
118667f8b1dcSTariq Toukan 	ring = priv->tx_ring[TX_XDP][tx_ind];
11879ecc2d86SBrenden Blanco 
118836ea7964STariq Toukan 	if (unlikely(mlx4_en_is_tx_ring_full(ring)))
11897a61fc86SMoshe Shemesh 		goto tx_drop_count;
11909ecc2d86SBrenden Blanco 
11919ecc2d86SBrenden Blanco 	index = ring->prod & ring->size_mask;
11929ecc2d86SBrenden Blanco 	tx_info = &ring->tx_info[index];
11939ecc2d86SBrenden Blanco 
11949573e0d3STariq Toukan 	tx_desc = ring->buf + (index << LOG_TXBB_SIZE);
11959ecc2d86SBrenden Blanco 	data = &tx_desc->data;
11969ecc2d86SBrenden Blanco 
11979ecc2d86SBrenden Blanco 	dma = frame->dma;
11989ecc2d86SBrenden Blanco 
11999ecc2d86SBrenden Blanco 	tx_info->page = frame->page;
12009ecc2d86SBrenden Blanco 	frame->page = NULL;
12019ecc2d86SBrenden Blanco 	tx_info->map0_dma = dma;
12029ecc2d86SBrenden Blanco 	tx_info->nr_bytes = max_t(unsigned int, length, ETH_ZLEN);
12039ecc2d86SBrenden Blanco 
1204ea3349a0SMartin KaFai Lau 	dma_sync_single_range_for_device(priv->ddev, dma, frame->page_offset,
1205eb9c5c0dSChristophe JAILLET 					 length, DMA_TO_DEVICE);
12069ecc2d86SBrenden Blanco 
1207ea3349a0SMartin KaFai Lau 	data->addr = cpu_to_be64(dma + frame->page_offset);
12089ecc2d86SBrenden Blanco 	dma_wmb();
12099ecc2d86SBrenden Blanco 	data->byte_count = cpu_to_be32(length);
12109ecc2d86SBrenden Blanco 
12119ecc2d86SBrenden Blanco 	/* tx completion can avoid cache line miss for common cases */
12129ecc2d86SBrenden Blanco 
12139ecc2d86SBrenden Blanco 	op_own = cpu_to_be32(MLX4_OPCODE_SEND) |
12149ecc2d86SBrenden Blanco 		((ring->prod & ring->size) ?
12159ecc2d86SBrenden Blanco 		 cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
12169ecc2d86SBrenden Blanco 
121715fca2c8STariq Toukan 	rx_ring->xdp_tx++;
12189ecc2d86SBrenden Blanco 
1219*9a714997SJakub Kicinski 	WRITE_ONCE(ring->prod, ring->prod + MLX4_EN_XDP_TX_NRTXBB);
12209ecc2d86SBrenden Blanco 
1221f6f0aa97STariq Toukan 	/* Ensure new descriptor hits memory
1222f6f0aa97STariq Toukan 	 * before setting ownership of this descriptor to HW
1223f6f0aa97STariq Toukan 	 */
1224f6f0aa97STariq Toukan 	dma_wmb();
1225f6f0aa97STariq Toukan 	tx_desc->ctrl.owner_opcode = op_own;
1226f6f0aa97STariq Toukan 	ring->xmit_more++;
12279ecc2d86SBrenden Blanco 
122836ea7964STariq Toukan 	*doorbell_pending = true;
12299ecc2d86SBrenden Blanco 
12309ecc2d86SBrenden Blanco 	return NETDEV_TX_OK;
12319ecc2d86SBrenden Blanco 
12327a61fc86SMoshe Shemesh tx_drop_count:
123315fca2c8STariq Toukan 	rx_ring->xdp_tx_full++;
12346c78511bSTariq Toukan 	*doorbell_pending = true;
12357a61fc86SMoshe Shemesh tx_drop:
12369ecc2d86SBrenden Blanco 	return NETDEV_TX_BUSY;
12379ecc2d86SBrenden Blanco }
1238