GNU Linux-libre 4.9.304-gnu1
[releases.git] / drivers / net / ethernet / mellanox / mlx5 / core / en_tx.c
1 /*
2  * Copyright (c) 2015-2016, 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
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->pc++;
56         sq->stats.nop++;
57
58         if (notify_hw) {
59                 cseg->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
60                 mlx5e_tx_notify_hw(sq, &wqe->ctrl, 0);
61         }
62 }
63
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
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         u32 i = sq->dma_fifo_pc & sq->dma_fifo_mask;
85
86         sq->db.txq.dma_fifo[i].addr = addr;
87         sq->db.txq.dma_fifo[i].size = size;
88         sq->db.txq.dma_fifo[i].type = map_type;
89         sq->dma_fifo_pc++;
90 }
91
92 static inline struct mlx5e_sq_dma *mlx5e_dma_get(struct mlx5e_sq *sq, u32 i)
93 {
94         return &sq->db.txq.dma_fifo[i & sq->dma_fifo_mask];
95 }
96
97 static void mlx5e_dma_unmap_wqe_err(struct mlx5e_sq *sq, u8 num_dma)
98 {
99         int i;
100
101         for (i = 0; i < num_dma; i++) {
102                 struct mlx5e_sq_dma *last_pushed_dma =
103                         mlx5e_dma_get(sq, --sq->dma_fifo_pc);
104
105                 mlx5e_tx_dma_unmap(sq->pdev, last_pushed_dma);
106         }
107 }
108
109 u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
110                        void *accel_priv, select_queue_fallback_t fallback)
111 {
112         struct mlx5e_priv *priv = netdev_priv(dev);
113         int channel_ix = fallback(dev, skb);
114         int up = 0;
115
116         if (!netdev_get_num_tc(dev))
117                 return channel_ix;
118
119         if (skb_vlan_tag_present(skb))
120                 up = skb->vlan_tci >> VLAN_PRIO_SHIFT;
121
122         /* channel_ix can be larger than num_channels since
123          * dev->num_real_tx_queues = num_channels * num_tc
124          */
125         if (channel_ix >= priv->params.num_channels)
126                 channel_ix = reciprocal_scale(channel_ix,
127                                               priv->params.num_channels);
128
129         return priv->channeltc_to_txq_map[channel_ix][up];
130 }
131
132 static inline int mlx5e_skb_l2_header_offset(struct sk_buff *skb)
133 {
134 #define MLX5E_MIN_INLINE (ETH_HLEN + VLAN_HLEN)
135
136         return max(skb_network_offset(skb), MLX5E_MIN_INLINE);
137 }
138
139 static inline int mlx5e_skb_l3_header_offset(struct sk_buff *skb)
140 {
141         struct flow_keys keys;
142
143         if (skb_transport_header_was_set(skb))
144                 return skb_transport_offset(skb);
145         else if (skb_flow_dissect_flow_keys(skb, &keys, 0))
146                 return keys.control.thoff;
147         else
148                 return mlx5e_skb_l2_header_offset(skb);
149 }
150
151 static inline unsigned int mlx5e_calc_min_inline(enum mlx5_inline_modes mode,
152                                                  struct sk_buff *skb)
153 {
154         int hlen;
155
156         switch (mode) {
157         case MLX5_INLINE_MODE_TCP_UDP:
158                 hlen = eth_get_headlen(skb->data, skb_headlen(skb));
159                 if (hlen == ETH_HLEN && !skb_vlan_tag_present(skb))
160                         hlen += VLAN_HLEN;
161                 return hlen;
162         case MLX5_INLINE_MODE_IP:
163                 /* When transport header is set to zero, it means no transport
164                  * header. When transport header is set to 0xff's, it means
165                  * transport header wasn't set.
166                  */
167                 if (skb_transport_offset(skb))
168                         return mlx5e_skb_l3_header_offset(skb);
169                 /* fall through */
170         case MLX5_INLINE_MODE_L2:
171         default:
172                 return mlx5e_skb_l2_header_offset(skb);
173         }
174 }
175
176 static inline u16 mlx5e_get_inline_hdr_size(struct mlx5e_sq *sq,
177                                             struct sk_buff *skb, bool bf)
178 {
179         /* Some NIC TX decisions, e.g loopback, are based on the packet
180          * headers and occur before the data gather.
181          * Therefore these headers must be copied into the WQE
182          */
183         if (bf) {
184                 u16 ihs = skb_headlen(skb);
185
186                 if (skb_vlan_tag_present(skb))
187                         ihs += VLAN_HLEN;
188
189                 if (ihs <= sq->max_inline)
190                         return skb_headlen(skb);
191         }
192         return mlx5e_calc_min_inline(sq->min_inline_mode, skb);
193 }
194
195 static inline void mlx5e_tx_skb_pull_inline(unsigned char **skb_data,
196                                             unsigned int *skb_len,
197                                             unsigned int len)
198 {
199         *skb_len -= len;
200         *skb_data += len;
201 }
202
203 static inline void mlx5e_insert_vlan(void *start, struct sk_buff *skb, u16 ihs,
204                                      unsigned char **skb_data,
205                                      unsigned int *skb_len)
206 {
207         struct vlan_ethhdr *vhdr = (struct vlan_ethhdr *)start;
208         int cpy1_sz = 2 * ETH_ALEN;
209         int cpy2_sz = ihs - cpy1_sz;
210
211         memcpy(vhdr, *skb_data, cpy1_sz);
212         mlx5e_tx_skb_pull_inline(skb_data, skb_len, cpy1_sz);
213         vhdr->h_vlan_proto = skb->vlan_proto;
214         vhdr->h_vlan_TCI = cpu_to_be16(skb_vlan_tag_get(skb));
215         memcpy(&vhdr->h_vlan_encapsulated_proto, *skb_data, cpy2_sz);
216         mlx5e_tx_skb_pull_inline(skb_data, skb_len, cpy2_sz);
217 }
218
219 static netdev_tx_t mlx5e_sq_xmit(struct mlx5e_sq *sq, struct sk_buff *skb)
220 {
221         struct mlx5_wq_cyc       *wq   = &sq->wq;
222
223         u16 pi = sq->pc & wq->sz_m1;
224         struct mlx5e_tx_wqe      *wqe  = mlx5_wq_cyc_get_wqe(wq, pi);
225         struct mlx5e_tx_wqe_info *wi   = &sq->db.txq.wqe_info[pi];
226
227         struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl;
228         struct mlx5_wqe_eth_seg  *eseg = &wqe->eth;
229         struct mlx5_wqe_data_seg *dseg;
230
231         unsigned char *skb_data = skb->data;
232         unsigned int skb_len = skb->len;
233         u8  opcode = MLX5_OPCODE_SEND;
234         dma_addr_t dma_addr = 0;
235         unsigned int num_bytes;
236         bool bf = false;
237         u16 headlen;
238         u16 ds_cnt;
239         u16 ihs;
240         int i;
241
242         memset(wqe, 0, sizeof(*wqe));
243
244         if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
245                 eseg->cs_flags = MLX5_ETH_WQE_L3_CSUM;
246                 if (skb->encapsulation) {
247                         eseg->cs_flags |= MLX5_ETH_WQE_L3_INNER_CSUM |
248                                           MLX5_ETH_WQE_L4_INNER_CSUM;
249                         sq->stats.csum_partial_inner++;
250                 } else {
251                         eseg->cs_flags |= MLX5_ETH_WQE_L4_CSUM;
252                 }
253         } else
254                 sq->stats.csum_none++;
255
256         if (sq->cc != sq->prev_cc) {
257                 sq->prev_cc = sq->cc;
258                 sq->bf_budget = (sq->cc == sq->pc) ? MLX5E_SQ_BF_BUDGET : 0;
259         }
260
261         if (skb_is_gso(skb)) {
262                 eseg->mss    = cpu_to_be16(skb_shinfo(skb)->gso_size);
263                 opcode       = MLX5_OPCODE_LSO;
264
265                 if (skb->encapsulation) {
266                         ihs = skb_inner_transport_offset(skb) + inner_tcp_hdrlen(skb);
267                         sq->stats.tso_inner_packets++;
268                         sq->stats.tso_inner_bytes += skb->len - ihs;
269                 } else {
270                         ihs = skb_transport_offset(skb) + tcp_hdrlen(skb);
271                         sq->stats.tso_packets++;
272                         sq->stats.tso_bytes += skb->len - ihs;
273                 }
274
275                 sq->stats.packets += skb_shinfo(skb)->gso_segs;
276                 num_bytes = skb->len + (skb_shinfo(skb)->gso_segs - 1) * ihs;
277         } else {
278                 bf = sq->bf_budget &&
279                      !skb->xmit_more &&
280                      !skb_shinfo(skb)->nr_frags;
281                 ihs = mlx5e_get_inline_hdr_size(sq, skb, bf);
282                 sq->stats.packets++;
283                 num_bytes = max_t(unsigned int, skb->len, ETH_ZLEN);
284         }
285
286         sq->stats.bytes += num_bytes;
287         wi->num_bytes = num_bytes;
288
289         if (skb_vlan_tag_present(skb)) {
290                 mlx5e_insert_vlan(eseg->inline_hdr_start, skb, ihs, &skb_data,
291                                   &skb_len);
292                 ihs += VLAN_HLEN;
293         } else {
294                 memcpy(eseg->inline_hdr_start, skb_data, ihs);
295                 mlx5e_tx_skb_pull_inline(&skb_data, &skb_len, ihs);
296         }
297
298         eseg->inline_hdr_sz = cpu_to_be16(ihs);
299
300         ds_cnt  = sizeof(*wqe) / MLX5_SEND_WQE_DS;
301         ds_cnt += DIV_ROUND_UP(ihs - sizeof(eseg->inline_hdr_start),
302                                MLX5_SEND_WQE_DS);
303         dseg    = (struct mlx5_wqe_data_seg *)cseg + ds_cnt;
304
305         wi->num_dma = 0;
306
307         headlen = skb_len - skb->data_len;
308         if (headlen) {
309                 dma_addr = dma_map_single(sq->pdev, skb_data, headlen,
310                                           DMA_TO_DEVICE);
311                 if (unlikely(dma_mapping_error(sq->pdev, dma_addr)))
312                         goto dma_unmap_wqe_err;
313
314                 dseg->addr       = cpu_to_be64(dma_addr);
315                 dseg->lkey       = sq->mkey_be;
316                 dseg->byte_count = cpu_to_be32(headlen);
317
318                 mlx5e_dma_push(sq, dma_addr, headlen, MLX5E_DMA_MAP_SINGLE);
319                 wi->num_dma++;
320
321                 dseg++;
322         }
323
324         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
325                 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
326                 int fsz = skb_frag_size(frag);
327
328                 dma_addr = skb_frag_dma_map(sq->pdev, frag, 0, fsz,
329                                             DMA_TO_DEVICE);
330                 if (unlikely(dma_mapping_error(sq->pdev, dma_addr)))
331                         goto dma_unmap_wqe_err;
332
333                 dseg->addr       = cpu_to_be64(dma_addr);
334                 dseg->lkey       = sq->mkey_be;
335                 dseg->byte_count = cpu_to_be32(fsz);
336
337                 mlx5e_dma_push(sq, dma_addr, fsz, MLX5E_DMA_MAP_PAGE);
338                 wi->num_dma++;
339
340                 dseg++;
341         }
342
343         ds_cnt += wi->num_dma;
344
345         cseg->opmod_idx_opcode = cpu_to_be32((sq->pc << 8) | opcode);
346         cseg->qpn_ds           = cpu_to_be32((sq->sqn << 8) | ds_cnt);
347
348         sq->db.txq.skb[pi] = skb;
349
350         wi->num_wqebbs = DIV_ROUND_UP(ds_cnt, MLX5_SEND_WQEBB_NUM_DS);
351         sq->pc += wi->num_wqebbs;
352
353         netdev_tx_sent_queue(sq->txq, wi->num_bytes);
354
355         if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP))
356                 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
357
358         if (unlikely(!mlx5e_sq_has_room_for(sq, MLX5E_SQ_STOP_ROOM))) {
359                 netif_tx_stop_queue(sq->txq);
360                 sq->stats.stopped++;
361         }
362
363         sq->stats.xmit_more += skb->xmit_more;
364         if (!skb->xmit_more || netif_xmit_stopped(sq->txq)) {
365                 int bf_sz = 0;
366
367                 if (bf && test_bit(MLX5E_SQ_STATE_BF_ENABLE, &sq->state))
368                         bf_sz = wi->num_wqebbs << 3;
369
370                 cseg->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
371                 mlx5e_tx_notify_hw(sq, &wqe->ctrl, bf_sz);
372         }
373
374         /* fill sq edge with nops to avoid wqe wrap around */
375         while ((pi = (sq->pc & wq->sz_m1)) > sq->edge) {
376                 sq->db.txq.skb[pi] = NULL;
377                 mlx5e_send_nop(sq, false);
378         }
379
380         if (bf)
381                 sq->bf_budget--;
382
383         return NETDEV_TX_OK;
384
385 dma_unmap_wqe_err:
386         sq->stats.dropped++;
387         mlx5e_dma_unmap_wqe_err(sq, wi->num_dma);
388
389         dev_kfree_skb_any(skb);
390
391         return NETDEV_TX_OK;
392 }
393
394 netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev)
395 {
396         struct mlx5e_priv *priv = netdev_priv(dev);
397         struct mlx5e_sq *sq = priv->txq_to_sq_map[skb_get_queue_mapping(skb)];
398
399         return mlx5e_sq_xmit(sq, skb);
400 }
401
402 bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget)
403 {
404         struct mlx5e_sq *sq;
405         u32 dma_fifo_cc;
406         u32 nbytes;
407         u16 npkts;
408         u16 sqcc;
409         int i;
410
411         sq = container_of(cq, struct mlx5e_sq, cq);
412
413         if (unlikely(!test_bit(MLX5E_SQ_STATE_ENABLED, &sq->state)))
414                 return false;
415
416         npkts = 0;
417         nbytes = 0;
418
419         /* sq->cc must be updated only after mlx5_cqwq_update_db_record(),
420          * otherwise a cq overrun may occur
421          */
422         sqcc = sq->cc;
423
424         /* avoid dirtying sq cache line every cqe */
425         dma_fifo_cc = sq->dma_fifo_cc;
426
427         for (i = 0; i < MLX5E_TX_CQ_POLL_BUDGET; i++) {
428                 struct mlx5_cqe64 *cqe;
429                 u16 wqe_counter;
430                 bool last_wqe;
431
432                 cqe = mlx5e_get_cqe(cq);
433                 if (!cqe)
434                         break;
435
436                 mlx5_cqwq_pop(&cq->wq);
437
438                 wqe_counter = be16_to_cpu(cqe->wqe_counter);
439
440                 do {
441                         struct mlx5e_tx_wqe_info *wi;
442                         struct sk_buff *skb;
443                         u16 ci;
444                         int j;
445
446                         last_wqe = (sqcc == wqe_counter);
447
448                         ci = sqcc & sq->wq.sz_m1;
449                         skb = sq->db.txq.skb[ci];
450                         wi = &sq->db.txq.wqe_info[ci];
451
452                         if (unlikely(!skb)) { /* nop */
453                                 sqcc++;
454                                 continue;
455                         }
456
457                         if (unlikely(skb_shinfo(skb)->tx_flags &
458                                      SKBTX_HW_TSTAMP)) {
459                                 struct skb_shared_hwtstamps hwts = {};
460
461                                 mlx5e_fill_hwstamp(sq->tstamp,
462                                                    get_cqe_ts(cqe), &hwts);
463                                 skb_tstamp_tx(skb, &hwts);
464                         }
465
466                         for (j = 0; j < wi->num_dma; j++) {
467                                 struct mlx5e_sq_dma *dma =
468                                         mlx5e_dma_get(sq, dma_fifo_cc++);
469
470                                 mlx5e_tx_dma_unmap(sq->pdev, dma);
471                         }
472
473                         npkts++;
474                         nbytes += wi->num_bytes;
475                         sqcc += wi->num_wqebbs;
476                         napi_consume_skb(skb, napi_budget);
477                 } while (!last_wqe);
478         }
479
480         mlx5_cqwq_update_db_record(&cq->wq);
481
482         /* ensure cq space is freed before enabling more cqes */
483         wmb();
484
485         sq->dma_fifo_cc = dma_fifo_cc;
486         sq->cc = sqcc;
487
488         netdev_tx_completed_queue(sq->txq, npkts, nbytes);
489
490         if (netif_tx_queue_stopped(sq->txq) &&
491             mlx5e_sq_has_room_for(sq, MLX5E_SQ_STOP_ROOM)) {
492                 netif_tx_wake_queue(sq->txq);
493                 sq->stats.wake++;
494         }
495
496         return (i == MLX5E_TX_CQ_POLL_BUDGET);
497 }
498
499 static void mlx5e_free_txq_sq_descs(struct mlx5e_sq *sq)
500 {
501         struct mlx5e_tx_wqe_info *wi;
502         u32 nbytes = 0;
503         u16 ci, npkts = 0;
504         struct sk_buff *skb;
505         int i;
506
507         while (sq->cc != sq->pc) {
508                 ci = sq->cc & sq->wq.sz_m1;
509                 skb = sq->db.txq.skb[ci];
510                 wi = &sq->db.txq.wqe_info[ci];
511
512                 if (!skb) { /* nop */
513                         sq->cc++;
514                         continue;
515                 }
516
517                 for (i = 0; i < wi->num_dma; i++) {
518                         struct mlx5e_sq_dma *dma =
519                                 mlx5e_dma_get(sq, sq->dma_fifo_cc++);
520
521                         mlx5e_tx_dma_unmap(sq->pdev, dma);
522                 }
523
524                 dev_kfree_skb_any(skb);
525                 npkts++;
526                 nbytes += wi->num_bytes;
527                 sq->cc += wi->num_wqebbs;
528         }
529         netdev_tx_completed_queue(sq->txq, npkts, nbytes);
530 }
531
532 static void mlx5e_free_xdp_sq_descs(struct mlx5e_sq *sq)
533 {
534         struct mlx5e_sq_wqe_info *wi;
535         struct mlx5e_dma_info *di;
536         u16 ci;
537
538         while (sq->cc != sq->pc) {
539                 ci = sq->cc & sq->wq.sz_m1;
540                 di = &sq->db.xdp.di[ci];
541                 wi = &sq->db.xdp.wqe_info[ci];
542
543                 if (wi->opcode == MLX5_OPCODE_NOP) {
544                         sq->cc++;
545                         continue;
546                 }
547
548                 sq->cc += wi->num_wqebbs;
549
550                 mlx5e_page_release(&sq->channel->rq, di, false);
551         }
552 }
553
554 void mlx5e_free_sq_descs(struct mlx5e_sq *sq)
555 {
556         switch (sq->type) {
557         case MLX5E_SQ_TXQ:
558                 mlx5e_free_txq_sq_descs(sq);
559                 break;
560         case MLX5E_SQ_XDP:
561                 mlx5e_free_xdp_sq_descs(sq);
562                 break;
563         }
564 }