ALSA: hda - Adding a group of pin definition to fix headset problem
[sfrench/cifs-2.6.git] / drivers / net / ethernet / mellanox / mlx5 / core / en_rx.c
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/prefetch.h>
34 #include <linux/ip.h>
35 #include <linux/ipv6.h>
36 #include <linux/tcp.h>
37 #include <linux/bpf_trace.h>
38 #include <net/busy_poll.h>
39 #include "en.h"
40 #include "en_tc.h"
41 #include "eswitch.h"
42
43 static inline bool mlx5e_rx_hw_stamp(struct mlx5e_tstamp *tstamp)
44 {
45         return tstamp->hwtstamp_config.rx_filter == HWTSTAMP_FILTER_ALL;
46 }
47
48 static inline void mlx5e_read_cqe_slot(struct mlx5e_cq *cq, u32 cqcc,
49                                        void *data)
50 {
51         u32 ci = cqcc & cq->wq.sz_m1;
52
53         memcpy(data, mlx5_cqwq_get_wqe(&cq->wq, ci), sizeof(struct mlx5_cqe64));
54 }
55
56 static inline void mlx5e_read_title_slot(struct mlx5e_rq *rq,
57                                          struct mlx5e_cq *cq, u32 cqcc)
58 {
59         mlx5e_read_cqe_slot(cq, cqcc, &cq->title);
60         cq->decmprs_left        = be32_to_cpu(cq->title.byte_cnt);
61         cq->decmprs_wqe_counter = be16_to_cpu(cq->title.wqe_counter);
62         rq->stats.cqe_compress_blks++;
63 }
64
65 static inline void mlx5e_read_mini_arr_slot(struct mlx5e_cq *cq, u32 cqcc)
66 {
67         mlx5e_read_cqe_slot(cq, cqcc, cq->mini_arr);
68         cq->mini_arr_idx = 0;
69 }
70
71 static inline void mlx5e_cqes_update_owner(struct mlx5e_cq *cq, u32 cqcc, int n)
72 {
73         u8 op_own = (cqcc >> cq->wq.log_sz) & 1;
74         u32 wq_sz = 1 << cq->wq.log_sz;
75         u32 ci = cqcc & cq->wq.sz_m1;
76         u32 ci_top = min_t(u32, wq_sz, ci + n);
77
78         for (; ci < ci_top; ci++, n--) {
79                 struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(&cq->wq, ci);
80
81                 cqe->op_own = op_own;
82         }
83
84         if (unlikely(ci == wq_sz)) {
85                 op_own = !op_own;
86                 for (ci = 0; ci < n; ci++) {
87                         struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(&cq->wq, ci);
88
89                         cqe->op_own = op_own;
90                 }
91         }
92 }
93
94 static inline void mlx5e_decompress_cqe(struct mlx5e_rq *rq,
95                                         struct mlx5e_cq *cq, u32 cqcc)
96 {
97         cq->title.byte_cnt     = cq->mini_arr[cq->mini_arr_idx].byte_cnt;
98         cq->title.check_sum    = cq->mini_arr[cq->mini_arr_idx].checksum;
99         cq->title.op_own      &= 0xf0;
100         cq->title.op_own      |= 0x01 & (cqcc >> cq->wq.log_sz);
101         cq->title.wqe_counter  = cpu_to_be16(cq->decmprs_wqe_counter);
102
103         if (rq->wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ)
104                 cq->decmprs_wqe_counter +=
105                         mpwrq_get_cqe_consumed_strides(&cq->title);
106         else
107                 cq->decmprs_wqe_counter =
108                         (cq->decmprs_wqe_counter + 1) & rq->wq.sz_m1;
109 }
110
111 static inline void mlx5e_decompress_cqe_no_hash(struct mlx5e_rq *rq,
112                                                 struct mlx5e_cq *cq, u32 cqcc)
113 {
114         mlx5e_decompress_cqe(rq, cq, cqcc);
115         cq->title.rss_hash_type   = 0;
116         cq->title.rss_hash_result = 0;
117 }
118
119 static inline u32 mlx5e_decompress_cqes_cont(struct mlx5e_rq *rq,
120                                              struct mlx5e_cq *cq,
121                                              int update_owner_only,
122                                              int budget_rem)
123 {
124         u32 cqcc = cq->wq.cc + update_owner_only;
125         u32 cqe_count;
126         u32 i;
127
128         cqe_count = min_t(u32, cq->decmprs_left, budget_rem);
129
130         for (i = update_owner_only; i < cqe_count;
131              i++, cq->mini_arr_idx++, cqcc++) {
132                 if (cq->mini_arr_idx == MLX5_MINI_CQE_ARRAY_SIZE)
133                         mlx5e_read_mini_arr_slot(cq, cqcc);
134
135                 mlx5e_decompress_cqe_no_hash(rq, cq, cqcc);
136                 rq->handle_rx_cqe(rq, &cq->title);
137         }
138         mlx5e_cqes_update_owner(cq, cq->wq.cc, cqcc - cq->wq.cc);
139         cq->wq.cc = cqcc;
140         cq->decmprs_left -= cqe_count;
141         rq->stats.cqe_compress_pkts += cqe_count;
142
143         return cqe_count;
144 }
145
146 static inline u32 mlx5e_decompress_cqes_start(struct mlx5e_rq *rq,
147                                               struct mlx5e_cq *cq,
148                                               int budget_rem)
149 {
150         mlx5e_read_title_slot(rq, cq, cq->wq.cc);
151         mlx5e_read_mini_arr_slot(cq, cq->wq.cc + 1);
152         mlx5e_decompress_cqe(rq, cq, cq->wq.cc);
153         rq->handle_rx_cqe(rq, &cq->title);
154         cq->mini_arr_idx++;
155
156         return mlx5e_decompress_cqes_cont(rq, cq, 1, budget_rem) - 1;
157 }
158
159 void mlx5e_modify_rx_cqe_compression_locked(struct mlx5e_priv *priv, bool val)
160 {
161         bool was_opened;
162
163         if (!MLX5_CAP_GEN(priv->mdev, cqe_compression))
164                 return;
165
166         if (MLX5E_GET_PFLAG(priv, MLX5E_PFLAG_RX_CQE_COMPRESS) == val)
167                 return;
168
169         was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
170         if (was_opened)
171                 mlx5e_close_locked(priv->netdev);
172
173         MLX5E_SET_PFLAG(priv, MLX5E_PFLAG_RX_CQE_COMPRESS, val);
174         mlx5e_set_rq_type_params(priv, priv->params.rq_wq_type);
175
176         if (was_opened)
177                 mlx5e_open_locked(priv->netdev);
178
179 }
180
181 #define RQ_PAGE_SIZE(rq) ((1 << rq->buff.page_order) << PAGE_SHIFT)
182
183 static inline bool mlx5e_rx_cache_put(struct mlx5e_rq *rq,
184                                       struct mlx5e_dma_info *dma_info)
185 {
186         struct mlx5e_page_cache *cache = &rq->page_cache;
187         u32 tail_next = (cache->tail + 1) & (MLX5E_CACHE_SIZE - 1);
188
189         if (tail_next == cache->head) {
190                 rq->stats.cache_full++;
191                 return false;
192         }
193
194         if (unlikely(page_is_pfmemalloc(dma_info->page)))
195                 return false;
196
197         cache->page_cache[cache->tail] = *dma_info;
198         cache->tail = tail_next;
199         return true;
200 }
201
202 static inline bool mlx5e_rx_cache_get(struct mlx5e_rq *rq,
203                                       struct mlx5e_dma_info *dma_info)
204 {
205         struct mlx5e_page_cache *cache = &rq->page_cache;
206
207         if (unlikely(cache->head == cache->tail)) {
208                 rq->stats.cache_empty++;
209                 return false;
210         }
211
212         if (page_ref_count(cache->page_cache[cache->head].page) != 1) {
213                 rq->stats.cache_busy++;
214                 return false;
215         }
216
217         *dma_info = cache->page_cache[cache->head];
218         cache->head = (cache->head + 1) & (MLX5E_CACHE_SIZE - 1);
219         rq->stats.cache_reuse++;
220
221         dma_sync_single_for_device(rq->pdev, dma_info->addr,
222                                    RQ_PAGE_SIZE(rq),
223                                    DMA_FROM_DEVICE);
224         return true;
225 }
226
227 static inline int mlx5e_page_alloc_mapped(struct mlx5e_rq *rq,
228                                           struct mlx5e_dma_info *dma_info)
229 {
230         struct page *page;
231
232         if (mlx5e_rx_cache_get(rq, dma_info))
233                 return 0;
234
235         page = dev_alloc_pages(rq->buff.page_order);
236         if (unlikely(!page))
237                 return -ENOMEM;
238
239         dma_info->page = page;
240         dma_info->addr = dma_map_page(rq->pdev, page, 0,
241                                       RQ_PAGE_SIZE(rq), rq->buff.map_dir);
242         if (unlikely(dma_mapping_error(rq->pdev, dma_info->addr))) {
243                 put_page(page);
244                 return -ENOMEM;
245         }
246
247         return 0;
248 }
249
250 void mlx5e_page_release(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info,
251                         bool recycle)
252 {
253         if (likely(recycle) && mlx5e_rx_cache_put(rq, dma_info))
254                 return;
255
256         dma_unmap_page(rq->pdev, dma_info->addr, RQ_PAGE_SIZE(rq),
257                        rq->buff.map_dir);
258         put_page(dma_info->page);
259 }
260
261 int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix)
262 {
263         struct mlx5e_dma_info *di = &rq->dma_info[ix];
264
265         if (unlikely(mlx5e_page_alloc_mapped(rq, di)))
266                 return -ENOMEM;
267
268         wqe->data.addr = cpu_to_be64(di->addr + rq->rx_headroom);
269         return 0;
270 }
271
272 void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix)
273 {
274         struct mlx5e_dma_info *di = &rq->dma_info[ix];
275
276         mlx5e_page_release(rq, di, true);
277 }
278
279 static inline int mlx5e_mpwqe_strides_per_page(struct mlx5e_rq *rq)
280 {
281         return rq->mpwqe_num_strides >> MLX5_MPWRQ_WQE_PAGE_ORDER;
282 }
283
284 static inline void mlx5e_add_skb_frag_mpwqe(struct mlx5e_rq *rq,
285                                             struct sk_buff *skb,
286                                             struct mlx5e_mpw_info *wi,
287                                             u32 page_idx, u32 frag_offset,
288                                             u32 len)
289 {
290         unsigned int truesize = ALIGN(len, rq->mpwqe_stride_sz);
291
292         dma_sync_single_for_cpu(rq->pdev,
293                                 wi->umr.dma_info[page_idx].addr + frag_offset,
294                                 len, DMA_FROM_DEVICE);
295         wi->skbs_frags[page_idx]++;
296         skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
297                         wi->umr.dma_info[page_idx].page, frag_offset,
298                         len, truesize);
299 }
300
301 static inline void
302 mlx5e_copy_skb_header_mpwqe(struct device *pdev,
303                             struct sk_buff *skb,
304                             struct mlx5e_mpw_info *wi,
305                             u32 page_idx, u32 offset,
306                             u32 headlen)
307 {
308         u16 headlen_pg = min_t(u32, headlen, PAGE_SIZE - offset);
309         struct mlx5e_dma_info *dma_info = &wi->umr.dma_info[page_idx];
310         unsigned int len;
311
312          /* Aligning len to sizeof(long) optimizes memcpy performance */
313         len = ALIGN(headlen_pg, sizeof(long));
314         dma_sync_single_for_cpu(pdev, dma_info->addr + offset, len,
315                                 DMA_FROM_DEVICE);
316         skb_copy_to_linear_data_offset(skb, 0,
317                                        page_address(dma_info->page) + offset,
318                                        len);
319         if (unlikely(offset + headlen > PAGE_SIZE)) {
320                 dma_info++;
321                 headlen_pg = len;
322                 len = ALIGN(headlen - headlen_pg, sizeof(long));
323                 dma_sync_single_for_cpu(pdev, dma_info->addr, len,
324                                         DMA_FROM_DEVICE);
325                 skb_copy_to_linear_data_offset(skb, headlen_pg,
326                                                page_address(dma_info->page),
327                                                len);
328         }
329 }
330
331 static inline void mlx5e_post_umr_wqe(struct mlx5e_rq *rq, u16 ix)
332 {
333         struct mlx5e_mpw_info *wi = &rq->mpwqe.info[ix];
334         struct mlx5e_sq *sq = &rq->channel->icosq;
335         struct mlx5_wq_cyc *wq = &sq->wq;
336         struct mlx5e_umr_wqe *wqe;
337         u8 num_wqebbs = DIV_ROUND_UP(sizeof(*wqe), MLX5_SEND_WQE_BB);
338         u16 pi;
339
340         /* fill sq edge with nops to avoid wqe wrap around */
341         while ((pi = (sq->pc & wq->sz_m1)) > sq->edge) {
342                 sq->db.ico_wqe[pi].opcode = MLX5_OPCODE_NOP;
343                 sq->db.ico_wqe[pi].num_wqebbs = 1;
344                 mlx5e_send_nop(sq, false);
345         }
346
347         wqe = mlx5_wq_cyc_get_wqe(wq, pi);
348         memcpy(wqe, &wi->umr.wqe, sizeof(*wqe));
349         wqe->ctrl.opmod_idx_opcode =
350                 cpu_to_be32((sq->pc << MLX5_WQE_CTRL_WQE_INDEX_SHIFT) |
351                             MLX5_OPCODE_UMR);
352
353         sq->db.ico_wqe[pi].opcode = MLX5_OPCODE_UMR;
354         sq->db.ico_wqe[pi].num_wqebbs = num_wqebbs;
355         sq->pc += num_wqebbs;
356         mlx5e_tx_notify_hw(sq, &wqe->ctrl, 0);
357 }
358
359 static int mlx5e_alloc_rx_umr_mpwqe(struct mlx5e_rq *rq,
360                                     struct mlx5e_rx_wqe *wqe,
361                                     u16 ix)
362 {
363         struct mlx5e_mpw_info *wi = &rq->mpwqe.info[ix];
364         u64 dma_offset = (u64)mlx5e_get_wqe_mtt_offset(rq, ix) << PAGE_SHIFT;
365         int pg_strides = mlx5e_mpwqe_strides_per_page(rq);
366         int err;
367         int i;
368
369         for (i = 0; i < MLX5_MPWRQ_PAGES_PER_WQE; i++) {
370                 struct mlx5e_dma_info *dma_info = &wi->umr.dma_info[i];
371
372                 err = mlx5e_page_alloc_mapped(rq, dma_info);
373                 if (unlikely(err))
374                         goto err_unmap;
375                 wi->umr.mtt[i] = cpu_to_be64(dma_info->addr | MLX5_EN_WR);
376                 page_ref_add(dma_info->page, pg_strides);
377                 wi->skbs_frags[i] = 0;
378         }
379
380         wi->consumed_strides = 0;
381         wqe->data.addr = cpu_to_be64(dma_offset);
382
383         return 0;
384
385 err_unmap:
386         while (--i >= 0) {
387                 struct mlx5e_dma_info *dma_info = &wi->umr.dma_info[i];
388
389                 page_ref_sub(dma_info->page, pg_strides);
390                 mlx5e_page_release(rq, dma_info, true);
391         }
392
393         return err;
394 }
395
396 void mlx5e_free_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi)
397 {
398         int pg_strides = mlx5e_mpwqe_strides_per_page(rq);
399         int i;
400
401         for (i = 0; i < MLX5_MPWRQ_PAGES_PER_WQE; i++) {
402                 struct mlx5e_dma_info *dma_info = &wi->umr.dma_info[i];
403
404                 page_ref_sub(dma_info->page, pg_strides - wi->skbs_frags[i]);
405                 mlx5e_page_release(rq, dma_info, true);
406         }
407 }
408
409 void mlx5e_post_rx_mpwqe(struct mlx5e_rq *rq)
410 {
411         struct mlx5_wq_ll *wq = &rq->wq;
412         struct mlx5e_rx_wqe *wqe = mlx5_wq_ll_get_wqe(wq, wq->head);
413
414         clear_bit(MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS, &rq->state);
415
416         if (unlikely(!test_bit(MLX5E_RQ_STATE_ENABLED, &rq->state))) {
417                 mlx5e_free_rx_mpwqe(rq, &rq->mpwqe.info[wq->head]);
418                 return;
419         }
420
421         mlx5_wq_ll_push(wq, be16_to_cpu(wqe->next.next_wqe_index));
422
423         /* ensure wqes are visible to device before updating doorbell record */
424         dma_wmb();
425
426         mlx5_wq_ll_update_db_record(wq);
427 }
428
429 int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix)
430 {
431         int err;
432
433         err = mlx5e_alloc_rx_umr_mpwqe(rq, wqe, ix);
434         if (unlikely(err))
435                 return err;
436         set_bit(MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS, &rq->state);
437         mlx5e_post_umr_wqe(rq, ix);
438         return -EBUSY;
439 }
440
441 void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix)
442 {
443         struct mlx5e_mpw_info *wi = &rq->mpwqe.info[ix];
444
445         mlx5e_free_rx_mpwqe(rq, wi);
446 }
447
448 #define RQ_CANNOT_POST(rq) \
449         (!test_bit(MLX5E_RQ_STATE_ENABLED, &rq->state) || \
450          test_bit(MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS, &rq->state))
451
452 bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq)
453 {
454         struct mlx5_wq_ll *wq = &rq->wq;
455
456         if (unlikely(RQ_CANNOT_POST(rq)))
457                 return false;
458
459         while (!mlx5_wq_ll_is_full(wq)) {
460                 struct mlx5e_rx_wqe *wqe = mlx5_wq_ll_get_wqe(wq, wq->head);
461                 int err;
462
463                 err = rq->alloc_wqe(rq, wqe, wq->head);
464                 if (err == -EBUSY)
465                         return true;
466                 if (unlikely(err)) {
467                         rq->stats.buff_alloc_err++;
468                         break;
469                 }
470
471                 mlx5_wq_ll_push(wq, be16_to_cpu(wqe->next.next_wqe_index));
472         }
473
474         /* ensure wqes are visible to device before updating doorbell record */
475         dma_wmb();
476
477         mlx5_wq_ll_update_db_record(wq);
478
479         return !mlx5_wq_ll_is_full(wq);
480 }
481
482 static void mlx5e_lro_update_hdr(struct sk_buff *skb, struct mlx5_cqe64 *cqe,
483                                  u32 cqe_bcnt)
484 {
485         struct ethhdr   *eth = (struct ethhdr *)(skb->data);
486         struct iphdr    *ipv4;
487         struct ipv6hdr  *ipv6;
488         struct tcphdr   *tcp;
489         int network_depth = 0;
490         __be16 proto;
491         u16 tot_len;
492
493         u8 l4_hdr_type = get_cqe_l4_hdr_type(cqe);
494         int tcp_ack = ((CQE_L4_HDR_TYPE_TCP_ACK_NO_DATA  == l4_hdr_type) ||
495                        (CQE_L4_HDR_TYPE_TCP_ACK_AND_DATA == l4_hdr_type));
496
497         skb->mac_len = ETH_HLEN;
498         proto = __vlan_get_protocol(skb, eth->h_proto, &network_depth);
499
500         ipv4 = (struct iphdr *)(skb->data + network_depth);
501         ipv6 = (struct ipv6hdr *)(skb->data + network_depth);
502         tot_len = cqe_bcnt - network_depth;
503
504         if (proto == htons(ETH_P_IP)) {
505                 tcp = (struct tcphdr *)(skb->data + network_depth +
506                                         sizeof(struct iphdr));
507                 ipv6 = NULL;
508                 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
509         } else {
510                 tcp = (struct tcphdr *)(skb->data + network_depth +
511                                         sizeof(struct ipv6hdr));
512                 ipv4 = NULL;
513                 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
514         }
515
516         if (get_cqe_lro_tcppsh(cqe))
517                 tcp->psh                = 1;
518
519         if (tcp_ack) {
520                 tcp->ack                = 1;
521                 tcp->ack_seq            = cqe->lro_ack_seq_num;
522                 tcp->window             = cqe->lro_tcp_win;
523         }
524
525         if (ipv4) {
526                 ipv4->ttl               = cqe->lro_min_ttl;
527                 ipv4->tot_len           = cpu_to_be16(tot_len);
528                 ipv4->check             = 0;
529                 ipv4->check             = ip_fast_csum((unsigned char *)ipv4,
530                                                        ipv4->ihl);
531         } else {
532                 ipv6->hop_limit         = cqe->lro_min_ttl;
533                 ipv6->payload_len       = cpu_to_be16(tot_len -
534                                                       sizeof(struct ipv6hdr));
535         }
536 }
537
538 static inline void mlx5e_skb_set_hash(struct mlx5_cqe64 *cqe,
539                                       struct sk_buff *skb)
540 {
541         u8 cht = cqe->rss_hash_type;
542         int ht = (cht & CQE_RSS_HTYPE_L4) ? PKT_HASH_TYPE_L4 :
543                  (cht & CQE_RSS_HTYPE_IP) ? PKT_HASH_TYPE_L3 :
544                                             PKT_HASH_TYPE_NONE;
545         skb_set_hash(skb, be32_to_cpu(cqe->rss_hash_result), ht);
546 }
547
548 static inline bool is_first_ethertype_ip(struct sk_buff *skb)
549 {
550         __be16 ethertype = ((struct ethhdr *)skb->data)->h_proto;
551
552         return (ethertype == htons(ETH_P_IP) || ethertype == htons(ETH_P_IPV6));
553 }
554
555 static inline void mlx5e_handle_csum(struct net_device *netdev,
556                                      struct mlx5_cqe64 *cqe,
557                                      struct mlx5e_rq *rq,
558                                      struct sk_buff *skb,
559                                      bool   lro)
560 {
561         if (unlikely(!(netdev->features & NETIF_F_RXCSUM)))
562                 goto csum_none;
563
564         if (lro) {
565                 skb->ip_summed = CHECKSUM_UNNECESSARY;
566                 return;
567         }
568
569         if (is_first_ethertype_ip(skb)) {
570                 skb->ip_summed = CHECKSUM_COMPLETE;
571                 skb->csum = csum_unfold((__force __sum16)cqe->check_sum);
572                 rq->stats.csum_complete++;
573                 return;
574         }
575
576         if (likely((cqe->hds_ip_ext & CQE_L3_OK) &&
577                    (cqe->hds_ip_ext & CQE_L4_OK))) {
578                 skb->ip_summed = CHECKSUM_UNNECESSARY;
579                 if (cqe_is_tunneled(cqe)) {
580                         skb->csum_level = 1;
581                         skb->encapsulation = 1;
582                         rq->stats.csum_unnecessary_inner++;
583                 }
584                 return;
585         }
586 csum_none:
587         skb->ip_summed = CHECKSUM_NONE;
588         rq->stats.csum_none++;
589 }
590
591 static inline void mlx5e_build_rx_skb(struct mlx5_cqe64 *cqe,
592                                       u32 cqe_bcnt,
593                                       struct mlx5e_rq *rq,
594                                       struct sk_buff *skb)
595 {
596         struct net_device *netdev = rq->netdev;
597         struct mlx5e_tstamp *tstamp = rq->tstamp;
598         int lro_num_seg;
599
600         lro_num_seg = be32_to_cpu(cqe->srqn) >> 24;
601         if (lro_num_seg > 1) {
602                 mlx5e_lro_update_hdr(skb, cqe, cqe_bcnt);
603                 skb_shinfo(skb)->gso_size = DIV_ROUND_UP(cqe_bcnt, lro_num_seg);
604                 rq->stats.lro_packets++;
605                 rq->stats.lro_bytes += cqe_bcnt;
606         }
607
608         if (unlikely(mlx5e_rx_hw_stamp(tstamp)))
609                 mlx5e_fill_hwstamp(tstamp, get_cqe_ts(cqe), skb_hwtstamps(skb));
610
611         skb_record_rx_queue(skb, rq->ix);
612
613         if (likely(netdev->features & NETIF_F_RXHASH))
614                 mlx5e_skb_set_hash(cqe, skb);
615
616         if (cqe_has_vlan(cqe))
617                 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
618                                        be16_to_cpu(cqe->vlan_info));
619
620         skb->mark = be32_to_cpu(cqe->sop_drop_qpn) & MLX5E_TC_FLOW_ID_MASK;
621
622         mlx5e_handle_csum(netdev, cqe, rq, skb, !!lro_num_seg);
623         skb->protocol = eth_type_trans(skb, netdev);
624 }
625
626 static inline void mlx5e_complete_rx_cqe(struct mlx5e_rq *rq,
627                                          struct mlx5_cqe64 *cqe,
628                                          u32 cqe_bcnt,
629                                          struct sk_buff *skb)
630 {
631         rq->stats.packets++;
632         rq->stats.bytes += cqe_bcnt;
633         mlx5e_build_rx_skb(cqe, cqe_bcnt, rq, skb);
634 }
635
636 static inline void mlx5e_xmit_xdp_doorbell(struct mlx5e_sq *sq)
637 {
638         struct mlx5_wq_cyc *wq = &sq->wq;
639         struct mlx5e_tx_wqe *wqe;
640         u16 pi = (sq->pc - MLX5E_XDP_TX_WQEBBS) & wq->sz_m1; /* last pi */
641
642         wqe  = mlx5_wq_cyc_get_wqe(wq, pi);
643
644         wqe->ctrl.fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
645         mlx5e_tx_notify_hw(sq, &wqe->ctrl, 0);
646 }
647
648 static inline bool mlx5e_xmit_xdp_frame(struct mlx5e_rq *rq,
649                                         struct mlx5e_dma_info *di,
650                                         const struct xdp_buff *xdp)
651 {
652         struct mlx5e_sq          *sq   = &rq->channel->xdp_sq;
653         struct mlx5_wq_cyc       *wq   = &sq->wq;
654         u16                      pi    = sq->pc & wq->sz_m1;
655         struct mlx5e_tx_wqe      *wqe  = mlx5_wq_cyc_get_wqe(wq, pi);
656         struct mlx5e_sq_wqe_info *wi   = &sq->db.xdp.wqe_info[pi];
657
658         struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl;
659         struct mlx5_wqe_eth_seg  *eseg = &wqe->eth;
660         struct mlx5_wqe_data_seg *dseg;
661         u8 ds_cnt = MLX5E_XDP_TX_DS_COUNT;
662
663         ptrdiff_t data_offset = xdp->data - xdp->data_hard_start;
664         dma_addr_t dma_addr  = di->addr + data_offset;
665         unsigned int dma_len = xdp->data_end - xdp->data;
666
667         if (unlikely(dma_len < MLX5E_XDP_MIN_INLINE ||
668                      MLX5E_SW2HW_MTU(rq->netdev->mtu) < dma_len)) {
669                 rq->stats.xdp_drop++;
670                 mlx5e_page_release(rq, di, true);
671                 return false;
672         }
673
674         if (unlikely(!mlx5e_sq_has_room_for(sq, MLX5E_XDP_TX_WQEBBS))) {
675                 if (sq->db.xdp.doorbell) {
676                         /* SQ is full, ring doorbell */
677                         mlx5e_xmit_xdp_doorbell(sq);
678                         sq->db.xdp.doorbell = false;
679                 }
680                 rq->stats.xdp_tx_full++;
681                 mlx5e_page_release(rq, di, true);
682                 return false;
683         }
684
685         dma_sync_single_for_device(sq->pdev, dma_addr, dma_len,
686                                    PCI_DMA_TODEVICE);
687
688         memset(wqe, 0, sizeof(*wqe));
689
690         dseg = (struct mlx5_wqe_data_seg *)eseg + 1;
691         /* copy the inline part if required */
692         if (sq->min_inline_mode != MLX5_INLINE_MODE_NONE) {
693                 memcpy(eseg->inline_hdr.start, xdp->data, MLX5E_XDP_MIN_INLINE);
694                 eseg->inline_hdr.sz = cpu_to_be16(MLX5E_XDP_MIN_INLINE);
695                 dma_len  -= MLX5E_XDP_MIN_INLINE;
696                 dma_addr += MLX5E_XDP_MIN_INLINE;
697
698                 ds_cnt   += MLX5E_XDP_IHS_DS_COUNT;
699                 dseg++;
700         }
701
702         /* write the dma part */
703         dseg->addr       = cpu_to_be64(dma_addr);
704         dseg->byte_count = cpu_to_be32(dma_len);
705         dseg->lkey       = sq->mkey_be;
706
707         cseg->opmod_idx_opcode = cpu_to_be32((sq->pc << 8) | MLX5_OPCODE_SEND);
708         cseg->qpn_ds = cpu_to_be32((sq->sqn << 8) | ds_cnt);
709
710         sq->db.xdp.di[pi] = *di;
711         wi->opcode     = MLX5_OPCODE_SEND;
712         wi->num_wqebbs = MLX5E_XDP_TX_WQEBBS;
713         sq->pc += MLX5E_XDP_TX_WQEBBS;
714
715         sq->db.xdp.doorbell = true;
716         rq->stats.xdp_tx++;
717         return true;
718 }
719
720 /* returns true if packet was consumed by xdp */
721 static inline int mlx5e_xdp_handle(struct mlx5e_rq *rq,
722                                    struct mlx5e_dma_info *di,
723                                    void *va, u16 *rx_headroom, u32 *len)
724 {
725         const struct bpf_prog *prog = READ_ONCE(rq->xdp_prog);
726         struct xdp_buff xdp;
727         u32 act;
728
729         if (!prog)
730                 return false;
731
732         xdp.data = va + *rx_headroom;
733         xdp.data_end = xdp.data + *len;
734         xdp.data_hard_start = va;
735
736         act = bpf_prog_run_xdp(prog, &xdp);
737         switch (act) {
738         case XDP_PASS:
739                 *rx_headroom = xdp.data - xdp.data_hard_start;
740                 *len = xdp.data_end - xdp.data;
741                 return false;
742         case XDP_TX:
743                 if (unlikely(!mlx5e_xmit_xdp_frame(rq, di, &xdp)))
744                         trace_xdp_exception(rq->netdev, prog, act);
745                 return true;
746         default:
747                 bpf_warn_invalid_xdp_action(act);
748         case XDP_ABORTED:
749                 trace_xdp_exception(rq->netdev, prog, act);
750         case XDP_DROP:
751                 rq->stats.xdp_drop++;
752                 mlx5e_page_release(rq, di, true);
753                 return true;
754         }
755 }
756
757 static inline
758 struct sk_buff *skb_from_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
759                              u16 wqe_counter, u32 cqe_bcnt)
760 {
761         struct mlx5e_dma_info *di;
762         struct sk_buff *skb;
763         void *va, *data;
764         u16 rx_headroom = rq->rx_headroom;
765         bool consumed;
766
767         di             = &rq->dma_info[wqe_counter];
768         va             = page_address(di->page);
769         data           = va + rx_headroom;
770
771         dma_sync_single_range_for_cpu(rq->pdev,
772                                       di->addr,
773                                       rx_headroom,
774                                       rq->buff.wqe_sz,
775                                       DMA_FROM_DEVICE);
776         prefetch(data);
777
778         if (unlikely((cqe->op_own >> 4) != MLX5_CQE_RESP_SEND)) {
779                 rq->stats.wqe_err++;
780                 mlx5e_page_release(rq, di, true);
781                 return NULL;
782         }
783
784         rcu_read_lock();
785         consumed = mlx5e_xdp_handle(rq, di, va, &rx_headroom, &cqe_bcnt);
786         rcu_read_unlock();
787         if (consumed)
788                 return NULL; /* page/packet was consumed by XDP */
789
790         skb = build_skb(va, RQ_PAGE_SIZE(rq));
791         if (unlikely(!skb)) {
792                 rq->stats.buff_alloc_err++;
793                 mlx5e_page_release(rq, di, true);
794                 return NULL;
795         }
796
797         /* queue up for recycling ..*/
798         page_ref_inc(di->page);
799         mlx5e_page_release(rq, di, true);
800
801         skb_reserve(skb, rx_headroom);
802         skb_put(skb, cqe_bcnt);
803
804         return skb;
805 }
806
807 void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe)
808 {
809         struct mlx5e_rx_wqe *wqe;
810         __be16 wqe_counter_be;
811         struct sk_buff *skb;
812         u16 wqe_counter;
813         u32 cqe_bcnt;
814
815         wqe_counter_be = cqe->wqe_counter;
816         wqe_counter    = be16_to_cpu(wqe_counter_be);
817         wqe            = mlx5_wq_ll_get_wqe(&rq->wq, wqe_counter);
818         cqe_bcnt       = be32_to_cpu(cqe->byte_cnt);
819
820         skb = skb_from_cqe(rq, cqe, wqe_counter, cqe_bcnt);
821         if (!skb)
822                 goto wq_ll_pop;
823
824         mlx5e_complete_rx_cqe(rq, cqe, cqe_bcnt, skb);
825         napi_gro_receive(rq->cq.napi, skb);
826
827 wq_ll_pop:
828         mlx5_wq_ll_pop(&rq->wq, wqe_counter_be,
829                        &wqe->next.next_wqe_index);
830 }
831
832 void mlx5e_handle_rx_cqe_rep(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe)
833 {
834         struct net_device *netdev = rq->netdev;
835         struct mlx5e_priv *priv = netdev_priv(netdev);
836         struct mlx5_eswitch_rep *rep = priv->ppriv;
837         struct mlx5e_rx_wqe *wqe;
838         struct sk_buff *skb;
839         __be16 wqe_counter_be;
840         u16 wqe_counter;
841         u32 cqe_bcnt;
842
843         wqe_counter_be = cqe->wqe_counter;
844         wqe_counter    = be16_to_cpu(wqe_counter_be);
845         wqe            = mlx5_wq_ll_get_wqe(&rq->wq, wqe_counter);
846         cqe_bcnt       = be32_to_cpu(cqe->byte_cnt);
847
848         skb = skb_from_cqe(rq, cqe, wqe_counter, cqe_bcnt);
849         if (!skb)
850                 goto wq_ll_pop;
851
852         mlx5e_complete_rx_cqe(rq, cqe, cqe_bcnt, skb);
853
854         if (rep->vlan && skb_vlan_tag_present(skb))
855                 skb_vlan_pop(skb);
856
857         napi_gro_receive(rq->cq.napi, skb);
858
859 wq_ll_pop:
860         mlx5_wq_ll_pop(&rq->wq, wqe_counter_be,
861                        &wqe->next.next_wqe_index);
862 }
863
864 static inline void mlx5e_mpwqe_fill_rx_skb(struct mlx5e_rq *rq,
865                                            struct mlx5_cqe64 *cqe,
866                                            struct mlx5e_mpw_info *wi,
867                                            u32 cqe_bcnt,
868                                            struct sk_buff *skb)
869 {
870         u16 stride_ix      = mpwrq_get_cqe_stride_index(cqe);
871         u32 wqe_offset     = stride_ix * rq->mpwqe_stride_sz;
872         u32 head_offset    = wqe_offset & (PAGE_SIZE - 1);
873         u32 page_idx       = wqe_offset >> PAGE_SHIFT;
874         u32 head_page_idx  = page_idx;
875         u16 headlen = min_t(u16, MLX5_MPWRQ_SMALL_PACKET_THRESHOLD, cqe_bcnt);
876         u32 frag_offset    = head_offset + headlen;
877         u16 byte_cnt       = cqe_bcnt - headlen;
878
879         if (unlikely(frag_offset >= PAGE_SIZE)) {
880                 page_idx++;
881                 frag_offset -= PAGE_SIZE;
882         }
883
884         while (byte_cnt) {
885                 u32 pg_consumed_bytes =
886                         min_t(u32, PAGE_SIZE - frag_offset, byte_cnt);
887
888                 mlx5e_add_skb_frag_mpwqe(rq, skb, wi, page_idx, frag_offset,
889                                          pg_consumed_bytes);
890                 byte_cnt -= pg_consumed_bytes;
891                 frag_offset = 0;
892                 page_idx++;
893         }
894         /* copy header */
895         mlx5e_copy_skb_header_mpwqe(rq->pdev, skb, wi, head_page_idx,
896                                     head_offset, headlen);
897         /* skb linear part was allocated with headlen and aligned to long */
898         skb->tail += headlen;
899         skb->len  += headlen;
900 }
901
902 void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe)
903 {
904         u16 cstrides       = mpwrq_get_cqe_consumed_strides(cqe);
905         u16 wqe_id         = be16_to_cpu(cqe->wqe_id);
906         struct mlx5e_mpw_info *wi = &rq->mpwqe.info[wqe_id];
907         struct mlx5e_rx_wqe  *wqe = mlx5_wq_ll_get_wqe(&rq->wq, wqe_id);
908         struct sk_buff *skb;
909         u16 cqe_bcnt;
910
911         wi->consumed_strides += cstrides;
912
913         if (unlikely((cqe->op_own >> 4) != MLX5_CQE_RESP_SEND)) {
914                 rq->stats.wqe_err++;
915                 goto mpwrq_cqe_out;
916         }
917
918         if (unlikely(mpwrq_is_filler_cqe(cqe))) {
919                 rq->stats.mpwqe_filler++;
920                 goto mpwrq_cqe_out;
921         }
922
923         skb = napi_alloc_skb(rq->cq.napi,
924                              ALIGN(MLX5_MPWRQ_SMALL_PACKET_THRESHOLD,
925                                    sizeof(long)));
926         if (unlikely(!skb)) {
927                 rq->stats.buff_alloc_err++;
928                 goto mpwrq_cqe_out;
929         }
930
931         prefetch(skb->data);
932         cqe_bcnt = mpwrq_get_cqe_byte_cnt(cqe);
933
934         mlx5e_mpwqe_fill_rx_skb(rq, cqe, wi, cqe_bcnt, skb);
935         mlx5e_complete_rx_cqe(rq, cqe, cqe_bcnt, skb);
936         napi_gro_receive(rq->cq.napi, skb);
937
938 mpwrq_cqe_out:
939         if (likely(wi->consumed_strides < rq->mpwqe_num_strides))
940                 return;
941
942         mlx5e_free_rx_mpwqe(rq, wi);
943         mlx5_wq_ll_pop(&rq->wq, cqe->wqe_id, &wqe->next.next_wqe_index);
944 }
945
946 int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget)
947 {
948         struct mlx5e_rq *rq = container_of(cq, struct mlx5e_rq, cq);
949         struct mlx5e_sq *xdp_sq = &rq->channel->xdp_sq;
950         int work_done = 0;
951
952         if (unlikely(!test_bit(MLX5E_RQ_STATE_ENABLED, &rq->state)))
953                 return 0;
954
955         if (cq->decmprs_left)
956                 work_done += mlx5e_decompress_cqes_cont(rq, cq, 0, budget);
957
958         for (; work_done < budget; work_done++) {
959                 struct mlx5_cqe64 *cqe = mlx5e_get_cqe(cq);
960
961                 if (!cqe)
962                         break;
963
964                 if (mlx5_get_cqe_format(cqe) == MLX5_COMPRESSED) {
965                         work_done +=
966                                 mlx5e_decompress_cqes_start(rq, cq,
967                                                             budget - work_done);
968                         continue;
969                 }
970
971                 mlx5_cqwq_pop(&cq->wq);
972
973                 rq->handle_rx_cqe(rq, cqe);
974         }
975
976         if (xdp_sq->db.xdp.doorbell) {
977                 mlx5e_xmit_xdp_doorbell(xdp_sq);
978                 xdp_sq->db.xdp.doorbell = false;
979         }
980
981         mlx5_cqwq_update_db_record(&cq->wq);
982
983         /* ensure cq space is freed before enabling more cqes */
984         wmb();
985
986         return work_done;
987 }