1 /*
2  * Copyright (c) 2015, 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 #include <linux/tcp.h>
34 #include <linux/if_vlan.h>
35 #include "en.h"
36 
37 #define MLX5E_SQ_NOPS_ROOM  MLX5_SEND_WQE_MAX_WQEBBS
38 #define MLX5E_SQ_STOP_ROOM (MLX5_SEND_WQE_MAX_WQEBBS +\
39 			    MLX5E_SQ_NOPS_ROOM)
40 
mlx5e_send_nop(struct mlx5e_sq * sq,bool notify_hw)41 void mlx5e_send_nop(struct mlx5e_sq *sq, bool notify_hw)
42 {
43 	struct mlx5_wq_cyc                *wq  = &sq->wq;
44 
45 	u16 pi = sq->pc & wq->sz_m1;
46 	struct mlx5e_tx_wqe              *wqe  = mlx5_wq_cyc_get_wqe(wq, pi);
47 
48 	struct mlx5_wqe_ctrl_seg         *cseg = &wqe->ctrl;
49 
50 	memset(cseg, 0, sizeof(*cseg));
51 
52 	cseg->opmod_idx_opcode = cpu_to_be32((sq->pc << 8) | MLX5_OPCODE_NOP);
53 	cseg->qpn_ds           = cpu_to_be32((sq->sqn << 8) | 0x01);
54 
55 	sq->skb[pi] = NULL;
56 	sq->pc++;
57 
58 	if (notify_hw) {
59 		cseg->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
60 		mlx5e_tx_notify_hw(sq, wqe, 0);
61 	}
62 }
63 
mlx5e_tx_dma_unmap(struct device * pdev,struct mlx5e_sq_dma * dma)64 static inline void mlx5e_tx_dma_unmap(struct device *pdev,
65 				      struct mlx5e_sq_dma *dma)
66 {
67 	switch (dma->type) {
68 	case MLX5E_DMA_MAP_SINGLE:
69 		dma_unmap_single(pdev, dma->addr, dma->size, DMA_TO_DEVICE);
70 		break;
71 	case MLX5E_DMA_MAP_PAGE:
72 		dma_unmap_page(pdev, dma->addr, dma->size, DMA_TO_DEVICE);
73 		break;
74 	default:
75 		WARN_ONCE(true, "mlx5e_tx_dma_unmap unknown DMA type!\n");
76 	}
77 }
78 
mlx5e_dma_push(struct mlx5e_sq * sq,dma_addr_t addr,u32 size,enum mlx5e_dma_map_type map_type)79 static inline void mlx5e_dma_push(struct mlx5e_sq *sq,
80 				  dma_addr_t addr,
81 				  u32 size,
82 				  enum mlx5e_dma_map_type map_type)
83 {
84 	sq->dma_fifo[sq->dma_fifo_pc & sq->dma_fifo_mask].addr = addr;
85 	sq->dma_fifo[sq->dma_fifo_pc & sq->dma_fifo_mask].size = size;
86 	sq->dma_fifo[sq->dma_fifo_pc & sq->dma_fifo_mask].type = map_type;
87 	sq->dma_fifo_pc++;
88 }
89 
mlx5e_dma_get(struct mlx5e_sq * sq,u32 i)90 static inline struct mlx5e_sq_dma *mlx5e_dma_get(struct mlx5e_sq *sq, u32 i)
91 {
92 	return &sq->dma_fifo[i & sq->dma_fifo_mask];
93 }
94 
mlx5e_dma_unmap_wqe_err(struct mlx5e_sq * sq,struct sk_buff * skb)95 static void mlx5e_dma_unmap_wqe_err(struct mlx5e_sq *sq, struct sk_buff *skb)
96 {
97 	int i;
98 
99 	for (i = 0; i < MLX5E_TX_SKB_CB(skb)->num_dma; i++) {
100 		struct mlx5e_sq_dma *last_pushed_dma =
101 			mlx5e_dma_get(sq, --sq->dma_fifo_pc);
102 
103 		mlx5e_tx_dma_unmap(sq->pdev, last_pushed_dma);
104 	}
105 }
106 
mlx5e_select_queue(struct net_device * dev,struct sk_buff * skb,void * accel_priv,select_queue_fallback_t fallback)107 u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
108 		       void *accel_priv, select_queue_fallback_t fallback)
109 {
110 	struct mlx5e_priv *priv = netdev_priv(dev);
111 	int channel_ix = fallback(dev, skb);
112 	int up = skb_vlan_tag_present(skb)        ?
113 		 skb->vlan_tci >> VLAN_PRIO_SHIFT :
114 		 priv->default_vlan_prio;
115 	int tc = netdev_get_prio_tc_map(dev, up);
116 
117 	return priv->channeltc_to_txq_map[channel_ix][tc];
118 }
119 
mlx5e_get_inline_hdr_size(struct mlx5e_sq * sq,struct sk_buff * skb,bool bf)120 static inline u16 mlx5e_get_inline_hdr_size(struct mlx5e_sq *sq,
121 					    struct sk_buff *skb, bool bf)
122 {
123 	/* Some NIC TX decisions, e.g loopback, are based on the packet
124 	 * headers and occur before the data gather.
125 	 * Therefore these headers must be copied into the WQE
126 	 */
127 #define MLX5E_MIN_INLINE ETH_HLEN
128 
129 	if (bf) {
130 		u16 ihs = skb_headlen(skb);
131 
132 		if (skb_vlan_tag_present(skb))
133 			ihs += VLAN_HLEN;
134 
135 		if (ihs <= sq->max_inline)
136 			return skb_headlen(skb);
137 	}
138 
139 	return MLX5E_MIN_INLINE;
140 }
141 
mlx5e_insert_vlan(void * start,struct sk_buff * skb,u16 ihs)142 static inline void mlx5e_insert_vlan(void *start, struct sk_buff *skb, u16 ihs)
143 {
144 	struct vlan_ethhdr *vhdr = (struct vlan_ethhdr *)start;
145 	int cpy1_sz = 2 * ETH_ALEN;
146 	int cpy2_sz = ihs - cpy1_sz;
147 
148 	skb_copy_from_linear_data(skb, vhdr, cpy1_sz);
149 	skb_pull_inline(skb, cpy1_sz);
150 	vhdr->h_vlan_proto = skb->vlan_proto;
151 	vhdr->h_vlan_TCI = cpu_to_be16(skb_vlan_tag_get(skb));
152 	skb_copy_from_linear_data(skb, &vhdr->h_vlan_encapsulated_proto,
153 				  cpy2_sz);
154 	skb_pull_inline(skb, cpy2_sz);
155 }
156 
mlx5e_sq_xmit(struct mlx5e_sq * sq,struct sk_buff * skb)157 static netdev_tx_t mlx5e_sq_xmit(struct mlx5e_sq *sq, struct sk_buff *skb)
158 {
159 	struct mlx5_wq_cyc       *wq   = &sq->wq;
160 
161 	u16 pi = sq->pc & wq->sz_m1;
162 	struct mlx5e_tx_wqe      *wqe  = mlx5_wq_cyc_get_wqe(wq, pi);
163 
164 	struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl;
165 	struct mlx5_wqe_eth_seg  *eseg = &wqe->eth;
166 	struct mlx5_wqe_data_seg *dseg;
167 
168 	u8  opcode = MLX5_OPCODE_SEND;
169 	dma_addr_t dma_addr = 0;
170 	bool bf = false;
171 	u16 headlen;
172 	u16 ds_cnt;
173 	u16 ihs;
174 	int i;
175 
176 	memset(wqe, 0, sizeof(*wqe));
177 
178 	if (likely(skb->ip_summed == CHECKSUM_PARTIAL))
179 		eseg->cs_flags	= MLX5_ETH_WQE_L3_CSUM | MLX5_ETH_WQE_L4_CSUM;
180 	else
181 		sq->stats.csum_offload_none++;
182 
183 	if (sq->cc != sq->prev_cc) {
184 		sq->prev_cc = sq->cc;
185 		sq->bf_budget = (sq->cc == sq->pc) ? MLX5E_SQ_BF_BUDGET : 0;
186 	}
187 
188 	if (skb_is_gso(skb)) {
189 		u32 payload_len;
190 
191 		eseg->mss    = cpu_to_be16(skb_shinfo(skb)->gso_size);
192 		opcode       = MLX5_OPCODE_LSO;
193 		ihs          = skb_transport_offset(skb) + tcp_hdrlen(skb);
194 		payload_len  = skb->len - ihs;
195 		MLX5E_TX_SKB_CB(skb)->num_bytes = skb->len +
196 					(skb_shinfo(skb)->gso_segs - 1) * ihs;
197 		sq->stats.tso_packets++;
198 		sq->stats.tso_bytes += payload_len;
199 	} else {
200 		bf = sq->bf_budget &&
201 		     !skb->xmit_more &&
202 		     !skb_shinfo(skb)->nr_frags;
203 		ihs = mlx5e_get_inline_hdr_size(sq, skb, bf);
204 		MLX5E_TX_SKB_CB(skb)->num_bytes = max_t(unsigned int, skb->len,
205 							ETH_ZLEN);
206 	}
207 
208 	if (skb_vlan_tag_present(skb)) {
209 		mlx5e_insert_vlan(eseg->inline_hdr_start, skb, ihs);
210 		ihs += VLAN_HLEN;
211 	} else {
212 		skb_copy_from_linear_data(skb, eseg->inline_hdr_start, ihs);
213 		skb_pull_inline(skb, ihs);
214 	}
215 
216 	eseg->inline_hdr_sz = cpu_to_be16(ihs);
217 
218 	ds_cnt  = sizeof(*wqe) / MLX5_SEND_WQE_DS;
219 	ds_cnt += DIV_ROUND_UP(ihs - sizeof(eseg->inline_hdr_start),
220 			       MLX5_SEND_WQE_DS);
221 	dseg    = (struct mlx5_wqe_data_seg *)cseg + ds_cnt;
222 
223 	MLX5E_TX_SKB_CB(skb)->num_dma = 0;
224 
225 	headlen = skb_headlen(skb);
226 	if (headlen) {
227 		dma_addr = dma_map_single(sq->pdev, skb->data, headlen,
228 					  DMA_TO_DEVICE);
229 		if (unlikely(dma_mapping_error(sq->pdev, dma_addr)))
230 			goto dma_unmap_wqe_err;
231 
232 		dseg->addr       = cpu_to_be64(dma_addr);
233 		dseg->lkey       = sq->mkey_be;
234 		dseg->byte_count = cpu_to_be32(headlen);
235 
236 		mlx5e_dma_push(sq, dma_addr, headlen, MLX5E_DMA_MAP_SINGLE);
237 		MLX5E_TX_SKB_CB(skb)->num_dma++;
238 
239 		dseg++;
240 	}
241 
242 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
243 		struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
244 		int fsz = skb_frag_size(frag);
245 
246 		dma_addr = skb_frag_dma_map(sq->pdev, frag, 0, fsz,
247 					    DMA_TO_DEVICE);
248 		if (unlikely(dma_mapping_error(sq->pdev, dma_addr)))
249 			goto dma_unmap_wqe_err;
250 
251 		dseg->addr       = cpu_to_be64(dma_addr);
252 		dseg->lkey       = sq->mkey_be;
253 		dseg->byte_count = cpu_to_be32(fsz);
254 
255 		mlx5e_dma_push(sq, dma_addr, fsz, MLX5E_DMA_MAP_PAGE);
256 		MLX5E_TX_SKB_CB(skb)->num_dma++;
257 
258 		dseg++;
259 	}
260 
261 	ds_cnt += MLX5E_TX_SKB_CB(skb)->num_dma;
262 
263 	cseg->opmod_idx_opcode = cpu_to_be32((sq->pc << 8) | opcode);
264 	cseg->qpn_ds           = cpu_to_be32((sq->sqn << 8) | ds_cnt);
265 
266 	sq->skb[pi] = skb;
267 
268 	MLX5E_TX_SKB_CB(skb)->num_wqebbs = DIV_ROUND_UP(ds_cnt,
269 							MLX5_SEND_WQEBB_NUM_DS);
270 	sq->pc += MLX5E_TX_SKB_CB(skb)->num_wqebbs;
271 
272 	netdev_tx_sent_queue(sq->txq, MLX5E_TX_SKB_CB(skb)->num_bytes);
273 
274 	if (unlikely(!mlx5e_sq_has_room_for(sq, MLX5E_SQ_STOP_ROOM))) {
275 		netif_tx_stop_queue(sq->txq);
276 		sq->stats.stopped++;
277 	}
278 
279 	if (!skb->xmit_more || netif_xmit_stopped(sq->txq)) {
280 		int bf_sz = 0;
281 
282 		if (bf && sq->uar_bf_map)
283 			bf_sz = MLX5E_TX_SKB_CB(skb)->num_wqebbs << 3;
284 
285 		cseg->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
286 		mlx5e_tx_notify_hw(sq, wqe, bf_sz);
287 	}
288 
289 	/* fill sq edge with nops to avoid wqe wrap around */
290 	while ((sq->pc & wq->sz_m1) > sq->edge)
291 		mlx5e_send_nop(sq, false);
292 
293 	sq->bf_budget = bf ? sq->bf_budget - 1 : 0;
294 
295 	sq->stats.packets++;
296 	return NETDEV_TX_OK;
297 
298 dma_unmap_wqe_err:
299 	sq->stats.dropped++;
300 	mlx5e_dma_unmap_wqe_err(sq, skb);
301 
302 	dev_kfree_skb_any(skb);
303 
304 	return NETDEV_TX_OK;
305 }
306 
mlx5e_xmit(struct sk_buff * skb,struct net_device * dev)307 netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev)
308 {
309 	struct mlx5e_priv *priv = netdev_priv(dev);
310 	struct mlx5e_sq *sq = priv->txq_to_sq_map[skb_get_queue_mapping(skb)];
311 
312 	return mlx5e_sq_xmit(sq, skb);
313 }
314 
mlx5e_poll_tx_cq(struct mlx5e_cq * cq)315 bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq)
316 {
317 	struct mlx5e_sq *sq;
318 	u32 dma_fifo_cc;
319 	u32 nbytes;
320 	u16 npkts;
321 	u16 sqcc;
322 	int i;
323 
324 	/* avoid accessing cq (dma coherent memory) if not needed */
325 	if (!test_and_clear_bit(MLX5E_CQ_HAS_CQES, &cq->flags))
326 		return false;
327 
328 	sq = container_of(cq, struct mlx5e_sq, cq);
329 
330 	npkts = 0;
331 	nbytes = 0;
332 
333 	/* sq->cc must be updated only after mlx5_cqwq_update_db_record(),
334 	 * otherwise a cq overrun may occur
335 	 */
336 	sqcc = sq->cc;
337 
338 	/* avoid dirtying sq cache line every cqe */
339 	dma_fifo_cc = sq->dma_fifo_cc;
340 
341 	for (i = 0; i < MLX5E_TX_CQ_POLL_BUDGET; i++) {
342 		struct mlx5_cqe64 *cqe;
343 		u16 wqe_counter;
344 		bool last_wqe;
345 
346 		cqe = mlx5e_get_cqe(cq);
347 		if (!cqe)
348 			break;
349 
350 		mlx5_cqwq_pop(&cq->wq);
351 
352 		wqe_counter = be16_to_cpu(cqe->wqe_counter);
353 
354 		do {
355 			struct sk_buff *skb;
356 			u16 ci;
357 			int j;
358 
359 			last_wqe = (sqcc == wqe_counter);
360 
361 			ci = sqcc & sq->wq.sz_m1;
362 			skb = sq->skb[ci];
363 
364 			if (unlikely(!skb)) { /* nop */
365 				sq->stats.nop++;
366 				sqcc++;
367 				continue;
368 			}
369 
370 			for (j = 0; j < MLX5E_TX_SKB_CB(skb)->num_dma; j++) {
371 				struct mlx5e_sq_dma *dma =
372 					mlx5e_dma_get(sq, dma_fifo_cc++);
373 
374 				mlx5e_tx_dma_unmap(sq->pdev, dma);
375 			}
376 
377 			npkts++;
378 			nbytes += MLX5E_TX_SKB_CB(skb)->num_bytes;
379 			sqcc += MLX5E_TX_SKB_CB(skb)->num_wqebbs;
380 			dev_kfree_skb(skb);
381 		} while (!last_wqe);
382 	}
383 
384 	mlx5_cqwq_update_db_record(&cq->wq);
385 
386 	/* ensure cq space is freed before enabling more cqes */
387 	wmb();
388 
389 	sq->dma_fifo_cc = dma_fifo_cc;
390 	sq->cc = sqcc;
391 
392 	netdev_tx_completed_queue(sq->txq, npkts, nbytes);
393 
394 	if (netif_tx_queue_stopped(sq->txq) &&
395 	    mlx5e_sq_has_room_for(sq, MLX5E_SQ_STOP_ROOM) &&
396 	    likely(test_bit(MLX5E_SQ_STATE_WAKE_TXQ_ENABLE, &sq->state))) {
397 				netif_tx_wake_queue(sq->txq);
398 				sq->stats.wake++;
399 	}
400 	if (i == MLX5E_TX_CQ_POLL_BUDGET) {
401 		set_bit(MLX5E_CQ_HAS_CQES, &cq->flags);
402 		return true;
403 	}
404 
405 	return false;
406 }
407