net/mlx5e: Refactor XDP counters
[sfrench/cifs-2.6.git] / drivers / net / ethernet / mellanox / mlx5 / core / en / xdp.c
1 /*
2  * Copyright (c) 2018, 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/bpf_trace.h>
34 #include "en/xdp.h"
35
36 static inline bool
37 mlx5e_xmit_xdp_buff(struct mlx5e_xdpsq *sq, struct mlx5e_dma_info *di,
38                     struct xdp_buff *xdp)
39 {
40         struct mlx5e_xdp_info xdpi;
41
42         xdpi.xdpf = convert_to_xdp_frame(xdp);
43         if (unlikely(!xdpi.xdpf))
44                 return false;
45         xdpi.dma_addr = di->addr + (xdpi.xdpf->data - (void *)xdpi.xdpf);
46         dma_sync_single_for_device(sq->pdev, xdpi.dma_addr,
47                                    xdpi.xdpf->len, PCI_DMA_TODEVICE);
48         xdpi.di = *di;
49
50         return mlx5e_xmit_xdp_frame(sq, &xdpi);
51 }
52
53 /* returns true if packet was consumed by xdp */
54 bool mlx5e_xdp_handle(struct mlx5e_rq *rq, struct mlx5e_dma_info *di,
55                       void *va, u16 *rx_headroom, u32 *len)
56 {
57         struct bpf_prog *prog = READ_ONCE(rq->xdp_prog);
58         struct xdp_buff xdp;
59         u32 act;
60         int err;
61
62         if (!prog)
63                 return false;
64
65         xdp.data = va + *rx_headroom;
66         xdp_set_data_meta_invalid(&xdp);
67         xdp.data_end = xdp.data + *len;
68         xdp.data_hard_start = va;
69         xdp.rxq = &rq->xdp_rxq;
70
71         act = bpf_prog_run_xdp(prog, &xdp);
72         switch (act) {
73         case XDP_PASS:
74                 *rx_headroom = xdp.data - xdp.data_hard_start;
75                 *len = xdp.data_end - xdp.data;
76                 return false;
77         case XDP_TX:
78                 if (unlikely(!mlx5e_xmit_xdp_buff(&rq->xdpsq, di, &xdp)))
79                         goto xdp_abort;
80                 __set_bit(MLX5E_RQ_FLAG_XDP_XMIT, rq->flags); /* non-atomic */
81                 return true;
82         case XDP_REDIRECT:
83                 /* When XDP enabled then page-refcnt==1 here */
84                 err = xdp_do_redirect(rq->netdev, &xdp, prog);
85                 if (unlikely(err))
86                         goto xdp_abort;
87                 __set_bit(MLX5E_RQ_FLAG_XDP_XMIT, rq->flags);
88                 rq->xdpsq.db.redirect_flush = true;
89                 mlx5e_page_dma_unmap(rq, di);
90                 rq->stats->xdp_redirect++;
91                 return true;
92         default:
93                 bpf_warn_invalid_xdp_action(act);
94         case XDP_ABORTED:
95 xdp_abort:
96                 trace_xdp_exception(rq->netdev, prog, act);
97         case XDP_DROP:
98                 rq->stats->xdp_drop++;
99                 return true;
100         }
101 }
102
103 bool mlx5e_xmit_xdp_frame(struct mlx5e_xdpsq *sq, struct mlx5e_xdp_info *xdpi)
104 {
105         struct mlx5_wq_cyc       *wq   = &sq->wq;
106         u16                       pi   = mlx5_wq_cyc_ctr2ix(wq, sq->pc);
107         struct mlx5e_tx_wqe      *wqe  = mlx5_wq_cyc_get_wqe(wq, pi);
108
109         struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl;
110         struct mlx5_wqe_eth_seg  *eseg = &wqe->eth;
111         struct mlx5_wqe_data_seg *dseg = wqe->data;
112
113         struct xdp_frame *xdpf = xdpi->xdpf;
114         dma_addr_t dma_addr  = xdpi->dma_addr;
115         unsigned int dma_len = xdpf->len;
116
117         struct mlx5e_xdpsq_stats *stats = sq->stats;
118
119         prefetchw(wqe);
120
121         if (unlikely(dma_len < MLX5E_XDP_MIN_INLINE || sq->hw_mtu < dma_len)) {
122                 stats->err++;
123                 return false;
124         }
125
126         if (unlikely(!mlx5e_wqc_has_room_for(wq, sq->cc, sq->pc, 1))) {
127                 if (sq->db.doorbell) {
128                         /* SQ is full, ring doorbell */
129                         mlx5e_xmit_xdp_doorbell(sq);
130                         sq->db.doorbell = false;
131                 }
132                 stats->full++;
133                 return false;
134         }
135
136         cseg->fm_ce_se = 0;
137
138         /* copy the inline part if required */
139         if (sq->min_inline_mode != MLX5_INLINE_MODE_NONE) {
140                 memcpy(eseg->inline_hdr.start, xdpf->data, MLX5E_XDP_MIN_INLINE);
141                 eseg->inline_hdr.sz = cpu_to_be16(MLX5E_XDP_MIN_INLINE);
142                 dma_len  -= MLX5E_XDP_MIN_INLINE;
143                 dma_addr += MLX5E_XDP_MIN_INLINE;
144                 dseg++;
145         }
146
147         /* write the dma part */
148         dseg->addr       = cpu_to_be64(dma_addr);
149         dseg->byte_count = cpu_to_be32(dma_len);
150
151         cseg->opmod_idx_opcode = cpu_to_be32((sq->pc << 8) | MLX5_OPCODE_SEND);
152
153         /* move page to reference to sq responsibility,
154          * and mark so it's not put back in page-cache.
155          */
156         sq->db.xdpi[pi] = *xdpi;
157         sq->pc++;
158
159         sq->db.doorbell = true;
160
161         stats->xmit++;
162         return true;
163 }
164
165 bool mlx5e_poll_xdpsq_cq(struct mlx5e_cq *cq)
166 {
167         struct mlx5e_xdpsq *sq;
168         struct mlx5_cqe64 *cqe;
169         struct mlx5e_rq *rq;
170         u16 sqcc;
171         int i;
172
173         sq = container_of(cq, struct mlx5e_xdpsq, cq);
174
175         if (unlikely(!test_bit(MLX5E_SQ_STATE_ENABLED, &sq->state)))
176                 return false;
177
178         cqe = mlx5_cqwq_get_cqe(&cq->wq);
179         if (!cqe)
180                 return false;
181
182         rq = container_of(sq, struct mlx5e_rq, xdpsq);
183
184         /* sq->cc must be updated only after mlx5_cqwq_update_db_record(),
185          * otherwise a cq overrun may occur
186          */
187         sqcc = sq->cc;
188
189         i = 0;
190         do {
191                 u16 wqe_counter;
192                 bool last_wqe;
193
194                 mlx5_cqwq_pop(&cq->wq);
195
196                 wqe_counter = be16_to_cpu(cqe->wqe_counter);
197
198                 do {
199                         struct mlx5e_xdp_info *xdpi;
200                         u16 ci;
201
202                         last_wqe = (sqcc == wqe_counter);
203
204                         ci = mlx5_wq_cyc_ctr2ix(&sq->wq, sqcc);
205                         xdpi = &sq->db.xdpi[ci];
206
207                         sqcc++;
208                         /* Recycle RX page */
209                         mlx5e_page_release(rq, &xdpi->di, true);
210                 } while (!last_wqe);
211         } while ((++i < MLX5E_TX_CQ_POLL_BUDGET) && (cqe = mlx5_cqwq_get_cqe(&cq->wq)));
212
213         sq->stats->cqes += i;
214
215         mlx5_cqwq_update_db_record(&cq->wq);
216
217         /* ensure cq space is freed before enabling more cqes */
218         wmb();
219
220         sq->cc = sqcc;
221         return (i == MLX5E_TX_CQ_POLL_BUDGET);
222 }
223
224 void mlx5e_free_xdpsq_descs(struct mlx5e_xdpsq *sq)
225 {
226         struct mlx5e_rq *rq = container_of(sq, struct mlx5e_rq, xdpsq);
227         struct mlx5e_xdp_info *xdpi;
228         u16 ci;
229
230         while (sq->cc != sq->pc) {
231                 ci = mlx5_wq_cyc_ctr2ix(&sq->wq, sq->cc);
232                 xdpi = &sq->db.xdpi[ci];
233                 sq->cc++;
234
235                 mlx5e_page_release(rq, &xdpi->di, false);
236         }
237 }
238