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/dim.h>
34 #include <net/tc_act/tc_gact.h>
35 #include <linux/mlx5/fs.h>
36 #include <net/vxlan.h>
37 #include <net/geneve.h>
38 #include <linux/bpf.h>
39 #include <linux/debugfs.h>
40 #include <linux/if_bridge.h>
41 #include <linux/filter.h>
42 #include <net/netdev_queues.h>
43 #include <net/page_pool/types.h>
44 #include <net/pkt_sched.h>
45 #include <net/xdp_sock_drv.h>
46 #include "eswitch.h"
47 #include "en.h"
48 #include "en/dim.h"
49 #include "en/txrx.h"
50 #include "en_tc.h"
51 #include "en_rep.h"
52 #include "en_accel/ipsec.h"
53 #include "en_accel/macsec.h"
54 #include "en_accel/en_accel.h"
55 #include "en_accel/ktls.h"
56 #include "lib/vxlan.h"
57 #include "lib/clock.h"
58 #include "en/port.h"
59 #include "en/xdp.h"
60 #include "lib/eq.h"
61 #include "en/monitor_stats.h"
62 #include "en/health.h"
63 #include "en/params.h"
64 #include "en/xsk/pool.h"
65 #include "en/xsk/setup.h"
66 #include "en/xsk/rx.h"
67 #include "en/xsk/tx.h"
68 #include "en/hv_vhca_stats.h"
69 #include "en/devlink.h"
70 #include "lib/mlx5.h"
71 #include "en/ptp.h"
72 #include "en/htb.h"
73 #include "qos.h"
74 #include "en/trap.h"
75 #include "lib/devcom.h"
76 #include "lib/sd.h"
77
mlx5e_hw_gro_supported(struct mlx5_core_dev * mdev)78 static bool mlx5e_hw_gro_supported(struct mlx5_core_dev *mdev)
79 {
80 if (!MLX5_CAP_GEN(mdev, shampo))
81 return false;
82
83 /* Our HW-GRO implementation relies on "KSM Mkey" for
84 * SHAMPO headers buffer mapping
85 */
86 if (!MLX5_CAP_GEN(mdev, fixed_buffer_size))
87 return false;
88
89 if (!MLX5_CAP_GEN_2(mdev, min_mkey_log_entity_size_fixed_buffer_valid))
90 return false;
91
92 if (MLX5_CAP_GEN_2(mdev, min_mkey_log_entity_size_fixed_buffer) >
93 MLX5E_SHAMPO_LOG_HEADER_ENTRY_SIZE)
94 return false;
95
96 return true;
97 }
98
mlx5e_check_fragmented_striding_rq_cap(struct mlx5_core_dev * mdev,u8 page_shift,enum mlx5e_mpwrq_umr_mode umr_mode)99 bool mlx5e_check_fragmented_striding_rq_cap(struct mlx5_core_dev *mdev, u8 page_shift,
100 enum mlx5e_mpwrq_umr_mode umr_mode)
101 {
102 u16 umr_wqebbs, max_wqebbs;
103 bool striding_rq_umr;
104
105 striding_rq_umr = MLX5_CAP_GEN(mdev, striding_rq) && MLX5_CAP_GEN(mdev, umr_ptr_rlky) &&
106 MLX5_CAP_ETH(mdev, reg_umr_sq);
107 if (!striding_rq_umr)
108 return false;
109
110 umr_wqebbs = mlx5e_mpwrq_umr_wqebbs(mdev, page_shift, umr_mode);
111 max_wqebbs = mlx5e_get_max_sq_aligned_wqebbs(mdev);
112 /* Sanity check; should never happen, because mlx5e_mpwrq_umr_wqebbs is
113 * calculated from mlx5e_get_max_sq_aligned_wqebbs.
114 */
115 if (WARN_ON(umr_wqebbs > max_wqebbs))
116 return false;
117
118 return true;
119 }
120
mlx5e_update_carrier(struct mlx5e_priv * priv)121 void mlx5e_update_carrier(struct mlx5e_priv *priv)
122 {
123 struct mlx5_core_dev *mdev = priv->mdev;
124 u8 port_state;
125 bool up;
126
127 port_state = mlx5_query_vport_state(mdev,
128 MLX5_VPORT_STATE_OP_MOD_VNIC_VPORT,
129 0);
130
131 up = port_state == VPORT_STATE_UP;
132 if (up == netif_carrier_ok(priv->netdev))
133 netif_carrier_event(priv->netdev);
134 if (up) {
135 netdev_info(priv->netdev, "Link up\n");
136 netif_carrier_on(priv->netdev);
137 } else {
138 netdev_info(priv->netdev, "Link down\n");
139 netif_carrier_off(priv->netdev);
140 }
141 }
142
mlx5e_update_carrier_work(struct work_struct * work)143 static void mlx5e_update_carrier_work(struct work_struct *work)
144 {
145 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
146 update_carrier_work);
147
148 mutex_lock(&priv->state_lock);
149 if (test_bit(MLX5E_STATE_OPENED, &priv->state))
150 if (priv->profile->update_carrier)
151 priv->profile->update_carrier(priv);
152 mutex_unlock(&priv->state_lock);
153 }
154
mlx5e_update_stats_work(struct work_struct * work)155 static void mlx5e_update_stats_work(struct work_struct *work)
156 {
157 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
158 update_stats_work);
159
160 mutex_lock(&priv->state_lock);
161 priv->profile->update_stats(priv);
162 mutex_unlock(&priv->state_lock);
163 }
164
mlx5e_queue_update_stats(struct mlx5e_priv * priv)165 void mlx5e_queue_update_stats(struct mlx5e_priv *priv)
166 {
167 if (!priv->profile->update_stats)
168 return;
169
170 if (unlikely(test_bit(MLX5E_STATE_DESTROYING, &priv->state)))
171 return;
172
173 queue_work(priv->wq, &priv->update_stats_work);
174 }
175
async_event(struct notifier_block * nb,unsigned long event,void * data)176 static int async_event(struct notifier_block *nb, unsigned long event, void *data)
177 {
178 struct mlx5e_priv *priv = container_of(nb, struct mlx5e_priv, events_nb);
179 struct mlx5_eqe *eqe = data;
180
181 if (event != MLX5_EVENT_TYPE_PORT_CHANGE)
182 return NOTIFY_DONE;
183
184 switch (eqe->sub_type) {
185 case MLX5_PORT_CHANGE_SUBTYPE_DOWN:
186 case MLX5_PORT_CHANGE_SUBTYPE_ACTIVE:
187 queue_work(priv->wq, &priv->update_carrier_work);
188 break;
189 default:
190 return NOTIFY_DONE;
191 }
192
193 return NOTIFY_OK;
194 }
195
mlx5e_enable_async_events(struct mlx5e_priv * priv)196 static void mlx5e_enable_async_events(struct mlx5e_priv *priv)
197 {
198 priv->events_nb.notifier_call = async_event;
199 mlx5_notifier_register(priv->mdev, &priv->events_nb);
200 }
201
mlx5e_disable_async_events(struct mlx5e_priv * priv)202 static void mlx5e_disable_async_events(struct mlx5e_priv *priv)
203 {
204 mlx5_notifier_unregister(priv->mdev, &priv->events_nb);
205 }
206
mlx5e_devcom_event_mpv(int event,void * my_data,void * event_data)207 static int mlx5e_devcom_event_mpv(int event, void *my_data, void *event_data)
208 {
209 struct mlx5e_priv *slave_priv = my_data;
210
211 switch (event) {
212 case MPV_DEVCOM_MASTER_UP:
213 mlx5_devcom_comp_set_ready(slave_priv->devcom, true);
214 break;
215 case MPV_DEVCOM_MASTER_DOWN:
216 /* no need for comp set ready false since we unregister after
217 * and it hurts cleanup flow.
218 */
219 break;
220 case MPV_DEVCOM_IPSEC_MASTER_UP:
221 case MPV_DEVCOM_IPSEC_MASTER_DOWN:
222 mlx5e_ipsec_handle_mpv_event(event, my_data, event_data);
223 break;
224 }
225
226 return 0;
227 }
228
mlx5e_devcom_init_mpv(struct mlx5e_priv * priv,u64 * data)229 static int mlx5e_devcom_init_mpv(struct mlx5e_priv *priv, u64 *data)
230 {
231 priv->devcom = mlx5_devcom_register_component(priv->mdev->priv.devc,
232 MLX5_DEVCOM_MPV,
233 *data,
234 mlx5e_devcom_event_mpv,
235 priv);
236 if (IS_ERR(priv->devcom))
237 return PTR_ERR(priv->devcom);
238
239 if (mlx5_core_is_mp_master(priv->mdev)) {
240 mlx5_devcom_send_event(priv->devcom, MPV_DEVCOM_MASTER_UP,
241 MPV_DEVCOM_MASTER_UP, priv);
242 mlx5e_ipsec_send_event(priv, MPV_DEVCOM_IPSEC_MASTER_UP);
243 }
244
245 return 0;
246 }
247
mlx5e_devcom_cleanup_mpv(struct mlx5e_priv * priv)248 static void mlx5e_devcom_cleanup_mpv(struct mlx5e_priv *priv)
249 {
250 if (IS_ERR_OR_NULL(priv->devcom))
251 return;
252
253 if (mlx5_core_is_mp_master(priv->mdev)) {
254 mlx5_devcom_send_event(priv->devcom, MPV_DEVCOM_MASTER_DOWN,
255 MPV_DEVCOM_MASTER_DOWN, priv);
256 mlx5e_ipsec_send_event(priv, MPV_DEVCOM_IPSEC_MASTER_DOWN);
257 }
258
259 mlx5_devcom_unregister_component(priv->devcom);
260 }
261
blocking_event(struct notifier_block * nb,unsigned long event,void * data)262 static int blocking_event(struct notifier_block *nb, unsigned long event, void *data)
263 {
264 struct mlx5e_priv *priv = container_of(nb, struct mlx5e_priv, blocking_events_nb);
265 struct mlx5_devlink_trap_event_ctx *trap_event_ctx = data;
266 int err;
267
268 switch (event) {
269 case MLX5_DRIVER_EVENT_TYPE_TRAP:
270 err = mlx5e_handle_trap_event(priv, trap_event_ctx->trap);
271 if (err) {
272 trap_event_ctx->err = err;
273 return NOTIFY_BAD;
274 }
275 break;
276 case MLX5_DRIVER_EVENT_AFFILIATION_DONE:
277 if (mlx5e_devcom_init_mpv(priv, data))
278 return NOTIFY_BAD;
279 break;
280 case MLX5_DRIVER_EVENT_AFFILIATION_REMOVED:
281 mlx5e_devcom_cleanup_mpv(priv);
282 break;
283 default:
284 return NOTIFY_DONE;
285 }
286 return NOTIFY_OK;
287 }
288
mlx5e_enable_blocking_events(struct mlx5e_priv * priv)289 static void mlx5e_enable_blocking_events(struct mlx5e_priv *priv)
290 {
291 priv->blocking_events_nb.notifier_call = blocking_event;
292 mlx5_blocking_notifier_register(priv->mdev, &priv->blocking_events_nb);
293 }
294
mlx5e_disable_blocking_events(struct mlx5e_priv * priv)295 static void mlx5e_disable_blocking_events(struct mlx5e_priv *priv)
296 {
297 mlx5_blocking_notifier_unregister(priv->mdev, &priv->blocking_events_nb);
298 }
299
mlx5e_mpwrq_umr_octowords(u32 entries,enum mlx5e_mpwrq_umr_mode umr_mode)300 static u16 mlx5e_mpwrq_umr_octowords(u32 entries, enum mlx5e_mpwrq_umr_mode umr_mode)
301 {
302 u8 umr_entry_size = mlx5e_mpwrq_umr_entry_size(umr_mode);
303 u32 sz;
304
305 sz = ALIGN(entries * umr_entry_size, MLX5_UMR_FLEX_ALIGNMENT);
306
307 return sz / MLX5_OCTWORD;
308 }
309
mlx5e_build_umr_wqe(struct mlx5e_rq * rq,struct mlx5e_icosq * sq,struct mlx5e_umr_wqe * wqe)310 static inline void mlx5e_build_umr_wqe(struct mlx5e_rq *rq,
311 struct mlx5e_icosq *sq,
312 struct mlx5e_umr_wqe *wqe)
313 {
314 struct mlx5_wqe_ctrl_seg *cseg = &wqe->hdr.ctrl;
315 struct mlx5_wqe_umr_ctrl_seg *ucseg = &wqe->hdr.uctrl;
316 u16 octowords;
317 u8 ds_cnt;
318
319 ds_cnt = DIV_ROUND_UP(mlx5e_mpwrq_umr_wqe_sz(rq->mdev, rq->mpwqe.page_shift,
320 rq->mpwqe.umr_mode),
321 MLX5_SEND_WQE_DS);
322
323 cseg->qpn_ds = cpu_to_be32((sq->sqn << MLX5_WQE_CTRL_QPN_SHIFT) |
324 ds_cnt);
325 cseg->umr_mkey = rq->mpwqe.umr_mkey_be;
326
327 ucseg->flags = MLX5_UMR_TRANSLATION_OFFSET_EN | MLX5_UMR_INLINE;
328 octowords = mlx5e_mpwrq_umr_octowords(rq->mpwqe.pages_per_wqe, rq->mpwqe.umr_mode);
329 ucseg->xlt_octowords = cpu_to_be16(octowords);
330 ucseg->mkey_mask = cpu_to_be64(MLX5_MKEY_MASK_FREE);
331 }
332
mlx5e_rq_shampo_hd_alloc(struct mlx5e_rq * rq,int node)333 static int mlx5e_rq_shampo_hd_alloc(struct mlx5e_rq *rq, int node)
334 {
335 rq->mpwqe.shampo = kvzalloc_node(sizeof(*rq->mpwqe.shampo),
336 GFP_KERNEL, node);
337 if (!rq->mpwqe.shampo)
338 return -ENOMEM;
339 return 0;
340 }
341
mlx5e_rq_shampo_hd_free(struct mlx5e_rq * rq)342 static void mlx5e_rq_shampo_hd_free(struct mlx5e_rq *rq)
343 {
344 kvfree(rq->mpwqe.shampo);
345 }
346
mlx5e_rq_shampo_hd_info_alloc(struct mlx5e_rq * rq,int node)347 static int mlx5e_rq_shampo_hd_info_alloc(struct mlx5e_rq *rq, int node)
348 {
349 struct mlx5e_shampo_hd *shampo = rq->mpwqe.shampo;
350
351 shampo->bitmap = bitmap_zalloc_node(shampo->hd_per_wq, GFP_KERNEL,
352 node);
353 shampo->pages = kvzalloc_node(array_size(shampo->hd_per_wq,
354 sizeof(*shampo->pages)),
355 GFP_KERNEL, node);
356 if (!shampo->bitmap || !shampo->pages)
357 goto err_nomem;
358
359 return 0;
360
361 err_nomem:
362 bitmap_free(shampo->bitmap);
363 kvfree(shampo->pages);
364
365 return -ENOMEM;
366 }
367
mlx5e_rq_shampo_hd_info_free(struct mlx5e_rq * rq)368 static void mlx5e_rq_shampo_hd_info_free(struct mlx5e_rq *rq)
369 {
370 bitmap_free(rq->mpwqe.shampo->bitmap);
371 kvfree(rq->mpwqe.shampo->pages);
372 }
373
mlx5e_rq_alloc_mpwqe_info(struct mlx5e_rq * rq,int node)374 static int mlx5e_rq_alloc_mpwqe_info(struct mlx5e_rq *rq, int node)
375 {
376 int wq_sz = mlx5_wq_ll_get_size(&rq->mpwqe.wq);
377 size_t alloc_size;
378
379 alloc_size = array_size(wq_sz, struct_size(rq->mpwqe.info,
380 alloc_units.frag_pages,
381 rq->mpwqe.pages_per_wqe));
382
383 rq->mpwqe.info = kvzalloc_node(alloc_size, GFP_KERNEL, node);
384 if (!rq->mpwqe.info)
385 return -ENOMEM;
386
387 /* For deferred page release (release right before alloc), make sure
388 * that on first round release is not called.
389 */
390 for (int i = 0; i < wq_sz; i++) {
391 struct mlx5e_mpw_info *wi = mlx5e_get_mpw_info(rq, i);
392
393 bitmap_fill(wi->skip_release_bitmap, rq->mpwqe.pages_per_wqe);
394 }
395
396 mlx5e_build_umr_wqe(rq, rq->icosq,
397 container_of(&rq->mpwqe.umr_wqe,
398 struct mlx5e_umr_wqe, hdr));
399
400 return 0;
401 }
402
403
mlx5e_mpwrq_access_mode(enum mlx5e_mpwrq_umr_mode umr_mode)404 static u8 mlx5e_mpwrq_access_mode(enum mlx5e_mpwrq_umr_mode umr_mode)
405 {
406 switch (umr_mode) {
407 case MLX5E_MPWRQ_UMR_MODE_ALIGNED:
408 return MLX5_MKC_ACCESS_MODE_MTT;
409 case MLX5E_MPWRQ_UMR_MODE_UNALIGNED:
410 return MLX5_MKC_ACCESS_MODE_KSM;
411 case MLX5E_MPWRQ_UMR_MODE_OVERSIZED:
412 return MLX5_MKC_ACCESS_MODE_KLMS;
413 case MLX5E_MPWRQ_UMR_MODE_TRIPLE:
414 return MLX5_MKC_ACCESS_MODE_KSM;
415 }
416 WARN_ONCE(1, "MPWRQ UMR mode %d is not known\n", umr_mode);
417 return 0;
418 }
419
mlx5e_create_umr_mkey(struct mlx5_core_dev * mdev,u32 npages,u8 page_shift,u32 * umr_mkey,dma_addr_t filler_addr,enum mlx5e_mpwrq_umr_mode umr_mode,u32 xsk_chunk_size)420 static int mlx5e_create_umr_mkey(struct mlx5_core_dev *mdev,
421 u32 npages, u8 page_shift, u32 *umr_mkey,
422 dma_addr_t filler_addr,
423 enum mlx5e_mpwrq_umr_mode umr_mode,
424 u32 xsk_chunk_size)
425 {
426 struct mlx5_mtt *mtt;
427 struct mlx5_ksm *ksm;
428 struct mlx5_klm *klm;
429 u32 octwords;
430 int inlen;
431 void *mkc;
432 u32 *in;
433 int err;
434 int i;
435
436 if ((umr_mode == MLX5E_MPWRQ_UMR_MODE_UNALIGNED ||
437 umr_mode == MLX5E_MPWRQ_UMR_MODE_TRIPLE) &&
438 !MLX5_CAP_GEN(mdev, fixed_buffer_size)) {
439 mlx5_core_warn(mdev, "Unaligned AF_XDP requires fixed_buffer_size capability\n");
440 return -EINVAL;
441 }
442
443 octwords = mlx5e_mpwrq_umr_octowords(npages, umr_mode);
444
445 inlen = MLX5_FLEXIBLE_INLEN(mdev, MLX5_ST_SZ_BYTES(create_mkey_in),
446 MLX5_OCTWORD, octwords);
447 if (inlen < 0)
448 return inlen;
449
450 in = kvzalloc(inlen, GFP_KERNEL);
451 if (!in)
452 return -ENOMEM;
453
454 mkc = MLX5_ADDR_OF(create_mkey_in, in, memory_key_mkey_entry);
455
456 MLX5_SET(mkc, mkc, free, 1);
457 MLX5_SET(mkc, mkc, umr_en, 1);
458 MLX5_SET(mkc, mkc, lw, 1);
459 MLX5_SET(mkc, mkc, lr, 1);
460 MLX5_SET(mkc, mkc, access_mode_1_0, mlx5e_mpwrq_access_mode(umr_mode));
461 mlx5e_mkey_set_relaxed_ordering(mdev, mkc);
462 MLX5_SET(mkc, mkc, qpn, 0xffffff);
463 MLX5_SET(mkc, mkc, pd, mdev->mlx5e_res.hw_objs.pdn);
464 MLX5_SET64(mkc, mkc, len, npages << page_shift);
465 MLX5_SET(mkc, mkc, translations_octword_size, octwords);
466 if (umr_mode == MLX5E_MPWRQ_UMR_MODE_TRIPLE)
467 MLX5_SET(mkc, mkc, log_page_size, page_shift - 2);
468 else if (umr_mode != MLX5E_MPWRQ_UMR_MODE_OVERSIZED)
469 MLX5_SET(mkc, mkc, log_page_size, page_shift);
470 MLX5_SET(create_mkey_in, in, translations_octword_actual_size, octwords);
471
472 /* Initialize the mkey with all MTTs pointing to a default
473 * page (filler_addr). When the channels are activated, UMR
474 * WQEs will redirect the RX WQEs to the actual memory from
475 * the RQ's pool, while the gaps (wqe_overflow) remain mapped
476 * to the default page.
477 */
478 switch (umr_mode) {
479 case MLX5E_MPWRQ_UMR_MODE_OVERSIZED:
480 klm = MLX5_ADDR_OF(create_mkey_in, in, klm_pas_mtt);
481 for (i = 0; i < npages; i++) {
482 klm[i << 1] = (struct mlx5_klm) {
483 .va = cpu_to_be64(filler_addr),
484 .bcount = cpu_to_be32(xsk_chunk_size),
485 .key = cpu_to_be32(mdev->mlx5e_res.hw_objs.mkey),
486 };
487 klm[(i << 1) + 1] = (struct mlx5_klm) {
488 .va = cpu_to_be64(filler_addr),
489 .bcount = cpu_to_be32((1 << page_shift) - xsk_chunk_size),
490 .key = cpu_to_be32(mdev->mlx5e_res.hw_objs.mkey),
491 };
492 }
493 break;
494 case MLX5E_MPWRQ_UMR_MODE_UNALIGNED:
495 ksm = MLX5_ADDR_OF(create_mkey_in, in, klm_pas_mtt);
496 for (i = 0; i < npages; i++)
497 ksm[i] = (struct mlx5_ksm) {
498 .key = cpu_to_be32(mdev->mlx5e_res.hw_objs.mkey),
499 .va = cpu_to_be64(filler_addr),
500 };
501 break;
502 case MLX5E_MPWRQ_UMR_MODE_ALIGNED:
503 mtt = MLX5_ADDR_OF(create_mkey_in, in, klm_pas_mtt);
504 for (i = 0; i < npages; i++)
505 mtt[i] = (struct mlx5_mtt) {
506 .ptag = cpu_to_be64(filler_addr),
507 };
508 break;
509 case MLX5E_MPWRQ_UMR_MODE_TRIPLE:
510 ksm = MLX5_ADDR_OF(create_mkey_in, in, klm_pas_mtt);
511 for (i = 0; i < npages * 4; i++) {
512 ksm[i] = (struct mlx5_ksm) {
513 .key = cpu_to_be32(mdev->mlx5e_res.hw_objs.mkey),
514 .va = cpu_to_be64(filler_addr),
515 };
516 }
517 break;
518 }
519
520 err = mlx5_core_create_mkey(mdev, umr_mkey, in, inlen);
521
522 kvfree(in);
523 return err;
524 }
525
mlx5e_create_umr_ksm_mkey(struct mlx5_core_dev * mdev,u64 nentries,u8 log_entry_size,u32 * umr_mkey)526 static int mlx5e_create_umr_ksm_mkey(struct mlx5_core_dev *mdev,
527 u64 nentries, u8 log_entry_size,
528 u32 *umr_mkey)
529 {
530 int inlen;
531 void *mkc;
532 u32 *in;
533 int err;
534
535 inlen = MLX5_ST_SZ_BYTES(create_mkey_in);
536
537 in = kvzalloc(inlen, GFP_KERNEL);
538 if (!in)
539 return -ENOMEM;
540
541 mkc = MLX5_ADDR_OF(create_mkey_in, in, memory_key_mkey_entry);
542
543 MLX5_SET(mkc, mkc, free, 1);
544 MLX5_SET(mkc, mkc, umr_en, 1);
545 MLX5_SET(mkc, mkc, lw, 1);
546 MLX5_SET(mkc, mkc, lr, 1);
547 MLX5_SET(mkc, mkc, access_mode_1_0, MLX5_MKC_ACCESS_MODE_KSM);
548 mlx5e_mkey_set_relaxed_ordering(mdev, mkc);
549 MLX5_SET(mkc, mkc, qpn, 0xffffff);
550 MLX5_SET(mkc, mkc, pd, mdev->mlx5e_res.hw_objs.pdn);
551 MLX5_SET(mkc, mkc, translations_octword_size, nentries);
552 MLX5_SET(mkc, mkc, log_page_size, log_entry_size);
553 MLX5_SET64(mkc, mkc, len, nentries << log_entry_size);
554 err = mlx5_core_create_mkey(mdev, umr_mkey, in, inlen);
555
556 kvfree(in);
557 return err;
558 }
559
mlx5e_create_rq_umr_mkey(struct mlx5_core_dev * mdev,struct mlx5e_rq * rq)560 static int mlx5e_create_rq_umr_mkey(struct mlx5_core_dev *mdev, struct mlx5e_rq *rq)
561 {
562 u32 xsk_chunk_size = rq->xsk_pool ? rq->xsk_pool->chunk_size : 0;
563 u32 wq_size = mlx5_wq_ll_get_size(&rq->mpwqe.wq);
564 u32 num_entries, max_num_entries;
565 u32 umr_mkey;
566 int err;
567
568 max_num_entries = mlx5e_mpwrq_max_num_entries(mdev, rq->mpwqe.umr_mode);
569
570 /* Shouldn't overflow, the result is at most MLX5E_MAX_RQ_NUM_MTTS. */
571 if (WARN_ON_ONCE(check_mul_overflow(wq_size, (u32)rq->mpwqe.mtts_per_wqe,
572 &num_entries) ||
573 num_entries > max_num_entries))
574 mlx5_core_err(mdev, "%s: multiplication overflow: %u * %u > %u\n",
575 __func__, wq_size, rq->mpwqe.mtts_per_wqe,
576 max_num_entries);
577
578 err = mlx5e_create_umr_mkey(mdev, num_entries, rq->mpwqe.page_shift,
579 &umr_mkey, rq->wqe_overflow.addr,
580 rq->mpwqe.umr_mode, xsk_chunk_size);
581 rq->mpwqe.umr_mkey_be = cpu_to_be32(umr_mkey);
582 return err;
583 }
584
mlx5e_create_rq_hd_umr_mkey(struct mlx5_core_dev * mdev,struct mlx5e_rq * rq)585 static int mlx5e_create_rq_hd_umr_mkey(struct mlx5_core_dev *mdev,
586 struct mlx5e_rq *rq)
587 {
588 u32 max_ksm_size = BIT(MLX5_CAP_GEN(mdev, log_max_klm_list_size));
589
590 if (max_ksm_size < rq->mpwqe.shampo->hd_per_wq) {
591 mlx5_core_err(mdev, "max ksm list size 0x%x is smaller than shampo header buffer list size 0x%x\n",
592 max_ksm_size, rq->mpwqe.shampo->hd_per_wq);
593 return -EINVAL;
594 }
595
596 return mlx5e_create_umr_ksm_mkey(mdev, rq->mpwqe.shampo->hd_per_wq,
597 MLX5E_SHAMPO_LOG_HEADER_ENTRY_SIZE,
598 &rq->mpwqe.shampo->mkey);
599 }
600
mlx5e_init_frags_partition(struct mlx5e_rq * rq)601 static void mlx5e_init_frags_partition(struct mlx5e_rq *rq)
602 {
603 struct mlx5e_wqe_frag_info next_frag = {};
604 struct mlx5e_wqe_frag_info *prev = NULL;
605 int i;
606
607 WARN_ON(rq->xsk_pool);
608
609 next_frag.frag_page = &rq->wqe.alloc_units->frag_pages[0];
610
611 /* Skip first release due to deferred release. */
612 next_frag.flags = BIT(MLX5E_WQE_FRAG_SKIP_RELEASE);
613
614 for (i = 0; i < mlx5_wq_cyc_get_size(&rq->wqe.wq); i++) {
615 struct mlx5e_rq_frag_info *frag_info = &rq->wqe.info.arr[0];
616 struct mlx5e_wqe_frag_info *frag =
617 &rq->wqe.frags[i << rq->wqe.info.log_num_frags];
618 int f;
619
620 for (f = 0; f < rq->wqe.info.num_frags; f++, frag++) {
621 if (next_frag.offset + frag_info[f].frag_stride > PAGE_SIZE) {
622 /* Pages are assigned at runtime. */
623 next_frag.frag_page++;
624 next_frag.offset = 0;
625 if (prev)
626 prev->flags |= BIT(MLX5E_WQE_FRAG_LAST_IN_PAGE);
627 }
628 *frag = next_frag;
629
630 /* prepare next */
631 next_frag.offset += frag_info[f].frag_stride;
632 prev = frag;
633 }
634 }
635
636 if (prev)
637 prev->flags |= BIT(MLX5E_WQE_FRAG_LAST_IN_PAGE);
638 }
639
mlx5e_init_xsk_buffs(struct mlx5e_rq * rq)640 static void mlx5e_init_xsk_buffs(struct mlx5e_rq *rq)
641 {
642 int i;
643
644 /* Assumptions used by XSK batched allocator. */
645 WARN_ON(rq->wqe.info.num_frags != 1);
646 WARN_ON(rq->wqe.info.log_num_frags != 0);
647 WARN_ON(rq->wqe.info.arr[0].frag_stride != PAGE_SIZE);
648
649 /* Considering the above assumptions a fragment maps to a single
650 * xsk_buff.
651 */
652 for (i = 0; i < mlx5_wq_cyc_get_size(&rq->wqe.wq); i++) {
653 rq->wqe.frags[i].xskp = &rq->wqe.alloc_units->xsk_buffs[i];
654
655 /* Skip first release due to deferred release as WQES are
656 * not allocated yet.
657 */
658 rq->wqe.frags[i].flags |= BIT(MLX5E_WQE_FRAG_SKIP_RELEASE);
659 }
660 }
661
mlx5e_init_wqe_alloc_info(struct mlx5e_rq * rq,int node)662 static int mlx5e_init_wqe_alloc_info(struct mlx5e_rq *rq, int node)
663 {
664 int wq_sz = mlx5_wq_cyc_get_size(&rq->wqe.wq);
665 int len = wq_sz << rq->wqe.info.log_num_frags;
666 struct mlx5e_wqe_frag_info *frags;
667 union mlx5e_alloc_units *aus;
668 int aus_sz;
669
670 if (rq->xsk_pool)
671 aus_sz = sizeof(*aus->xsk_buffs);
672 else
673 aus_sz = sizeof(*aus->frag_pages);
674
675 aus = kvzalloc_node(array_size(len, aus_sz), GFP_KERNEL, node);
676 if (!aus)
677 return -ENOMEM;
678
679 frags = kvzalloc_node(array_size(len, sizeof(*frags)), GFP_KERNEL, node);
680 if (!frags) {
681 kvfree(aus);
682 return -ENOMEM;
683 }
684
685 rq->wqe.alloc_units = aus;
686 rq->wqe.frags = frags;
687
688 if (rq->xsk_pool)
689 mlx5e_init_xsk_buffs(rq);
690 else
691 mlx5e_init_frags_partition(rq);
692
693 return 0;
694 }
695
mlx5e_free_wqe_alloc_info(struct mlx5e_rq * rq)696 static void mlx5e_free_wqe_alloc_info(struct mlx5e_rq *rq)
697 {
698 kvfree(rq->wqe.frags);
699 kvfree(rq->wqe.alloc_units);
700 }
701
mlx5e_rq_err_cqe_work(struct work_struct * recover_work)702 static void mlx5e_rq_err_cqe_work(struct work_struct *recover_work)
703 {
704 struct mlx5e_rq *rq = container_of(recover_work, struct mlx5e_rq, recover_work);
705
706 mlx5e_reporter_rq_cqe_err(rq);
707 }
708
mlx5e_alloc_mpwqe_rq_drop_page(struct mlx5e_rq * rq)709 static int mlx5e_alloc_mpwqe_rq_drop_page(struct mlx5e_rq *rq)
710 {
711 rq->wqe_overflow.page = alloc_page(GFP_KERNEL);
712 if (!rq->wqe_overflow.page)
713 return -ENOMEM;
714
715 rq->wqe_overflow.addr = dma_map_page(rq->pdev, rq->wqe_overflow.page, 0,
716 PAGE_SIZE, rq->buff.map_dir);
717 if (dma_mapping_error(rq->pdev, rq->wqe_overflow.addr)) {
718 __free_page(rq->wqe_overflow.page);
719 return -ENOMEM;
720 }
721 return 0;
722 }
723
mlx5e_free_mpwqe_rq_drop_page(struct mlx5e_rq * rq)724 static void mlx5e_free_mpwqe_rq_drop_page(struct mlx5e_rq *rq)
725 {
726 dma_unmap_page(rq->pdev, rq->wqe_overflow.addr, PAGE_SIZE,
727 rq->buff.map_dir);
728 __free_page(rq->wqe_overflow.page);
729 }
730
mlx5e_init_rxq_rq(struct mlx5e_channel * c,struct mlx5e_params * params,u32 xdp_frag_size,struct mlx5e_rq * rq)731 static int mlx5e_init_rxq_rq(struct mlx5e_channel *c, struct mlx5e_params *params,
732 u32 xdp_frag_size, struct mlx5e_rq *rq)
733 {
734 struct mlx5_core_dev *mdev = c->mdev;
735 int err;
736
737 rq->wq_type = params->rq_wq_type;
738 rq->pdev = c->pdev;
739 rq->netdev = c->netdev;
740 rq->priv = c->priv;
741 rq->tstamp = c->tstamp;
742 rq->clock = mdev->clock;
743 rq->icosq = &c->icosq;
744 rq->ix = c->ix;
745 rq->channel = c;
746 rq->mdev = mdev;
747 rq->hw_mtu =
748 MLX5E_SW2HW_MTU(params, params->sw_mtu) - ETH_FCS_LEN * !params->scatter_fcs_en;
749 rq->xdpsq = &c->rq_xdpsq;
750 rq->stats = &c->priv->channel_stats[c->ix]->rq;
751 rq->ptp_cyc2time = mlx5_rq_ts_translator(mdev);
752 err = mlx5e_rq_set_handlers(rq, params, NULL);
753 if (err)
754 return err;
755
756 return __xdp_rxq_info_reg(&rq->xdp_rxq, rq->netdev, rq->ix, c->napi.napi_id,
757 xdp_frag_size);
758 }
759
mlx5_rq_shampo_alloc(struct mlx5_core_dev * mdev,struct mlx5e_params * params,struct mlx5e_rq_param * rqp,struct mlx5e_rq * rq,u32 * pool_size,int node)760 static int mlx5_rq_shampo_alloc(struct mlx5_core_dev *mdev,
761 struct mlx5e_params *params,
762 struct mlx5e_rq_param *rqp,
763 struct mlx5e_rq *rq,
764 u32 *pool_size,
765 int node)
766 {
767 int err;
768
769 if (!test_bit(MLX5E_RQ_STATE_SHAMPO, &rq->state))
770 return 0;
771 err = mlx5e_rq_shampo_hd_alloc(rq, node);
772 if (err)
773 goto out;
774 rq->mpwqe.shampo->hd_per_wq =
775 mlx5e_shampo_hd_per_wq(mdev, params, rqp);
776 err = mlx5e_create_rq_hd_umr_mkey(mdev, rq);
777 if (err)
778 goto err_shampo_hd;
779 err = mlx5e_rq_shampo_hd_info_alloc(rq, node);
780 if (err)
781 goto err_shampo_info;
782 rq->hw_gro_data = kvzalloc_node(sizeof(*rq->hw_gro_data), GFP_KERNEL, node);
783 if (!rq->hw_gro_data) {
784 err = -ENOMEM;
785 goto err_hw_gro_data;
786 }
787 rq->mpwqe.shampo->key =
788 cpu_to_be32(rq->mpwqe.shampo->mkey);
789 rq->mpwqe.shampo->hd_per_wqe =
790 mlx5e_shampo_hd_per_wqe(mdev, params, rqp);
791 rq->mpwqe.shampo->pages_per_wq =
792 rq->mpwqe.shampo->hd_per_wq / MLX5E_SHAMPO_WQ_HEADER_PER_PAGE;
793 *pool_size += rq->mpwqe.shampo->pages_per_wq;
794 return 0;
795
796 err_hw_gro_data:
797 mlx5e_rq_shampo_hd_info_free(rq);
798 err_shampo_info:
799 mlx5_core_destroy_mkey(mdev, rq->mpwqe.shampo->mkey);
800 err_shampo_hd:
801 mlx5e_rq_shampo_hd_free(rq);
802 out:
803 return err;
804 }
805
mlx5e_rq_free_shampo(struct mlx5e_rq * rq)806 static void mlx5e_rq_free_shampo(struct mlx5e_rq *rq)
807 {
808 if (!test_bit(MLX5E_RQ_STATE_SHAMPO, &rq->state))
809 return;
810
811 kvfree(rq->hw_gro_data);
812 mlx5e_rq_shampo_hd_info_free(rq);
813 mlx5_core_destroy_mkey(rq->mdev, rq->mpwqe.shampo->mkey);
814 mlx5e_rq_shampo_hd_free(rq);
815 }
816
mlx5e_alloc_rq(struct mlx5e_params * params,struct mlx5e_xsk_param * xsk,struct mlx5e_rq_param * rqp,int node,struct mlx5e_rq * rq)817 static int mlx5e_alloc_rq(struct mlx5e_params *params,
818 struct mlx5e_xsk_param *xsk,
819 struct mlx5e_rq_param *rqp,
820 int node, struct mlx5e_rq *rq)
821 {
822 struct mlx5_core_dev *mdev = rq->mdev;
823 void *rqc = rqp->rqc;
824 void *rqc_wq = MLX5_ADDR_OF(rqc, rqc, wq);
825 u32 pool_size;
826 int wq_sz;
827 int err;
828 int i;
829
830 rqp->wq.db_numa_node = node;
831 INIT_WORK(&rq->recover_work, mlx5e_rq_err_cqe_work);
832
833 if (params->xdp_prog)
834 bpf_prog_inc(params->xdp_prog);
835 RCU_INIT_POINTER(rq->xdp_prog, params->xdp_prog);
836
837 rq->buff.map_dir = params->xdp_prog ? DMA_BIDIRECTIONAL : DMA_FROM_DEVICE;
838 rq->buff.headroom = mlx5e_get_rq_headroom(mdev, params, xsk);
839 pool_size = 1 << params->log_rq_mtu_frames;
840
841 rq->mkey_be = cpu_to_be32(mdev->mlx5e_res.hw_objs.mkey);
842
843 switch (rq->wq_type) {
844 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
845 err = mlx5_wq_ll_create(mdev, &rqp->wq, rqc_wq, &rq->mpwqe.wq,
846 &rq->wq_ctrl);
847 if (err)
848 goto err_rq_xdp_prog;
849
850 err = mlx5e_alloc_mpwqe_rq_drop_page(rq);
851 if (err)
852 goto err_rq_wq_destroy;
853
854 rq->mpwqe.wq.db = &rq->mpwqe.wq.db[MLX5_RCV_DBR];
855
856 wq_sz = mlx5_wq_ll_get_size(&rq->mpwqe.wq);
857
858 rq->mpwqe.page_shift = mlx5e_mpwrq_page_shift(mdev, xsk);
859 rq->mpwqe.umr_mode = mlx5e_mpwrq_umr_mode(mdev, xsk);
860 rq->mpwqe.pages_per_wqe =
861 mlx5e_mpwrq_pages_per_wqe(mdev, rq->mpwqe.page_shift,
862 rq->mpwqe.umr_mode);
863 rq->mpwqe.umr_wqebbs =
864 mlx5e_mpwrq_umr_wqebbs(mdev, rq->mpwqe.page_shift,
865 rq->mpwqe.umr_mode);
866 rq->mpwqe.mtts_per_wqe =
867 mlx5e_mpwrq_mtts_per_wqe(mdev, rq->mpwqe.page_shift,
868 rq->mpwqe.umr_mode);
869
870 pool_size = rq->mpwqe.pages_per_wqe <<
871 mlx5e_mpwqe_get_log_rq_size(mdev, params, xsk);
872
873 if (!mlx5e_rx_mpwqe_is_linear_skb(mdev, params, xsk) && params->xdp_prog)
874 pool_size *= 2; /* additional page per packet for the linear part */
875
876 rq->mpwqe.log_stride_sz = mlx5e_mpwqe_get_log_stride_size(mdev, params, xsk);
877 rq->mpwqe.num_strides =
878 BIT(mlx5e_mpwqe_get_log_num_strides(mdev, params, xsk));
879 rq->mpwqe.min_wqe_bulk = mlx5e_mpwqe_get_min_wqe_bulk(wq_sz);
880
881 rq->buff.frame0_sz = (1 << rq->mpwqe.log_stride_sz);
882
883 err = mlx5e_create_rq_umr_mkey(mdev, rq);
884 if (err)
885 goto err_rq_drop_page;
886
887 err = mlx5e_rq_alloc_mpwqe_info(rq, node);
888 if (err)
889 goto err_rq_mkey;
890
891 err = mlx5_rq_shampo_alloc(mdev, params, rqp, rq, &pool_size, node);
892 if (err)
893 goto err_free_mpwqe_info;
894
895 break;
896 default: /* MLX5_WQ_TYPE_CYCLIC */
897 err = mlx5_wq_cyc_create(mdev, &rqp->wq, rqc_wq, &rq->wqe.wq,
898 &rq->wq_ctrl);
899 if (err)
900 goto err_rq_xdp_prog;
901
902 rq->wqe.wq.db = &rq->wqe.wq.db[MLX5_RCV_DBR];
903
904 wq_sz = mlx5_wq_cyc_get_size(&rq->wqe.wq);
905
906 rq->wqe.info = rqp->frags_info;
907 rq->buff.frame0_sz = rq->wqe.info.arr[0].frag_stride;
908
909 err = mlx5e_init_wqe_alloc_info(rq, node);
910 if (err)
911 goto err_rq_wq_destroy;
912 }
913
914 if (xsk) {
915 err = xdp_rxq_info_reg_mem_model(&rq->xdp_rxq,
916 MEM_TYPE_XSK_BUFF_POOL, NULL);
917 xsk_pool_set_rxq_info(rq->xsk_pool, &rq->xdp_rxq);
918 } else {
919 /* Create a page_pool and register it with rxq */
920 struct page_pool_params pp_params = { 0 };
921
922 pp_params.order = 0;
923 pp_params.flags = PP_FLAG_DMA_MAP | PP_FLAG_DMA_SYNC_DEV;
924 pp_params.pool_size = pool_size;
925 pp_params.nid = node;
926 pp_params.dev = rq->pdev;
927 pp_params.napi = rq->cq.napi;
928 pp_params.netdev = rq->netdev;
929 pp_params.dma_dir = rq->buff.map_dir;
930 pp_params.max_len = PAGE_SIZE;
931
932 /* page_pool can be used even when there is no rq->xdp_prog,
933 * given page_pool does not handle DMA mapping there is no
934 * required state to clear. And page_pool gracefully handle
935 * elevated refcnt.
936 */
937 rq->page_pool = page_pool_create(&pp_params);
938 if (IS_ERR(rq->page_pool)) {
939 err = PTR_ERR(rq->page_pool);
940 rq->page_pool = NULL;
941 goto err_free_by_rq_type;
942 }
943 if (xdp_rxq_info_is_reg(&rq->xdp_rxq))
944 err = xdp_rxq_info_reg_mem_model(&rq->xdp_rxq,
945 MEM_TYPE_PAGE_POOL, rq->page_pool);
946 }
947 if (err)
948 goto err_destroy_page_pool;
949
950 for (i = 0; i < wq_sz; i++) {
951 if (rq->wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ) {
952 struct mlx5e_rx_wqe_ll *wqe =
953 mlx5_wq_ll_get_wqe(&rq->mpwqe.wq, i);
954 u32 byte_count =
955 rq->mpwqe.num_strides << rq->mpwqe.log_stride_sz;
956 u64 dma_offset = mul_u32_u32(i, rq->mpwqe.mtts_per_wqe) <<
957 rq->mpwqe.page_shift;
958 u16 headroom = test_bit(MLX5E_RQ_STATE_SHAMPO, &rq->state) ?
959 0 : rq->buff.headroom;
960
961 wqe->data[0].addr = cpu_to_be64(dma_offset + headroom);
962 wqe->data[0].byte_count = cpu_to_be32(byte_count);
963 wqe->data[0].lkey = rq->mpwqe.umr_mkey_be;
964 } else {
965 struct mlx5e_rx_wqe_cyc *wqe =
966 mlx5_wq_cyc_get_wqe(&rq->wqe.wq, i);
967 int f;
968
969 for (f = 0; f < rq->wqe.info.num_frags; f++) {
970 u32 frag_size = rq->wqe.info.arr[f].frag_size |
971 MLX5_HW_START_PADDING;
972
973 wqe->data[f].byte_count = cpu_to_be32(frag_size);
974 wqe->data[f].lkey = rq->mkey_be;
975 }
976 /* check if num_frags is not a pow of two */
977 if (rq->wqe.info.num_frags < (1 << rq->wqe.info.log_num_frags)) {
978 wqe->data[f].byte_count = 0;
979 wqe->data[f].lkey = params->terminate_lkey_be;
980 wqe->data[f].addr = 0;
981 }
982 }
983 }
984
985 return 0;
986
987 err_destroy_page_pool:
988 page_pool_destroy(rq->page_pool);
989 err_free_by_rq_type:
990 switch (rq->wq_type) {
991 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
992 mlx5e_rq_free_shampo(rq);
993 err_free_mpwqe_info:
994 kvfree(rq->mpwqe.info);
995 err_rq_mkey:
996 mlx5_core_destroy_mkey(mdev, be32_to_cpu(rq->mpwqe.umr_mkey_be));
997 err_rq_drop_page:
998 mlx5e_free_mpwqe_rq_drop_page(rq);
999 break;
1000 default: /* MLX5_WQ_TYPE_CYCLIC */
1001 mlx5e_free_wqe_alloc_info(rq);
1002 }
1003 err_rq_wq_destroy:
1004 mlx5_wq_destroy(&rq->wq_ctrl);
1005 err_rq_xdp_prog:
1006 if (params->xdp_prog)
1007 bpf_prog_put(params->xdp_prog);
1008
1009 return err;
1010 }
1011
mlx5e_free_rq(struct mlx5e_rq * rq)1012 static void mlx5e_free_rq(struct mlx5e_rq *rq)
1013 {
1014 kvfree(rq->dim);
1015 page_pool_destroy(rq->page_pool);
1016
1017 switch (rq->wq_type) {
1018 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
1019 mlx5e_rq_free_shampo(rq);
1020 kvfree(rq->mpwqe.info);
1021 mlx5_core_destroy_mkey(rq->mdev, be32_to_cpu(rq->mpwqe.umr_mkey_be));
1022 mlx5e_free_mpwqe_rq_drop_page(rq);
1023 break;
1024 default: /* MLX5_WQ_TYPE_CYCLIC */
1025 mlx5e_free_wqe_alloc_info(rq);
1026 }
1027
1028 mlx5_wq_destroy(&rq->wq_ctrl);
1029
1030 if (xdp_rxq_info_is_reg(&rq->xdp_rxq)) {
1031 struct bpf_prog *old_prog;
1032
1033 old_prog = rcu_dereference_protected(rq->xdp_prog,
1034 lockdep_is_held(&rq->priv->state_lock));
1035 if (old_prog)
1036 bpf_prog_put(old_prog);
1037 }
1038 xdp_rxq_info_unreg(&rq->xdp_rxq);
1039 }
1040
mlx5e_create_rq(struct mlx5e_rq * rq,struct mlx5e_rq_param * param,u16 q_counter)1041 int mlx5e_create_rq(struct mlx5e_rq *rq, struct mlx5e_rq_param *param, u16 q_counter)
1042 {
1043 struct mlx5_core_dev *mdev = rq->mdev;
1044 u8 ts_format;
1045 void *in;
1046 void *rqc;
1047 void *wq;
1048 int inlen;
1049 int err;
1050
1051 inlen = MLX5_ST_SZ_BYTES(create_rq_in) +
1052 sizeof(u64) * rq->wq_ctrl.buf.npages;
1053 in = kvzalloc(inlen, GFP_KERNEL);
1054 if (!in)
1055 return -ENOMEM;
1056
1057 ts_format = mlx5_is_real_time_rq(mdev) ?
1058 MLX5_TIMESTAMP_FORMAT_REAL_TIME :
1059 MLX5_TIMESTAMP_FORMAT_FREE_RUNNING;
1060 rqc = MLX5_ADDR_OF(create_rq_in, in, ctx);
1061 wq = MLX5_ADDR_OF(rqc, rqc, wq);
1062
1063 memcpy(rqc, param->rqc, sizeof(param->rqc));
1064
1065 MLX5_SET(rqc, rqc, cqn, rq->cq.mcq.cqn);
1066 MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RST);
1067 MLX5_SET(rqc, rqc, ts_format, ts_format);
1068 MLX5_SET(rqc, rqc, counter_set_id, q_counter);
1069 MLX5_SET(wq, wq, log_wq_pg_sz, rq->wq_ctrl.buf.page_shift -
1070 MLX5_ADAPTER_PAGE_SHIFT);
1071 MLX5_SET64(wq, wq, dbr_addr, rq->wq_ctrl.db.dma);
1072
1073 if (test_bit(MLX5E_RQ_STATE_SHAMPO, &rq->state)) {
1074 MLX5_SET(wq, wq, log_headers_buffer_entry_num,
1075 order_base_2(rq->mpwqe.shampo->hd_per_wq));
1076 MLX5_SET(wq, wq, headers_mkey, rq->mpwqe.shampo->mkey);
1077 }
1078
1079 mlx5_fill_page_frag_array(&rq->wq_ctrl.buf,
1080 (__be64 *)MLX5_ADDR_OF(wq, wq, pas));
1081
1082 err = mlx5_core_create_rq(mdev, in, inlen, &rq->rqn);
1083
1084 kvfree(in);
1085
1086 return err;
1087 }
1088
mlx5e_modify_rq_state(struct mlx5e_rq * rq,int curr_state,int next_state)1089 static int mlx5e_modify_rq_state(struct mlx5e_rq *rq, int curr_state, int next_state)
1090 {
1091 struct mlx5_core_dev *mdev = rq->mdev;
1092
1093 void *in;
1094 void *rqc;
1095 int inlen;
1096 int err;
1097
1098 inlen = MLX5_ST_SZ_BYTES(modify_rq_in);
1099 in = kvzalloc(inlen, GFP_KERNEL);
1100 if (!in)
1101 return -ENOMEM;
1102
1103 if (curr_state == MLX5_RQC_STATE_RST && next_state == MLX5_RQC_STATE_RDY)
1104 mlx5e_rqwq_reset(rq);
1105
1106 rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx);
1107
1108 MLX5_SET(modify_rq_in, in, rq_state, curr_state);
1109 MLX5_SET(rqc, rqc, state, next_state);
1110
1111 err = mlx5_core_modify_rq(mdev, rq->rqn, in);
1112
1113 kvfree(in);
1114
1115 return err;
1116 }
1117
mlx5e_flush_rq_cq(struct mlx5e_rq * rq)1118 static void mlx5e_flush_rq_cq(struct mlx5e_rq *rq)
1119 {
1120 struct mlx5_cqwq *cqwq = &rq->cq.wq;
1121 struct mlx5_cqe64 *cqe;
1122
1123 if (test_bit(MLX5E_RQ_STATE_MINI_CQE_ENHANCED, &rq->state)) {
1124 while ((cqe = mlx5_cqwq_get_cqe_enhanced_comp(cqwq)))
1125 mlx5_cqwq_pop(cqwq);
1126 } else {
1127 while ((cqe = mlx5_cqwq_get_cqe(cqwq)))
1128 mlx5_cqwq_pop(cqwq);
1129 }
1130
1131 mlx5_cqwq_update_db_record(cqwq);
1132 }
1133
mlx5e_flush_rq(struct mlx5e_rq * rq,int curr_state)1134 int mlx5e_flush_rq(struct mlx5e_rq *rq, int curr_state)
1135 {
1136 struct net_device *dev = rq->netdev;
1137 int err;
1138
1139 err = mlx5e_modify_rq_state(rq, curr_state, MLX5_RQC_STATE_RST);
1140 if (err) {
1141 netdev_err(dev, "Failed to move rq 0x%x to reset\n", rq->rqn);
1142 return err;
1143 }
1144
1145 mlx5e_free_rx_descs(rq);
1146 mlx5e_flush_rq_cq(rq);
1147
1148 err = mlx5e_modify_rq_state(rq, MLX5_RQC_STATE_RST, MLX5_RQC_STATE_RDY);
1149 if (err) {
1150 netdev_err(dev, "Failed to move rq 0x%x to ready\n", rq->rqn);
1151 return err;
1152 }
1153
1154 return 0;
1155 }
1156
mlx5e_modify_rq_vsd(struct mlx5e_rq * rq,bool vsd)1157 static int mlx5e_modify_rq_vsd(struct mlx5e_rq *rq, bool vsd)
1158 {
1159 struct mlx5_core_dev *mdev = rq->mdev;
1160 void *in;
1161 void *rqc;
1162 int inlen;
1163 int err;
1164
1165 inlen = MLX5_ST_SZ_BYTES(modify_rq_in);
1166 in = kvzalloc(inlen, GFP_KERNEL);
1167 if (!in)
1168 return -ENOMEM;
1169
1170 rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx);
1171
1172 MLX5_SET(modify_rq_in, in, rq_state, MLX5_RQC_STATE_RDY);
1173 MLX5_SET64(modify_rq_in, in, modify_bitmask,
1174 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_VSD);
1175 MLX5_SET(rqc, rqc, vsd, vsd);
1176 MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RDY);
1177
1178 err = mlx5_core_modify_rq(mdev, rq->rqn, in);
1179
1180 kvfree(in);
1181
1182 return err;
1183 }
1184
mlx5e_destroy_rq(struct mlx5e_rq * rq)1185 void mlx5e_destroy_rq(struct mlx5e_rq *rq)
1186 {
1187 mlx5_core_destroy_rq(rq->mdev, rq->rqn);
1188 }
1189
mlx5e_wait_for_min_rx_wqes(struct mlx5e_rq * rq,int wait_time)1190 int mlx5e_wait_for_min_rx_wqes(struct mlx5e_rq *rq, int wait_time)
1191 {
1192 unsigned long exp_time = jiffies + msecs_to_jiffies(wait_time);
1193
1194 u16 min_wqes = mlx5_min_rx_wqes(rq->wq_type, mlx5e_rqwq_get_size(rq));
1195
1196 do {
1197 if (mlx5e_rqwq_get_cur_sz(rq) >= min_wqes)
1198 return 0;
1199
1200 msleep(20);
1201 } while (time_before(jiffies, exp_time));
1202
1203 netdev_warn(rq->netdev, "Failed to get min RX wqes on Channel[%d] RQN[0x%x] wq cur_sz(%d) min_rx_wqes(%d)\n",
1204 rq->ix, rq->rqn, mlx5e_rqwq_get_cur_sz(rq), min_wqes);
1205
1206 mlx5e_reporter_rx_timeout(rq);
1207 return -ETIMEDOUT;
1208 }
1209
mlx5e_free_rx_missing_descs(struct mlx5e_rq * rq)1210 void mlx5e_free_rx_missing_descs(struct mlx5e_rq *rq)
1211 {
1212 struct mlx5_wq_ll *wq;
1213 u16 head;
1214 int i;
1215
1216 if (rq->wq_type != MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ)
1217 return;
1218
1219 wq = &rq->mpwqe.wq;
1220 head = wq->head;
1221
1222 /* Release WQEs that are in missing state: they have been
1223 * popped from the list after completion but were not freed
1224 * due to deferred release.
1225 * Also free the linked-list reserved entry, hence the "+ 1".
1226 */
1227 for (i = 0; i < mlx5_wq_ll_missing(wq) + 1; i++) {
1228 rq->dealloc_wqe(rq, head);
1229 head = mlx5_wq_ll_get_wqe_next_ix(wq, head);
1230 }
1231
1232 rq->mpwqe.actual_wq_head = wq->head;
1233 rq->mpwqe.umr_in_progress = 0;
1234 rq->mpwqe.umr_completed = 0;
1235
1236 if (test_bit(MLX5E_RQ_STATE_SHAMPO, &rq->state)) {
1237 struct mlx5e_shampo_hd *shampo = rq->mpwqe.shampo;
1238 u16 len;
1239
1240 len = (shampo->pi - shampo->ci) & shampo->hd_per_wq;
1241 mlx5e_shampo_fill_umr(rq, len);
1242 }
1243 }
1244
mlx5e_free_rx_descs(struct mlx5e_rq * rq)1245 void mlx5e_free_rx_descs(struct mlx5e_rq *rq)
1246 {
1247 __be16 wqe_ix_be;
1248 u16 wqe_ix;
1249
1250 if (rq->wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ) {
1251 struct mlx5_wq_ll *wq = &rq->mpwqe.wq;
1252
1253 mlx5e_free_rx_missing_descs(rq);
1254
1255 while (!mlx5_wq_ll_is_empty(wq)) {
1256 struct mlx5e_rx_wqe_ll *wqe;
1257
1258 wqe_ix_be = *wq->tail_next;
1259 wqe_ix = be16_to_cpu(wqe_ix_be);
1260 wqe = mlx5_wq_ll_get_wqe(wq, wqe_ix);
1261 rq->dealloc_wqe(rq, wqe_ix);
1262 mlx5_wq_ll_pop(wq, wqe_ix_be,
1263 &wqe->next.next_wqe_index);
1264 }
1265
1266 if (test_bit(MLX5E_RQ_STATE_SHAMPO, &rq->state))
1267 mlx5e_shampo_dealloc_hd(rq);
1268 } else {
1269 struct mlx5_wq_cyc *wq = &rq->wqe.wq;
1270 u16 missing = mlx5_wq_cyc_missing(wq);
1271 u16 head = mlx5_wq_cyc_get_head(wq);
1272
1273 while (!mlx5_wq_cyc_is_empty(wq)) {
1274 wqe_ix = mlx5_wq_cyc_get_tail(wq);
1275 rq->dealloc_wqe(rq, wqe_ix);
1276 mlx5_wq_cyc_pop(wq);
1277 }
1278 /* Missing slots might also contain unreleased pages due to
1279 * deferred release.
1280 */
1281 while (missing--) {
1282 wqe_ix = mlx5_wq_cyc_ctr2ix(wq, head++);
1283 rq->dealloc_wqe(rq, wqe_ix);
1284 }
1285 }
1286
1287 }
1288
mlx5e_open_rq(struct mlx5e_params * params,struct mlx5e_rq_param * param,struct mlx5e_xsk_param * xsk,int node,u16 q_counter,struct mlx5e_rq * rq)1289 int mlx5e_open_rq(struct mlx5e_params *params, struct mlx5e_rq_param *param,
1290 struct mlx5e_xsk_param *xsk, int node, u16 q_counter,
1291 struct mlx5e_rq *rq)
1292 {
1293 struct mlx5_core_dev *mdev = rq->mdev;
1294 int err;
1295
1296 if (params->packet_merge.type == MLX5E_PACKET_MERGE_SHAMPO)
1297 __set_bit(MLX5E_RQ_STATE_SHAMPO, &rq->state);
1298
1299 err = mlx5e_alloc_rq(params, xsk, param, node, rq);
1300 if (err)
1301 return err;
1302
1303 err = mlx5e_create_rq(rq, param, q_counter);
1304 if (err)
1305 goto err_free_rq;
1306
1307 err = mlx5e_modify_rq_state(rq, MLX5_RQC_STATE_RST, MLX5_RQC_STATE_RDY);
1308 if (err)
1309 goto err_destroy_rq;
1310
1311 if (MLX5_CAP_ETH(mdev, cqe_checksum_full))
1312 __set_bit(MLX5E_RQ_STATE_CSUM_FULL, &rq->state);
1313
1314 if (rq->channel && !params->rx_dim_enabled) {
1315 rq->channel->rx_cq_moder = params->rx_cq_moderation;
1316 } else if (rq->channel) {
1317 u8 cq_period_mode;
1318
1319 cq_period_mode = params->rx_moder_use_cqe_mode ?
1320 DIM_CQ_PERIOD_MODE_START_FROM_CQE :
1321 DIM_CQ_PERIOD_MODE_START_FROM_EQE;
1322 mlx5e_reset_rx_moderation(&rq->channel->rx_cq_moder, cq_period_mode,
1323 params->rx_dim_enabled);
1324
1325 err = mlx5e_dim_rx_change(rq, params->rx_dim_enabled);
1326 if (err)
1327 goto err_destroy_rq;
1328 }
1329
1330 /* We disable csum_complete when XDP is enabled since
1331 * XDP programs might manipulate packets which will render
1332 * skb->checksum incorrect.
1333 */
1334 if (MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_NO_CSUM_COMPLETE) || params->xdp_prog)
1335 __set_bit(MLX5E_RQ_STATE_NO_CSUM_COMPLETE, &rq->state);
1336
1337 /* For CQE compression on striding RQ, use stride index provided by
1338 * HW if capability is supported.
1339 */
1340 if (MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_STRIDING_RQ) &&
1341 MLX5_CAP_GEN(mdev, mini_cqe_resp_stride_index))
1342 __set_bit(MLX5E_RQ_STATE_MINI_CQE_HW_STRIDX, &rq->state);
1343
1344 /* For enhanced CQE compression packet processing. decompress
1345 * session according to the enhanced layout.
1346 */
1347 if (MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS) &&
1348 MLX5_CAP_GEN(mdev, enhanced_cqe_compression))
1349 __set_bit(MLX5E_RQ_STATE_MINI_CQE_ENHANCED, &rq->state);
1350
1351 return 0;
1352
1353 err_destroy_rq:
1354 mlx5e_destroy_rq(rq);
1355 err_free_rq:
1356 mlx5e_free_rq(rq);
1357
1358 return err;
1359 }
1360
mlx5e_activate_rq(struct mlx5e_rq * rq)1361 void mlx5e_activate_rq(struct mlx5e_rq *rq)
1362 {
1363 set_bit(MLX5E_RQ_STATE_ENABLED, &rq->state);
1364 }
1365
mlx5e_deactivate_rq(struct mlx5e_rq * rq)1366 void mlx5e_deactivate_rq(struct mlx5e_rq *rq)
1367 {
1368 clear_bit(MLX5E_RQ_STATE_ENABLED, &rq->state);
1369 synchronize_net(); /* Sync with NAPI to prevent mlx5e_post_rx_wqes. */
1370 }
1371
mlx5e_close_rq(struct mlx5e_rq * rq)1372 void mlx5e_close_rq(struct mlx5e_rq *rq)
1373 {
1374 if (rq->dim)
1375 cancel_work_sync(&rq->dim->work);
1376 cancel_work_sync(&rq->recover_work);
1377 mlx5e_destroy_rq(rq);
1378 mlx5e_free_rx_descs(rq);
1379 mlx5e_free_rq(rq);
1380 }
1381
mlx5e_profile_get_tisn(struct mlx5_core_dev * mdev,struct mlx5e_priv * priv,const struct mlx5e_profile * profile,u8 lag_port,u8 tc)1382 u32 mlx5e_profile_get_tisn(struct mlx5_core_dev *mdev,
1383 struct mlx5e_priv *priv,
1384 const struct mlx5e_profile *profile,
1385 u8 lag_port, u8 tc)
1386 {
1387 if (profile->get_tisn)
1388 return profile->get_tisn(mdev, priv, lag_port, tc);
1389
1390 return mdev->mlx5e_res.hw_objs.tisn[lag_port][tc];
1391 }
1392
mlx5e_free_xdpsq_db(struct mlx5e_xdpsq * sq)1393 static void mlx5e_free_xdpsq_db(struct mlx5e_xdpsq *sq)
1394 {
1395 kvfree(sq->db.xdpi_fifo.xi);
1396 kvfree(sq->db.wqe_info);
1397 }
1398
mlx5e_alloc_xdpsq_fifo(struct mlx5e_xdpsq * sq,int numa)1399 static int mlx5e_alloc_xdpsq_fifo(struct mlx5e_xdpsq *sq, int numa)
1400 {
1401 struct mlx5e_xdp_info_fifo *xdpi_fifo = &sq->db.xdpi_fifo;
1402 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
1403 int entries;
1404 size_t size;
1405
1406 /* upper bound for maximum num of entries of all xmit_modes. */
1407 entries = roundup_pow_of_two(wq_sz * MLX5_SEND_WQEBB_NUM_DS *
1408 MLX5E_XDP_FIFO_ENTRIES2DS_MAX_RATIO);
1409
1410 size = array_size(sizeof(*xdpi_fifo->xi), entries);
1411 xdpi_fifo->xi = kvzalloc_node(size, GFP_KERNEL, numa);
1412 if (!xdpi_fifo->xi)
1413 return -ENOMEM;
1414
1415 xdpi_fifo->pc = &sq->xdpi_fifo_pc;
1416 xdpi_fifo->cc = &sq->xdpi_fifo_cc;
1417 xdpi_fifo->mask = entries - 1;
1418
1419 return 0;
1420 }
1421
mlx5e_alloc_xdpsq_db(struct mlx5e_xdpsq * sq,int numa)1422 static int mlx5e_alloc_xdpsq_db(struct mlx5e_xdpsq *sq, int numa)
1423 {
1424 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
1425 size_t size;
1426 int err;
1427
1428 size = array_size(sizeof(*sq->db.wqe_info), wq_sz);
1429 sq->db.wqe_info = kvzalloc_node(size, GFP_KERNEL, numa);
1430 if (!sq->db.wqe_info)
1431 return -ENOMEM;
1432
1433 err = mlx5e_alloc_xdpsq_fifo(sq, numa);
1434 if (err) {
1435 mlx5e_free_xdpsq_db(sq);
1436 return err;
1437 }
1438
1439 return 0;
1440 }
1441
mlx5e_alloc_xdpsq(struct mlx5e_channel * c,struct mlx5e_params * params,struct xsk_buff_pool * xsk_pool,struct mlx5e_sq_param * param,struct mlx5e_xdpsq * sq,bool is_redirect)1442 static int mlx5e_alloc_xdpsq(struct mlx5e_channel *c,
1443 struct mlx5e_params *params,
1444 struct xsk_buff_pool *xsk_pool,
1445 struct mlx5e_sq_param *param,
1446 struct mlx5e_xdpsq *sq,
1447 bool is_redirect)
1448 {
1449 void *sqc_wq = MLX5_ADDR_OF(sqc, param->sqc, wq);
1450 struct mlx5_core_dev *mdev = c->mdev;
1451 struct mlx5_wq_cyc *wq = &sq->wq;
1452 int err;
1453
1454 sq->pdev = c->pdev;
1455 sq->mkey_be = c->mkey_be;
1456 sq->channel = c;
1457 sq->uar_map = mdev->mlx5e_res.hw_objs.bfreg.map;
1458 sq->min_inline_mode = params->tx_min_inline_mode;
1459 sq->hw_mtu = MLX5E_SW2HW_MTU(params, params->sw_mtu) - ETH_FCS_LEN;
1460 sq->xsk_pool = xsk_pool;
1461
1462 sq->stats = sq->xsk_pool ?
1463 &c->priv->channel_stats[c->ix]->xsksq :
1464 is_redirect ?
1465 &c->priv->channel_stats[c->ix]->xdpsq :
1466 &c->priv->channel_stats[c->ix]->rq_xdpsq;
1467 sq->stop_room = param->is_mpw ? mlx5e_stop_room_for_mpwqe(mdev) :
1468 mlx5e_stop_room_for_max_wqe(mdev);
1469 sq->max_sq_mpw_wqebbs = mlx5e_get_max_sq_aligned_wqebbs(mdev);
1470
1471 param->wq.db_numa_node = cpu_to_node(c->cpu);
1472 err = mlx5_wq_cyc_create(mdev, ¶m->wq, sqc_wq, wq, &sq->wq_ctrl);
1473 if (err)
1474 return err;
1475 wq->db = &wq->db[MLX5_SND_DBR];
1476
1477 err = mlx5e_alloc_xdpsq_db(sq, cpu_to_node(c->cpu));
1478 if (err)
1479 goto err_sq_wq_destroy;
1480
1481 return 0;
1482
1483 err_sq_wq_destroy:
1484 mlx5_wq_destroy(&sq->wq_ctrl);
1485
1486 return err;
1487 }
1488
mlx5e_free_xdpsq(struct mlx5e_xdpsq * sq)1489 static void mlx5e_free_xdpsq(struct mlx5e_xdpsq *sq)
1490 {
1491 mlx5e_free_xdpsq_db(sq);
1492 mlx5_wq_destroy(&sq->wq_ctrl);
1493 }
1494
mlx5e_free_icosq_db(struct mlx5e_icosq * sq)1495 static void mlx5e_free_icosq_db(struct mlx5e_icosq *sq)
1496 {
1497 kvfree(sq->db.wqe_info);
1498 }
1499
mlx5e_alloc_icosq_db(struct mlx5e_icosq * sq,int numa)1500 static int mlx5e_alloc_icosq_db(struct mlx5e_icosq *sq, int numa)
1501 {
1502 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
1503 size_t size;
1504
1505 size = array_size(wq_sz, sizeof(*sq->db.wqe_info));
1506 sq->db.wqe_info = kvzalloc_node(size, GFP_KERNEL, numa);
1507 if (!sq->db.wqe_info)
1508 return -ENOMEM;
1509
1510 return 0;
1511 }
1512
mlx5e_icosq_err_cqe_work(struct work_struct * recover_work)1513 static void mlx5e_icosq_err_cqe_work(struct work_struct *recover_work)
1514 {
1515 struct mlx5e_icosq *sq = container_of(recover_work, struct mlx5e_icosq,
1516 recover_work);
1517
1518 mlx5e_reporter_icosq_cqe_err(sq);
1519 }
1520
mlx5e_async_icosq_err_cqe_work(struct work_struct * recover_work)1521 static void mlx5e_async_icosq_err_cqe_work(struct work_struct *recover_work)
1522 {
1523 struct mlx5e_icosq *sq = container_of(recover_work, struct mlx5e_icosq,
1524 recover_work);
1525
1526 /* Not implemented yet. */
1527
1528 netdev_warn(sq->channel->netdev, "async_icosq recovery is not implemented\n");
1529 }
1530
mlx5e_alloc_icosq(struct mlx5e_channel * c,struct mlx5e_sq_param * param,struct mlx5e_icosq * sq,work_func_t recover_work_func)1531 static int mlx5e_alloc_icosq(struct mlx5e_channel *c,
1532 struct mlx5e_sq_param *param,
1533 struct mlx5e_icosq *sq,
1534 work_func_t recover_work_func)
1535 {
1536 void *sqc_wq = MLX5_ADDR_OF(sqc, param->sqc, wq);
1537 struct mlx5_core_dev *mdev = c->mdev;
1538 struct mlx5_wq_cyc *wq = &sq->wq;
1539 int err;
1540
1541 sq->channel = c;
1542 sq->uar_map = mdev->mlx5e_res.hw_objs.bfreg.map;
1543 sq->reserved_room = param->stop_room;
1544
1545 param->wq.db_numa_node = cpu_to_node(c->cpu);
1546 err = mlx5_wq_cyc_create(mdev, ¶m->wq, sqc_wq, wq, &sq->wq_ctrl);
1547 if (err)
1548 return err;
1549 wq->db = &wq->db[MLX5_SND_DBR];
1550
1551 err = mlx5e_alloc_icosq_db(sq, cpu_to_node(c->cpu));
1552 if (err)
1553 goto err_sq_wq_destroy;
1554
1555 INIT_WORK(&sq->recover_work, recover_work_func);
1556
1557 return 0;
1558
1559 err_sq_wq_destroy:
1560 mlx5_wq_destroy(&sq->wq_ctrl);
1561
1562 return err;
1563 }
1564
mlx5e_free_icosq(struct mlx5e_icosq * sq)1565 static void mlx5e_free_icosq(struct mlx5e_icosq *sq)
1566 {
1567 mlx5e_free_icosq_db(sq);
1568 mlx5_wq_destroy(&sq->wq_ctrl);
1569 }
1570
mlx5e_free_txqsq_db(struct mlx5e_txqsq * sq)1571 void mlx5e_free_txqsq_db(struct mlx5e_txqsq *sq)
1572 {
1573 kvfree(sq->db.wqe_info);
1574 kvfree(sq->db.skb_fifo.fifo);
1575 kvfree(sq->db.dma_fifo);
1576 }
1577
mlx5e_alloc_txqsq_db(struct mlx5e_txqsq * sq,int numa)1578 int mlx5e_alloc_txqsq_db(struct mlx5e_txqsq *sq, int numa)
1579 {
1580 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
1581 int df_sz = wq_sz * MLX5_SEND_WQEBB_NUM_DS;
1582
1583 sq->db.dma_fifo = kvzalloc_node(array_size(df_sz,
1584 sizeof(*sq->db.dma_fifo)),
1585 GFP_KERNEL, numa);
1586 sq->db.skb_fifo.fifo = kvzalloc_node(array_size(df_sz,
1587 sizeof(*sq->db.skb_fifo.fifo)),
1588 GFP_KERNEL, numa);
1589 sq->db.wqe_info = kvzalloc_node(array_size(wq_sz,
1590 sizeof(*sq->db.wqe_info)),
1591 GFP_KERNEL, numa);
1592 if (!sq->db.dma_fifo || !sq->db.skb_fifo.fifo || !sq->db.wqe_info) {
1593 mlx5e_free_txqsq_db(sq);
1594 return -ENOMEM;
1595 }
1596
1597 sq->dma_fifo_mask = df_sz - 1;
1598
1599 sq->db.skb_fifo.pc = &sq->skb_fifo_pc;
1600 sq->db.skb_fifo.cc = &sq->skb_fifo_cc;
1601 sq->db.skb_fifo.mask = df_sz - 1;
1602
1603 return 0;
1604 }
1605
mlx5e_alloc_txqsq(struct mlx5e_channel * c,int txq_ix,struct mlx5e_params * params,struct mlx5e_sq_param * param,struct mlx5e_txqsq * sq,int tc)1606 static int mlx5e_alloc_txqsq(struct mlx5e_channel *c,
1607 int txq_ix,
1608 struct mlx5e_params *params,
1609 struct mlx5e_sq_param *param,
1610 struct mlx5e_txqsq *sq,
1611 int tc)
1612 {
1613 void *sqc_wq = MLX5_ADDR_OF(sqc, param->sqc, wq);
1614 struct mlx5_core_dev *mdev = c->mdev;
1615 struct mlx5_wq_cyc *wq = &sq->wq;
1616 int err;
1617
1618 sq->pdev = c->pdev;
1619 sq->clock = mdev->clock;
1620 sq->mkey_be = c->mkey_be;
1621 sq->netdev = c->netdev;
1622 sq->mdev = c->mdev;
1623 sq->channel = c;
1624 sq->priv = c->priv;
1625 sq->ch_ix = c->ix;
1626 sq->txq_ix = txq_ix;
1627 sq->uar_map = mdev->mlx5e_res.hw_objs.bfreg.map;
1628 sq->min_inline_mode = params->tx_min_inline_mode;
1629 sq->hw_mtu = MLX5E_SW2HW_MTU(params, params->sw_mtu);
1630 sq->max_sq_mpw_wqebbs = mlx5e_get_max_sq_aligned_wqebbs(mdev);
1631 INIT_WORK(&sq->recover_work, mlx5e_tx_err_cqe_work);
1632 if (!MLX5_CAP_ETH(mdev, wqe_vlan_insert))
1633 set_bit(MLX5E_SQ_STATE_VLAN_NEED_L2_INLINE, &sq->state);
1634 if (mlx5_ipsec_device_caps(c->priv->mdev))
1635 set_bit(MLX5E_SQ_STATE_IPSEC, &sq->state);
1636 if (param->is_mpw)
1637 set_bit(MLX5E_SQ_STATE_MPWQE, &sq->state);
1638 sq->stop_room = param->stop_room;
1639 sq->ptp_cyc2time = mlx5_sq_ts_translator(mdev);
1640
1641 param->wq.db_numa_node = cpu_to_node(c->cpu);
1642 err = mlx5_wq_cyc_create(mdev, ¶m->wq, sqc_wq, wq, &sq->wq_ctrl);
1643 if (err)
1644 return err;
1645 wq->db = &wq->db[MLX5_SND_DBR];
1646
1647 err = mlx5e_alloc_txqsq_db(sq, cpu_to_node(c->cpu));
1648 if (err)
1649 goto err_sq_wq_destroy;
1650
1651 return 0;
1652
1653 err_sq_wq_destroy:
1654 mlx5_wq_destroy(&sq->wq_ctrl);
1655
1656 return err;
1657 }
1658
mlx5e_free_txqsq(struct mlx5e_txqsq * sq)1659 void mlx5e_free_txqsq(struct mlx5e_txqsq *sq)
1660 {
1661 kvfree(sq->dim);
1662 mlx5e_free_txqsq_db(sq);
1663 mlx5_wq_destroy(&sq->wq_ctrl);
1664 }
1665
mlx5e_create_sq(struct mlx5_core_dev * mdev,struct mlx5e_sq_param * param,struct mlx5e_create_sq_param * csp,u32 * sqn)1666 static int mlx5e_create_sq(struct mlx5_core_dev *mdev,
1667 struct mlx5e_sq_param *param,
1668 struct mlx5e_create_sq_param *csp,
1669 u32 *sqn)
1670 {
1671 u8 ts_format;
1672 void *in;
1673 void *sqc;
1674 void *wq;
1675 int inlen;
1676 int err;
1677
1678 inlen = MLX5_ST_SZ_BYTES(create_sq_in) +
1679 sizeof(u64) * csp->wq_ctrl->buf.npages;
1680 in = kvzalloc(inlen, GFP_KERNEL);
1681 if (!in)
1682 return -ENOMEM;
1683
1684 ts_format = mlx5_is_real_time_sq(mdev) ?
1685 MLX5_TIMESTAMP_FORMAT_REAL_TIME :
1686 MLX5_TIMESTAMP_FORMAT_FREE_RUNNING;
1687 sqc = MLX5_ADDR_OF(create_sq_in, in, ctx);
1688 wq = MLX5_ADDR_OF(sqc, sqc, wq);
1689
1690 memcpy(sqc, param->sqc, sizeof(param->sqc));
1691 MLX5_SET(sqc, sqc, tis_lst_sz, csp->tis_lst_sz);
1692 MLX5_SET(sqc, sqc, tis_num_0, csp->tisn);
1693 MLX5_SET(sqc, sqc, cqn, csp->cqn);
1694 MLX5_SET(sqc, sqc, ts_cqe_to_dest_cqn, csp->ts_cqe_to_dest_cqn);
1695 MLX5_SET(sqc, sqc, ts_format, ts_format);
1696
1697
1698 if (MLX5_CAP_ETH(mdev, wqe_inline_mode) == MLX5_CAP_INLINE_MODE_VPORT_CONTEXT)
1699 MLX5_SET(sqc, sqc, min_wqe_inline_mode, csp->min_inline_mode);
1700
1701 MLX5_SET(sqc, sqc, state, MLX5_SQC_STATE_RST);
1702 MLX5_SET(sqc, sqc, flush_in_error_en, 1);
1703
1704 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_CYCLIC);
1705 MLX5_SET(wq, wq, uar_page, mdev->mlx5e_res.hw_objs.bfreg.index);
1706 MLX5_SET(wq, wq, log_wq_pg_sz, csp->wq_ctrl->buf.page_shift -
1707 MLX5_ADAPTER_PAGE_SHIFT);
1708 MLX5_SET64(wq, wq, dbr_addr, csp->wq_ctrl->db.dma);
1709
1710 mlx5_fill_page_frag_array(&csp->wq_ctrl->buf,
1711 (__be64 *)MLX5_ADDR_OF(wq, wq, pas));
1712
1713 err = mlx5_core_create_sq(mdev, in, inlen, sqn);
1714
1715 kvfree(in);
1716
1717 return err;
1718 }
1719
mlx5e_modify_sq(struct mlx5_core_dev * mdev,u32 sqn,struct mlx5e_modify_sq_param * p)1720 int mlx5e_modify_sq(struct mlx5_core_dev *mdev, u32 sqn,
1721 struct mlx5e_modify_sq_param *p)
1722 {
1723 u64 bitmask = 0;
1724 void *in;
1725 void *sqc;
1726 int inlen;
1727 int err;
1728
1729 inlen = MLX5_ST_SZ_BYTES(modify_sq_in);
1730 in = kvzalloc(inlen, GFP_KERNEL);
1731 if (!in)
1732 return -ENOMEM;
1733
1734 sqc = MLX5_ADDR_OF(modify_sq_in, in, ctx);
1735
1736 MLX5_SET(modify_sq_in, in, sq_state, p->curr_state);
1737 MLX5_SET(sqc, sqc, state, p->next_state);
1738 if (p->rl_update && p->next_state == MLX5_SQC_STATE_RDY) {
1739 bitmask |= 1;
1740 MLX5_SET(sqc, sqc, packet_pacing_rate_limit_index, p->rl_index);
1741 }
1742 if (p->qos_update && p->next_state == MLX5_SQC_STATE_RDY) {
1743 bitmask |= 1 << 2;
1744 MLX5_SET(sqc, sqc, qos_queue_group_id, p->qos_queue_group_id);
1745 }
1746 MLX5_SET64(modify_sq_in, in, modify_bitmask, bitmask);
1747
1748 err = mlx5_core_modify_sq(mdev, sqn, in);
1749
1750 kvfree(in);
1751
1752 return err;
1753 }
1754
mlx5e_destroy_sq(struct mlx5_core_dev * mdev,u32 sqn)1755 static void mlx5e_destroy_sq(struct mlx5_core_dev *mdev, u32 sqn)
1756 {
1757 mlx5_core_destroy_sq(mdev, sqn);
1758 }
1759
mlx5e_create_sq_rdy(struct mlx5_core_dev * mdev,struct mlx5e_sq_param * param,struct mlx5e_create_sq_param * csp,u16 qos_queue_group_id,u32 * sqn)1760 int mlx5e_create_sq_rdy(struct mlx5_core_dev *mdev,
1761 struct mlx5e_sq_param *param,
1762 struct mlx5e_create_sq_param *csp,
1763 u16 qos_queue_group_id,
1764 u32 *sqn)
1765 {
1766 struct mlx5e_modify_sq_param msp = {0};
1767 int err;
1768
1769 err = mlx5e_create_sq(mdev, param, csp, sqn);
1770 if (err)
1771 return err;
1772
1773 msp.curr_state = MLX5_SQC_STATE_RST;
1774 msp.next_state = MLX5_SQC_STATE_RDY;
1775 if (qos_queue_group_id) {
1776 msp.qos_update = true;
1777 msp.qos_queue_group_id = qos_queue_group_id;
1778 }
1779 err = mlx5e_modify_sq(mdev, *sqn, &msp);
1780 if (err)
1781 mlx5e_destroy_sq(mdev, *sqn);
1782
1783 return err;
1784 }
1785
1786 static int mlx5e_set_sq_maxrate(struct net_device *dev,
1787 struct mlx5e_txqsq *sq, u32 rate);
1788
mlx5e_open_txqsq(struct mlx5e_channel * c,u32 tisn,int txq_ix,struct mlx5e_params * params,struct mlx5e_sq_param * param,struct mlx5e_txqsq * sq,int tc,u16 qos_queue_group_id,struct mlx5e_sq_stats * sq_stats)1789 int mlx5e_open_txqsq(struct mlx5e_channel *c, u32 tisn, int txq_ix,
1790 struct mlx5e_params *params, struct mlx5e_sq_param *param,
1791 struct mlx5e_txqsq *sq, int tc, u16 qos_queue_group_id,
1792 struct mlx5e_sq_stats *sq_stats)
1793 {
1794 struct mlx5e_create_sq_param csp = {};
1795 u32 tx_rate;
1796 int err;
1797
1798 err = mlx5e_alloc_txqsq(c, txq_ix, params, param, sq, tc);
1799 if (err)
1800 return err;
1801
1802 sq->stats = sq_stats;
1803
1804 csp.tisn = tisn;
1805 csp.tis_lst_sz = 1;
1806 csp.cqn = sq->cq.mcq.cqn;
1807 csp.wq_ctrl = &sq->wq_ctrl;
1808 csp.min_inline_mode = sq->min_inline_mode;
1809 err = mlx5e_create_sq_rdy(c->mdev, param, &csp, qos_queue_group_id, &sq->sqn);
1810 if (err)
1811 goto err_free_txqsq;
1812
1813 tx_rate = c->priv->tx_rates[sq->txq_ix];
1814 if (tx_rate)
1815 mlx5e_set_sq_maxrate(c->netdev, sq, tx_rate);
1816
1817 if (sq->channel && !params->tx_dim_enabled) {
1818 sq->channel->tx_cq_moder = params->tx_cq_moderation;
1819 } else if (sq->channel) {
1820 u8 cq_period_mode;
1821
1822 cq_period_mode = params->tx_moder_use_cqe_mode ?
1823 DIM_CQ_PERIOD_MODE_START_FROM_CQE :
1824 DIM_CQ_PERIOD_MODE_START_FROM_EQE;
1825 mlx5e_reset_tx_moderation(&sq->channel->tx_cq_moder,
1826 cq_period_mode,
1827 params->tx_dim_enabled);
1828
1829 err = mlx5e_dim_tx_change(sq, params->tx_dim_enabled);
1830 if (err)
1831 goto err_destroy_sq;
1832 }
1833
1834 return 0;
1835
1836 err_destroy_sq:
1837 mlx5e_destroy_sq(c->mdev, sq->sqn);
1838 err_free_txqsq:
1839 mlx5e_free_txqsq(sq);
1840
1841 return err;
1842 }
1843
mlx5e_activate_txqsq(struct mlx5e_txqsq * sq)1844 void mlx5e_activate_txqsq(struct mlx5e_txqsq *sq)
1845 {
1846 sq->txq = netdev_get_tx_queue(sq->netdev, sq->txq_ix);
1847 set_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1848 netdev_tx_reset_queue(sq->txq);
1849 netif_tx_start_queue(sq->txq);
1850 netif_queue_set_napi(sq->netdev, sq->txq_ix, NETDEV_QUEUE_TYPE_TX, sq->cq.napi);
1851 }
1852
mlx5e_tx_disable_queue(struct netdev_queue * txq)1853 void mlx5e_tx_disable_queue(struct netdev_queue *txq)
1854 {
1855 __netif_tx_lock_bh(txq);
1856 netif_tx_stop_queue(txq);
1857 __netif_tx_unlock_bh(txq);
1858 }
1859
mlx5e_deactivate_txqsq(struct mlx5e_txqsq * sq)1860 void mlx5e_deactivate_txqsq(struct mlx5e_txqsq *sq)
1861 {
1862 struct mlx5_wq_cyc *wq = &sq->wq;
1863
1864 netif_queue_set_napi(sq->netdev, sq->txq_ix, NETDEV_QUEUE_TYPE_TX, NULL);
1865 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1866 synchronize_net(); /* Sync with NAPI to prevent netif_tx_wake_queue. */
1867
1868 mlx5e_tx_disable_queue(sq->txq);
1869
1870 /* last doorbell out, godspeed .. */
1871 if (mlx5e_wqc_has_room_for(wq, sq->cc, sq->pc, 1)) {
1872 u16 pi = mlx5_wq_cyc_ctr2ix(wq, sq->pc);
1873 struct mlx5e_tx_wqe *nop;
1874
1875 sq->db.wqe_info[pi] = (struct mlx5e_tx_wqe_info) {
1876 .num_wqebbs = 1,
1877 };
1878
1879 nop = mlx5e_post_nop(wq, sq->sqn, &sq->pc);
1880 mlx5e_notify_hw(wq, sq->pc, sq->uar_map, &nop->ctrl);
1881 }
1882 }
1883
mlx5e_close_txqsq(struct mlx5e_txqsq * sq)1884 void mlx5e_close_txqsq(struct mlx5e_txqsq *sq)
1885 {
1886 struct mlx5_core_dev *mdev = sq->mdev;
1887 struct mlx5_rate_limit rl = {0};
1888
1889 if (sq->dim)
1890 cancel_work_sync(&sq->dim->work);
1891 cancel_work_sync(&sq->recover_work);
1892 mlx5e_destroy_sq(mdev, sq->sqn);
1893 if (sq->rate_limit) {
1894 rl.rate = sq->rate_limit;
1895 mlx5_rl_remove_rate(mdev, &rl);
1896 }
1897 mlx5e_free_txqsq_descs(sq);
1898 mlx5e_free_txqsq(sq);
1899 }
1900
mlx5e_tx_err_cqe_work(struct work_struct * recover_work)1901 void mlx5e_tx_err_cqe_work(struct work_struct *recover_work)
1902 {
1903 struct mlx5e_txqsq *sq = container_of(recover_work, struct mlx5e_txqsq,
1904 recover_work);
1905
1906 mlx5e_reporter_tx_err_cqe(sq);
1907 }
1908
mlx5e_get_def_tx_moderation(u8 cq_period_mode)1909 static struct dim_cq_moder mlx5e_get_def_tx_moderation(u8 cq_period_mode)
1910 {
1911 return (struct dim_cq_moder) {
1912 .cq_period_mode = cq_period_mode,
1913 .pkts = MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS,
1914 .usec = cq_period_mode == DIM_CQ_PERIOD_MODE_START_FROM_CQE ?
1915 MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC_FROM_CQE :
1916 MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC,
1917 };
1918 }
1919
mlx5e_reset_tx_moderation(struct dim_cq_moder * cq_moder,u8 cq_period_mode,bool dim_enabled)1920 bool mlx5e_reset_tx_moderation(struct dim_cq_moder *cq_moder, u8 cq_period_mode,
1921 bool dim_enabled)
1922 {
1923 bool reset_needed = cq_moder->cq_period_mode != cq_period_mode;
1924
1925 if (dim_enabled)
1926 *cq_moder = net_dim_get_def_tx_moderation(cq_period_mode);
1927 else
1928 *cq_moder = mlx5e_get_def_tx_moderation(cq_period_mode);
1929
1930 return reset_needed;
1931 }
1932
mlx5e_reset_tx_channels_moderation(struct mlx5e_channels * chs,u8 cq_period_mode,bool dim_enabled,bool keep_dim_state)1933 bool mlx5e_reset_tx_channels_moderation(struct mlx5e_channels *chs, u8 cq_period_mode,
1934 bool dim_enabled, bool keep_dim_state)
1935 {
1936 bool reset = false;
1937 int i, tc;
1938
1939 for (i = 0; i < chs->num; i++) {
1940 for (tc = 0; tc < mlx5e_get_dcb_num_tc(&chs->params); tc++) {
1941 if (keep_dim_state)
1942 dim_enabled = !!chs->c[i]->sq[tc].dim;
1943
1944 reset |= mlx5e_reset_tx_moderation(&chs->c[i]->tx_cq_moder,
1945 cq_period_mode, dim_enabled);
1946 }
1947 }
1948
1949 return reset;
1950 }
1951
mlx5e_open_icosq(struct mlx5e_channel * c,struct mlx5e_params * params,struct mlx5e_sq_param * param,struct mlx5e_icosq * sq,work_func_t recover_work_func)1952 static int mlx5e_open_icosq(struct mlx5e_channel *c, struct mlx5e_params *params,
1953 struct mlx5e_sq_param *param, struct mlx5e_icosq *sq,
1954 work_func_t recover_work_func)
1955 {
1956 struct mlx5e_create_sq_param csp = {};
1957 int err;
1958
1959 err = mlx5e_alloc_icosq(c, param, sq, recover_work_func);
1960 if (err)
1961 return err;
1962
1963 csp.cqn = sq->cq.mcq.cqn;
1964 csp.wq_ctrl = &sq->wq_ctrl;
1965 csp.min_inline_mode = params->tx_min_inline_mode;
1966 err = mlx5e_create_sq_rdy(c->mdev, param, &csp, 0, &sq->sqn);
1967 if (err)
1968 goto err_free_icosq;
1969
1970 if (param->is_tls) {
1971 sq->ktls_resync = mlx5e_ktls_rx_resync_create_resp_list();
1972 if (IS_ERR(sq->ktls_resync)) {
1973 err = PTR_ERR(sq->ktls_resync);
1974 goto err_destroy_icosq;
1975 }
1976 }
1977 return 0;
1978
1979 err_destroy_icosq:
1980 mlx5e_destroy_sq(c->mdev, sq->sqn);
1981 err_free_icosq:
1982 mlx5e_free_icosq(sq);
1983
1984 return err;
1985 }
1986
mlx5e_activate_icosq(struct mlx5e_icosq * icosq)1987 void mlx5e_activate_icosq(struct mlx5e_icosq *icosq)
1988 {
1989 set_bit(MLX5E_SQ_STATE_ENABLED, &icosq->state);
1990 }
1991
mlx5e_deactivate_icosq(struct mlx5e_icosq * icosq)1992 void mlx5e_deactivate_icosq(struct mlx5e_icosq *icosq)
1993 {
1994 clear_bit(MLX5E_SQ_STATE_ENABLED, &icosq->state);
1995 synchronize_net(); /* Sync with NAPI. */
1996 }
1997
mlx5e_close_icosq(struct mlx5e_icosq * sq)1998 static void mlx5e_close_icosq(struct mlx5e_icosq *sq)
1999 {
2000 struct mlx5e_channel *c = sq->channel;
2001
2002 if (sq->ktls_resync)
2003 mlx5e_ktls_rx_resync_destroy_resp_list(sq->ktls_resync);
2004 mlx5e_destroy_sq(c->mdev, sq->sqn);
2005 mlx5e_free_icosq_descs(sq);
2006 mlx5e_free_icosq(sq);
2007 }
2008
mlx5e_open_xdpsq(struct mlx5e_channel * c,struct mlx5e_params * params,struct mlx5e_sq_param * param,struct xsk_buff_pool * xsk_pool,struct mlx5e_xdpsq * sq,bool is_redirect)2009 int mlx5e_open_xdpsq(struct mlx5e_channel *c, struct mlx5e_params *params,
2010 struct mlx5e_sq_param *param, struct xsk_buff_pool *xsk_pool,
2011 struct mlx5e_xdpsq *sq, bool is_redirect)
2012 {
2013 struct mlx5e_create_sq_param csp = {};
2014 int err;
2015
2016 err = mlx5e_alloc_xdpsq(c, params, xsk_pool, param, sq, is_redirect);
2017 if (err)
2018 return err;
2019
2020 csp.tis_lst_sz = 1;
2021 csp.tisn = mlx5e_profile_get_tisn(c->mdev, c->priv, c->priv->profile,
2022 c->lag_port, 0); /* tc = 0 */
2023 csp.cqn = sq->cq.mcq.cqn;
2024 csp.wq_ctrl = &sq->wq_ctrl;
2025 csp.min_inline_mode = sq->min_inline_mode;
2026 set_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
2027
2028 err = mlx5e_create_sq_rdy(c->mdev, param, &csp, 0, &sq->sqn);
2029 if (err)
2030 goto err_free_xdpsq;
2031
2032 mlx5e_set_xmit_fp(sq, param->is_mpw);
2033
2034 return 0;
2035
2036 err_free_xdpsq:
2037 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
2038 mlx5e_free_xdpsq(sq);
2039
2040 return err;
2041 }
2042
mlx5e_close_xdpsq(struct mlx5e_xdpsq * sq)2043 void mlx5e_close_xdpsq(struct mlx5e_xdpsq *sq)
2044 {
2045 struct mlx5e_channel *c = sq->channel;
2046
2047 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
2048 synchronize_net(); /* Sync with NAPI. */
2049
2050 mlx5e_destroy_sq(c->mdev, sq->sqn);
2051 mlx5e_free_xdpsq_descs(sq);
2052 mlx5e_free_xdpsq(sq);
2053 }
2054
mlx5e_open_xdpredirect_sq(struct mlx5e_channel * c,struct mlx5e_params * params,struct mlx5e_channel_param * cparam,struct mlx5e_create_cq_param * ccp)2055 static struct mlx5e_xdpsq *mlx5e_open_xdpredirect_sq(struct mlx5e_channel *c,
2056 struct mlx5e_params *params,
2057 struct mlx5e_channel_param *cparam,
2058 struct mlx5e_create_cq_param *ccp)
2059 {
2060 struct mlx5e_xdpsq *xdpsq;
2061 int err;
2062
2063 xdpsq = kvzalloc_node(sizeof(*xdpsq), GFP_KERNEL, cpu_to_node(c->cpu));
2064 if (!xdpsq)
2065 return ERR_PTR(-ENOMEM);
2066
2067 err = mlx5e_open_cq(c->mdev, params->tx_cq_moderation,
2068 &cparam->xdp_sq.cqp, ccp, &xdpsq->cq);
2069 if (err)
2070 goto err_free_xdpsq;
2071
2072 err = mlx5e_open_xdpsq(c, params, &cparam->xdp_sq, NULL, xdpsq, true);
2073 if (err)
2074 goto err_close_xdpsq_cq;
2075
2076 return xdpsq;
2077
2078 err_close_xdpsq_cq:
2079 mlx5e_close_cq(&xdpsq->cq);
2080 err_free_xdpsq:
2081 kvfree(xdpsq);
2082
2083 return ERR_PTR(err);
2084 }
2085
mlx5e_close_xdpredirect_sq(struct mlx5e_xdpsq * xdpsq)2086 static void mlx5e_close_xdpredirect_sq(struct mlx5e_xdpsq *xdpsq)
2087 {
2088 mlx5e_close_xdpsq(xdpsq);
2089 mlx5e_close_cq(&xdpsq->cq);
2090 kvfree(xdpsq);
2091 }
2092
mlx5e_alloc_cq_common(struct mlx5_core_dev * mdev,struct net_device * netdev,struct workqueue_struct * workqueue,struct mlx5e_cq_param * param,struct mlx5e_cq * cq)2093 static int mlx5e_alloc_cq_common(struct mlx5_core_dev *mdev,
2094 struct net_device *netdev,
2095 struct workqueue_struct *workqueue,
2096 struct mlx5e_cq_param *param,
2097 struct mlx5e_cq *cq)
2098 {
2099 struct mlx5_core_cq *mcq = &cq->mcq;
2100 int err;
2101 u32 i;
2102
2103 err = mlx5_cqwq_create(mdev, ¶m->wq, param->cqc, &cq->wq,
2104 &cq->wq_ctrl);
2105 if (err)
2106 return err;
2107
2108 mcq->cqe_sz = 64;
2109 mcq->set_ci_db = cq->wq_ctrl.db.db;
2110 mcq->arm_db = cq->wq_ctrl.db.db + 1;
2111 *mcq->set_ci_db = 0;
2112 *mcq->arm_db = 0;
2113 mcq->vector = param->eq_ix;
2114 mcq->comp = mlx5e_completion_event;
2115 mcq->event = mlx5e_cq_error_event;
2116
2117 for (i = 0; i < mlx5_cqwq_get_size(&cq->wq); i++) {
2118 struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(&cq->wq, i);
2119
2120 cqe->op_own = 0xf1;
2121 cqe->validity_iteration_count = 0xff;
2122 }
2123
2124 cq->mdev = mdev;
2125 cq->netdev = netdev;
2126 cq->workqueue = workqueue;
2127
2128 return 0;
2129 }
2130
mlx5e_alloc_cq(struct mlx5_core_dev * mdev,struct mlx5e_cq_param * param,struct mlx5e_create_cq_param * ccp,struct mlx5e_cq * cq)2131 static int mlx5e_alloc_cq(struct mlx5_core_dev *mdev,
2132 struct mlx5e_cq_param *param,
2133 struct mlx5e_create_cq_param *ccp,
2134 struct mlx5e_cq *cq)
2135 {
2136 int err;
2137
2138 param->wq.buf_numa_node = ccp->node;
2139 param->wq.db_numa_node = ccp->node;
2140 param->eq_ix = ccp->ix;
2141
2142 err = mlx5e_alloc_cq_common(mdev, ccp->netdev, ccp->wq, param, cq);
2143
2144 cq->napi = ccp->napi;
2145 cq->ch_stats = ccp->ch_stats;
2146
2147 return err;
2148 }
2149
mlx5e_free_cq(struct mlx5e_cq * cq)2150 static void mlx5e_free_cq(struct mlx5e_cq *cq)
2151 {
2152 mlx5_wq_destroy(&cq->wq_ctrl);
2153 }
2154
mlx5e_create_cq(struct mlx5e_cq * cq,struct mlx5e_cq_param * param)2155 static int mlx5e_create_cq(struct mlx5e_cq *cq, struct mlx5e_cq_param *param)
2156 {
2157 u32 out[MLX5_ST_SZ_DW(create_cq_out)];
2158 struct mlx5_core_dev *mdev = cq->mdev;
2159 struct mlx5_core_cq *mcq = &cq->mcq;
2160
2161 void *in;
2162 void *cqc;
2163 int inlen;
2164 int eqn;
2165 int err;
2166
2167 err = mlx5_comp_eqn_get(mdev, param->eq_ix, &eqn);
2168 if (err)
2169 return err;
2170
2171 inlen = MLX5_ST_SZ_BYTES(create_cq_in) +
2172 sizeof(u64) * cq->wq_ctrl.buf.npages;
2173 in = kvzalloc(inlen, GFP_KERNEL);
2174 if (!in)
2175 return -ENOMEM;
2176
2177 cqc = MLX5_ADDR_OF(create_cq_in, in, cq_context);
2178
2179 memcpy(cqc, param->cqc, sizeof(param->cqc));
2180
2181 mlx5_fill_page_frag_array(&cq->wq_ctrl.buf,
2182 (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas));
2183
2184 MLX5_SET(cqc, cqc, cq_period_mode, mlx5e_cq_period_mode(param->cq_period_mode));
2185
2186 MLX5_SET(cqc, cqc, c_eqn_or_apu_element, eqn);
2187 MLX5_SET(cqc, cqc, uar_page, mdev->priv.uar->index);
2188 MLX5_SET(cqc, cqc, log_page_size, cq->wq_ctrl.buf.page_shift -
2189 MLX5_ADAPTER_PAGE_SHIFT);
2190 MLX5_SET64(cqc, cqc, dbr_addr, cq->wq_ctrl.db.dma);
2191
2192 err = mlx5_core_create_cq(mdev, mcq, in, inlen, out, sizeof(out));
2193
2194 kvfree(in);
2195
2196 if (err)
2197 return err;
2198
2199 mlx5e_cq_arm(cq);
2200
2201 return 0;
2202 }
2203
mlx5e_destroy_cq(struct mlx5e_cq * cq)2204 static void mlx5e_destroy_cq(struct mlx5e_cq *cq)
2205 {
2206 mlx5_core_destroy_cq(cq->mdev, &cq->mcq);
2207 }
2208
mlx5e_open_cq(struct mlx5_core_dev * mdev,struct dim_cq_moder moder,struct mlx5e_cq_param * param,struct mlx5e_create_cq_param * ccp,struct mlx5e_cq * cq)2209 int mlx5e_open_cq(struct mlx5_core_dev *mdev, struct dim_cq_moder moder,
2210 struct mlx5e_cq_param *param, struct mlx5e_create_cq_param *ccp,
2211 struct mlx5e_cq *cq)
2212 {
2213 int err;
2214
2215 err = mlx5e_alloc_cq(mdev, param, ccp, cq);
2216 if (err)
2217 return err;
2218
2219 err = mlx5e_create_cq(cq, param);
2220 if (err)
2221 goto err_free_cq;
2222
2223 if (MLX5_CAP_GEN(mdev, cq_moderation) &&
2224 MLX5_CAP_GEN(mdev, cq_period_mode_modify))
2225 mlx5e_modify_cq_moderation(mdev, &cq->mcq, moder.usec, moder.pkts,
2226 mlx5e_cq_period_mode(moder.cq_period_mode));
2227 return 0;
2228
2229 err_free_cq:
2230 mlx5e_free_cq(cq);
2231
2232 return err;
2233 }
2234
mlx5e_close_cq(struct mlx5e_cq * cq)2235 void mlx5e_close_cq(struct mlx5e_cq *cq)
2236 {
2237 mlx5e_destroy_cq(cq);
2238 mlx5e_free_cq(cq);
2239 }
2240
mlx5e_modify_cq_period_mode(struct mlx5_core_dev * dev,struct mlx5_core_cq * cq,u8 cq_period_mode)2241 int mlx5e_modify_cq_period_mode(struct mlx5_core_dev *dev, struct mlx5_core_cq *cq,
2242 u8 cq_period_mode)
2243 {
2244 u32 in[MLX5_ST_SZ_DW(modify_cq_in)] = {};
2245 void *cqc;
2246
2247 MLX5_SET(modify_cq_in, in, cqn, cq->cqn);
2248 cqc = MLX5_ADDR_OF(modify_cq_in, in, cq_context);
2249 MLX5_SET(cqc, cqc, cq_period_mode, mlx5e_cq_period_mode(cq_period_mode));
2250 MLX5_SET(modify_cq_in, in,
2251 modify_field_select_resize_field_select.modify_field_select.modify_field_select,
2252 MLX5_CQ_MODIFY_PERIOD_MODE);
2253
2254 return mlx5_core_modify_cq(dev, cq, in, sizeof(in));
2255 }
2256
mlx5e_modify_cq_moderation(struct mlx5_core_dev * dev,struct mlx5_core_cq * cq,u16 cq_period,u16 cq_max_count,u8 cq_period_mode)2257 int mlx5e_modify_cq_moderation(struct mlx5_core_dev *dev, struct mlx5_core_cq *cq,
2258 u16 cq_period, u16 cq_max_count, u8 cq_period_mode)
2259 {
2260 u32 in[MLX5_ST_SZ_DW(modify_cq_in)] = {};
2261 void *cqc;
2262
2263 MLX5_SET(modify_cq_in, in, cqn, cq->cqn);
2264 cqc = MLX5_ADDR_OF(modify_cq_in, in, cq_context);
2265 MLX5_SET(cqc, cqc, cq_period, cq_period);
2266 MLX5_SET(cqc, cqc, cq_max_count, cq_max_count);
2267 MLX5_SET(cqc, cqc, cq_period_mode, cq_period_mode);
2268 MLX5_SET(modify_cq_in, in,
2269 modify_field_select_resize_field_select.modify_field_select.modify_field_select,
2270 MLX5_CQ_MODIFY_PERIOD | MLX5_CQ_MODIFY_COUNT | MLX5_CQ_MODIFY_PERIOD_MODE);
2271
2272 return mlx5_core_modify_cq(dev, cq, in, sizeof(in));
2273 }
2274
mlx5e_open_tx_cqs(struct mlx5e_channel * c,struct mlx5e_params * params,struct mlx5e_create_cq_param * ccp,struct mlx5e_channel_param * cparam)2275 static int mlx5e_open_tx_cqs(struct mlx5e_channel *c,
2276 struct mlx5e_params *params,
2277 struct mlx5e_create_cq_param *ccp,
2278 struct mlx5e_channel_param *cparam)
2279 {
2280 int err;
2281 int tc;
2282
2283 for (tc = 0; tc < c->num_tc; tc++) {
2284 err = mlx5e_open_cq(c->mdev, params->tx_cq_moderation, &cparam->txq_sq.cqp,
2285 ccp, &c->sq[tc].cq);
2286 if (err)
2287 goto err_close_tx_cqs;
2288 }
2289
2290 return 0;
2291
2292 err_close_tx_cqs:
2293 for (tc--; tc >= 0; tc--)
2294 mlx5e_close_cq(&c->sq[tc].cq);
2295
2296 return err;
2297 }
2298
mlx5e_close_tx_cqs(struct mlx5e_channel * c)2299 static void mlx5e_close_tx_cqs(struct mlx5e_channel *c)
2300 {
2301 int tc;
2302
2303 for (tc = 0; tc < c->num_tc; tc++)
2304 mlx5e_close_cq(&c->sq[tc].cq);
2305 }
2306
mlx5e_mqprio_txq_to_tc(struct netdev_tc_txq * tc_to_txq,unsigned int txq)2307 static int mlx5e_mqprio_txq_to_tc(struct netdev_tc_txq *tc_to_txq, unsigned int txq)
2308 {
2309 int tc;
2310
2311 for (tc = 0; tc < TC_MAX_QUEUE; tc++)
2312 if (txq - tc_to_txq[tc].offset < tc_to_txq[tc].count)
2313 return tc;
2314
2315 WARN(1, "Unexpected TCs configuration. No match found for txq %u", txq);
2316 return -ENOENT;
2317 }
2318
mlx5e_txq_get_qos_node_hw_id(struct mlx5e_params * params,int txq_ix,u32 * hw_id)2319 static int mlx5e_txq_get_qos_node_hw_id(struct mlx5e_params *params, int txq_ix,
2320 u32 *hw_id)
2321 {
2322 int tc;
2323
2324 if (params->mqprio.mode != TC_MQPRIO_MODE_CHANNEL) {
2325 *hw_id = 0;
2326 return 0;
2327 }
2328
2329 tc = mlx5e_mqprio_txq_to_tc(params->mqprio.tc_to_txq, txq_ix);
2330 if (tc < 0)
2331 return tc;
2332
2333 if (tc >= params->mqprio.num_tc) {
2334 WARN(1, "Unexpected TCs configuration. tc %d is out of range of %u",
2335 tc, params->mqprio.num_tc);
2336 return -EINVAL;
2337 }
2338
2339 *hw_id = params->mqprio.channel.hw_id[tc];
2340 return 0;
2341 }
2342
mlx5e_open_sqs(struct mlx5e_channel * c,struct mlx5e_params * params,struct mlx5e_channel_param * cparam)2343 static int mlx5e_open_sqs(struct mlx5e_channel *c,
2344 struct mlx5e_params *params,
2345 struct mlx5e_channel_param *cparam)
2346 {
2347 int err, tc;
2348
2349 for (tc = 0; tc < mlx5e_get_dcb_num_tc(params); tc++) {
2350 int txq_ix = c->ix + tc * params->num_channels;
2351 u32 qos_queue_group_id;
2352 u32 tisn;
2353
2354 tisn = mlx5e_profile_get_tisn(c->mdev, c->priv, c->priv->profile,
2355 c->lag_port, tc);
2356 err = mlx5e_txq_get_qos_node_hw_id(params, txq_ix, &qos_queue_group_id);
2357 if (err)
2358 goto err_close_sqs;
2359
2360 err = mlx5e_open_txqsq(c, tisn, txq_ix,
2361 params, &cparam->txq_sq, &c->sq[tc], tc,
2362 qos_queue_group_id,
2363 &c->priv->channel_stats[c->ix]->sq[tc]);
2364 if (err)
2365 goto err_close_sqs;
2366 }
2367
2368 return 0;
2369
2370 err_close_sqs:
2371 for (tc--; tc >= 0; tc--)
2372 mlx5e_close_txqsq(&c->sq[tc]);
2373
2374 return err;
2375 }
2376
mlx5e_close_sqs(struct mlx5e_channel * c)2377 static void mlx5e_close_sqs(struct mlx5e_channel *c)
2378 {
2379 int tc;
2380
2381 for (tc = 0; tc < c->num_tc; tc++)
2382 mlx5e_close_txqsq(&c->sq[tc]);
2383 }
2384
mlx5e_set_sq_maxrate(struct net_device * dev,struct mlx5e_txqsq * sq,u32 rate)2385 static int mlx5e_set_sq_maxrate(struct net_device *dev,
2386 struct mlx5e_txqsq *sq, u32 rate)
2387 {
2388 struct mlx5e_priv *priv = netdev_priv(dev);
2389 struct mlx5_core_dev *mdev = priv->mdev;
2390 struct mlx5e_modify_sq_param msp = {0};
2391 struct mlx5_rate_limit rl = {0};
2392 u16 rl_index = 0;
2393 int err;
2394
2395 if (rate == sq->rate_limit)
2396 /* nothing to do */
2397 return 0;
2398
2399 if (sq->rate_limit) {
2400 rl.rate = sq->rate_limit;
2401 /* remove current rl index to free space to next ones */
2402 mlx5_rl_remove_rate(mdev, &rl);
2403 }
2404
2405 sq->rate_limit = 0;
2406
2407 if (rate) {
2408 rl.rate = rate;
2409 err = mlx5_rl_add_rate(mdev, &rl_index, &rl);
2410 if (err) {
2411 netdev_err(dev, "Failed configuring rate %u: %d\n",
2412 rate, err);
2413 return err;
2414 }
2415 }
2416
2417 msp.curr_state = MLX5_SQC_STATE_RDY;
2418 msp.next_state = MLX5_SQC_STATE_RDY;
2419 msp.rl_index = rl_index;
2420 msp.rl_update = true;
2421 err = mlx5e_modify_sq(mdev, sq->sqn, &msp);
2422 if (err) {
2423 netdev_err(dev, "Failed configuring rate %u: %d\n",
2424 rate, err);
2425 /* remove the rate from the table */
2426 if (rate)
2427 mlx5_rl_remove_rate(mdev, &rl);
2428 return err;
2429 }
2430
2431 sq->rate_limit = rate;
2432 return 0;
2433 }
2434
mlx5e_set_tx_maxrate(struct net_device * dev,int index,u32 rate)2435 static int mlx5e_set_tx_maxrate(struct net_device *dev, int index, u32 rate)
2436 {
2437 struct mlx5e_priv *priv = netdev_priv(dev);
2438 struct mlx5_core_dev *mdev = priv->mdev;
2439 struct mlx5e_txqsq *sq = priv->txq2sq[index];
2440 int err = 0;
2441
2442 if (!mlx5_rl_is_supported(mdev)) {
2443 netdev_err(dev, "Rate limiting is not supported on this device\n");
2444 return -EINVAL;
2445 }
2446
2447 /* rate is given in Mb/sec, HW config is in Kb/sec */
2448 rate = rate << 10;
2449
2450 /* Check whether rate in valid range, 0 is always valid */
2451 if (rate && !mlx5_rl_is_in_range(mdev, rate)) {
2452 netdev_err(dev, "TX rate %u, is not in range\n", rate);
2453 return -ERANGE;
2454 }
2455
2456 mutex_lock(&priv->state_lock);
2457 if (test_bit(MLX5E_STATE_OPENED, &priv->state))
2458 err = mlx5e_set_sq_maxrate(dev, sq, rate);
2459 if (!err)
2460 priv->tx_rates[index] = rate;
2461 mutex_unlock(&priv->state_lock);
2462
2463 return err;
2464 }
2465
mlx5e_open_rxq_rq(struct mlx5e_channel * c,struct mlx5e_params * params,struct mlx5e_rq_param * rq_params)2466 static int mlx5e_open_rxq_rq(struct mlx5e_channel *c, struct mlx5e_params *params,
2467 struct mlx5e_rq_param *rq_params)
2468 {
2469 u16 q_counter = c->priv->q_counter[c->sd_ix];
2470 int err;
2471
2472 err = mlx5e_init_rxq_rq(c, params, rq_params->xdp_frag_size, &c->rq);
2473 if (err)
2474 return err;
2475
2476 return mlx5e_open_rq(params, rq_params, NULL, cpu_to_node(c->cpu), q_counter, &c->rq);
2477 }
2478
mlx5e_open_queues(struct mlx5e_channel * c,struct mlx5e_params * params,struct mlx5e_channel_param * cparam)2479 static int mlx5e_open_queues(struct mlx5e_channel *c,
2480 struct mlx5e_params *params,
2481 struct mlx5e_channel_param *cparam)
2482 {
2483 const struct net_device_ops *netdev_ops = c->netdev->netdev_ops;
2484 struct dim_cq_moder icocq_moder = {0, 0};
2485 struct mlx5e_create_cq_param ccp;
2486 int err;
2487
2488 mlx5e_build_create_cq_param(&ccp, c);
2489
2490 err = mlx5e_open_cq(c->mdev, icocq_moder, &cparam->async_icosq.cqp, &ccp,
2491 &c->async_icosq.cq);
2492 if (err)
2493 return err;
2494
2495 err = mlx5e_open_cq(c->mdev, icocq_moder, &cparam->icosq.cqp, &ccp,
2496 &c->icosq.cq);
2497 if (err)
2498 goto err_close_async_icosq_cq;
2499
2500 err = mlx5e_open_tx_cqs(c, params, &ccp, cparam);
2501 if (err)
2502 goto err_close_icosq_cq;
2503
2504 if (netdev_ops->ndo_xdp_xmit) {
2505 c->xdpsq = mlx5e_open_xdpredirect_sq(c, params, cparam, &ccp);
2506 if (IS_ERR(c->xdpsq)) {
2507 err = PTR_ERR(c->xdpsq);
2508 goto err_close_tx_cqs;
2509 }
2510 }
2511
2512 err = mlx5e_open_cq(c->mdev, params->rx_cq_moderation, &cparam->rq.cqp, &ccp,
2513 &c->rq.cq);
2514 if (err)
2515 goto err_close_xdpredirect_sq;
2516
2517 err = c->xdp ? mlx5e_open_cq(c->mdev, params->tx_cq_moderation, &cparam->xdp_sq.cqp,
2518 &ccp, &c->rq_xdpsq.cq) : 0;
2519 if (err)
2520 goto err_close_rx_cq;
2521
2522 spin_lock_init(&c->async_icosq_lock);
2523
2524 err = mlx5e_open_icosq(c, params, &cparam->async_icosq, &c->async_icosq,
2525 mlx5e_async_icosq_err_cqe_work);
2526 if (err)
2527 goto err_close_rq_xdpsq_cq;
2528
2529 mutex_init(&c->icosq_recovery_lock);
2530
2531 err = mlx5e_open_icosq(c, params, &cparam->icosq, &c->icosq,
2532 mlx5e_icosq_err_cqe_work);
2533 if (err)
2534 goto err_close_async_icosq;
2535
2536 err = mlx5e_open_sqs(c, params, cparam);
2537 if (err)
2538 goto err_close_icosq;
2539
2540 err = mlx5e_open_rxq_rq(c, params, &cparam->rq);
2541 if (err)
2542 goto err_close_sqs;
2543
2544 if (c->xdp) {
2545 err = mlx5e_open_xdpsq(c, params, &cparam->xdp_sq, NULL,
2546 &c->rq_xdpsq, false);
2547 if (err)
2548 goto err_close_rq;
2549 }
2550
2551 return 0;
2552
2553 err_close_rq:
2554 mlx5e_close_rq(&c->rq);
2555
2556 err_close_sqs:
2557 mlx5e_close_sqs(c);
2558
2559 err_close_icosq:
2560 mlx5e_close_icosq(&c->icosq);
2561
2562 err_close_async_icosq:
2563 mlx5e_close_icosq(&c->async_icosq);
2564
2565 err_close_rq_xdpsq_cq:
2566 if (c->xdp)
2567 mlx5e_close_cq(&c->rq_xdpsq.cq);
2568
2569 err_close_rx_cq:
2570 mlx5e_close_cq(&c->rq.cq);
2571
2572 err_close_xdpredirect_sq:
2573 if (c->xdpsq)
2574 mlx5e_close_xdpredirect_sq(c->xdpsq);
2575
2576 err_close_tx_cqs:
2577 mlx5e_close_tx_cqs(c);
2578
2579 err_close_icosq_cq:
2580 mlx5e_close_cq(&c->icosq.cq);
2581
2582 err_close_async_icosq_cq:
2583 mlx5e_close_cq(&c->async_icosq.cq);
2584
2585 return err;
2586 }
2587
mlx5e_close_queues(struct mlx5e_channel * c)2588 static void mlx5e_close_queues(struct mlx5e_channel *c)
2589 {
2590 if (c->xdp)
2591 mlx5e_close_xdpsq(&c->rq_xdpsq);
2592 /* The same ICOSQ is used for UMRs for both RQ and XSKRQ. */
2593 cancel_work_sync(&c->icosq.recover_work);
2594 mlx5e_close_rq(&c->rq);
2595 mlx5e_close_sqs(c);
2596 mlx5e_close_icosq(&c->icosq);
2597 mutex_destroy(&c->icosq_recovery_lock);
2598 mlx5e_close_icosq(&c->async_icosq);
2599 if (c->xdp)
2600 mlx5e_close_cq(&c->rq_xdpsq.cq);
2601 mlx5e_close_cq(&c->rq.cq);
2602 if (c->xdpsq)
2603 mlx5e_close_xdpredirect_sq(c->xdpsq);
2604 mlx5e_close_tx_cqs(c);
2605 mlx5e_close_cq(&c->icosq.cq);
2606 mlx5e_close_cq(&c->async_icosq.cq);
2607 }
2608
mlx5e_enumerate_lag_port(struct mlx5_core_dev * mdev,int ix)2609 static u8 mlx5e_enumerate_lag_port(struct mlx5_core_dev *mdev, int ix)
2610 {
2611 u16 port_aff_bias = mlx5_core_is_pf(mdev) ? 0 : MLX5_CAP_GEN(mdev, vhca_id);
2612
2613 return (ix + port_aff_bias) % mlx5e_get_num_lag_ports(mdev);
2614 }
2615
mlx5e_channel_stats_alloc(struct mlx5e_priv * priv,int ix,int cpu)2616 static int mlx5e_channel_stats_alloc(struct mlx5e_priv *priv, int ix, int cpu)
2617 {
2618 if (ix > priv->stats_nch) {
2619 netdev_warn(priv->netdev, "Unexpected channel stats index %d > %d\n", ix,
2620 priv->stats_nch);
2621 return -EINVAL;
2622 }
2623
2624 if (priv->channel_stats[ix])
2625 return 0;
2626
2627 /* Asymmetric dynamic memory allocation.
2628 * Freed in mlx5e_priv_arrays_free, not on channel closure.
2629 */
2630 netdev_dbg(priv->netdev, "Creating channel stats %d\n", ix);
2631 priv->channel_stats[ix] = kvzalloc_node(sizeof(**priv->channel_stats),
2632 GFP_KERNEL, cpu_to_node(cpu));
2633 if (!priv->channel_stats[ix])
2634 return -ENOMEM;
2635 priv->stats_nch++;
2636
2637 return 0;
2638 }
2639
mlx5e_trigger_napi_icosq(struct mlx5e_channel * c)2640 void mlx5e_trigger_napi_icosq(struct mlx5e_channel *c)
2641 {
2642 spin_lock_bh(&c->async_icosq_lock);
2643 mlx5e_trigger_irq(&c->async_icosq);
2644 spin_unlock_bh(&c->async_icosq_lock);
2645 }
2646
mlx5e_trigger_napi_sched(struct napi_struct * napi)2647 void mlx5e_trigger_napi_sched(struct napi_struct *napi)
2648 {
2649 local_bh_disable();
2650 napi_schedule(napi);
2651 local_bh_enable();
2652 }
2653
mlx5e_open_channel(struct mlx5e_priv * priv,int ix,struct mlx5e_params * params,struct xsk_buff_pool * xsk_pool,struct mlx5e_channel ** cp)2654 static int mlx5e_open_channel(struct mlx5e_priv *priv, int ix,
2655 struct mlx5e_params *params,
2656 struct xsk_buff_pool *xsk_pool,
2657 struct mlx5e_channel **cp)
2658 {
2659 struct net_device *netdev = priv->netdev;
2660 struct mlx5e_channel_param *cparam;
2661 struct mlx5_core_dev *mdev;
2662 struct mlx5e_xsk_param xsk;
2663 struct mlx5e_channel *c;
2664 unsigned int irq;
2665 int vec_ix;
2666 int cpu;
2667 int err;
2668
2669 mdev = mlx5_sd_ch_ix_get_dev(priv->mdev, ix);
2670 vec_ix = mlx5_sd_ch_ix_get_vec_ix(mdev, ix);
2671 cpu = mlx5_comp_vector_get_cpu(mdev, vec_ix);
2672
2673 err = mlx5_comp_irqn_get(mdev, vec_ix, &irq);
2674 if (err)
2675 return err;
2676
2677 err = mlx5e_channel_stats_alloc(priv, ix, cpu);
2678 if (err)
2679 return err;
2680
2681 c = kvzalloc_node(sizeof(*c), GFP_KERNEL, cpu_to_node(cpu));
2682 cparam = kvzalloc(sizeof(*cparam), GFP_KERNEL);
2683 if (!c || !cparam) {
2684 err = -ENOMEM;
2685 goto err_free;
2686 }
2687
2688 err = mlx5e_build_channel_param(mdev, params, cparam);
2689 if (err)
2690 goto err_free;
2691
2692 c->priv = priv;
2693 c->mdev = mdev;
2694 c->tstamp = &priv->tstamp;
2695 c->ix = ix;
2696 c->vec_ix = vec_ix;
2697 c->sd_ix = mlx5_sd_ch_ix_get_dev_ix(mdev, ix);
2698 c->cpu = cpu;
2699 c->pdev = mlx5_core_dma_dev(mdev);
2700 c->netdev = priv->netdev;
2701 c->mkey_be = cpu_to_be32(mdev->mlx5e_res.hw_objs.mkey);
2702 c->num_tc = mlx5e_get_dcb_num_tc(params);
2703 c->xdp = !!params->xdp_prog;
2704 c->stats = &priv->channel_stats[ix]->ch;
2705 c->aff_mask = irq_get_effective_affinity_mask(irq);
2706 c->lag_port = mlx5e_enumerate_lag_port(mdev, ix);
2707
2708 netif_napi_add_config(netdev, &c->napi, mlx5e_napi_poll, ix);
2709 netif_napi_set_irq(&c->napi, irq);
2710
2711 err = mlx5e_open_queues(c, params, cparam);
2712 if (unlikely(err))
2713 goto err_napi_del;
2714
2715 if (xsk_pool) {
2716 mlx5e_build_xsk_param(xsk_pool, &xsk);
2717 err = mlx5e_open_xsk(priv, params, &xsk, xsk_pool, c);
2718 if (unlikely(err))
2719 goto err_close_queues;
2720 }
2721
2722 *cp = c;
2723
2724 kvfree(cparam);
2725 return 0;
2726
2727 err_close_queues:
2728 mlx5e_close_queues(c);
2729
2730 err_napi_del:
2731 netif_napi_del(&c->napi);
2732
2733 err_free:
2734 kvfree(cparam);
2735 kvfree(c);
2736
2737 return err;
2738 }
2739
mlx5e_activate_channel(struct mlx5e_channel * c)2740 static void mlx5e_activate_channel(struct mlx5e_channel *c)
2741 {
2742 int tc;
2743
2744 napi_enable(&c->napi);
2745
2746 for (tc = 0; tc < c->num_tc; tc++)
2747 mlx5e_activate_txqsq(&c->sq[tc]);
2748 mlx5e_activate_icosq(&c->icosq);
2749 mlx5e_activate_icosq(&c->async_icosq);
2750
2751 if (test_bit(MLX5E_CHANNEL_STATE_XSK, c->state))
2752 mlx5e_activate_xsk(c);
2753 else
2754 mlx5e_activate_rq(&c->rq);
2755
2756 netif_queue_set_napi(c->netdev, c->ix, NETDEV_QUEUE_TYPE_RX, &c->napi);
2757 }
2758
mlx5e_deactivate_channel(struct mlx5e_channel * c)2759 static void mlx5e_deactivate_channel(struct mlx5e_channel *c)
2760 {
2761 int tc;
2762
2763 netif_queue_set_napi(c->netdev, c->ix, NETDEV_QUEUE_TYPE_RX, NULL);
2764
2765 if (test_bit(MLX5E_CHANNEL_STATE_XSK, c->state))
2766 mlx5e_deactivate_xsk(c);
2767 else
2768 mlx5e_deactivate_rq(&c->rq);
2769
2770 mlx5e_deactivate_icosq(&c->async_icosq);
2771 mlx5e_deactivate_icosq(&c->icosq);
2772 for (tc = 0; tc < c->num_tc; tc++)
2773 mlx5e_deactivate_txqsq(&c->sq[tc]);
2774 mlx5e_qos_deactivate_queues(c);
2775
2776 napi_disable(&c->napi);
2777 }
2778
mlx5e_close_channel(struct mlx5e_channel * c)2779 static void mlx5e_close_channel(struct mlx5e_channel *c)
2780 {
2781 if (test_bit(MLX5E_CHANNEL_STATE_XSK, c->state))
2782 mlx5e_close_xsk(c);
2783 mlx5e_close_queues(c);
2784 mlx5e_qos_close_queues(c);
2785 netif_napi_del(&c->napi);
2786
2787 kvfree(c);
2788 }
2789
mlx5e_open_channels(struct mlx5e_priv * priv,struct mlx5e_channels * chs)2790 int mlx5e_open_channels(struct mlx5e_priv *priv,
2791 struct mlx5e_channels *chs)
2792 {
2793 int err = -ENOMEM;
2794 int i;
2795
2796 chs->num = chs->params.num_channels;
2797
2798 chs->c = kcalloc(chs->num, sizeof(struct mlx5e_channel *), GFP_KERNEL);
2799 if (!chs->c)
2800 goto err_out;
2801
2802 for (i = 0; i < chs->num; i++) {
2803 struct xsk_buff_pool *xsk_pool = NULL;
2804
2805 if (chs->params.xdp_prog)
2806 xsk_pool = mlx5e_xsk_get_pool(&chs->params, chs->params.xsk, i);
2807
2808 err = mlx5e_open_channel(priv, i, &chs->params, xsk_pool, &chs->c[i]);
2809 if (err)
2810 goto err_close_channels;
2811 }
2812
2813 if (MLX5E_GET_PFLAG(&chs->params, MLX5E_PFLAG_TX_PORT_TS) || chs->params.ptp_rx) {
2814 err = mlx5e_ptp_open(priv, &chs->params, chs->c[0]->lag_port, &chs->ptp);
2815 if (err)
2816 goto err_close_channels;
2817 }
2818
2819 if (priv->htb) {
2820 err = mlx5e_qos_open_queues(priv, chs);
2821 if (err)
2822 goto err_close_ptp;
2823 }
2824
2825 mlx5e_health_channels_update(priv);
2826 return 0;
2827
2828 err_close_ptp:
2829 if (chs->ptp)
2830 mlx5e_ptp_close(chs->ptp);
2831
2832 err_close_channels:
2833 for (i--; i >= 0; i--)
2834 mlx5e_close_channel(chs->c[i]);
2835
2836 kfree(chs->c);
2837 err_out:
2838 chs->num = 0;
2839 return err;
2840 }
2841
mlx5e_activate_channels(struct mlx5e_priv * priv,struct mlx5e_channels * chs)2842 static void mlx5e_activate_channels(struct mlx5e_priv *priv, struct mlx5e_channels *chs)
2843 {
2844 int i;
2845
2846 for (i = 0; i < chs->num; i++)
2847 mlx5e_activate_channel(chs->c[i]);
2848
2849 if (priv->htb)
2850 mlx5e_qos_activate_queues(priv);
2851
2852 for (i = 0; i < chs->num; i++)
2853 mlx5e_trigger_napi_icosq(chs->c[i]);
2854
2855 if (chs->ptp)
2856 mlx5e_ptp_activate_channel(chs->ptp);
2857 }
2858
mlx5e_wait_channels_min_rx_wqes(struct mlx5e_channels * chs)2859 static int mlx5e_wait_channels_min_rx_wqes(struct mlx5e_channels *chs)
2860 {
2861 int err = 0;
2862 int i;
2863
2864 for (i = 0; i < chs->num; i++) {
2865 int timeout = err ? 0 : MLX5E_RQ_WQES_TIMEOUT;
2866 struct mlx5e_channel *c = chs->c[i];
2867
2868 if (test_bit(MLX5E_CHANNEL_STATE_XSK, c->state))
2869 continue;
2870
2871 err |= mlx5e_wait_for_min_rx_wqes(&c->rq, timeout);
2872
2873 /* Don't wait on the XSK RQ, because the newer xdpsock sample
2874 * doesn't provide any Fill Ring entries at the setup stage.
2875 */
2876 }
2877
2878 return err ? -ETIMEDOUT : 0;
2879 }
2880
mlx5e_deactivate_channels(struct mlx5e_channels * chs)2881 static void mlx5e_deactivate_channels(struct mlx5e_channels *chs)
2882 {
2883 int i;
2884
2885 if (chs->ptp)
2886 mlx5e_ptp_deactivate_channel(chs->ptp);
2887
2888 for (i = 0; i < chs->num; i++)
2889 mlx5e_deactivate_channel(chs->c[i]);
2890 }
2891
mlx5e_close_channels(struct mlx5e_channels * chs)2892 void mlx5e_close_channels(struct mlx5e_channels *chs)
2893 {
2894 int i;
2895
2896 ASSERT_RTNL();
2897 if (chs->ptp) {
2898 mlx5e_ptp_close(chs->ptp);
2899 chs->ptp = NULL;
2900 }
2901 for (i = 0; i < chs->num; i++)
2902 mlx5e_close_channel(chs->c[i]);
2903
2904 kfree(chs->c);
2905 chs->num = 0;
2906 }
2907
mlx5e_modify_tirs_packet_merge(struct mlx5e_priv * priv)2908 static int mlx5e_modify_tirs_packet_merge(struct mlx5e_priv *priv)
2909 {
2910 struct mlx5e_rx_res *res = priv->rx_res;
2911
2912 return mlx5e_rx_res_packet_merge_set_param(res, &priv->channels.params.packet_merge);
2913 }
2914
2915 static MLX5E_DEFINE_PREACTIVATE_WRAPPER_CTX(mlx5e_modify_tirs_packet_merge);
2916
mlx5e_set_mtu(struct mlx5_core_dev * mdev,struct mlx5e_params * params,u16 mtu)2917 static int mlx5e_set_mtu(struct mlx5_core_dev *mdev,
2918 struct mlx5e_params *params, u16 mtu)
2919 {
2920 u16 hw_mtu = MLX5E_SW2HW_MTU(params, mtu);
2921 int err;
2922
2923 err = mlx5_set_port_mtu(mdev, hw_mtu, 1);
2924 if (err)
2925 return err;
2926
2927 /* Update vport context MTU */
2928 mlx5_modify_nic_vport_mtu(mdev, hw_mtu);
2929 return 0;
2930 }
2931
mlx5e_query_mtu(struct mlx5_core_dev * mdev,struct mlx5e_params * params,u16 * mtu)2932 static void mlx5e_query_mtu(struct mlx5_core_dev *mdev,
2933 struct mlx5e_params *params, u16 *mtu)
2934 {
2935 u16 hw_mtu = 0;
2936 int err;
2937
2938 err = mlx5_query_nic_vport_mtu(mdev, &hw_mtu);
2939 if (err || !hw_mtu) /* fallback to port oper mtu */
2940 mlx5_query_port_oper_mtu(mdev, &hw_mtu, 1);
2941
2942 *mtu = MLX5E_HW2SW_MTU(params, hw_mtu);
2943 }
2944
mlx5e_set_dev_port_mtu(struct mlx5e_priv * priv)2945 int mlx5e_set_dev_port_mtu(struct mlx5e_priv *priv)
2946 {
2947 struct mlx5e_params *params = &priv->channels.params;
2948 struct net_device *netdev = priv->netdev;
2949 struct mlx5_core_dev *mdev = priv->mdev;
2950 u16 mtu;
2951 int err;
2952
2953 err = mlx5e_set_mtu(mdev, params, params->sw_mtu);
2954 if (err)
2955 return err;
2956
2957 mlx5e_query_mtu(mdev, params, &mtu);
2958 if (mtu != params->sw_mtu)
2959 netdev_warn(netdev, "%s: VPort MTU %d is different than netdev mtu %d\n",
2960 __func__, mtu, params->sw_mtu);
2961
2962 params->sw_mtu = mtu;
2963 return 0;
2964 }
2965
2966 MLX5E_DEFINE_PREACTIVATE_WRAPPER_CTX(mlx5e_set_dev_port_mtu);
2967
mlx5e_set_netdev_mtu_boundaries(struct mlx5e_priv * priv)2968 void mlx5e_set_netdev_mtu_boundaries(struct mlx5e_priv *priv)
2969 {
2970 struct mlx5e_params *params = &priv->channels.params;
2971 struct net_device *netdev = priv->netdev;
2972 struct mlx5_core_dev *mdev = priv->mdev;
2973 u16 max_mtu;
2974
2975 /* MTU range: 68 - hw-specific max */
2976 netdev->min_mtu = ETH_MIN_MTU;
2977
2978 mlx5_query_port_max_mtu(mdev, &max_mtu, 1);
2979 netdev->max_mtu = min_t(unsigned int, MLX5E_HW2SW_MTU(params, max_mtu),
2980 ETH_MAX_MTU);
2981 }
2982
mlx5e_netdev_set_tcs(struct net_device * netdev,u16 nch,u8 ntc,struct netdev_tc_txq * tc_to_txq)2983 static int mlx5e_netdev_set_tcs(struct net_device *netdev, u16 nch, u8 ntc,
2984 struct netdev_tc_txq *tc_to_txq)
2985 {
2986 int tc, err;
2987
2988 netdev_reset_tc(netdev);
2989
2990 if (ntc == 1)
2991 return 0;
2992
2993 err = netdev_set_num_tc(netdev, ntc);
2994 if (err) {
2995 netdev_WARN(netdev, "netdev_set_num_tc failed (%d), ntc = %d\n", err, ntc);
2996 return err;
2997 }
2998
2999 for (tc = 0; tc < ntc; tc++) {
3000 u16 count, offset;
3001
3002 count = tc_to_txq[tc].count;
3003 offset = tc_to_txq[tc].offset;
3004 netdev_set_tc_queue(netdev, tc, count, offset);
3005 }
3006
3007 return 0;
3008 }
3009
mlx5e_update_tx_netdev_queues(struct mlx5e_priv * priv)3010 int mlx5e_update_tx_netdev_queues(struct mlx5e_priv *priv)
3011 {
3012 int nch, ntc, num_txqs, err;
3013 int qos_queues = 0;
3014
3015 if (priv->htb)
3016 qos_queues = mlx5e_htb_cur_leaf_nodes(priv->htb);
3017
3018 nch = priv->channels.params.num_channels;
3019 ntc = mlx5e_get_dcb_num_tc(&priv->channels.params);
3020 num_txqs = nch * ntc + qos_queues;
3021 if (MLX5E_GET_PFLAG(&priv->channels.params, MLX5E_PFLAG_TX_PORT_TS))
3022 num_txqs += ntc;
3023
3024 netdev_dbg(priv->netdev, "Setting num_txqs %d\n", num_txqs);
3025 err = netif_set_real_num_tx_queues(priv->netdev, num_txqs);
3026 if (err)
3027 netdev_warn(priv->netdev, "netif_set_real_num_tx_queues failed, %d\n", err);
3028
3029 return err;
3030 }
3031
mlx5e_set_default_xps_cpumasks(struct mlx5e_priv * priv,struct mlx5e_params * params)3032 static void mlx5e_set_default_xps_cpumasks(struct mlx5e_priv *priv,
3033 struct mlx5e_params *params)
3034 {
3035 int ix;
3036
3037 for (ix = 0; ix < params->num_channels; ix++) {
3038 int num_comp_vectors, irq, vec_ix;
3039 struct mlx5_core_dev *mdev;
3040
3041 mdev = mlx5_sd_ch_ix_get_dev(priv->mdev, ix);
3042 num_comp_vectors = mlx5_comp_vectors_max(mdev);
3043 cpumask_clear(priv->scratchpad.cpumask);
3044 vec_ix = mlx5_sd_ch_ix_get_vec_ix(mdev, ix);
3045
3046 for (irq = vec_ix; irq < num_comp_vectors; irq += params->num_channels) {
3047 int cpu = mlx5_comp_vector_get_cpu(mdev, irq);
3048
3049 cpumask_set_cpu(cpu, priv->scratchpad.cpumask);
3050 }
3051
3052 netif_set_xps_queue(priv->netdev, priv->scratchpad.cpumask, ix);
3053 }
3054 }
3055
mlx5e_update_tc_and_tx_queues(struct mlx5e_priv * priv)3056 static int mlx5e_update_tc_and_tx_queues(struct mlx5e_priv *priv)
3057 {
3058 struct netdev_tc_txq old_tc_to_txq[TC_MAX_QUEUE], *tc_to_txq;
3059 struct net_device *netdev = priv->netdev;
3060 int old_num_txqs, old_ntc;
3061 int nch, ntc;
3062 int err;
3063 int i;
3064
3065 old_num_txqs = netdev->real_num_tx_queues;
3066 old_ntc = netdev->num_tc ? : 1;
3067 for (i = 0; i < ARRAY_SIZE(old_tc_to_txq); i++)
3068 old_tc_to_txq[i] = netdev->tc_to_txq[i];
3069
3070 nch = priv->channels.params.num_channels;
3071 ntc = priv->channels.params.mqprio.num_tc;
3072 tc_to_txq = priv->channels.params.mqprio.tc_to_txq;
3073
3074 err = mlx5e_netdev_set_tcs(netdev, nch, ntc, tc_to_txq);
3075 if (err)
3076 goto err_out;
3077 err = mlx5e_update_tx_netdev_queues(priv);
3078 if (err)
3079 goto err_tcs;
3080 mlx5e_set_default_xps_cpumasks(priv, &priv->channels.params);
3081
3082 return 0;
3083
3084 err_tcs:
3085 WARN_ON_ONCE(mlx5e_netdev_set_tcs(netdev, old_num_txqs / old_ntc, old_ntc,
3086 old_tc_to_txq));
3087 err_out:
3088 return err;
3089 }
3090
3091 MLX5E_DEFINE_PREACTIVATE_WRAPPER_CTX(mlx5e_update_tc_and_tx_queues);
3092
mlx5e_num_channels_changed(struct mlx5e_priv * priv)3093 static int mlx5e_num_channels_changed(struct mlx5e_priv *priv)
3094 {
3095 u16 count = priv->channels.params.num_channels;
3096 struct net_device *netdev = priv->netdev;
3097 int old_num_rxqs;
3098 int err;
3099
3100 old_num_rxqs = netdev->real_num_rx_queues;
3101 err = netif_set_real_num_rx_queues(netdev, count);
3102 if (err) {
3103 netdev_warn(netdev, "%s: netif_set_real_num_rx_queues failed, %d\n",
3104 __func__, err);
3105 return err;
3106 }
3107 err = mlx5e_update_tc_and_tx_queues(priv);
3108 if (err) {
3109 /* mlx5e_update_tc_and_tx_queues can fail if channels or TCs number increases.
3110 * Since channel number changed, it increased. That means, the call to
3111 * netif_set_real_num_rx_queues below should not fail, because it
3112 * decreases the number of RX queues.
3113 */
3114 WARN_ON_ONCE(netif_set_real_num_rx_queues(netdev, old_num_rxqs));
3115 return err;
3116 }
3117
3118 /* This function may be called on attach, before priv->rx_res is created. */
3119 if (priv->rx_res) {
3120 mlx5e_rx_res_rss_update_num_channels(priv->rx_res, count);
3121
3122 if (!netif_is_rxfh_configured(priv->netdev))
3123 mlx5e_rx_res_rss_set_indir_uniform(priv->rx_res, count);
3124 }
3125
3126 return 0;
3127 }
3128
3129 MLX5E_DEFINE_PREACTIVATE_WRAPPER_CTX(mlx5e_num_channels_changed);
3130
mlx5e_build_txq_maps(struct mlx5e_priv * priv)3131 static void mlx5e_build_txq_maps(struct mlx5e_priv *priv)
3132 {
3133 int i, ch, tc, num_tc;
3134
3135 ch = priv->channels.num;
3136 num_tc = mlx5e_get_dcb_num_tc(&priv->channels.params);
3137
3138 for (i = 0; i < ch; i++) {
3139 for (tc = 0; tc < num_tc; tc++) {
3140 struct mlx5e_channel *c = priv->channels.c[i];
3141 struct mlx5e_txqsq *sq = &c->sq[tc];
3142
3143 priv->txq2sq[sq->txq_ix] = sq;
3144 priv->txq2sq_stats[sq->txq_ix] = sq->stats;
3145 }
3146 }
3147
3148 if (!priv->channels.ptp)
3149 goto out;
3150
3151 if (!test_bit(MLX5E_PTP_STATE_TX, priv->channels.ptp->state))
3152 goto out;
3153
3154 for (tc = 0; tc < num_tc; tc++) {
3155 struct mlx5e_ptp *c = priv->channels.ptp;
3156 struct mlx5e_txqsq *sq = &c->ptpsq[tc].txqsq;
3157
3158 priv->txq2sq[sq->txq_ix] = sq;
3159 priv->txq2sq_stats[sq->txq_ix] = sq->stats;
3160 }
3161
3162 out:
3163 /* Make the change to txq2sq visible before the queue is started.
3164 * As mlx5e_xmit runs under a spinlock, there is an implicit ACQUIRE,
3165 * which pairs with this barrier.
3166 */
3167 smp_wmb();
3168 }
3169
mlx5e_activate_priv_channels(struct mlx5e_priv * priv)3170 void mlx5e_activate_priv_channels(struct mlx5e_priv *priv)
3171 {
3172 mlx5e_build_txq_maps(priv);
3173 mlx5e_activate_channels(priv, &priv->channels);
3174 mlx5e_xdp_tx_enable(priv);
3175
3176 /* dev_watchdog() wants all TX queues to be started when the carrier is
3177 * OK, including the ones in range real_num_tx_queues..num_tx_queues-1.
3178 * Make it happy to avoid TX timeout false alarms.
3179 */
3180 netif_tx_start_all_queues(priv->netdev);
3181
3182 if (mlx5e_is_vport_rep(priv))
3183 mlx5e_rep_activate_channels(priv);
3184
3185 set_bit(MLX5E_STATE_CHANNELS_ACTIVE, &priv->state);
3186
3187 mlx5e_wait_channels_min_rx_wqes(&priv->channels);
3188
3189 if (priv->rx_res)
3190 mlx5e_rx_res_channels_activate(priv->rx_res, &priv->channels);
3191 }
3192
mlx5e_cancel_tx_timeout_work(struct mlx5e_priv * priv)3193 static void mlx5e_cancel_tx_timeout_work(struct mlx5e_priv *priv)
3194 {
3195 WARN_ON_ONCE(test_bit(MLX5E_STATE_CHANNELS_ACTIVE, &priv->state));
3196 if (current_work() != &priv->tx_timeout_work)
3197 cancel_work_sync(&priv->tx_timeout_work);
3198 }
3199
mlx5e_deactivate_priv_channels(struct mlx5e_priv * priv)3200 void mlx5e_deactivate_priv_channels(struct mlx5e_priv *priv)
3201 {
3202 if (priv->rx_res)
3203 mlx5e_rx_res_channels_deactivate(priv->rx_res);
3204
3205 clear_bit(MLX5E_STATE_CHANNELS_ACTIVE, &priv->state);
3206 mlx5e_cancel_tx_timeout_work(priv);
3207
3208 if (mlx5e_is_vport_rep(priv))
3209 mlx5e_rep_deactivate_channels(priv);
3210
3211 /* The results of ndo_select_queue are unreliable, while netdev config
3212 * is being changed (real_num_tx_queues, num_tc). Stop all queues to
3213 * prevent ndo_start_xmit from being called, so that it can assume that
3214 * the selected queue is always valid.
3215 */
3216 netif_tx_disable(priv->netdev);
3217
3218 mlx5e_xdp_tx_disable(priv);
3219 mlx5e_deactivate_channels(&priv->channels);
3220 }
3221
mlx5e_switch_priv_params(struct mlx5e_priv * priv,struct mlx5e_params * new_params,mlx5e_fp_preactivate preactivate,void * context)3222 static int mlx5e_switch_priv_params(struct mlx5e_priv *priv,
3223 struct mlx5e_params *new_params,
3224 mlx5e_fp_preactivate preactivate,
3225 void *context)
3226 {
3227 struct mlx5e_params old_params;
3228
3229 old_params = priv->channels.params;
3230 priv->channels.params = *new_params;
3231
3232 if (preactivate) {
3233 int err;
3234
3235 err = preactivate(priv, context);
3236 if (err) {
3237 priv->channels.params = old_params;
3238 return err;
3239 }
3240 }
3241
3242 return 0;
3243 }
3244
mlx5e_switch_priv_channels(struct mlx5e_priv * priv,struct mlx5e_channels * new_chs,mlx5e_fp_preactivate preactivate,void * context)3245 static int mlx5e_switch_priv_channels(struct mlx5e_priv *priv,
3246 struct mlx5e_channels *new_chs,
3247 mlx5e_fp_preactivate preactivate,
3248 void *context)
3249 {
3250 struct net_device *netdev = priv->netdev;
3251 struct mlx5e_channels old_chs;
3252 int carrier_ok;
3253 int err = 0;
3254
3255 carrier_ok = netif_carrier_ok(netdev);
3256 netif_carrier_off(netdev);
3257
3258 mlx5e_deactivate_priv_channels(priv);
3259
3260 old_chs = priv->channels;
3261 priv->channels = *new_chs;
3262
3263 /* New channels are ready to roll, call the preactivate hook if needed
3264 * to modify HW settings or update kernel parameters.
3265 */
3266 if (preactivate) {
3267 err = preactivate(priv, context);
3268 if (err) {
3269 priv->channels = old_chs;
3270 goto out;
3271 }
3272 }
3273
3274 mlx5e_close_channels(&old_chs);
3275 priv->profile->update_rx(priv);
3276
3277 mlx5e_selq_apply(&priv->selq);
3278 out:
3279 mlx5e_activate_priv_channels(priv);
3280
3281 /* return carrier back if needed */
3282 if (carrier_ok)
3283 netif_carrier_on(netdev);
3284
3285 return err;
3286 }
3287
mlx5e_safe_switch_params(struct mlx5e_priv * priv,struct mlx5e_params * params,mlx5e_fp_preactivate preactivate,void * context,bool reset)3288 int mlx5e_safe_switch_params(struct mlx5e_priv *priv,
3289 struct mlx5e_params *params,
3290 mlx5e_fp_preactivate preactivate,
3291 void *context, bool reset)
3292 {
3293 struct mlx5e_channels *new_chs;
3294 int err;
3295
3296 reset &= test_bit(MLX5E_STATE_OPENED, &priv->state);
3297 if (!reset)
3298 return mlx5e_switch_priv_params(priv, params, preactivate, context);
3299
3300 new_chs = kzalloc(sizeof(*new_chs), GFP_KERNEL);
3301 if (!new_chs)
3302 return -ENOMEM;
3303 new_chs->params = *params;
3304
3305 mlx5e_selq_prepare_params(&priv->selq, &new_chs->params);
3306
3307 err = mlx5e_open_channels(priv, new_chs);
3308 if (err)
3309 goto err_cancel_selq;
3310
3311 err = mlx5e_switch_priv_channels(priv, new_chs, preactivate, context);
3312 if (err)
3313 goto err_close;
3314
3315 kfree(new_chs);
3316 return 0;
3317
3318 err_close:
3319 mlx5e_close_channels(new_chs);
3320
3321 err_cancel_selq:
3322 mlx5e_selq_cancel(&priv->selq);
3323 kfree(new_chs);
3324 return err;
3325 }
3326
mlx5e_safe_reopen_channels(struct mlx5e_priv * priv)3327 int mlx5e_safe_reopen_channels(struct mlx5e_priv *priv)
3328 {
3329 return mlx5e_safe_switch_params(priv, &priv->channels.params, NULL, NULL, true);
3330 }
3331
mlx5e_timestamp_init(struct mlx5e_priv * priv)3332 void mlx5e_timestamp_init(struct mlx5e_priv *priv)
3333 {
3334 priv->tstamp.tx_type = HWTSTAMP_TX_OFF;
3335 priv->tstamp.rx_filter = HWTSTAMP_FILTER_NONE;
3336 }
3337
mlx5e_modify_admin_state(struct mlx5_core_dev * mdev,enum mlx5_port_status state)3338 static void mlx5e_modify_admin_state(struct mlx5_core_dev *mdev,
3339 enum mlx5_port_status state)
3340 {
3341 struct mlx5_eswitch *esw = mdev->priv.eswitch;
3342 int vport_admin_state;
3343
3344 mlx5_set_port_admin_status(mdev, state);
3345
3346 if (mlx5_eswitch_mode(mdev) == MLX5_ESWITCH_OFFLOADS ||
3347 !MLX5_CAP_GEN(mdev, uplink_follow))
3348 return;
3349
3350 if (state == MLX5_PORT_UP)
3351 vport_admin_state = MLX5_VPORT_ADMIN_STATE_AUTO;
3352 else
3353 vport_admin_state = MLX5_VPORT_ADMIN_STATE_DOWN;
3354
3355 mlx5_eswitch_set_vport_state(esw, MLX5_VPORT_UPLINK, vport_admin_state);
3356 }
3357
mlx5e_open_locked(struct net_device * netdev)3358 int mlx5e_open_locked(struct net_device *netdev)
3359 {
3360 struct mlx5e_priv *priv = netdev_priv(netdev);
3361 int err;
3362
3363 mlx5e_selq_prepare_params(&priv->selq, &priv->channels.params);
3364
3365 set_bit(MLX5E_STATE_OPENED, &priv->state);
3366
3367 err = mlx5e_open_channels(priv, &priv->channels);
3368 if (err)
3369 goto err_clear_state_opened_flag;
3370
3371 err = priv->profile->update_rx(priv);
3372 if (err)
3373 goto err_close_channels;
3374
3375 mlx5e_selq_apply(&priv->selq);
3376 mlx5e_activate_priv_channels(priv);
3377 mlx5e_apply_traps(priv, true);
3378 if (priv->profile->update_carrier)
3379 priv->profile->update_carrier(priv);
3380
3381 mlx5e_queue_update_stats(priv);
3382 return 0;
3383
3384 err_close_channels:
3385 mlx5e_close_channels(&priv->channels);
3386 err_clear_state_opened_flag:
3387 clear_bit(MLX5E_STATE_OPENED, &priv->state);
3388 mlx5e_selq_cancel(&priv->selq);
3389 return err;
3390 }
3391
mlx5e_open(struct net_device * netdev)3392 int mlx5e_open(struct net_device *netdev)
3393 {
3394 struct mlx5e_priv *priv = netdev_priv(netdev);
3395 int err;
3396
3397 mutex_lock(&priv->state_lock);
3398 err = mlx5e_open_locked(netdev);
3399 if (!err)
3400 mlx5e_modify_admin_state(priv->mdev, MLX5_PORT_UP);
3401 mutex_unlock(&priv->state_lock);
3402
3403 return err;
3404 }
3405
mlx5e_close_locked(struct net_device * netdev)3406 int mlx5e_close_locked(struct net_device *netdev)
3407 {
3408 struct mlx5e_priv *priv = netdev_priv(netdev);
3409
3410 /* May already be CLOSED in case a previous configuration operation
3411 * (e.g RX/TX queue size change) that involves close&open failed.
3412 */
3413 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
3414 return 0;
3415
3416 mlx5e_apply_traps(priv, false);
3417 clear_bit(MLX5E_STATE_OPENED, &priv->state);
3418
3419 netif_carrier_off(priv->netdev);
3420 mlx5e_deactivate_priv_channels(priv);
3421 mlx5e_close_channels(&priv->channels);
3422
3423 return 0;
3424 }
3425
mlx5e_close(struct net_device * netdev)3426 int mlx5e_close(struct net_device *netdev)
3427 {
3428 struct mlx5e_priv *priv = netdev_priv(netdev);
3429 int err;
3430
3431 if (!netif_device_present(netdev))
3432 return -ENODEV;
3433
3434 mutex_lock(&priv->state_lock);
3435 mlx5e_modify_admin_state(priv->mdev, MLX5_PORT_DOWN);
3436 err = mlx5e_close_locked(netdev);
3437 mutex_unlock(&priv->state_lock);
3438
3439 return err;
3440 }
3441
mlx5e_free_drop_rq(struct mlx5e_rq * rq)3442 static void mlx5e_free_drop_rq(struct mlx5e_rq *rq)
3443 {
3444 mlx5_wq_destroy(&rq->wq_ctrl);
3445 }
3446
mlx5e_alloc_drop_rq(struct mlx5_core_dev * mdev,struct mlx5e_rq * rq,struct mlx5e_rq_param * param)3447 static int mlx5e_alloc_drop_rq(struct mlx5_core_dev *mdev,
3448 struct mlx5e_rq *rq,
3449 struct mlx5e_rq_param *param)
3450 {
3451 void *rqc = param->rqc;
3452 void *rqc_wq = MLX5_ADDR_OF(rqc, rqc, wq);
3453 int err;
3454
3455 param->wq.db_numa_node = param->wq.buf_numa_node;
3456
3457 err = mlx5_wq_cyc_create(mdev, ¶m->wq, rqc_wq, &rq->wqe.wq,
3458 &rq->wq_ctrl);
3459 if (err)
3460 return err;
3461
3462 /* Mark as unused given "Drop-RQ" packets never reach XDP */
3463 xdp_rxq_info_unused(&rq->xdp_rxq);
3464
3465 rq->mdev = mdev;
3466
3467 return 0;
3468 }
3469
mlx5e_alloc_drop_cq(struct mlx5e_priv * priv,struct mlx5e_cq * cq,struct mlx5e_cq_param * param)3470 static int mlx5e_alloc_drop_cq(struct mlx5e_priv *priv,
3471 struct mlx5e_cq *cq,
3472 struct mlx5e_cq_param *param)
3473 {
3474 struct mlx5_core_dev *mdev = priv->mdev;
3475
3476 param->wq.buf_numa_node = dev_to_node(mlx5_core_dma_dev(mdev));
3477 param->wq.db_numa_node = dev_to_node(mlx5_core_dma_dev(mdev));
3478
3479 return mlx5e_alloc_cq_common(priv->mdev, priv->netdev, priv->wq, param, cq);
3480 }
3481
mlx5e_open_drop_rq(struct mlx5e_priv * priv,struct mlx5e_rq * drop_rq)3482 int mlx5e_open_drop_rq(struct mlx5e_priv *priv,
3483 struct mlx5e_rq *drop_rq)
3484 {
3485 struct mlx5_core_dev *mdev = priv->mdev;
3486 struct mlx5e_cq_param cq_param = {};
3487 struct mlx5e_rq_param rq_param = {};
3488 struct mlx5e_cq *cq = &drop_rq->cq;
3489 int err;
3490
3491 mlx5e_build_drop_rq_param(mdev, &rq_param);
3492
3493 err = mlx5e_alloc_drop_cq(priv, cq, &cq_param);
3494 if (err)
3495 return err;
3496
3497 err = mlx5e_create_cq(cq, &cq_param);
3498 if (err)
3499 goto err_free_cq;
3500
3501 err = mlx5e_alloc_drop_rq(mdev, drop_rq, &rq_param);
3502 if (err)
3503 goto err_destroy_cq;
3504
3505 err = mlx5e_create_rq(drop_rq, &rq_param, priv->drop_rq_q_counter);
3506 if (err)
3507 goto err_free_rq;
3508
3509 err = mlx5e_modify_rq_state(drop_rq, MLX5_RQC_STATE_RST, MLX5_RQC_STATE_RDY);
3510 if (err)
3511 mlx5_core_warn(priv->mdev, "modify_rq_state failed, rx_if_down_packets won't be counted %d\n", err);
3512
3513 return 0;
3514
3515 err_free_rq:
3516 mlx5e_free_drop_rq(drop_rq);
3517
3518 err_destroy_cq:
3519 mlx5e_destroy_cq(cq);
3520
3521 err_free_cq:
3522 mlx5e_free_cq(cq);
3523
3524 return err;
3525 }
3526
mlx5e_close_drop_rq(struct mlx5e_rq * drop_rq)3527 void mlx5e_close_drop_rq(struct mlx5e_rq *drop_rq)
3528 {
3529 mlx5e_destroy_rq(drop_rq);
3530 mlx5e_free_drop_rq(drop_rq);
3531 mlx5e_destroy_cq(&drop_rq->cq);
3532 mlx5e_free_cq(&drop_rq->cq);
3533 }
3534
mlx5e_cleanup_nic_tx(struct mlx5e_priv * priv)3535 static void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv)
3536 {
3537 if (priv->mqprio_rl) {
3538 mlx5e_mqprio_rl_cleanup(priv->mqprio_rl);
3539 mlx5e_mqprio_rl_free(priv->mqprio_rl);
3540 priv->mqprio_rl = NULL;
3541 }
3542 mlx5e_accel_cleanup_tx(priv);
3543 }
3544
mlx5e_modify_channels_vsd(struct mlx5e_channels * chs,bool vsd)3545 static int mlx5e_modify_channels_vsd(struct mlx5e_channels *chs, bool vsd)
3546 {
3547 int err;
3548 int i;
3549
3550 for (i = 0; i < chs->num; i++) {
3551 err = mlx5e_modify_rq_vsd(&chs->c[i]->rq, vsd);
3552 if (err)
3553 return err;
3554 }
3555 if (chs->ptp && test_bit(MLX5E_PTP_STATE_RX, chs->ptp->state))
3556 return mlx5e_modify_rq_vsd(&chs->ptp->rq, vsd);
3557
3558 return 0;
3559 }
3560
mlx5e_mqprio_build_default_tc_to_txq(struct netdev_tc_txq * tc_to_txq,int ntc,int nch)3561 static void mlx5e_mqprio_build_default_tc_to_txq(struct netdev_tc_txq *tc_to_txq,
3562 int ntc, int nch)
3563 {
3564 int tc;
3565
3566 memset(tc_to_txq, 0, sizeof(*tc_to_txq) * TC_MAX_QUEUE);
3567
3568 /* Map netdev TCs to offset 0.
3569 * We have our own UP to TXQ mapping for DCB mode of QoS
3570 */
3571 for (tc = 0; tc < ntc; tc++) {
3572 tc_to_txq[tc] = (struct netdev_tc_txq) {
3573 .count = nch,
3574 .offset = 0,
3575 };
3576 }
3577 }
3578
mlx5e_mqprio_build_tc_to_txq(struct netdev_tc_txq * tc_to_txq,struct tc_mqprio_qopt * qopt)3579 static void mlx5e_mqprio_build_tc_to_txq(struct netdev_tc_txq *tc_to_txq,
3580 struct tc_mqprio_qopt *qopt)
3581 {
3582 int tc;
3583
3584 for (tc = 0; tc < TC_MAX_QUEUE; tc++) {
3585 tc_to_txq[tc] = (struct netdev_tc_txq) {
3586 .count = qopt->count[tc],
3587 .offset = qopt->offset[tc],
3588 };
3589 }
3590 }
3591
mlx5e_params_mqprio_dcb_set(struct mlx5e_params * params,u8 num_tc)3592 static void mlx5e_params_mqprio_dcb_set(struct mlx5e_params *params, u8 num_tc)
3593 {
3594 params->mqprio.mode = TC_MQPRIO_MODE_DCB;
3595 params->mqprio.num_tc = num_tc;
3596 mlx5e_mqprio_build_default_tc_to_txq(params->mqprio.tc_to_txq, num_tc,
3597 params->num_channels);
3598 }
3599
mlx5e_mqprio_rl_update_params(struct mlx5e_params * params,struct mlx5e_mqprio_rl * rl)3600 static void mlx5e_mqprio_rl_update_params(struct mlx5e_params *params,
3601 struct mlx5e_mqprio_rl *rl)
3602 {
3603 int tc;
3604
3605 for (tc = 0; tc < TC_MAX_QUEUE; tc++) {
3606 u32 hw_id = 0;
3607
3608 if (rl)
3609 mlx5e_mqprio_rl_get_node_hw_id(rl, tc, &hw_id);
3610 params->mqprio.channel.hw_id[tc] = hw_id;
3611 }
3612 }
3613
mlx5e_params_mqprio_channel_set(struct mlx5e_params * params,struct tc_mqprio_qopt_offload * mqprio,struct mlx5e_mqprio_rl * rl)3614 static void mlx5e_params_mqprio_channel_set(struct mlx5e_params *params,
3615 struct tc_mqprio_qopt_offload *mqprio,
3616 struct mlx5e_mqprio_rl *rl)
3617 {
3618 int tc;
3619
3620 params->mqprio.mode = TC_MQPRIO_MODE_CHANNEL;
3621 params->mqprio.num_tc = mqprio->qopt.num_tc;
3622
3623 for (tc = 0; tc < TC_MAX_QUEUE; tc++)
3624 params->mqprio.channel.max_rate[tc] = mqprio->max_rate[tc];
3625
3626 mlx5e_mqprio_rl_update_params(params, rl);
3627 mlx5e_mqprio_build_tc_to_txq(params->mqprio.tc_to_txq, &mqprio->qopt);
3628 }
3629
mlx5e_params_mqprio_reset(struct mlx5e_params * params)3630 static void mlx5e_params_mqprio_reset(struct mlx5e_params *params)
3631 {
3632 mlx5e_params_mqprio_dcb_set(params, 1);
3633 }
3634
mlx5e_setup_tc_mqprio_dcb(struct mlx5e_priv * priv,struct tc_mqprio_qopt * mqprio)3635 static int mlx5e_setup_tc_mqprio_dcb(struct mlx5e_priv *priv,
3636 struct tc_mqprio_qopt *mqprio)
3637 {
3638 struct mlx5e_params new_params;
3639 u8 tc = mqprio->num_tc;
3640 int err;
3641
3642 mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
3643
3644 if (tc && tc != MLX5_MAX_NUM_TC)
3645 return -EINVAL;
3646
3647 new_params = priv->channels.params;
3648 mlx5e_params_mqprio_dcb_set(&new_params, tc ? tc : 1);
3649
3650 err = mlx5e_safe_switch_params(priv, &new_params,
3651 mlx5e_update_tc_and_tx_queues_ctx, NULL, true);
3652
3653 if (!err && priv->mqprio_rl) {
3654 mlx5e_mqprio_rl_cleanup(priv->mqprio_rl);
3655 mlx5e_mqprio_rl_free(priv->mqprio_rl);
3656 priv->mqprio_rl = NULL;
3657 }
3658
3659 priv->max_opened_tc = max_t(u8, priv->max_opened_tc,
3660 mlx5e_get_dcb_num_tc(&priv->channels.params));
3661 return err;
3662 }
3663
mlx5e_mqprio_channel_validate(struct mlx5e_priv * priv,struct tc_mqprio_qopt_offload * mqprio)3664 static int mlx5e_mqprio_channel_validate(struct mlx5e_priv *priv,
3665 struct tc_mqprio_qopt_offload *mqprio)
3666 {
3667 struct net_device *netdev = priv->netdev;
3668 struct mlx5e_ptp *ptp_channel;
3669 int agg_count = 0;
3670 int i;
3671
3672 ptp_channel = priv->channels.ptp;
3673 if (ptp_channel && test_bit(MLX5E_PTP_STATE_TX, ptp_channel->state)) {
3674 netdev_err(netdev,
3675 "Cannot activate MQPRIO mode channel since it conflicts with TX port TS\n");
3676 return -EINVAL;
3677 }
3678
3679 if (mqprio->qopt.offset[0] != 0 || mqprio->qopt.num_tc < 1 ||
3680 mqprio->qopt.num_tc > MLX5E_MAX_NUM_MQPRIO_CH_TC)
3681 return -EINVAL;
3682
3683 for (i = 0; i < mqprio->qopt.num_tc; i++) {
3684 if (!mqprio->qopt.count[i]) {
3685 netdev_err(netdev, "Zero size for queue-group (%d) is not supported\n", i);
3686 return -EINVAL;
3687 }
3688 if (mqprio->min_rate[i]) {
3689 netdev_err(netdev, "Min tx rate is not supported\n");
3690 return -EINVAL;
3691 }
3692
3693 if (mqprio->max_rate[i]) {
3694 int err;
3695
3696 err = mlx5e_qos_bytes_rate_check(priv->mdev, mqprio->max_rate[i]);
3697 if (err)
3698 return err;
3699 }
3700
3701 if (mqprio->qopt.offset[i] != agg_count) {
3702 netdev_err(netdev, "Discontinuous queues config is not supported\n");
3703 return -EINVAL;
3704 }
3705 agg_count += mqprio->qopt.count[i];
3706 }
3707
3708 if (priv->channels.params.num_channels != agg_count) {
3709 netdev_err(netdev, "Num of queues (%d) does not match available (%d)\n",
3710 agg_count, priv->channels.params.num_channels);
3711 return -EINVAL;
3712 }
3713
3714 return 0;
3715 }
3716
mlx5e_mqprio_rate_limit(u8 num_tc,u64 max_rate[])3717 static bool mlx5e_mqprio_rate_limit(u8 num_tc, u64 max_rate[])
3718 {
3719 int tc;
3720
3721 for (tc = 0; tc < num_tc; tc++)
3722 if (max_rate[tc])
3723 return true;
3724 return false;
3725 }
3726
mlx5e_mqprio_rl_create(struct mlx5_core_dev * mdev,u8 num_tc,u64 max_rate[])3727 static struct mlx5e_mqprio_rl *mlx5e_mqprio_rl_create(struct mlx5_core_dev *mdev,
3728 u8 num_tc, u64 max_rate[])
3729 {
3730 struct mlx5e_mqprio_rl *rl;
3731 int err;
3732
3733 if (!mlx5e_mqprio_rate_limit(num_tc, max_rate))
3734 return NULL;
3735
3736 rl = mlx5e_mqprio_rl_alloc();
3737 if (!rl)
3738 return ERR_PTR(-ENOMEM);
3739
3740 err = mlx5e_mqprio_rl_init(rl, mdev, num_tc, max_rate);
3741 if (err) {
3742 mlx5e_mqprio_rl_free(rl);
3743 return ERR_PTR(err);
3744 }
3745
3746 return rl;
3747 }
3748
mlx5e_setup_tc_mqprio_channel(struct mlx5e_priv * priv,struct tc_mqprio_qopt_offload * mqprio)3749 static int mlx5e_setup_tc_mqprio_channel(struct mlx5e_priv *priv,
3750 struct tc_mqprio_qopt_offload *mqprio)
3751 {
3752 struct mlx5e_params new_params;
3753 struct mlx5e_mqprio_rl *rl;
3754 int err;
3755
3756 err = mlx5e_mqprio_channel_validate(priv, mqprio);
3757 if (err)
3758 return err;
3759
3760 rl = mlx5e_mqprio_rl_create(priv->mdev, mqprio->qopt.num_tc, mqprio->max_rate);
3761 if (IS_ERR(rl))
3762 return PTR_ERR(rl);
3763
3764 new_params = priv->channels.params;
3765 mlx5e_params_mqprio_channel_set(&new_params, mqprio, rl);
3766
3767 err = mlx5e_safe_switch_params(priv, &new_params,
3768 mlx5e_update_tc_and_tx_queues_ctx, NULL, true);
3769 if (err) {
3770 if (rl) {
3771 mlx5e_mqprio_rl_cleanup(rl);
3772 mlx5e_mqprio_rl_free(rl);
3773 }
3774 return err;
3775 }
3776
3777 if (priv->mqprio_rl) {
3778 mlx5e_mqprio_rl_cleanup(priv->mqprio_rl);
3779 mlx5e_mqprio_rl_free(priv->mqprio_rl);
3780 }
3781 priv->mqprio_rl = rl;
3782
3783 return 0;
3784 }
3785
mlx5e_setup_tc_mqprio(struct mlx5e_priv * priv,struct tc_mqprio_qopt_offload * mqprio)3786 static int mlx5e_setup_tc_mqprio(struct mlx5e_priv *priv,
3787 struct tc_mqprio_qopt_offload *mqprio)
3788 {
3789 /* MQPRIO is another toplevel qdisc that can't be attached
3790 * simultaneously with the offloaded HTB.
3791 */
3792 if (mlx5e_selq_is_htb_enabled(&priv->selq)) {
3793 NL_SET_ERR_MSG_MOD(mqprio->extack,
3794 "MQPRIO cannot be configured when HTB offload is enabled.");
3795 return -EOPNOTSUPP;
3796 }
3797
3798 switch (mqprio->mode) {
3799 case TC_MQPRIO_MODE_DCB:
3800 return mlx5e_setup_tc_mqprio_dcb(priv, &mqprio->qopt);
3801 case TC_MQPRIO_MODE_CHANNEL:
3802 return mlx5e_setup_tc_mqprio_channel(priv, mqprio);
3803 default:
3804 return -EOPNOTSUPP;
3805 }
3806 }
3807
3808 static LIST_HEAD(mlx5e_block_cb_list);
3809
mlx5e_setup_tc(struct net_device * dev,enum tc_setup_type type,void * type_data)3810 static int mlx5e_setup_tc(struct net_device *dev, enum tc_setup_type type,
3811 void *type_data)
3812 {
3813 struct mlx5e_priv *priv = netdev_priv(dev);
3814 bool tc_unbind = false;
3815 int err;
3816
3817 if (type == TC_SETUP_BLOCK &&
3818 ((struct flow_block_offload *)type_data)->command == FLOW_BLOCK_UNBIND)
3819 tc_unbind = true;
3820
3821 if (!netif_device_present(dev) && !tc_unbind)
3822 return -ENODEV;
3823
3824 switch (type) {
3825 case TC_SETUP_BLOCK: {
3826 struct flow_block_offload *f = type_data;
3827
3828 f->unlocked_driver_cb = true;
3829 return flow_block_cb_setup_simple(type_data,
3830 &mlx5e_block_cb_list,
3831 mlx5e_setup_tc_block_cb,
3832 priv, priv, true);
3833 }
3834 case TC_SETUP_QDISC_MQPRIO:
3835 mutex_lock(&priv->state_lock);
3836 err = mlx5e_setup_tc_mqprio(priv, type_data);
3837 mutex_unlock(&priv->state_lock);
3838 return err;
3839 case TC_SETUP_QDISC_HTB:
3840 mutex_lock(&priv->state_lock);
3841 err = mlx5e_htb_setup_tc(priv, type_data);
3842 mutex_unlock(&priv->state_lock);
3843 return err;
3844 default:
3845 return -EOPNOTSUPP;
3846 }
3847 }
3848
mlx5e_fold_sw_stats64(struct mlx5e_priv * priv,struct rtnl_link_stats64 * s)3849 void mlx5e_fold_sw_stats64(struct mlx5e_priv *priv, struct rtnl_link_stats64 *s)
3850 {
3851 int i;
3852
3853 for (i = 0; i < priv->stats_nch; i++) {
3854 struct mlx5e_channel_stats *channel_stats = priv->channel_stats[i];
3855 struct mlx5e_rq_stats *xskrq_stats = &channel_stats->xskrq;
3856 struct mlx5e_rq_stats *rq_stats = &channel_stats->rq;
3857 int j;
3858
3859 s->rx_packets += rq_stats->packets + xskrq_stats->packets;
3860 s->rx_bytes += rq_stats->bytes + xskrq_stats->bytes;
3861 s->multicast += rq_stats->mcast_packets + xskrq_stats->mcast_packets;
3862
3863 for (j = 0; j < priv->max_opened_tc; j++) {
3864 struct mlx5e_sq_stats *sq_stats = &channel_stats->sq[j];
3865
3866 s->tx_packets += sq_stats->packets;
3867 s->tx_bytes += sq_stats->bytes;
3868 s->tx_dropped += sq_stats->dropped;
3869 }
3870 }
3871 if (priv->tx_ptp_opened) {
3872 for (i = 0; i < priv->max_opened_tc; i++) {
3873 struct mlx5e_sq_stats *sq_stats = &priv->ptp_stats.sq[i];
3874
3875 s->tx_packets += sq_stats->packets;
3876 s->tx_bytes += sq_stats->bytes;
3877 s->tx_dropped += sq_stats->dropped;
3878 }
3879 }
3880 if (priv->rx_ptp_opened) {
3881 struct mlx5e_rq_stats *rq_stats = &priv->ptp_stats.rq;
3882
3883 s->rx_packets += rq_stats->packets;
3884 s->rx_bytes += rq_stats->bytes;
3885 s->multicast += rq_stats->mcast_packets;
3886 }
3887 }
3888
3889 void
mlx5e_get_stats(struct net_device * dev,struct rtnl_link_stats64 * stats)3890 mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats)
3891 {
3892 struct mlx5e_priv *priv = netdev_priv(dev);
3893 struct mlx5e_pport_stats *pstats = &priv->stats.pport;
3894
3895 if (!netif_device_present(dev))
3896 return;
3897
3898 /* In switchdev mode, monitor counters doesn't monitor
3899 * rx/tx stats of 802_3. The update stats mechanism
3900 * should keep the 802_3 layout counters updated
3901 */
3902 if (!mlx5e_monitor_counter_supported(priv) ||
3903 mlx5e_is_uplink_rep(priv)) {
3904 /* update HW stats in background for next time */
3905 mlx5e_queue_update_stats(priv);
3906 }
3907
3908 if (mlx5e_is_uplink_rep(priv)) {
3909 struct mlx5e_vport_stats *vstats = &priv->stats.vport;
3910
3911 stats->rx_packets = PPORT_802_3_GET(pstats, a_frames_received_ok);
3912 stats->rx_bytes = PPORT_802_3_GET(pstats, a_octets_received_ok);
3913 stats->tx_packets = PPORT_802_3_GET(pstats, a_frames_transmitted_ok);
3914 stats->tx_bytes = PPORT_802_3_GET(pstats, a_octets_transmitted_ok);
3915
3916 /* vport multicast also counts packets that are dropped due to steering
3917 * or rx out of buffer
3918 */
3919 stats->multicast = VPORT_COUNTER_GET(vstats, received_eth_multicast.packets);
3920 } else {
3921 mlx5e_fold_sw_stats64(priv, stats);
3922 }
3923
3924 stats->rx_missed_errors = priv->stats.qcnt.rx_out_of_buffer;
3925 stats->rx_dropped = PPORT_2863_GET(pstats, if_in_discards);
3926
3927 stats->rx_length_errors =
3928 PPORT_802_3_GET(pstats, a_in_range_length_errors) +
3929 PPORT_802_3_GET(pstats, a_out_of_range_length_field) +
3930 PPORT_802_3_GET(pstats, a_frame_too_long_errors) +
3931 VNIC_ENV_GET(&priv->stats.vnic, eth_wqe_too_small);
3932 stats->rx_crc_errors =
3933 PPORT_802_3_GET(pstats, a_frame_check_sequence_errors);
3934 stats->rx_frame_errors = PPORT_802_3_GET(pstats, a_alignment_errors);
3935 stats->tx_aborted_errors = PPORT_2863_GET(pstats, if_out_discards);
3936 stats->rx_errors = stats->rx_length_errors + stats->rx_crc_errors +
3937 stats->rx_frame_errors;
3938 stats->tx_errors = stats->tx_aborted_errors + stats->tx_carrier_errors;
3939 }
3940
mlx5e_nic_set_rx_mode(struct mlx5e_priv * priv)3941 static void mlx5e_nic_set_rx_mode(struct mlx5e_priv *priv)
3942 {
3943 if (mlx5e_is_uplink_rep(priv))
3944 return; /* no rx mode for uplink rep */
3945
3946 queue_work(priv->wq, &priv->set_rx_mode_work);
3947 }
3948
mlx5e_set_rx_mode(struct net_device * dev)3949 static void mlx5e_set_rx_mode(struct net_device *dev)
3950 {
3951 struct mlx5e_priv *priv = netdev_priv(dev);
3952
3953 mlx5e_nic_set_rx_mode(priv);
3954 }
3955
mlx5e_set_mac(struct net_device * netdev,void * addr)3956 static int mlx5e_set_mac(struct net_device *netdev, void *addr)
3957 {
3958 struct mlx5e_priv *priv = netdev_priv(netdev);
3959 struct sockaddr *saddr = addr;
3960
3961 if (!is_valid_ether_addr(saddr->sa_data))
3962 return -EADDRNOTAVAIL;
3963
3964 netif_addr_lock_bh(netdev);
3965 eth_hw_addr_set(netdev, saddr->sa_data);
3966 netif_addr_unlock_bh(netdev);
3967
3968 mlx5e_nic_set_rx_mode(priv);
3969
3970 return 0;
3971 }
3972
3973 #define MLX5E_SET_FEATURE(features, feature, enable) \
3974 do { \
3975 if (enable) \
3976 *features |= feature; \
3977 else \
3978 *features &= ~feature; \
3979 } while (0)
3980
3981 typedef int (*mlx5e_feature_handler)(struct net_device *netdev, bool enable);
3982
set_feature_lro(struct net_device * netdev,bool enable)3983 static int set_feature_lro(struct net_device *netdev, bool enable)
3984 {
3985 struct mlx5e_priv *priv = netdev_priv(netdev);
3986 struct mlx5_core_dev *mdev = priv->mdev;
3987 struct mlx5e_params *cur_params;
3988 struct mlx5e_params new_params;
3989 bool reset = true;
3990 int err = 0;
3991
3992 mutex_lock(&priv->state_lock);
3993
3994 cur_params = &priv->channels.params;
3995 new_params = *cur_params;
3996
3997 if (enable)
3998 new_params.packet_merge.type = MLX5E_PACKET_MERGE_LRO;
3999 else if (new_params.packet_merge.type == MLX5E_PACKET_MERGE_LRO)
4000 new_params.packet_merge.type = MLX5E_PACKET_MERGE_NONE;
4001 else
4002 goto out;
4003
4004 if (!(cur_params->packet_merge.type == MLX5E_PACKET_MERGE_SHAMPO &&
4005 new_params.packet_merge.type == MLX5E_PACKET_MERGE_LRO)) {
4006 if (cur_params->rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ) {
4007 if (mlx5e_rx_mpwqe_is_linear_skb(mdev, cur_params, NULL) ==
4008 mlx5e_rx_mpwqe_is_linear_skb(mdev, &new_params, NULL))
4009 reset = false;
4010 }
4011 }
4012
4013 err = mlx5e_safe_switch_params(priv, &new_params,
4014 mlx5e_modify_tirs_packet_merge_ctx, NULL, reset);
4015 out:
4016 mutex_unlock(&priv->state_lock);
4017 return err;
4018 }
4019
set_feature_hw_gro(struct net_device * netdev,bool enable)4020 static int set_feature_hw_gro(struct net_device *netdev, bool enable)
4021 {
4022 struct mlx5e_priv *priv = netdev_priv(netdev);
4023 struct mlx5e_params new_params;
4024 bool reset = true;
4025 int err = 0;
4026
4027 mutex_lock(&priv->state_lock);
4028 new_params = priv->channels.params;
4029
4030 if (enable) {
4031 new_params.packet_merge.type = MLX5E_PACKET_MERGE_SHAMPO;
4032 new_params.packet_merge.shampo.match_criteria_type =
4033 MLX5_RQC_SHAMPO_MATCH_CRITERIA_TYPE_EXTENDED;
4034 new_params.packet_merge.shampo.alignment_granularity =
4035 MLX5_RQC_SHAMPO_NO_MATCH_ALIGNMENT_GRANULARITY_STRIDE;
4036 } else if (new_params.packet_merge.type == MLX5E_PACKET_MERGE_SHAMPO) {
4037 new_params.packet_merge.type = MLX5E_PACKET_MERGE_NONE;
4038 } else {
4039 goto out;
4040 }
4041
4042 err = mlx5e_safe_switch_params(priv, &new_params, NULL, NULL, reset);
4043 out:
4044 mutex_unlock(&priv->state_lock);
4045 return err;
4046 }
4047
set_feature_cvlan_filter(struct net_device * netdev,bool enable)4048 static int set_feature_cvlan_filter(struct net_device *netdev, bool enable)
4049 {
4050 struct mlx5e_priv *priv = netdev_priv(netdev);
4051
4052 if (enable)
4053 mlx5e_enable_cvlan_filter(priv->fs,
4054 !!(priv->netdev->flags & IFF_PROMISC));
4055 else
4056 mlx5e_disable_cvlan_filter(priv->fs,
4057 !!(priv->netdev->flags & IFF_PROMISC));
4058
4059 return 0;
4060 }
4061
set_feature_hw_tc(struct net_device * netdev,bool enable)4062 static int set_feature_hw_tc(struct net_device *netdev, bool enable)
4063 {
4064 struct mlx5e_priv *priv = netdev_priv(netdev);
4065 int err = 0;
4066
4067 #if IS_ENABLED(CONFIG_MLX5_CLS_ACT)
4068 int tc_flag = mlx5e_is_uplink_rep(priv) ? MLX5_TC_FLAG(ESW_OFFLOAD) :
4069 MLX5_TC_FLAG(NIC_OFFLOAD);
4070 if (!enable && mlx5e_tc_num_filters(priv, tc_flag)) {
4071 netdev_err(netdev,
4072 "Active offloaded tc filters, can't turn hw_tc_offload off\n");
4073 return -EINVAL;
4074 }
4075 #endif
4076
4077 mutex_lock(&priv->state_lock);
4078 if (!enable && mlx5e_selq_is_htb_enabled(&priv->selq)) {
4079 netdev_err(netdev, "Active HTB offload, can't turn hw_tc_offload off\n");
4080 err = -EINVAL;
4081 }
4082 mutex_unlock(&priv->state_lock);
4083
4084 return err;
4085 }
4086
set_feature_rx_all(struct net_device * netdev,bool enable)4087 static int set_feature_rx_all(struct net_device *netdev, bool enable)
4088 {
4089 struct mlx5e_priv *priv = netdev_priv(netdev);
4090 struct mlx5_core_dev *mdev = priv->mdev;
4091
4092 return mlx5_set_port_fcs(mdev, !enable);
4093 }
4094
mlx5e_get_def_rx_moderation(u8 cq_period_mode)4095 static struct dim_cq_moder mlx5e_get_def_rx_moderation(u8 cq_period_mode)
4096 {
4097 return (struct dim_cq_moder) {
4098 .cq_period_mode = cq_period_mode,
4099 .pkts = MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS,
4100 .usec = cq_period_mode == DIM_CQ_PERIOD_MODE_START_FROM_CQE ?
4101 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE :
4102 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC,
4103 };
4104 }
4105
mlx5e_reset_rx_moderation(struct dim_cq_moder * cq_moder,u8 cq_period_mode,bool dim_enabled)4106 bool mlx5e_reset_rx_moderation(struct dim_cq_moder *cq_moder, u8 cq_period_mode,
4107 bool dim_enabled)
4108 {
4109 bool reset_needed = cq_moder->cq_period_mode != cq_period_mode;
4110
4111 if (dim_enabled)
4112 *cq_moder = net_dim_get_def_rx_moderation(cq_period_mode);
4113 else
4114 *cq_moder = mlx5e_get_def_rx_moderation(cq_period_mode);
4115
4116 return reset_needed;
4117 }
4118
mlx5e_reset_rx_channels_moderation(struct mlx5e_channels * chs,u8 cq_period_mode,bool dim_enabled,bool keep_dim_state)4119 bool mlx5e_reset_rx_channels_moderation(struct mlx5e_channels *chs, u8 cq_period_mode,
4120 bool dim_enabled, bool keep_dim_state)
4121 {
4122 bool reset = false;
4123 int i;
4124
4125 for (i = 0; i < chs->num; i++) {
4126 if (keep_dim_state)
4127 dim_enabled = !!chs->c[i]->rq.dim;
4128
4129 reset |= mlx5e_reset_rx_moderation(&chs->c[i]->rx_cq_moder,
4130 cq_period_mode, dim_enabled);
4131 }
4132
4133 return reset;
4134 }
4135
mlx5e_set_rx_port_ts(struct mlx5_core_dev * mdev,bool enable)4136 static int mlx5e_set_rx_port_ts(struct mlx5_core_dev *mdev, bool enable)
4137 {
4138 u32 in[MLX5_ST_SZ_DW(pcmr_reg)] = {};
4139 bool supported, curr_state;
4140 int err;
4141
4142 if (!MLX5_CAP_GEN(mdev, ports_check))
4143 return 0;
4144
4145 err = mlx5_query_ports_check(mdev, in, sizeof(in));
4146 if (err)
4147 return err;
4148
4149 supported = MLX5_GET(pcmr_reg, in, rx_ts_over_crc_cap);
4150 curr_state = MLX5_GET(pcmr_reg, in, rx_ts_over_crc);
4151
4152 if (!supported || enable == curr_state)
4153 return 0;
4154
4155 MLX5_SET(pcmr_reg, in, local_port, 1);
4156 MLX5_SET(pcmr_reg, in, rx_ts_over_crc, enable);
4157
4158 return mlx5_set_ports_check(mdev, in, sizeof(in));
4159 }
4160
mlx5e_set_rx_port_ts_wrap(struct mlx5e_priv * priv,void * ctx)4161 static int mlx5e_set_rx_port_ts_wrap(struct mlx5e_priv *priv, void *ctx)
4162 {
4163 struct mlx5_core_dev *mdev = priv->mdev;
4164 bool enable = *(bool *)ctx;
4165
4166 return mlx5e_set_rx_port_ts(mdev, enable);
4167 }
4168
set_feature_rx_fcs(struct net_device * netdev,bool enable)4169 static int set_feature_rx_fcs(struct net_device *netdev, bool enable)
4170 {
4171 struct mlx5e_priv *priv = netdev_priv(netdev);
4172 struct mlx5e_channels *chs = &priv->channels;
4173 struct mlx5e_params new_params;
4174 int err;
4175 bool rx_ts_over_crc = !enable;
4176
4177 mutex_lock(&priv->state_lock);
4178
4179 new_params = chs->params;
4180 new_params.scatter_fcs_en = enable;
4181 err = mlx5e_safe_switch_params(priv, &new_params, mlx5e_set_rx_port_ts_wrap,
4182 &rx_ts_over_crc, true);
4183 mutex_unlock(&priv->state_lock);
4184 return err;
4185 }
4186
set_feature_rx_vlan(struct net_device * netdev,bool enable)4187 static int set_feature_rx_vlan(struct net_device *netdev, bool enable)
4188 {
4189 struct mlx5e_priv *priv = netdev_priv(netdev);
4190 int err = 0;
4191
4192 mutex_lock(&priv->state_lock);
4193
4194 mlx5e_fs_set_vlan_strip_disable(priv->fs, !enable);
4195 priv->channels.params.vlan_strip_disable = !enable;
4196
4197 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
4198 goto unlock;
4199
4200 err = mlx5e_modify_channels_vsd(&priv->channels, !enable);
4201 if (err) {
4202 mlx5e_fs_set_vlan_strip_disable(priv->fs, enable);
4203 priv->channels.params.vlan_strip_disable = enable;
4204 }
4205 unlock:
4206 mutex_unlock(&priv->state_lock);
4207
4208 return err;
4209 }
4210
mlx5e_vlan_rx_add_vid(struct net_device * dev,__be16 proto,u16 vid)4211 int mlx5e_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
4212 {
4213 struct mlx5e_priv *priv = netdev_priv(dev);
4214 struct mlx5e_flow_steering *fs = priv->fs;
4215
4216 if (mlx5e_is_uplink_rep(priv))
4217 return 0; /* no vlan table for uplink rep */
4218
4219 return mlx5e_fs_vlan_rx_add_vid(fs, dev, proto, vid);
4220 }
4221
mlx5e_vlan_rx_kill_vid(struct net_device * dev,__be16 proto,u16 vid)4222 int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
4223 {
4224 struct mlx5e_priv *priv = netdev_priv(dev);
4225 struct mlx5e_flow_steering *fs = priv->fs;
4226
4227 if (mlx5e_is_uplink_rep(priv))
4228 return 0; /* no vlan table for uplink rep */
4229
4230 return mlx5e_fs_vlan_rx_kill_vid(fs, dev, proto, vid);
4231 }
4232
4233 #ifdef CONFIG_MLX5_EN_ARFS
set_feature_arfs(struct net_device * netdev,bool enable)4234 static int set_feature_arfs(struct net_device *netdev, bool enable)
4235 {
4236 struct mlx5e_priv *priv = netdev_priv(netdev);
4237 int err;
4238
4239 if (enable)
4240 err = mlx5e_arfs_enable(priv->fs);
4241 else
4242 err = mlx5e_arfs_disable(priv->fs);
4243
4244 return err;
4245 }
4246 #endif
4247
mlx5e_handle_feature(struct net_device * netdev,netdev_features_t * features,netdev_features_t feature,mlx5e_feature_handler feature_handler)4248 static int mlx5e_handle_feature(struct net_device *netdev,
4249 netdev_features_t *features,
4250 netdev_features_t feature,
4251 mlx5e_feature_handler feature_handler)
4252 {
4253 netdev_features_t changes = *features ^ netdev->features;
4254 bool enable = !!(*features & feature);
4255 int err;
4256
4257 if (!(changes & feature))
4258 return 0;
4259
4260 err = feature_handler(netdev, enable);
4261 if (err) {
4262 MLX5E_SET_FEATURE(features, feature, !enable);
4263 netdev_err(netdev, "%s feature %pNF failed, err %d\n",
4264 enable ? "Enable" : "Disable", &feature, err);
4265 return err;
4266 }
4267
4268 return 0;
4269 }
4270
mlx5e_set_xdp_feature(struct net_device * netdev)4271 void mlx5e_set_xdp_feature(struct net_device *netdev)
4272 {
4273 struct mlx5e_priv *priv = netdev_priv(netdev);
4274 struct mlx5e_params *params = &priv->channels.params;
4275 xdp_features_t val;
4276
4277 if (!netdev->netdev_ops->ndo_bpf ||
4278 params->packet_merge.type != MLX5E_PACKET_MERGE_NONE) {
4279 xdp_clear_features_flag(netdev);
4280 return;
4281 }
4282
4283 val = NETDEV_XDP_ACT_BASIC | NETDEV_XDP_ACT_REDIRECT |
4284 NETDEV_XDP_ACT_XSK_ZEROCOPY |
4285 NETDEV_XDP_ACT_RX_SG |
4286 NETDEV_XDP_ACT_NDO_XMIT |
4287 NETDEV_XDP_ACT_NDO_XMIT_SG;
4288 xdp_set_features_flag(netdev, val);
4289 }
4290
mlx5e_set_features(struct net_device * netdev,netdev_features_t features)4291 int mlx5e_set_features(struct net_device *netdev, netdev_features_t features)
4292 {
4293 netdev_features_t oper_features = features;
4294 int err = 0;
4295
4296 #define MLX5E_HANDLE_FEATURE(feature, handler) \
4297 mlx5e_handle_feature(netdev, &oper_features, feature, handler)
4298
4299 if (features & (NETIF_F_GRO_HW | NETIF_F_LRO)) {
4300 err |= MLX5E_HANDLE_FEATURE(NETIF_F_RXFCS, set_feature_rx_fcs);
4301 err |= MLX5E_HANDLE_FEATURE(NETIF_F_LRO, set_feature_lro);
4302 err |= MLX5E_HANDLE_FEATURE(NETIF_F_GRO_HW, set_feature_hw_gro);
4303 } else {
4304 err |= MLX5E_HANDLE_FEATURE(NETIF_F_LRO, set_feature_lro);
4305 err |= MLX5E_HANDLE_FEATURE(NETIF_F_GRO_HW, set_feature_hw_gro);
4306 err |= MLX5E_HANDLE_FEATURE(NETIF_F_RXFCS, set_feature_rx_fcs);
4307 }
4308 err |= MLX5E_HANDLE_FEATURE(NETIF_F_HW_VLAN_CTAG_FILTER,
4309 set_feature_cvlan_filter);
4310 err |= MLX5E_HANDLE_FEATURE(NETIF_F_HW_TC, set_feature_hw_tc);
4311 err |= MLX5E_HANDLE_FEATURE(NETIF_F_RXALL, set_feature_rx_all);
4312 err |= MLX5E_HANDLE_FEATURE(NETIF_F_HW_VLAN_CTAG_RX, set_feature_rx_vlan);
4313 #ifdef CONFIG_MLX5_EN_ARFS
4314 err |= MLX5E_HANDLE_FEATURE(NETIF_F_NTUPLE, set_feature_arfs);
4315 #endif
4316 err |= MLX5E_HANDLE_FEATURE(NETIF_F_HW_TLS_RX, mlx5e_ktls_set_feature_rx);
4317
4318 if (err) {
4319 netdev->features = oper_features;
4320 return -EINVAL;
4321 }
4322
4323 /* update XDP supported features */
4324 mlx5e_set_xdp_feature(netdev);
4325
4326 return 0;
4327 }
4328
mlx5e_fix_uplink_rep_features(struct net_device * netdev,netdev_features_t features)4329 static netdev_features_t mlx5e_fix_uplink_rep_features(struct net_device *netdev,
4330 netdev_features_t features)
4331 {
4332 features &= ~NETIF_F_HW_TLS_RX;
4333 if (netdev->features & NETIF_F_HW_TLS_RX)
4334 netdev_warn(netdev, "Disabling hw_tls_rx, not supported in switchdev mode\n");
4335
4336 features &= ~NETIF_F_HW_TLS_TX;
4337 if (netdev->features & NETIF_F_HW_TLS_TX)
4338 netdev_warn(netdev, "Disabling hw_tls_tx, not supported in switchdev mode\n");
4339
4340 features &= ~NETIF_F_NTUPLE;
4341 if (netdev->features & NETIF_F_NTUPLE)
4342 netdev_warn(netdev, "Disabling ntuple, not supported in switchdev mode\n");
4343
4344 features &= ~NETIF_F_GRO_HW;
4345 if (netdev->features & NETIF_F_GRO_HW)
4346 netdev_warn(netdev, "Disabling HW_GRO, not supported in switchdev mode\n");
4347
4348 features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
4349 if (netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER)
4350 netdev_warn(netdev, "Disabling HW_VLAN CTAG FILTERING, not supported in switchdev mode\n");
4351
4352 return features;
4353 }
4354
mlx5e_fix_features(struct net_device * netdev,netdev_features_t features)4355 static netdev_features_t mlx5e_fix_features(struct net_device *netdev,
4356 netdev_features_t features)
4357 {
4358 struct mlx5e_priv *priv = netdev_priv(netdev);
4359 struct mlx5e_vlan_table *vlan;
4360 struct mlx5e_params *params;
4361
4362 if (!netif_device_present(netdev))
4363 return features;
4364
4365 vlan = mlx5e_fs_get_vlan(priv->fs);
4366 mutex_lock(&priv->state_lock);
4367 params = &priv->channels.params;
4368 if (!vlan ||
4369 !bitmap_empty(mlx5e_vlan_get_active_svlans(vlan), VLAN_N_VID)) {
4370 /* HW strips the outer C-tag header, this is a problem
4371 * for S-tag traffic.
4372 */
4373 features &= ~NETIF_F_HW_VLAN_CTAG_RX;
4374 if (!params->vlan_strip_disable)
4375 netdev_warn(netdev, "Dropping C-tag vlan stripping offload due to S-tag vlan\n");
4376 }
4377
4378 if (!MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_STRIDING_RQ)) {
4379 if (features & NETIF_F_LRO) {
4380 netdev_warn(netdev, "Disabling LRO, not supported in legacy RQ\n");
4381 features &= ~NETIF_F_LRO;
4382 }
4383 if (features & NETIF_F_GRO_HW) {
4384 netdev_warn(netdev, "Disabling HW-GRO, not supported in legacy RQ\n");
4385 features &= ~NETIF_F_GRO_HW;
4386 }
4387 }
4388
4389 if (params->xdp_prog) {
4390 if (features & NETIF_F_LRO) {
4391 netdev_warn(netdev, "LRO is incompatible with XDP\n");
4392 features &= ~NETIF_F_LRO;
4393 }
4394 if (features & NETIF_F_GRO_HW) {
4395 netdev_warn(netdev, "HW GRO is incompatible with XDP\n");
4396 features &= ~NETIF_F_GRO_HW;
4397 }
4398 }
4399
4400 if (priv->xsk.refcnt) {
4401 if (features & NETIF_F_LRO) {
4402 netdev_warn(netdev, "LRO is incompatible with AF_XDP (%u XSKs are active)\n",
4403 priv->xsk.refcnt);
4404 features &= ~NETIF_F_LRO;
4405 }
4406 if (features & NETIF_F_GRO_HW) {
4407 netdev_warn(netdev, "HW GRO is incompatible with AF_XDP (%u XSKs are active)\n",
4408 priv->xsk.refcnt);
4409 features &= ~NETIF_F_GRO_HW;
4410 }
4411 }
4412
4413 if (MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS)) {
4414 features &= ~NETIF_F_RXHASH;
4415 if (netdev->features & NETIF_F_RXHASH)
4416 netdev_warn(netdev, "Disabling rxhash, not supported when CQE compress is active\n");
4417
4418 if (features & NETIF_F_GRO_HW) {
4419 netdev_warn(netdev, "Disabling HW-GRO, not supported when CQE compress is active\n");
4420 features &= ~NETIF_F_GRO_HW;
4421 }
4422 }
4423
4424 if (mlx5e_is_uplink_rep(priv)) {
4425 features = mlx5e_fix_uplink_rep_features(netdev, features);
4426 netdev->netns_immutable = true;
4427 } else {
4428 netdev->netns_immutable = false;
4429 }
4430
4431 mutex_unlock(&priv->state_lock);
4432
4433 return features;
4434 }
4435
mlx5e_xsk_validate_mtu(struct net_device * netdev,struct mlx5e_channels * chs,struct mlx5e_params * new_params,struct mlx5_core_dev * mdev)4436 static bool mlx5e_xsk_validate_mtu(struct net_device *netdev,
4437 struct mlx5e_channels *chs,
4438 struct mlx5e_params *new_params,
4439 struct mlx5_core_dev *mdev)
4440 {
4441 u16 ix;
4442
4443 for (ix = 0; ix < chs->params.num_channels; ix++) {
4444 struct xsk_buff_pool *xsk_pool =
4445 mlx5e_xsk_get_pool(&chs->params, chs->params.xsk, ix);
4446 struct mlx5e_xsk_param xsk;
4447 int max_xdp_mtu;
4448
4449 if (!xsk_pool)
4450 continue;
4451
4452 mlx5e_build_xsk_param(xsk_pool, &xsk);
4453 max_xdp_mtu = mlx5e_xdp_max_mtu(new_params, &xsk);
4454
4455 /* Validate XSK params and XDP MTU in advance */
4456 if (!mlx5e_validate_xsk_param(new_params, &xsk, mdev) ||
4457 new_params->sw_mtu > max_xdp_mtu) {
4458 u32 hr = mlx5e_get_linear_rq_headroom(new_params, &xsk);
4459 int max_mtu_frame, max_mtu_page, max_mtu;
4460
4461 /* Two criteria must be met:
4462 * 1. HW MTU + all headrooms <= XSK frame size.
4463 * 2. Size of SKBs allocated on XDP_PASS <= PAGE_SIZE.
4464 */
4465 max_mtu_frame = MLX5E_HW2SW_MTU(new_params, xsk.chunk_size - hr);
4466 max_mtu_page = MLX5E_HW2SW_MTU(new_params, SKB_MAX_HEAD(0));
4467 max_mtu = min3(max_mtu_frame, max_mtu_page, max_xdp_mtu);
4468
4469 netdev_err(netdev, "MTU %d is too big for an XSK running on channel %u or its redirection XDP program. Try MTU <= %d\n",
4470 new_params->sw_mtu, ix, max_mtu);
4471 return false;
4472 }
4473 }
4474
4475 return true;
4476 }
4477
mlx5e_params_validate_xdp(struct net_device * netdev,struct mlx5_core_dev * mdev,struct mlx5e_params * params)4478 static bool mlx5e_params_validate_xdp(struct net_device *netdev,
4479 struct mlx5_core_dev *mdev,
4480 struct mlx5e_params *params)
4481 {
4482 bool is_linear;
4483
4484 /* No XSK params: AF_XDP can't be enabled yet at the point of setting
4485 * the XDP program.
4486 */
4487 is_linear = params->rq_wq_type == MLX5_WQ_TYPE_CYCLIC ?
4488 mlx5e_rx_is_linear_skb(mdev, params, NULL) :
4489 mlx5e_rx_mpwqe_is_linear_skb(mdev, params, NULL);
4490
4491 if (!is_linear) {
4492 if (!params->xdp_prog->aux->xdp_has_frags) {
4493 netdev_warn(netdev, "MTU(%d) > %d, too big for an XDP program not aware of multi buffer\n",
4494 params->sw_mtu,
4495 mlx5e_xdp_max_mtu(params, NULL));
4496 return false;
4497 }
4498 if (params->rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ &&
4499 !mlx5e_verify_params_rx_mpwqe_strides(mdev, params, NULL)) {
4500 netdev_warn(netdev, "XDP is not allowed with striding RQ and MTU(%d) > %d\n",
4501 params->sw_mtu,
4502 mlx5e_xdp_max_mtu(params, NULL));
4503 return false;
4504 }
4505 }
4506
4507 return true;
4508 }
4509
mlx5e_change_mtu(struct net_device * netdev,int new_mtu,mlx5e_fp_preactivate preactivate)4510 int mlx5e_change_mtu(struct net_device *netdev, int new_mtu,
4511 mlx5e_fp_preactivate preactivate)
4512 {
4513 struct mlx5e_priv *priv = netdev_priv(netdev);
4514 struct mlx5e_params new_params;
4515 struct mlx5e_params *params;
4516 bool reset = true;
4517 int err = 0;
4518
4519 mutex_lock(&priv->state_lock);
4520
4521 params = &priv->channels.params;
4522
4523 new_params = *params;
4524 new_params.sw_mtu = new_mtu;
4525 err = mlx5e_validate_params(priv->mdev, &new_params);
4526 if (err)
4527 goto out;
4528
4529 if (new_params.xdp_prog && !mlx5e_params_validate_xdp(netdev, priv->mdev,
4530 &new_params)) {
4531 err = -EINVAL;
4532 goto out;
4533 }
4534
4535 if (priv->xsk.refcnt &&
4536 !mlx5e_xsk_validate_mtu(netdev, &priv->channels,
4537 &new_params, priv->mdev)) {
4538 err = -EINVAL;
4539 goto out;
4540 }
4541
4542 if (params->packet_merge.type == MLX5E_PACKET_MERGE_LRO)
4543 reset = false;
4544
4545 if (params->rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ &&
4546 params->packet_merge.type != MLX5E_PACKET_MERGE_SHAMPO) {
4547 bool is_linear_old = mlx5e_rx_mpwqe_is_linear_skb(priv->mdev, params, NULL);
4548 bool is_linear_new = mlx5e_rx_mpwqe_is_linear_skb(priv->mdev,
4549 &new_params, NULL);
4550 u8 sz_old = mlx5e_mpwqe_get_log_rq_size(priv->mdev, params, NULL);
4551 u8 sz_new = mlx5e_mpwqe_get_log_rq_size(priv->mdev, &new_params, NULL);
4552
4553 /* Always reset in linear mode - hw_mtu is used in data path.
4554 * Check that the mode was non-linear and didn't change.
4555 * If XSK is active, XSK RQs are linear.
4556 * Reset if the RQ size changed, even if it's non-linear.
4557 */
4558 if (!is_linear_old && !is_linear_new && !priv->xsk.refcnt &&
4559 sz_old == sz_new)
4560 reset = false;
4561 }
4562
4563 err = mlx5e_safe_switch_params(priv, &new_params, preactivate, NULL, reset);
4564
4565 out:
4566 WRITE_ONCE(netdev->mtu, params->sw_mtu);
4567 mutex_unlock(&priv->state_lock);
4568
4569 if (!err)
4570 netdev_update_features(netdev);
4571
4572 return err;
4573 }
4574
mlx5e_change_nic_mtu(struct net_device * netdev,int new_mtu)4575 static int mlx5e_change_nic_mtu(struct net_device *netdev, int new_mtu)
4576 {
4577 return mlx5e_change_mtu(netdev, new_mtu, mlx5e_set_dev_port_mtu_ctx);
4578 }
4579
mlx5e_ptp_rx_manage_fs_ctx(struct mlx5e_priv * priv,void * ctx)4580 int mlx5e_ptp_rx_manage_fs_ctx(struct mlx5e_priv *priv, void *ctx)
4581 {
4582 bool set = *(bool *)ctx;
4583
4584 return mlx5e_ptp_rx_manage_fs(priv, set);
4585 }
4586
mlx5e_hwstamp_config_no_ptp_rx(struct mlx5e_priv * priv,bool rx_filter)4587 static int mlx5e_hwstamp_config_no_ptp_rx(struct mlx5e_priv *priv, bool rx_filter)
4588 {
4589 bool rx_cqe_compress_def = priv->channels.params.rx_cqe_compress_def;
4590 int err;
4591
4592 if (!rx_filter)
4593 /* Reset CQE compression to Admin default */
4594 return mlx5e_modify_rx_cqe_compression_locked(priv, rx_cqe_compress_def, false);
4595
4596 if (!MLX5E_GET_PFLAG(&priv->channels.params, MLX5E_PFLAG_RX_CQE_COMPRESS))
4597 return 0;
4598
4599 /* Disable CQE compression */
4600 netdev_warn(priv->netdev, "Disabling RX cqe compression\n");
4601 err = mlx5e_modify_rx_cqe_compression_locked(priv, false, true);
4602 if (err)
4603 netdev_err(priv->netdev, "Failed disabling cqe compression err=%d\n", err);
4604
4605 return err;
4606 }
4607
mlx5e_hwstamp_config_ptp_rx(struct mlx5e_priv * priv,bool ptp_rx)4608 static int mlx5e_hwstamp_config_ptp_rx(struct mlx5e_priv *priv, bool ptp_rx)
4609 {
4610 struct mlx5e_params new_params;
4611
4612 if (ptp_rx == priv->channels.params.ptp_rx)
4613 return 0;
4614
4615 new_params = priv->channels.params;
4616 new_params.ptp_rx = ptp_rx;
4617 return mlx5e_safe_switch_params(priv, &new_params, mlx5e_ptp_rx_manage_fs_ctx,
4618 &new_params.ptp_rx, true);
4619 }
4620
mlx5e_hwstamp_set(struct mlx5e_priv * priv,struct ifreq * ifr)4621 int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr)
4622 {
4623 struct hwtstamp_config config;
4624 bool rx_cqe_compress_def;
4625 bool ptp_rx;
4626 int err;
4627
4628 if (!MLX5_CAP_GEN(priv->mdev, device_frequency_khz) ||
4629 (mlx5_clock_get_ptp_index(priv->mdev) == -1))
4630 return -EOPNOTSUPP;
4631
4632 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
4633 return -EFAULT;
4634
4635 /* TX HW timestamp */
4636 switch (config.tx_type) {
4637 case HWTSTAMP_TX_OFF:
4638 case HWTSTAMP_TX_ON:
4639 break;
4640 default:
4641 return -ERANGE;
4642 }
4643
4644 mutex_lock(&priv->state_lock);
4645 rx_cqe_compress_def = priv->channels.params.rx_cqe_compress_def;
4646
4647 /* RX HW timestamp */
4648 switch (config.rx_filter) {
4649 case HWTSTAMP_FILTER_NONE:
4650 ptp_rx = false;
4651 break;
4652 case HWTSTAMP_FILTER_ALL:
4653 case HWTSTAMP_FILTER_SOME:
4654 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
4655 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
4656 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
4657 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
4658 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
4659 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
4660 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
4661 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
4662 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
4663 case HWTSTAMP_FILTER_PTP_V2_EVENT:
4664 case HWTSTAMP_FILTER_PTP_V2_SYNC:
4665 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
4666 case HWTSTAMP_FILTER_NTP_ALL:
4667 config.rx_filter = HWTSTAMP_FILTER_ALL;
4668 /* ptp_rx is set if both HW TS is set and CQE
4669 * compression is set
4670 */
4671 ptp_rx = rx_cqe_compress_def;
4672 break;
4673 default:
4674 err = -ERANGE;
4675 goto err_unlock;
4676 }
4677
4678 if (!mlx5e_profile_feature_cap(priv->profile, PTP_RX))
4679 err = mlx5e_hwstamp_config_no_ptp_rx(priv,
4680 config.rx_filter != HWTSTAMP_FILTER_NONE);
4681 else
4682 err = mlx5e_hwstamp_config_ptp_rx(priv, ptp_rx);
4683 if (err)
4684 goto err_unlock;
4685
4686 memcpy(&priv->tstamp, &config, sizeof(config));
4687 mutex_unlock(&priv->state_lock);
4688
4689 /* might need to fix some features */
4690 netdev_update_features(priv->netdev);
4691
4692 return copy_to_user(ifr->ifr_data, &config,
4693 sizeof(config)) ? -EFAULT : 0;
4694 err_unlock:
4695 mutex_unlock(&priv->state_lock);
4696 return err;
4697 }
4698
mlx5e_hwstamp_get(struct mlx5e_priv * priv,struct ifreq * ifr)4699 int mlx5e_hwstamp_get(struct mlx5e_priv *priv, struct ifreq *ifr)
4700 {
4701 struct hwtstamp_config *cfg = &priv->tstamp;
4702
4703 if (!MLX5_CAP_GEN(priv->mdev, device_frequency_khz))
4704 return -EOPNOTSUPP;
4705
4706 return copy_to_user(ifr->ifr_data, cfg, sizeof(*cfg)) ? -EFAULT : 0;
4707 }
4708
mlx5e_ioctl(struct net_device * dev,struct ifreq * ifr,int cmd)4709 static int mlx5e_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4710 {
4711 struct mlx5e_priv *priv = netdev_priv(dev);
4712
4713 switch (cmd) {
4714 case SIOCSHWTSTAMP:
4715 return mlx5e_hwstamp_set(priv, ifr);
4716 case SIOCGHWTSTAMP:
4717 return mlx5e_hwstamp_get(priv, ifr);
4718 default:
4719 return -EOPNOTSUPP;
4720 }
4721 }
4722
4723 #ifdef CONFIG_MLX5_ESWITCH
mlx5e_set_vf_mac(struct net_device * dev,int vf,u8 * mac)4724 int mlx5e_set_vf_mac(struct net_device *dev, int vf, u8 *mac)
4725 {
4726 struct mlx5e_priv *priv = netdev_priv(dev);
4727 struct mlx5_core_dev *mdev = priv->mdev;
4728
4729 return mlx5_eswitch_set_vport_mac(mdev->priv.eswitch, vf + 1, mac);
4730 }
4731
mlx5e_set_vf_vlan(struct net_device * dev,int vf,u16 vlan,u8 qos,__be16 vlan_proto)4732 static int mlx5e_set_vf_vlan(struct net_device *dev, int vf, u16 vlan, u8 qos,
4733 __be16 vlan_proto)
4734 {
4735 struct mlx5e_priv *priv = netdev_priv(dev);
4736 struct mlx5_core_dev *mdev = priv->mdev;
4737
4738 if (vlan_proto != htons(ETH_P_8021Q))
4739 return -EPROTONOSUPPORT;
4740
4741 return mlx5_eswitch_set_vport_vlan(mdev->priv.eswitch, vf + 1,
4742 vlan, qos);
4743 }
4744
mlx5e_set_vf_spoofchk(struct net_device * dev,int vf,bool setting)4745 static int mlx5e_set_vf_spoofchk(struct net_device *dev, int vf, bool setting)
4746 {
4747 struct mlx5e_priv *priv = netdev_priv(dev);
4748 struct mlx5_core_dev *mdev = priv->mdev;
4749
4750 return mlx5_eswitch_set_vport_spoofchk(mdev->priv.eswitch, vf + 1, setting);
4751 }
4752
mlx5e_set_vf_trust(struct net_device * dev,int vf,bool setting)4753 static int mlx5e_set_vf_trust(struct net_device *dev, int vf, bool setting)
4754 {
4755 struct mlx5e_priv *priv = netdev_priv(dev);
4756 struct mlx5_core_dev *mdev = priv->mdev;
4757
4758 return mlx5_eswitch_set_vport_trust(mdev->priv.eswitch, vf + 1, setting);
4759 }
4760
mlx5e_set_vf_rate(struct net_device * dev,int vf,int min_tx_rate,int max_tx_rate)4761 int mlx5e_set_vf_rate(struct net_device *dev, int vf, int min_tx_rate,
4762 int max_tx_rate)
4763 {
4764 struct mlx5e_priv *priv = netdev_priv(dev);
4765 struct mlx5_core_dev *mdev = priv->mdev;
4766
4767 return mlx5_eswitch_set_vport_rate(mdev->priv.eswitch, vf + 1,
4768 max_tx_rate, min_tx_rate);
4769 }
4770
mlx5_vport_link2ifla(u8 esw_link)4771 static int mlx5_vport_link2ifla(u8 esw_link)
4772 {
4773 switch (esw_link) {
4774 case MLX5_VPORT_ADMIN_STATE_DOWN:
4775 return IFLA_VF_LINK_STATE_DISABLE;
4776 case MLX5_VPORT_ADMIN_STATE_UP:
4777 return IFLA_VF_LINK_STATE_ENABLE;
4778 }
4779 return IFLA_VF_LINK_STATE_AUTO;
4780 }
4781
mlx5_ifla_link2vport(u8 ifla_link)4782 static int mlx5_ifla_link2vport(u8 ifla_link)
4783 {
4784 switch (ifla_link) {
4785 case IFLA_VF_LINK_STATE_DISABLE:
4786 return MLX5_VPORT_ADMIN_STATE_DOWN;
4787 case IFLA_VF_LINK_STATE_ENABLE:
4788 return MLX5_VPORT_ADMIN_STATE_UP;
4789 }
4790 return MLX5_VPORT_ADMIN_STATE_AUTO;
4791 }
4792
mlx5e_set_vf_link_state(struct net_device * dev,int vf,int link_state)4793 static int mlx5e_set_vf_link_state(struct net_device *dev, int vf,
4794 int link_state)
4795 {
4796 struct mlx5e_priv *priv = netdev_priv(dev);
4797 struct mlx5_core_dev *mdev = priv->mdev;
4798
4799 if (mlx5e_is_uplink_rep(priv))
4800 return -EOPNOTSUPP;
4801
4802 return mlx5_eswitch_set_vport_state(mdev->priv.eswitch, vf + 1,
4803 mlx5_ifla_link2vport(link_state));
4804 }
4805
mlx5e_get_vf_config(struct net_device * dev,int vf,struct ifla_vf_info * ivi)4806 int mlx5e_get_vf_config(struct net_device *dev,
4807 int vf, struct ifla_vf_info *ivi)
4808 {
4809 struct mlx5e_priv *priv = netdev_priv(dev);
4810 struct mlx5_core_dev *mdev = priv->mdev;
4811 int err;
4812
4813 if (!netif_device_present(dev))
4814 return -EOPNOTSUPP;
4815
4816 err = mlx5_eswitch_get_vport_config(mdev->priv.eswitch, vf + 1, ivi);
4817 if (err)
4818 return err;
4819 ivi->linkstate = mlx5_vport_link2ifla(ivi->linkstate);
4820 return 0;
4821 }
4822
mlx5e_get_vf_stats(struct net_device * dev,int vf,struct ifla_vf_stats * vf_stats)4823 int mlx5e_get_vf_stats(struct net_device *dev,
4824 int vf, struct ifla_vf_stats *vf_stats)
4825 {
4826 struct mlx5e_priv *priv = netdev_priv(dev);
4827 struct mlx5_core_dev *mdev = priv->mdev;
4828
4829 return mlx5_eswitch_get_vport_stats(mdev->priv.eswitch, vf + 1,
4830 vf_stats);
4831 }
4832
4833 static bool
mlx5e_has_offload_stats(const struct net_device * dev,int attr_id)4834 mlx5e_has_offload_stats(const struct net_device *dev, int attr_id)
4835 {
4836 struct mlx5e_priv *priv = netdev_priv(dev);
4837
4838 if (!netif_device_present(dev))
4839 return false;
4840
4841 if (!mlx5e_is_uplink_rep(priv))
4842 return false;
4843
4844 return mlx5e_rep_has_offload_stats(dev, attr_id);
4845 }
4846
4847 static int
mlx5e_get_offload_stats(int attr_id,const struct net_device * dev,void * sp)4848 mlx5e_get_offload_stats(int attr_id, const struct net_device *dev,
4849 void *sp)
4850 {
4851 struct mlx5e_priv *priv = netdev_priv(dev);
4852
4853 if (!mlx5e_is_uplink_rep(priv))
4854 return -EOPNOTSUPP;
4855
4856 return mlx5e_rep_get_offload_stats(attr_id, dev, sp);
4857 }
4858 #endif
4859
mlx5e_tunnel_proto_supported_tx(struct mlx5_core_dev * mdev,u8 proto_type)4860 static bool mlx5e_tunnel_proto_supported_tx(struct mlx5_core_dev *mdev, u8 proto_type)
4861 {
4862 switch (proto_type) {
4863 case IPPROTO_GRE:
4864 return MLX5_CAP_ETH(mdev, tunnel_stateless_gre);
4865 case IPPROTO_IPIP:
4866 case IPPROTO_IPV6:
4867 return (MLX5_CAP_ETH(mdev, tunnel_stateless_ip_over_ip) ||
4868 MLX5_CAP_ETH(mdev, tunnel_stateless_ip_over_ip_tx));
4869 default:
4870 return false;
4871 }
4872 }
4873
mlx5e_gre_tunnel_inner_proto_offload_supported(struct mlx5_core_dev * mdev,struct sk_buff * skb)4874 static bool mlx5e_gre_tunnel_inner_proto_offload_supported(struct mlx5_core_dev *mdev,
4875 struct sk_buff *skb)
4876 {
4877 switch (skb->inner_protocol) {
4878 case htons(ETH_P_IP):
4879 case htons(ETH_P_IPV6):
4880 case htons(ETH_P_TEB):
4881 return true;
4882 case htons(ETH_P_MPLS_UC):
4883 case htons(ETH_P_MPLS_MC):
4884 return MLX5_CAP_ETH(mdev, tunnel_stateless_mpls_over_gre);
4885 }
4886 return false;
4887 }
4888
mlx5e_tunnel_features_check(struct mlx5e_priv * priv,struct sk_buff * skb,netdev_features_t features)4889 static netdev_features_t mlx5e_tunnel_features_check(struct mlx5e_priv *priv,
4890 struct sk_buff *skb,
4891 netdev_features_t features)
4892 {
4893 unsigned int offset = 0;
4894 struct udphdr *udph;
4895 u8 proto;
4896 u16 port;
4897
4898 switch (vlan_get_protocol(skb)) {
4899 case htons(ETH_P_IP):
4900 proto = ip_hdr(skb)->protocol;
4901 break;
4902 case htons(ETH_P_IPV6):
4903 proto = ipv6_find_hdr(skb, &offset, -1, NULL, NULL);
4904 break;
4905 default:
4906 goto out;
4907 }
4908
4909 switch (proto) {
4910 case IPPROTO_GRE:
4911 if (mlx5e_gre_tunnel_inner_proto_offload_supported(priv->mdev, skb))
4912 return features;
4913 break;
4914 case IPPROTO_IPIP:
4915 case IPPROTO_IPV6:
4916 if (mlx5e_tunnel_proto_supported_tx(priv->mdev, IPPROTO_IPIP))
4917 return features;
4918 break;
4919 case IPPROTO_UDP:
4920 udph = udp_hdr(skb);
4921 port = be16_to_cpu(udph->dest);
4922
4923 /* Verify if UDP port is being offloaded by HW */
4924 if (mlx5_vxlan_lookup_port(priv->mdev->vxlan, port))
4925 return vxlan_features_check(skb, features);
4926
4927 #if IS_ENABLED(CONFIG_GENEVE)
4928 /* Support Geneve offload for default UDP port */
4929 if (port == GENEVE_UDP_PORT && mlx5_geneve_tx_allowed(priv->mdev))
4930 return features;
4931 #endif
4932 break;
4933 #ifdef CONFIG_MLX5_EN_IPSEC
4934 case IPPROTO_ESP:
4935 return mlx5e_ipsec_feature_check(skb, features);
4936 #endif
4937 }
4938
4939 out:
4940 /* Disable CSUM and GSO if skb cannot be offloaded by HW */
4941 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
4942 }
4943
mlx5e_features_check(struct sk_buff * skb,struct net_device * netdev,netdev_features_t features)4944 netdev_features_t mlx5e_features_check(struct sk_buff *skb,
4945 struct net_device *netdev,
4946 netdev_features_t features)
4947 {
4948 struct mlx5e_priv *priv = netdev_priv(netdev);
4949
4950 features = vlan_features_check(skb, features);
4951
4952 /* Validate if the tunneled packet is being offloaded by HW */
4953 if (skb->encapsulation &&
4954 (features & NETIF_F_CSUM_MASK || features & NETIF_F_GSO_MASK))
4955 return mlx5e_tunnel_features_check(priv, skb, features);
4956
4957 return features;
4958 }
4959
mlx5e_tx_timeout_work(struct work_struct * work)4960 static void mlx5e_tx_timeout_work(struct work_struct *work)
4961 {
4962 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
4963 tx_timeout_work);
4964 struct net_device *netdev = priv->netdev;
4965 int i;
4966
4967 /* Take rtnl_lock to ensure no change in netdev->real_num_tx_queues
4968 * through this flow. However, channel closing flows have to wait for
4969 * this work to finish while holding rtnl lock too. So either get the
4970 * lock or find that channels are being closed for other reason and
4971 * this work is not relevant anymore.
4972 */
4973 while (!rtnl_trylock()) {
4974 if (!test_bit(MLX5E_STATE_CHANNELS_ACTIVE, &priv->state))
4975 return;
4976 msleep(20);
4977 }
4978
4979 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
4980 goto unlock;
4981
4982 for (i = 0; i < netdev->real_num_tx_queues; i++) {
4983 struct netdev_queue *dev_queue =
4984 netdev_get_tx_queue(netdev, i);
4985 struct mlx5e_txqsq *sq = priv->txq2sq[i];
4986
4987 if (!netif_xmit_stopped(dev_queue))
4988 continue;
4989
4990 if (mlx5e_reporter_tx_timeout(sq))
4991 /* break if tried to reopened channels */
4992 break;
4993 }
4994
4995 unlock:
4996 rtnl_unlock();
4997 }
4998
mlx5e_tx_timeout(struct net_device * dev,unsigned int txqueue)4999 static void mlx5e_tx_timeout(struct net_device *dev, unsigned int txqueue)
5000 {
5001 struct mlx5e_priv *priv = netdev_priv(dev);
5002
5003 netdev_err(dev, "TX timeout detected\n");
5004 queue_work(priv->wq, &priv->tx_timeout_work);
5005 }
5006
mlx5e_xdp_allowed(struct net_device * netdev,struct mlx5_core_dev * mdev,struct mlx5e_params * params)5007 static int mlx5e_xdp_allowed(struct net_device *netdev, struct mlx5_core_dev *mdev,
5008 struct mlx5e_params *params)
5009 {
5010 if (params->packet_merge.type != MLX5E_PACKET_MERGE_NONE) {
5011 netdev_warn(netdev, "can't set XDP while HW-GRO/LRO is on, disable them first\n");
5012 return -EINVAL;
5013 }
5014
5015 if (!mlx5e_params_validate_xdp(netdev, mdev, params))
5016 return -EINVAL;
5017
5018 return 0;
5019 }
5020
mlx5e_rq_replace_xdp_prog(struct mlx5e_rq * rq,struct bpf_prog * prog)5021 static void mlx5e_rq_replace_xdp_prog(struct mlx5e_rq *rq, struct bpf_prog *prog)
5022 {
5023 struct bpf_prog *old_prog;
5024
5025 old_prog = rcu_replace_pointer(rq->xdp_prog, prog,
5026 lockdep_is_held(&rq->priv->state_lock));
5027 if (old_prog)
5028 bpf_prog_put(old_prog);
5029 }
5030
mlx5e_xdp_set(struct net_device * netdev,struct bpf_prog * prog)5031 static int mlx5e_xdp_set(struct net_device *netdev, struct bpf_prog *prog)
5032 {
5033 struct mlx5e_priv *priv = netdev_priv(netdev);
5034 struct mlx5e_params new_params;
5035 struct bpf_prog *old_prog;
5036 int err = 0;
5037 bool reset;
5038 int i;
5039
5040 mutex_lock(&priv->state_lock);
5041
5042 new_params = priv->channels.params;
5043 new_params.xdp_prog = prog;
5044
5045 if (prog) {
5046 err = mlx5e_xdp_allowed(netdev, priv->mdev, &new_params);
5047 if (err)
5048 goto unlock;
5049 }
5050
5051 /* no need for full reset when exchanging programs */
5052 reset = (!priv->channels.params.xdp_prog || !prog);
5053
5054 old_prog = priv->channels.params.xdp_prog;
5055
5056 err = mlx5e_safe_switch_params(priv, &new_params, NULL, NULL, reset);
5057 if (err)
5058 goto unlock;
5059
5060 if (old_prog)
5061 bpf_prog_put(old_prog);
5062
5063 if (!test_bit(MLX5E_STATE_OPENED, &priv->state) || reset)
5064 goto unlock;
5065
5066 /* exchanging programs w/o reset, we update ref counts on behalf
5067 * of the channels RQs here.
5068 */
5069 bpf_prog_add(prog, priv->channels.num);
5070 for (i = 0; i < priv->channels.num; i++) {
5071 struct mlx5e_channel *c = priv->channels.c[i];
5072
5073 mlx5e_rq_replace_xdp_prog(&c->rq, prog);
5074 if (test_bit(MLX5E_CHANNEL_STATE_XSK, c->state)) {
5075 bpf_prog_inc(prog);
5076 mlx5e_rq_replace_xdp_prog(&c->xskrq, prog);
5077 }
5078 }
5079
5080 unlock:
5081 mutex_unlock(&priv->state_lock);
5082
5083 /* Need to fix some features. */
5084 if (!err)
5085 netdev_update_features(netdev);
5086
5087 return err;
5088 }
5089
mlx5e_xdp(struct net_device * dev,struct netdev_bpf * xdp)5090 static int mlx5e_xdp(struct net_device *dev, struct netdev_bpf *xdp)
5091 {
5092 switch (xdp->command) {
5093 case XDP_SETUP_PROG:
5094 return mlx5e_xdp_set(dev, xdp->prog);
5095 case XDP_SETUP_XSK_POOL:
5096 return mlx5e_xsk_setup_pool(dev, xdp->xsk.pool,
5097 xdp->xsk.queue_id);
5098 default:
5099 return -EINVAL;
5100 }
5101 }
5102
5103 #ifdef CONFIG_MLX5_ESWITCH
mlx5e_bridge_getlink(struct sk_buff * skb,u32 pid,u32 seq,struct net_device * dev,u32 filter_mask,int nlflags)5104 static int mlx5e_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
5105 struct net_device *dev, u32 filter_mask,
5106 int nlflags)
5107 {
5108 struct mlx5e_priv *priv = netdev_priv(dev);
5109 struct mlx5_core_dev *mdev = priv->mdev;
5110 u8 mode, setting;
5111
5112 if (mlx5_eswitch_get_vepa(mdev->priv.eswitch, &setting))
5113 return -EOPNOTSUPP;
5114 mode = setting ? BRIDGE_MODE_VEPA : BRIDGE_MODE_VEB;
5115 return ndo_dflt_bridge_getlink(skb, pid, seq, dev,
5116 mode,
5117 0, 0, nlflags, filter_mask, NULL);
5118 }
5119
mlx5e_bridge_setlink(struct net_device * dev,struct nlmsghdr * nlh,u16 flags,struct netlink_ext_ack * extack)5120 static int mlx5e_bridge_setlink(struct net_device *dev, struct nlmsghdr *nlh,
5121 u16 flags, struct netlink_ext_ack *extack)
5122 {
5123 struct mlx5e_priv *priv = netdev_priv(dev);
5124 struct mlx5_core_dev *mdev = priv->mdev;
5125 struct nlattr *attr, *br_spec;
5126 u16 mode = BRIDGE_MODE_UNDEF;
5127 u8 setting;
5128 int rem;
5129
5130 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
5131 if (!br_spec)
5132 return -EINVAL;
5133
5134 nla_for_each_nested_type(attr, IFLA_BRIDGE_MODE, br_spec, rem) {
5135 mode = nla_get_u16(attr);
5136 if (mode > BRIDGE_MODE_VEPA)
5137 return -EINVAL;
5138
5139 break;
5140 }
5141
5142 if (mode == BRIDGE_MODE_UNDEF)
5143 return -EINVAL;
5144
5145 setting = (mode == BRIDGE_MODE_VEPA) ? 1 : 0;
5146 return mlx5_eswitch_set_vepa(mdev->priv.eswitch, setting);
5147 }
5148 #endif
5149
5150 const struct net_device_ops mlx5e_netdev_ops = {
5151 .ndo_open = mlx5e_open,
5152 .ndo_stop = mlx5e_close,
5153 .ndo_start_xmit = mlx5e_xmit,
5154 .ndo_setup_tc = mlx5e_setup_tc,
5155 .ndo_select_queue = mlx5e_select_queue,
5156 .ndo_get_stats64 = mlx5e_get_stats,
5157 .ndo_set_rx_mode = mlx5e_set_rx_mode,
5158 .ndo_set_mac_address = mlx5e_set_mac,
5159 .ndo_vlan_rx_add_vid = mlx5e_vlan_rx_add_vid,
5160 .ndo_vlan_rx_kill_vid = mlx5e_vlan_rx_kill_vid,
5161 .ndo_set_features = mlx5e_set_features,
5162 .ndo_fix_features = mlx5e_fix_features,
5163 .ndo_change_mtu = mlx5e_change_nic_mtu,
5164 .ndo_eth_ioctl = mlx5e_ioctl,
5165 .ndo_set_tx_maxrate = mlx5e_set_tx_maxrate,
5166 .ndo_features_check = mlx5e_features_check,
5167 .ndo_tx_timeout = mlx5e_tx_timeout,
5168 .ndo_bpf = mlx5e_xdp,
5169 .ndo_xdp_xmit = mlx5e_xdp_xmit,
5170 .ndo_xsk_wakeup = mlx5e_xsk_wakeup,
5171 #ifdef CONFIG_MLX5_EN_ARFS
5172 .ndo_rx_flow_steer = mlx5e_rx_flow_steer,
5173 #endif
5174 #ifdef CONFIG_MLX5_ESWITCH
5175 .ndo_bridge_setlink = mlx5e_bridge_setlink,
5176 .ndo_bridge_getlink = mlx5e_bridge_getlink,
5177
5178 /* SRIOV E-Switch NDOs */
5179 .ndo_set_vf_mac = mlx5e_set_vf_mac,
5180 .ndo_set_vf_vlan = mlx5e_set_vf_vlan,
5181 .ndo_set_vf_spoofchk = mlx5e_set_vf_spoofchk,
5182 .ndo_set_vf_trust = mlx5e_set_vf_trust,
5183 .ndo_set_vf_rate = mlx5e_set_vf_rate,
5184 .ndo_get_vf_config = mlx5e_get_vf_config,
5185 .ndo_set_vf_link_state = mlx5e_set_vf_link_state,
5186 .ndo_get_vf_stats = mlx5e_get_vf_stats,
5187 .ndo_has_offload_stats = mlx5e_has_offload_stats,
5188 .ndo_get_offload_stats = mlx5e_get_offload_stats,
5189 #endif
5190 };
5191
mlx5e_build_nic_params(struct mlx5e_priv * priv,struct mlx5e_xsk * xsk,u16 mtu)5192 void mlx5e_build_nic_params(struct mlx5e_priv *priv, struct mlx5e_xsk *xsk, u16 mtu)
5193 {
5194 struct mlx5e_params *params = &priv->channels.params;
5195 struct mlx5_core_dev *mdev = priv->mdev;
5196
5197 params->sw_mtu = mtu;
5198 params->hard_mtu = MLX5E_ETH_HARD_MTU;
5199 params->num_channels = min_t(unsigned int, MLX5E_MAX_NUM_CHANNELS / 2,
5200 priv->max_nch);
5201 mlx5e_params_mqprio_reset(params);
5202
5203 /* SQ */
5204 params->log_sq_size = is_kdump_kernel() ?
5205 MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE :
5206 MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE;
5207 MLX5E_SET_PFLAG(params, MLX5E_PFLAG_SKB_TX_MPWQE, mlx5e_tx_mpwqe_supported(mdev));
5208
5209 /* XDP SQ */
5210 MLX5E_SET_PFLAG(params, MLX5E_PFLAG_XDP_TX_MPWQE, mlx5e_tx_mpwqe_supported(mdev));
5211
5212 /* set CQE compression */
5213 params->rx_cqe_compress_def = false;
5214 if (MLX5_CAP_GEN(mdev, cqe_compression) &&
5215 MLX5_CAP_GEN(mdev, vport_group_manager))
5216 params->rx_cqe_compress_def = slow_pci_heuristic(mdev);
5217
5218 MLX5E_SET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS, params->rx_cqe_compress_def);
5219 MLX5E_SET_PFLAG(params, MLX5E_PFLAG_RX_NO_CSUM_COMPLETE, false);
5220
5221 /* RQ */
5222 mlx5e_build_rq_params(mdev, params);
5223
5224 params->terminate_lkey_be = mlx5_core_get_terminate_scatter_list_mkey(mdev);
5225
5226 params->packet_merge.timeout = mlx5e_choose_lro_timeout(mdev, MLX5E_DEFAULT_LRO_TIMEOUT);
5227
5228 /* CQ moderation params */
5229 params->rx_dim_enabled = MLX5_CAP_GEN(mdev, cq_moderation) &&
5230 MLX5_CAP_GEN(mdev, cq_period_mode_modify);
5231 params->tx_dim_enabled = MLX5_CAP_GEN(mdev, cq_moderation) &&
5232 MLX5_CAP_GEN(mdev, cq_period_mode_modify);
5233 params->rx_moder_use_cqe_mode = !!MLX5_CAP_GEN(mdev, cq_period_start_from_cqe);
5234 params->tx_moder_use_cqe_mode = false;
5235 mlx5e_reset_rx_moderation(¶ms->rx_cq_moderation, params->rx_moder_use_cqe_mode,
5236 params->rx_dim_enabled);
5237 mlx5e_reset_tx_moderation(¶ms->tx_cq_moderation, params->tx_moder_use_cqe_mode,
5238 params->tx_dim_enabled);
5239
5240 /* TX inline */
5241 mlx5_query_min_inline(mdev, ¶ms->tx_min_inline_mode);
5242
5243 /* AF_XDP */
5244 params->xsk = xsk;
5245
5246 /* Do not update netdev->features directly in here
5247 * on mlx5e_attach_netdev() we will call mlx5e_update_features()
5248 * To update netdev->features please modify mlx5e_fix_features()
5249 */
5250 }
5251
mlx5e_set_netdev_dev_addr(struct net_device * netdev)5252 static void mlx5e_set_netdev_dev_addr(struct net_device *netdev)
5253 {
5254 struct mlx5e_priv *priv = netdev_priv(netdev);
5255 u8 addr[ETH_ALEN];
5256
5257 mlx5_query_mac_address(priv->mdev, addr);
5258 if (is_zero_ether_addr(addr) &&
5259 !MLX5_CAP_GEN(priv->mdev, vport_group_manager)) {
5260 eth_hw_addr_random(netdev);
5261 mlx5_core_info(priv->mdev, "Assigned random MAC address %pM\n", netdev->dev_addr);
5262 return;
5263 }
5264
5265 eth_hw_addr_set(netdev, addr);
5266 }
5267
mlx5e_vxlan_set_port(struct net_device * netdev,unsigned int table,unsigned int entry,struct udp_tunnel_info * ti)5268 static int mlx5e_vxlan_set_port(struct net_device *netdev, unsigned int table,
5269 unsigned int entry, struct udp_tunnel_info *ti)
5270 {
5271 struct mlx5e_priv *priv = netdev_priv(netdev);
5272
5273 return mlx5_vxlan_add_port(priv->mdev->vxlan, ntohs(ti->port));
5274 }
5275
mlx5e_vxlan_unset_port(struct net_device * netdev,unsigned int table,unsigned int entry,struct udp_tunnel_info * ti)5276 static int mlx5e_vxlan_unset_port(struct net_device *netdev, unsigned int table,
5277 unsigned int entry, struct udp_tunnel_info *ti)
5278 {
5279 struct mlx5e_priv *priv = netdev_priv(netdev);
5280
5281 return mlx5_vxlan_del_port(priv->mdev->vxlan, ntohs(ti->port));
5282 }
5283
mlx5e_vxlan_set_netdev_info(struct mlx5e_priv * priv)5284 void mlx5e_vxlan_set_netdev_info(struct mlx5e_priv *priv)
5285 {
5286 if (!mlx5_vxlan_allowed(priv->mdev->vxlan))
5287 return;
5288
5289 priv->nic_info.set_port = mlx5e_vxlan_set_port;
5290 priv->nic_info.unset_port = mlx5e_vxlan_unset_port;
5291 priv->nic_info.flags = UDP_TUNNEL_NIC_INFO_MAY_SLEEP |
5292 UDP_TUNNEL_NIC_INFO_STATIC_IANA_VXLAN;
5293 priv->nic_info.tables[0].tunnel_types = UDP_TUNNEL_TYPE_VXLAN;
5294 /* Don't count the space hard-coded to the IANA port */
5295 priv->nic_info.tables[0].n_entries =
5296 mlx5_vxlan_max_udp_ports(priv->mdev) - 1;
5297
5298 priv->netdev->udp_tunnel_nic_info = &priv->nic_info;
5299 }
5300
mlx5e_tunnel_any_tx_proto_supported(struct mlx5_core_dev * mdev)5301 static bool mlx5e_tunnel_any_tx_proto_supported(struct mlx5_core_dev *mdev)
5302 {
5303 int tt;
5304
5305 for (tt = 0; tt < MLX5_NUM_TUNNEL_TT; tt++) {
5306 if (mlx5e_tunnel_proto_supported_tx(mdev, mlx5_get_proto_by_tunnel_type(tt)))
5307 return true;
5308 }
5309 return (mlx5_vxlan_allowed(mdev->vxlan) || mlx5_geneve_tx_allowed(mdev));
5310 }
5311
mlx5e_get_queue_stats_rx(struct net_device * dev,int i,struct netdev_queue_stats_rx * stats)5312 static void mlx5e_get_queue_stats_rx(struct net_device *dev, int i,
5313 struct netdev_queue_stats_rx *stats)
5314 {
5315 struct mlx5e_priv *priv = netdev_priv(dev);
5316 struct mlx5e_channel_stats *channel_stats;
5317 struct mlx5e_rq_stats *xskrq_stats;
5318 struct mlx5e_rq_stats *rq_stats;
5319
5320 ASSERT_RTNL();
5321 if (mlx5e_is_uplink_rep(priv) || !priv->stats_nch)
5322 return;
5323
5324 channel_stats = priv->channel_stats[i];
5325 xskrq_stats = &channel_stats->xskrq;
5326 rq_stats = &channel_stats->rq;
5327
5328 stats->packets = rq_stats->packets + xskrq_stats->packets;
5329 stats->bytes = rq_stats->bytes + xskrq_stats->bytes;
5330 stats->alloc_fail = rq_stats->buff_alloc_err +
5331 xskrq_stats->buff_alloc_err;
5332 }
5333
mlx5e_get_queue_stats_tx(struct net_device * dev,int i,struct netdev_queue_stats_tx * stats)5334 static void mlx5e_get_queue_stats_tx(struct net_device *dev, int i,
5335 struct netdev_queue_stats_tx *stats)
5336 {
5337 struct mlx5e_priv *priv = netdev_priv(dev);
5338 struct mlx5e_sq_stats *sq_stats;
5339
5340 ASSERT_RTNL();
5341 if (!priv->stats_nch)
5342 return;
5343
5344 /* no special case needed for ptp htb etc since txq2sq_stats is kept up
5345 * to date for active sq_stats, otherwise get_base_stats takes care of
5346 * inactive sqs.
5347 */
5348 sq_stats = priv->txq2sq_stats[i];
5349 stats->packets = sq_stats->packets;
5350 stats->bytes = sq_stats->bytes;
5351 }
5352
mlx5e_get_base_stats(struct net_device * dev,struct netdev_queue_stats_rx * rx,struct netdev_queue_stats_tx * tx)5353 static void mlx5e_get_base_stats(struct net_device *dev,
5354 struct netdev_queue_stats_rx *rx,
5355 struct netdev_queue_stats_tx *tx)
5356 {
5357 struct mlx5e_priv *priv = netdev_priv(dev);
5358 struct mlx5e_ptp *ptp_channel;
5359 int i, tc;
5360
5361 ASSERT_RTNL();
5362 if (!mlx5e_is_uplink_rep(priv)) {
5363 rx->packets = 0;
5364 rx->bytes = 0;
5365 rx->alloc_fail = 0;
5366
5367 for (i = priv->channels.params.num_channels; i < priv->stats_nch; i++) {
5368 struct netdev_queue_stats_rx rx_i = {0};
5369
5370 mlx5e_get_queue_stats_rx(dev, i, &rx_i);
5371
5372 rx->packets += rx_i.packets;
5373 rx->bytes += rx_i.bytes;
5374 rx->alloc_fail += rx_i.alloc_fail;
5375 }
5376
5377 /* always report PTP RX stats from base as there is no
5378 * corresponding channel to report them under in
5379 * mlx5e_get_queue_stats_rx.
5380 */
5381 if (priv->rx_ptp_opened) {
5382 struct mlx5e_rq_stats *rq_stats = &priv->ptp_stats.rq;
5383
5384 rx->packets += rq_stats->packets;
5385 rx->bytes += rq_stats->bytes;
5386 }
5387 }
5388
5389 tx->packets = 0;
5390 tx->bytes = 0;
5391
5392 for (i = 0; i < priv->stats_nch; i++) {
5393 struct mlx5e_channel_stats *channel_stats = priv->channel_stats[i];
5394
5395 /* handle two cases:
5396 *
5397 * 1. channels which are active. In this case,
5398 * report only deactivated TCs on these channels.
5399 *
5400 * 2. channels which were deactivated
5401 * (i > priv->channels.params.num_channels)
5402 * must have all of their TCs [0 .. priv->max_opened_tc)
5403 * examined because deactivated channels will not be in the
5404 * range of [0..real_num_tx_queues) and will not have their
5405 * stats reported by mlx5e_get_queue_stats_tx.
5406 */
5407 if (i < priv->channels.params.num_channels)
5408 tc = mlx5e_get_dcb_num_tc(&priv->channels.params);
5409 else
5410 tc = 0;
5411
5412 for (; tc < priv->max_opened_tc; tc++) {
5413 struct mlx5e_sq_stats *sq_stats = &channel_stats->sq[tc];
5414
5415 tx->packets += sq_stats->packets;
5416 tx->bytes += sq_stats->bytes;
5417 }
5418 }
5419
5420 /* if PTP TX was opened at some point and has since either:
5421 * - been shutdown and set to NULL, or
5422 * - simply disabled (bit unset)
5423 *
5424 * report stats directly from the ptp_stats structures as these queues
5425 * are now unavailable and there is no txq index to retrieve these
5426 * stats via calls to mlx5e_get_queue_stats_tx.
5427 */
5428 ptp_channel = priv->channels.ptp;
5429 if (priv->tx_ptp_opened && (!ptp_channel || !test_bit(MLX5E_PTP_STATE_TX, ptp_channel->state))) {
5430 for (tc = 0; tc < priv->max_opened_tc; tc++) {
5431 struct mlx5e_sq_stats *sq_stats = &priv->ptp_stats.sq[tc];
5432
5433 tx->packets += sq_stats->packets;
5434 tx->bytes += sq_stats->bytes;
5435 }
5436 }
5437 }
5438
5439 static const struct netdev_stat_ops mlx5e_stat_ops = {
5440 .get_queue_stats_rx = mlx5e_get_queue_stats_rx,
5441 .get_queue_stats_tx = mlx5e_get_queue_stats_tx,
5442 .get_base_stats = mlx5e_get_base_stats,
5443 };
5444
mlx5e_build_nic_netdev(struct net_device * netdev)5445 static void mlx5e_build_nic_netdev(struct net_device *netdev)
5446 {
5447 struct mlx5e_priv *priv = netdev_priv(netdev);
5448 struct mlx5_core_dev *mdev = priv->mdev;
5449 bool fcs_supported;
5450 bool fcs_enabled;
5451
5452 SET_NETDEV_DEV(netdev, mdev->device);
5453
5454 netdev->netdev_ops = &mlx5e_netdev_ops;
5455 netdev->xdp_metadata_ops = &mlx5e_xdp_metadata_ops;
5456 netdev->xsk_tx_metadata_ops = &mlx5e_xsk_tx_metadata_ops;
5457
5458 mlx5e_dcbnl_build_netdev(netdev);
5459
5460 netdev->watchdog_timeo = 15 * HZ;
5461
5462 netdev->stat_ops = &mlx5e_stat_ops;
5463 netdev->ethtool_ops = &mlx5e_ethtool_ops;
5464
5465 netdev->vlan_features |= NETIF_F_SG;
5466 netdev->vlan_features |= NETIF_F_HW_CSUM;
5467 netdev->vlan_features |= NETIF_F_HW_MACSEC;
5468 netdev->vlan_features |= NETIF_F_GRO;
5469 netdev->vlan_features |= NETIF_F_TSO;
5470 netdev->vlan_features |= NETIF_F_TSO6;
5471 netdev->vlan_features |= NETIF_F_RXCSUM;
5472 netdev->vlan_features |= NETIF_F_RXHASH;
5473 netdev->vlan_features |= NETIF_F_GSO_PARTIAL;
5474
5475 netdev->mpls_features |= NETIF_F_SG;
5476 netdev->mpls_features |= NETIF_F_HW_CSUM;
5477 netdev->mpls_features |= NETIF_F_TSO;
5478 netdev->mpls_features |= NETIF_F_TSO6;
5479
5480 netdev->hw_enc_features |= NETIF_F_HW_VLAN_CTAG_TX;
5481 netdev->hw_enc_features |= NETIF_F_HW_VLAN_CTAG_RX;
5482
5483 /* Tunneled LRO is not supported in the driver, and the same RQs are
5484 * shared between inner and outer TIRs, so the driver can't disable LRO
5485 * for inner TIRs while having it enabled for outer TIRs. Due to this,
5486 * block LRO altogether if the firmware declares tunneled LRO support.
5487 */
5488 if (!!MLX5_CAP_ETH(mdev, lro_cap) &&
5489 !MLX5_CAP_ETH(mdev, tunnel_lro_vxlan) &&
5490 !MLX5_CAP_ETH(mdev, tunnel_lro_gre) &&
5491 mlx5e_check_fragmented_striding_rq_cap(mdev, PAGE_SHIFT,
5492 MLX5E_MPWRQ_UMR_MODE_ALIGNED))
5493 netdev->vlan_features |= NETIF_F_LRO;
5494
5495 netdev->hw_features = netdev->vlan_features;
5496 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX;
5497 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX;
5498 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
5499 netdev->hw_features |= NETIF_F_HW_VLAN_STAG_TX;
5500
5501 if (mlx5e_hw_gro_supported(mdev) &&
5502 mlx5e_check_fragmented_striding_rq_cap(mdev, PAGE_SHIFT,
5503 MLX5E_MPWRQ_UMR_MODE_ALIGNED))
5504 netdev->hw_features |= NETIF_F_GRO_HW;
5505
5506 if (mlx5e_tunnel_any_tx_proto_supported(mdev)) {
5507 netdev->hw_enc_features |= NETIF_F_HW_CSUM;
5508 netdev->hw_enc_features |= NETIF_F_TSO;
5509 netdev->hw_enc_features |= NETIF_F_TSO6;
5510 netdev->hw_enc_features |= NETIF_F_GSO_PARTIAL;
5511 }
5512
5513 if (mlx5_vxlan_allowed(mdev->vxlan) || mlx5_geneve_tx_allowed(mdev)) {
5514 netdev->hw_features |= NETIF_F_GSO_UDP_TUNNEL |
5515 NETIF_F_GSO_UDP_TUNNEL_CSUM;
5516 netdev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL |
5517 NETIF_F_GSO_UDP_TUNNEL_CSUM;
5518 netdev->gso_partial_features = NETIF_F_GSO_UDP_TUNNEL_CSUM;
5519 netdev->vlan_features |= NETIF_F_GSO_UDP_TUNNEL |
5520 NETIF_F_GSO_UDP_TUNNEL_CSUM;
5521 }
5522
5523 if (mlx5e_tunnel_proto_supported_tx(mdev, IPPROTO_GRE)) {
5524 netdev->hw_features |= NETIF_F_GSO_GRE |
5525 NETIF_F_GSO_GRE_CSUM;
5526 netdev->hw_enc_features |= NETIF_F_GSO_GRE |
5527 NETIF_F_GSO_GRE_CSUM;
5528 netdev->gso_partial_features |= NETIF_F_GSO_GRE |
5529 NETIF_F_GSO_GRE_CSUM;
5530 }
5531
5532 if (mlx5e_tunnel_proto_supported_tx(mdev, IPPROTO_IPIP)) {
5533 netdev->hw_features |= NETIF_F_GSO_IPXIP4 |
5534 NETIF_F_GSO_IPXIP6;
5535 netdev->hw_enc_features |= NETIF_F_GSO_IPXIP4 |
5536 NETIF_F_GSO_IPXIP6;
5537 netdev->gso_partial_features |= NETIF_F_GSO_IPXIP4 |
5538 NETIF_F_GSO_IPXIP6;
5539 }
5540
5541 netdev->gso_partial_features |= NETIF_F_GSO_UDP_L4;
5542 netdev->hw_features |= NETIF_F_GSO_UDP_L4;
5543
5544 mlx5_query_port_fcs(mdev, &fcs_supported, &fcs_enabled);
5545
5546 if (fcs_supported)
5547 netdev->hw_features |= NETIF_F_RXALL;
5548
5549 if (MLX5_CAP_ETH(mdev, scatter_fcs))
5550 netdev->hw_features |= NETIF_F_RXFCS;
5551
5552 if (mlx5_qos_is_supported(mdev))
5553 netdev->hw_features |= NETIF_F_HW_TC;
5554
5555 netdev->features = netdev->hw_features;
5556
5557 /* Defaults */
5558 if (fcs_enabled)
5559 netdev->features &= ~NETIF_F_RXALL;
5560 netdev->features &= ~NETIF_F_LRO;
5561 netdev->features &= ~NETIF_F_GRO_HW;
5562 netdev->features &= ~NETIF_F_RXFCS;
5563
5564 #define FT_CAP(f) MLX5_CAP_FLOWTABLE(mdev, flow_table_properties_nic_receive.f)
5565 if (FT_CAP(flow_modify_en) &&
5566 FT_CAP(modify_root) &&
5567 FT_CAP(identified_miss_table_mode) &&
5568 FT_CAP(flow_table_modify)) {
5569 #if IS_ENABLED(CONFIG_MLX5_CLS_ACT)
5570 netdev->hw_features |= NETIF_F_HW_TC;
5571 #endif
5572 #if IS_ENABLED(CONFIG_MLX5_EN_ARFS)
5573 netdev->hw_features |= NETIF_F_NTUPLE;
5574 #elif IS_ENABLED(CONFIG_MLX5_EN_RXNFC)
5575 netdev->features |= NETIF_F_NTUPLE;
5576 #endif
5577 }
5578
5579 netdev->features |= NETIF_F_HIGHDMA;
5580 netdev->features |= NETIF_F_HW_VLAN_STAG_FILTER;
5581
5582 netdev->priv_flags |= IFF_UNICAST_FLT;
5583
5584 netif_set_tso_max_size(netdev, GSO_MAX_SIZE);
5585 mlx5e_set_xdp_feature(netdev);
5586 mlx5e_set_netdev_dev_addr(netdev);
5587 mlx5e_macsec_build_netdev(priv);
5588 mlx5e_ipsec_build_netdev(priv);
5589 mlx5e_ktls_build_netdev(priv);
5590 }
5591
mlx5e_create_q_counters(struct mlx5e_priv * priv)5592 void mlx5e_create_q_counters(struct mlx5e_priv *priv)
5593 {
5594 u32 out[MLX5_ST_SZ_DW(alloc_q_counter_out)] = {};
5595 u32 in[MLX5_ST_SZ_DW(alloc_q_counter_in)] = {};
5596 struct mlx5_core_dev *mdev = priv->mdev;
5597 struct mlx5_core_dev *pos;
5598 int err, i;
5599
5600 MLX5_SET(alloc_q_counter_in, in, opcode, MLX5_CMD_OP_ALLOC_Q_COUNTER);
5601
5602 mlx5_sd_for_each_dev(i, mdev, pos) {
5603 err = mlx5_cmd_exec_inout(pos, alloc_q_counter, in, out);
5604 if (!err)
5605 priv->q_counter[i] =
5606 MLX5_GET(alloc_q_counter_out, out, counter_set_id);
5607 }
5608
5609 err = mlx5_cmd_exec_inout(mdev, alloc_q_counter, in, out);
5610 if (!err)
5611 priv->drop_rq_q_counter =
5612 MLX5_GET(alloc_q_counter_out, out, counter_set_id);
5613 }
5614
mlx5e_destroy_q_counters(struct mlx5e_priv * priv)5615 void mlx5e_destroy_q_counters(struct mlx5e_priv *priv)
5616 {
5617 u32 in[MLX5_ST_SZ_DW(dealloc_q_counter_in)] = {};
5618 struct mlx5_core_dev *pos;
5619 int i;
5620
5621 MLX5_SET(dealloc_q_counter_in, in, opcode,
5622 MLX5_CMD_OP_DEALLOC_Q_COUNTER);
5623 mlx5_sd_for_each_dev(i, priv->mdev, pos) {
5624 if (priv->q_counter[i]) {
5625 MLX5_SET(dealloc_q_counter_in, in, counter_set_id,
5626 priv->q_counter[i]);
5627 mlx5_cmd_exec_in(pos, dealloc_q_counter, in);
5628 }
5629 }
5630
5631 if (priv->drop_rq_q_counter) {
5632 MLX5_SET(dealloc_q_counter_in, in, counter_set_id,
5633 priv->drop_rq_q_counter);
5634 mlx5_cmd_exec_in(priv->mdev, dealloc_q_counter, in);
5635 }
5636 }
5637
mlx5e_nic_init(struct mlx5_core_dev * mdev,struct net_device * netdev)5638 static int mlx5e_nic_init(struct mlx5_core_dev *mdev,
5639 struct net_device *netdev)
5640 {
5641 const bool take_rtnl = netdev->reg_state == NETREG_REGISTERED;
5642 struct mlx5e_priv *priv = netdev_priv(netdev);
5643 struct mlx5e_flow_steering *fs;
5644 int err;
5645
5646 mlx5e_build_nic_params(priv, &priv->xsk, netdev->mtu);
5647 mlx5e_vxlan_set_netdev_info(priv);
5648
5649 mlx5e_timestamp_init(priv);
5650
5651 priv->dfs_root = debugfs_create_dir("nic",
5652 mlx5_debugfs_get_dev_root(mdev));
5653
5654 fs = mlx5e_fs_init(priv->profile, mdev,
5655 !test_bit(MLX5E_STATE_DESTROYING, &priv->state),
5656 priv->dfs_root);
5657 if (!fs) {
5658 err = -ENOMEM;
5659 mlx5_core_err(mdev, "FS initialization failed, %d\n", err);
5660 debugfs_remove_recursive(priv->dfs_root);
5661 return err;
5662 }
5663 priv->fs = fs;
5664
5665 err = mlx5e_ktls_init(priv);
5666 if (err)
5667 mlx5_core_err(mdev, "TLS initialization failed, %d\n", err);
5668
5669 mlx5e_health_create_reporters(priv);
5670
5671 /* If netdev is already registered (e.g. move from uplink to nic profile),
5672 * RTNL lock must be held before triggering netdev notifiers.
5673 */
5674 if (take_rtnl)
5675 rtnl_lock();
5676
5677 /* update XDP supported features */
5678 mlx5e_set_xdp_feature(netdev);
5679
5680 if (take_rtnl)
5681 rtnl_unlock();
5682
5683 return 0;
5684 }
5685
mlx5e_nic_cleanup(struct mlx5e_priv * priv)5686 static void mlx5e_nic_cleanup(struct mlx5e_priv *priv)
5687 {
5688 mlx5e_health_destroy_reporters(priv);
5689 mlx5e_ktls_cleanup(priv);
5690 mlx5e_fs_cleanup(priv->fs);
5691 debugfs_remove_recursive(priv->dfs_root);
5692 priv->fs = NULL;
5693 }
5694
mlx5e_init_nic_rx(struct mlx5e_priv * priv)5695 static int mlx5e_init_nic_rx(struct mlx5e_priv *priv)
5696 {
5697 struct mlx5_core_dev *mdev = priv->mdev;
5698 enum mlx5e_rx_res_features features;
5699 int err;
5700
5701 mlx5e_create_q_counters(priv);
5702
5703 err = mlx5e_open_drop_rq(priv, &priv->drop_rq);
5704 if (err) {
5705 mlx5_core_err(mdev, "open drop rq failed, %d\n", err);
5706 goto err_destroy_q_counters;
5707 }
5708
5709 features = MLX5E_RX_RES_FEATURE_PTP;
5710 if (mlx5_tunnel_inner_ft_supported(mdev))
5711 features |= MLX5E_RX_RES_FEATURE_INNER_FT;
5712 if (mlx5_get_sd(priv->mdev))
5713 features |= MLX5E_RX_RES_FEATURE_MULTI_VHCA;
5714
5715 priv->rx_res = mlx5e_rx_res_create(priv->mdev, features, priv->max_nch, priv->drop_rq.rqn,
5716 &priv->channels.params.packet_merge,
5717 priv->channels.params.num_channels);
5718 if (IS_ERR(priv->rx_res)) {
5719 err = PTR_ERR(priv->rx_res);
5720 priv->rx_res = NULL;
5721 mlx5_core_err(mdev, "create rx resources failed, %d\n", err);
5722 goto err_close_drop_rq;
5723 }
5724
5725 err = mlx5e_create_flow_steering(priv->fs, priv->rx_res, priv->profile,
5726 priv->netdev);
5727 if (err) {
5728 mlx5_core_warn(mdev, "create flow steering failed, %d\n", err);
5729 goto err_destroy_rx_res;
5730 }
5731
5732 err = mlx5e_tc_nic_init(priv);
5733 if (err)
5734 goto err_destroy_flow_steering;
5735
5736 err = mlx5e_accel_init_rx(priv);
5737 if (err)
5738 goto err_tc_nic_cleanup;
5739
5740 #ifdef CONFIG_MLX5_EN_ARFS
5741 priv->netdev->rx_cpu_rmap = mlx5_eq_table_get_rmap(priv->mdev);
5742 #endif
5743
5744 return 0;
5745
5746 err_tc_nic_cleanup:
5747 mlx5e_tc_nic_cleanup(priv);
5748 err_destroy_flow_steering:
5749 mlx5e_destroy_flow_steering(priv->fs, mlx5e_fs_has_arfs(priv->netdev),
5750 priv->profile);
5751 err_destroy_rx_res:
5752 mlx5e_rx_res_destroy(priv->rx_res);
5753 priv->rx_res = NULL;
5754 err_close_drop_rq:
5755 mlx5e_close_drop_rq(&priv->drop_rq);
5756 err_destroy_q_counters:
5757 mlx5e_destroy_q_counters(priv);
5758 return err;
5759 }
5760
mlx5e_cleanup_nic_rx(struct mlx5e_priv * priv)5761 static void mlx5e_cleanup_nic_rx(struct mlx5e_priv *priv)
5762 {
5763 mlx5e_accel_cleanup_rx(priv);
5764 mlx5e_tc_nic_cleanup(priv);
5765 mlx5e_destroy_flow_steering(priv->fs, mlx5e_fs_has_arfs(priv->netdev),
5766 priv->profile);
5767 mlx5e_rx_res_destroy(priv->rx_res);
5768 priv->rx_res = NULL;
5769 mlx5e_close_drop_rq(&priv->drop_rq);
5770 mlx5e_destroy_q_counters(priv);
5771 }
5772
mlx5e_set_mqprio_rl(struct mlx5e_priv * priv)5773 static void mlx5e_set_mqprio_rl(struct mlx5e_priv *priv)
5774 {
5775 struct mlx5e_params *params;
5776 struct mlx5e_mqprio_rl *rl;
5777
5778 params = &priv->channels.params;
5779 if (params->mqprio.mode != TC_MQPRIO_MODE_CHANNEL)
5780 return;
5781
5782 rl = mlx5e_mqprio_rl_create(priv->mdev, params->mqprio.num_tc,
5783 params->mqprio.channel.max_rate);
5784 if (IS_ERR(rl))
5785 rl = NULL;
5786 priv->mqprio_rl = rl;
5787 mlx5e_mqprio_rl_update_params(params, rl);
5788 }
5789
mlx5e_init_nic_tx(struct mlx5e_priv * priv)5790 static int mlx5e_init_nic_tx(struct mlx5e_priv *priv)
5791 {
5792 int err;
5793
5794 err = mlx5e_accel_init_tx(priv);
5795 if (err)
5796 return err;
5797
5798 mlx5e_set_mqprio_rl(priv);
5799 mlx5e_dcbnl_initialize(priv);
5800 return 0;
5801 }
5802
mlx5e_nic_enable(struct mlx5e_priv * priv)5803 static void mlx5e_nic_enable(struct mlx5e_priv *priv)
5804 {
5805 struct net_device *netdev = priv->netdev;
5806 struct mlx5_core_dev *mdev = priv->mdev;
5807 int err;
5808
5809 mlx5e_fs_init_l2_addr(priv->fs, netdev);
5810 mlx5e_ipsec_init(priv);
5811
5812 err = mlx5e_macsec_init(priv);
5813 if (err)
5814 mlx5_core_err(mdev, "MACsec initialization failed, %d\n", err);
5815
5816 /* Marking the link as currently not needed by the Driver */
5817 if (!netif_running(netdev))
5818 mlx5e_modify_admin_state(mdev, MLX5_PORT_DOWN);
5819
5820 mlx5e_set_netdev_mtu_boundaries(priv);
5821 mlx5e_set_dev_port_mtu(priv);
5822
5823 mlx5_lag_add_netdev(mdev, netdev);
5824
5825 mlx5e_enable_async_events(priv);
5826 mlx5e_enable_blocking_events(priv);
5827 if (mlx5e_monitor_counter_supported(priv))
5828 mlx5e_monitor_counter_init(priv);
5829
5830 mlx5e_hv_vhca_stats_create(priv);
5831 if (netdev->reg_state != NETREG_REGISTERED)
5832 return;
5833 mlx5e_dcbnl_init_app(priv);
5834
5835 mlx5e_nic_set_rx_mode(priv);
5836
5837 rtnl_lock();
5838 if (netif_running(netdev))
5839 mlx5e_open(netdev);
5840 udp_tunnel_nic_reset_ntf(priv->netdev);
5841 netif_device_attach(netdev);
5842 rtnl_unlock();
5843 }
5844
mlx5e_nic_disable(struct mlx5e_priv * priv)5845 static void mlx5e_nic_disable(struct mlx5e_priv *priv)
5846 {
5847 struct mlx5_core_dev *mdev = priv->mdev;
5848
5849 if (priv->netdev->reg_state == NETREG_REGISTERED)
5850 mlx5e_dcbnl_delete_app(priv);
5851
5852 rtnl_lock();
5853 if (netif_running(priv->netdev))
5854 mlx5e_close(priv->netdev);
5855 netif_device_detach(priv->netdev);
5856 rtnl_unlock();
5857
5858 mlx5e_nic_set_rx_mode(priv);
5859
5860 mlx5e_hv_vhca_stats_destroy(priv);
5861 if (mlx5e_monitor_counter_supported(priv))
5862 mlx5e_monitor_counter_cleanup(priv);
5863
5864 mlx5e_disable_blocking_events(priv);
5865 if (priv->en_trap) {
5866 mlx5e_deactivate_trap(priv);
5867 mlx5e_close_trap(priv->en_trap);
5868 priv->en_trap = NULL;
5869 }
5870 mlx5e_disable_async_events(priv);
5871 mlx5_lag_remove_netdev(mdev, priv->netdev);
5872 mlx5_vxlan_reset_to_default(mdev->vxlan);
5873 mlx5e_macsec_cleanup(priv);
5874 mlx5e_ipsec_cleanup(priv);
5875 }
5876
mlx5e_update_nic_rx(struct mlx5e_priv * priv)5877 static int mlx5e_update_nic_rx(struct mlx5e_priv *priv)
5878 {
5879 return mlx5e_refresh_tirs(priv, false, false);
5880 }
5881
5882 static const struct mlx5e_profile mlx5e_nic_profile = {
5883 .init = mlx5e_nic_init,
5884 .cleanup = mlx5e_nic_cleanup,
5885 .init_rx = mlx5e_init_nic_rx,
5886 .cleanup_rx = mlx5e_cleanup_nic_rx,
5887 .init_tx = mlx5e_init_nic_tx,
5888 .cleanup_tx = mlx5e_cleanup_nic_tx,
5889 .enable = mlx5e_nic_enable,
5890 .disable = mlx5e_nic_disable,
5891 .update_rx = mlx5e_update_nic_rx,
5892 .update_stats = mlx5e_stats_update_ndo_stats,
5893 .update_carrier = mlx5e_update_carrier,
5894 .rx_handlers = &mlx5e_rx_handlers_nic,
5895 .max_tc = MLX5_MAX_NUM_TC,
5896 .stats_grps = mlx5e_nic_stats_grps,
5897 .stats_grps_num = mlx5e_nic_stats_grps_num,
5898 .features = BIT(MLX5E_PROFILE_FEATURE_PTP_RX) |
5899 BIT(MLX5E_PROFILE_FEATURE_PTP_TX) |
5900 BIT(MLX5E_PROFILE_FEATURE_QOS_HTB) |
5901 BIT(MLX5E_PROFILE_FEATURE_FS_VLAN) |
5902 BIT(MLX5E_PROFILE_FEATURE_FS_TC),
5903 };
5904
mlx5e_profile_max_num_channels(struct mlx5_core_dev * mdev,const struct mlx5e_profile * profile)5905 static int mlx5e_profile_max_num_channels(struct mlx5_core_dev *mdev,
5906 const struct mlx5e_profile *profile)
5907 {
5908 int nch;
5909
5910 nch = mlx5e_get_max_num_channels(mdev);
5911
5912 if (profile->max_nch_limit)
5913 nch = min_t(int, nch, profile->max_nch_limit(mdev));
5914 return nch;
5915 }
5916
5917 static unsigned int
mlx5e_calc_max_nch(struct mlx5_core_dev * mdev,struct net_device * netdev,const struct mlx5e_profile * profile)5918 mlx5e_calc_max_nch(struct mlx5_core_dev *mdev, struct net_device *netdev,
5919 const struct mlx5e_profile *profile)
5920
5921 {
5922 unsigned int max_nch, tmp;
5923
5924 /* core resources */
5925 max_nch = mlx5e_profile_max_num_channels(mdev, profile);
5926
5927 /* netdev rx queues */
5928 max_nch = min_t(unsigned int, max_nch, netdev->num_rx_queues);
5929
5930 /* netdev tx queues */
5931 tmp = netdev->num_tx_queues;
5932 if (mlx5_qos_is_supported(mdev))
5933 tmp -= mlx5e_qos_max_leaf_nodes(mdev);
5934 if (MLX5_CAP_GEN(mdev, ts_cqe_to_dest_cqn))
5935 tmp -= profile->max_tc;
5936 tmp = tmp / profile->max_tc;
5937 max_nch = min_t(unsigned int, max_nch, tmp);
5938
5939 return max_nch;
5940 }
5941
mlx5e_get_pf_num_tirs(struct mlx5_core_dev * mdev)5942 int mlx5e_get_pf_num_tirs(struct mlx5_core_dev *mdev)
5943 {
5944 /* Indirect TIRS: 2 sets of TTCs (inner + outer steering)
5945 * and 1 set of direct TIRS
5946 */
5947 return 2 * MLX5E_NUM_INDIR_TIRS
5948 + mlx5e_profile_max_num_channels(mdev, &mlx5e_nic_profile);
5949 }
5950
mlx5e_set_rx_mode_work(struct work_struct * work)5951 void mlx5e_set_rx_mode_work(struct work_struct *work)
5952 {
5953 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
5954 set_rx_mode_work);
5955
5956 return mlx5e_fs_set_rx_mode_work(priv->fs, priv->netdev);
5957 }
5958
5959 /* mlx5e generic netdev management API (move to en_common.c) */
mlx5e_priv_init(struct mlx5e_priv * priv,const struct mlx5e_profile * profile,struct net_device * netdev,struct mlx5_core_dev * mdev)5960 int mlx5e_priv_init(struct mlx5e_priv *priv,
5961 const struct mlx5e_profile *profile,
5962 struct net_device *netdev,
5963 struct mlx5_core_dev *mdev)
5964 {
5965 int nch, num_txqs, node;
5966 int err;
5967
5968 num_txqs = netdev->num_tx_queues;
5969 nch = mlx5e_calc_max_nch(mdev, netdev, profile);
5970 node = dev_to_node(mlx5_core_dma_dev(mdev));
5971
5972 /* priv init */
5973 priv->mdev = mdev;
5974 priv->netdev = netdev;
5975 priv->max_nch = nch;
5976 priv->max_opened_tc = 1;
5977
5978 if (!alloc_cpumask_var(&priv->scratchpad.cpumask, GFP_KERNEL))
5979 return -ENOMEM;
5980
5981 mutex_init(&priv->state_lock);
5982
5983 err = mlx5e_selq_init(&priv->selq, &priv->state_lock);
5984 if (err)
5985 goto err_free_cpumask;
5986
5987 INIT_WORK(&priv->update_carrier_work, mlx5e_update_carrier_work);
5988 INIT_WORK(&priv->set_rx_mode_work, mlx5e_set_rx_mode_work);
5989 INIT_WORK(&priv->tx_timeout_work, mlx5e_tx_timeout_work);
5990 INIT_WORK(&priv->update_stats_work, mlx5e_update_stats_work);
5991
5992 priv->wq = create_singlethread_workqueue("mlx5e");
5993 if (!priv->wq)
5994 goto err_free_selq;
5995
5996 priv->txq2sq = kcalloc_node(num_txqs, sizeof(*priv->txq2sq), GFP_KERNEL, node);
5997 if (!priv->txq2sq)
5998 goto err_destroy_workqueue;
5999
6000 priv->txq2sq_stats = kcalloc_node(num_txqs, sizeof(*priv->txq2sq_stats), GFP_KERNEL, node);
6001 if (!priv->txq2sq_stats)
6002 goto err_free_txq2sq;
6003
6004 priv->tx_rates = kcalloc_node(num_txqs, sizeof(*priv->tx_rates), GFP_KERNEL, node);
6005 if (!priv->tx_rates)
6006 goto err_free_txq2sq_stats;
6007
6008 priv->channel_stats =
6009 kcalloc_node(nch, sizeof(*priv->channel_stats), GFP_KERNEL, node);
6010 if (!priv->channel_stats)
6011 goto err_free_tx_rates;
6012
6013 return 0;
6014
6015 err_free_tx_rates:
6016 kfree(priv->tx_rates);
6017 err_free_txq2sq_stats:
6018 kfree(priv->txq2sq_stats);
6019 err_free_txq2sq:
6020 kfree(priv->txq2sq);
6021 err_destroy_workqueue:
6022 destroy_workqueue(priv->wq);
6023 err_free_selq:
6024 mlx5e_selq_cleanup(&priv->selq);
6025 err_free_cpumask:
6026 free_cpumask_var(priv->scratchpad.cpumask);
6027 return -ENOMEM;
6028 }
6029
mlx5e_priv_cleanup(struct mlx5e_priv * priv)6030 void mlx5e_priv_cleanup(struct mlx5e_priv *priv)
6031 {
6032 int i;
6033
6034 /* bail if change profile failed and also rollback failed */
6035 if (!priv->mdev)
6036 return;
6037
6038 for (i = 0; i < priv->stats_nch; i++)
6039 kvfree(priv->channel_stats[i]);
6040 kfree(priv->channel_stats);
6041 kfree(priv->tx_rates);
6042 kfree(priv->txq2sq_stats);
6043 kfree(priv->txq2sq);
6044 destroy_workqueue(priv->wq);
6045 mlx5e_selq_cleanup(&priv->selq);
6046 free_cpumask_var(priv->scratchpad.cpumask);
6047
6048 for (i = 0; i < priv->htb_max_qos_sqs; i++)
6049 kfree(priv->htb_qos_sq_stats[i]);
6050 kvfree(priv->htb_qos_sq_stats);
6051
6052 if (priv->mqprio_rl) {
6053 mlx5e_mqprio_rl_cleanup(priv->mqprio_rl);
6054 mlx5e_mqprio_rl_free(priv->mqprio_rl);
6055 }
6056
6057 memset(priv, 0, sizeof(*priv));
6058 }
6059
mlx5e_get_max_num_txqs(struct mlx5_core_dev * mdev,const struct mlx5e_profile * profile)6060 static unsigned int mlx5e_get_max_num_txqs(struct mlx5_core_dev *mdev,
6061 const struct mlx5e_profile *profile)
6062 {
6063 unsigned int nch, ptp_txqs, qos_txqs;
6064
6065 nch = mlx5e_profile_max_num_channels(mdev, profile);
6066
6067 ptp_txqs = MLX5_CAP_GEN(mdev, ts_cqe_to_dest_cqn) &&
6068 mlx5e_profile_feature_cap(profile, PTP_TX) ?
6069 profile->max_tc : 0;
6070
6071 qos_txqs = mlx5_qos_is_supported(mdev) &&
6072 mlx5e_profile_feature_cap(profile, QOS_HTB) ?
6073 mlx5e_qos_max_leaf_nodes(mdev) : 0;
6074
6075 return nch * profile->max_tc + ptp_txqs + qos_txqs;
6076 }
6077
mlx5e_get_max_num_rxqs(struct mlx5_core_dev * mdev,const struct mlx5e_profile * profile)6078 static unsigned int mlx5e_get_max_num_rxqs(struct mlx5_core_dev *mdev,
6079 const struct mlx5e_profile *profile)
6080 {
6081 return mlx5e_profile_max_num_channels(mdev, profile);
6082 }
6083
6084 struct net_device *
mlx5e_create_netdev(struct mlx5_core_dev * mdev,const struct mlx5e_profile * profile)6085 mlx5e_create_netdev(struct mlx5_core_dev *mdev, const struct mlx5e_profile *profile)
6086 {
6087 struct net_device *netdev;
6088 unsigned int txqs, rxqs;
6089 int err;
6090
6091 txqs = mlx5e_get_max_num_txqs(mdev, profile);
6092 rxqs = mlx5e_get_max_num_rxqs(mdev, profile);
6093
6094 netdev = alloc_etherdev_mqs(sizeof(struct mlx5e_priv), txqs, rxqs);
6095 if (!netdev) {
6096 mlx5_core_err(mdev, "alloc_etherdev_mqs() failed\n");
6097 return NULL;
6098 }
6099
6100 err = mlx5e_priv_init(netdev_priv(netdev), profile, netdev, mdev);
6101 if (err) {
6102 mlx5_core_err(mdev, "mlx5e_priv_init failed, err=%d\n", err);
6103 goto err_free_netdev;
6104 }
6105
6106 netif_carrier_off(netdev);
6107 netif_tx_disable(netdev);
6108 dev_net_set(netdev, mlx5_core_net(mdev));
6109
6110 return netdev;
6111
6112 err_free_netdev:
6113 free_netdev(netdev);
6114
6115 return NULL;
6116 }
6117
mlx5e_update_features(struct net_device * netdev)6118 static void mlx5e_update_features(struct net_device *netdev)
6119 {
6120 if (netdev->reg_state != NETREG_REGISTERED)
6121 return; /* features will be updated on netdev registration */
6122
6123 rtnl_lock();
6124 netdev_update_features(netdev);
6125 rtnl_unlock();
6126 }
6127
mlx5e_reset_channels(struct net_device * netdev)6128 static void mlx5e_reset_channels(struct net_device *netdev)
6129 {
6130 netdev_reset_tc(netdev);
6131 }
6132
mlx5e_attach_netdev(struct mlx5e_priv * priv)6133 int mlx5e_attach_netdev(struct mlx5e_priv *priv)
6134 {
6135 const bool take_rtnl = priv->netdev->reg_state == NETREG_REGISTERED;
6136 const struct mlx5e_profile *profile = priv->profile;
6137 int max_nch;
6138 int err;
6139
6140 clear_bit(MLX5E_STATE_DESTROYING, &priv->state);
6141 if (priv->fs)
6142 mlx5e_fs_set_state_destroy(priv->fs,
6143 !test_bit(MLX5E_STATE_DESTROYING, &priv->state));
6144
6145 /* Validate the max_wqe_size_sq capability. */
6146 if (WARN_ON_ONCE(mlx5e_get_max_sq_wqebbs(priv->mdev) < MLX5E_MAX_TX_WQEBBS)) {
6147 mlx5_core_warn(priv->mdev, "MLX5E: Max SQ WQEBBs firmware capability: %u, needed %u\n",
6148 mlx5e_get_max_sq_wqebbs(priv->mdev), (unsigned int)MLX5E_MAX_TX_WQEBBS);
6149 return -EIO;
6150 }
6151
6152 /* max number of channels may have changed */
6153 max_nch = mlx5e_calc_max_nch(priv->mdev, priv->netdev, profile);
6154 if (priv->channels.params.num_channels > max_nch) {
6155 mlx5_core_warn(priv->mdev, "MLX5E: Reducing number of channels to %d\n", max_nch);
6156 /* Reducing the number of channels - RXFH has to be reset, and
6157 * mlx5e_num_channels_changed below will build the RQT.
6158 */
6159 priv->netdev->priv_flags &= ~IFF_RXFH_CONFIGURED;
6160 priv->channels.params.num_channels = max_nch;
6161 if (priv->channels.params.mqprio.mode == TC_MQPRIO_MODE_CHANNEL) {
6162 mlx5_core_warn(priv->mdev, "MLX5E: Disabling MQPRIO channel mode\n");
6163 mlx5e_params_mqprio_reset(&priv->channels.params);
6164 }
6165 }
6166 if (max_nch != priv->max_nch) {
6167 mlx5_core_warn(priv->mdev,
6168 "MLX5E: Updating max number of channels from %u to %u\n",
6169 priv->max_nch, max_nch);
6170 priv->max_nch = max_nch;
6171 }
6172
6173 /* 1. Set the real number of queues in the kernel the first time.
6174 * 2. Set our default XPS cpumask.
6175 * 3. Build the RQT.
6176 *
6177 * rtnl_lock is required by netif_set_real_num_*_queues in case the
6178 * netdev has been registered by this point (if this function was called
6179 * in the reload or resume flow).
6180 */
6181 if (take_rtnl)
6182 rtnl_lock();
6183 err = mlx5e_num_channels_changed(priv);
6184 if (take_rtnl)
6185 rtnl_unlock();
6186 if (err)
6187 goto out;
6188
6189 err = profile->init_tx(priv);
6190 if (err)
6191 goto out;
6192
6193 err = profile->init_rx(priv);
6194 if (err)
6195 goto err_cleanup_tx;
6196
6197 if (profile->enable)
6198 profile->enable(priv);
6199
6200 mlx5e_update_features(priv->netdev);
6201
6202 return 0;
6203
6204 err_cleanup_tx:
6205 profile->cleanup_tx(priv);
6206
6207 out:
6208 mlx5e_reset_channels(priv->netdev);
6209 set_bit(MLX5E_STATE_DESTROYING, &priv->state);
6210 if (priv->fs)
6211 mlx5e_fs_set_state_destroy(priv->fs,
6212 !test_bit(MLX5E_STATE_DESTROYING, &priv->state));
6213 cancel_work_sync(&priv->update_stats_work);
6214 return err;
6215 }
6216
mlx5e_detach_netdev(struct mlx5e_priv * priv)6217 void mlx5e_detach_netdev(struct mlx5e_priv *priv)
6218 {
6219 const struct mlx5e_profile *profile = priv->profile;
6220
6221 set_bit(MLX5E_STATE_DESTROYING, &priv->state);
6222 if (priv->fs)
6223 mlx5e_fs_set_state_destroy(priv->fs,
6224 !test_bit(MLX5E_STATE_DESTROYING, &priv->state));
6225
6226 if (profile->disable)
6227 profile->disable(priv);
6228 flush_workqueue(priv->wq);
6229
6230 profile->cleanup_rx(priv);
6231 profile->cleanup_tx(priv);
6232 mlx5e_reset_channels(priv->netdev);
6233 cancel_work_sync(&priv->update_stats_work);
6234 }
6235
6236 static int
mlx5e_netdev_init_profile(struct net_device * netdev,struct mlx5_core_dev * mdev,const struct mlx5e_profile * new_profile,void * new_ppriv)6237 mlx5e_netdev_init_profile(struct net_device *netdev, struct mlx5_core_dev *mdev,
6238 const struct mlx5e_profile *new_profile, void *new_ppriv)
6239 {
6240 struct mlx5e_priv *priv = netdev_priv(netdev);
6241 int err;
6242
6243 err = mlx5e_priv_init(priv, new_profile, netdev, mdev);
6244 if (err) {
6245 mlx5_core_err(mdev, "mlx5e_priv_init failed, err=%d\n", err);
6246 return err;
6247 }
6248 netif_carrier_off(netdev);
6249 priv->profile = new_profile;
6250 priv->ppriv = new_ppriv;
6251 err = new_profile->init(priv->mdev, priv->netdev);
6252 if (err)
6253 goto priv_cleanup;
6254
6255 return 0;
6256
6257 priv_cleanup:
6258 mlx5e_priv_cleanup(priv);
6259 return err;
6260 }
6261
6262 static int
mlx5e_netdev_attach_profile(struct net_device * netdev,struct mlx5_core_dev * mdev,const struct mlx5e_profile * new_profile,void * new_ppriv)6263 mlx5e_netdev_attach_profile(struct net_device *netdev, struct mlx5_core_dev *mdev,
6264 const struct mlx5e_profile *new_profile, void *new_ppriv)
6265 {
6266 struct mlx5e_priv *priv = netdev_priv(netdev);
6267 int err;
6268
6269 err = mlx5e_netdev_init_profile(netdev, mdev, new_profile, new_ppriv);
6270 if (err)
6271 return err;
6272
6273 err = mlx5e_attach_netdev(priv);
6274 if (err)
6275 goto profile_cleanup;
6276 return err;
6277
6278 profile_cleanup:
6279 new_profile->cleanup(priv);
6280 mlx5e_priv_cleanup(priv);
6281 return err;
6282 }
6283
mlx5e_netdev_change_profile(struct mlx5e_priv * priv,const struct mlx5e_profile * new_profile,void * new_ppriv)6284 int mlx5e_netdev_change_profile(struct mlx5e_priv *priv,
6285 const struct mlx5e_profile *new_profile, void *new_ppriv)
6286 {
6287 const struct mlx5e_profile *orig_profile = priv->profile;
6288 struct net_device *netdev = priv->netdev;
6289 struct mlx5_core_dev *mdev = priv->mdev;
6290 void *orig_ppriv = priv->ppriv;
6291 int err, rollback_err;
6292
6293 /* cleanup old profile */
6294 mlx5e_detach_netdev(priv);
6295 priv->profile->cleanup(priv);
6296 mlx5e_priv_cleanup(priv);
6297
6298 if (mdev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR) {
6299 mlx5e_netdev_init_profile(netdev, mdev, new_profile, new_ppriv);
6300 set_bit(MLX5E_STATE_DESTROYING, &priv->state);
6301 return -EIO;
6302 }
6303
6304 err = mlx5e_netdev_attach_profile(netdev, mdev, new_profile, new_ppriv);
6305 if (err) { /* roll back to original profile */
6306 netdev_warn(netdev, "%s: new profile init failed, %d\n", __func__, err);
6307 goto rollback;
6308 }
6309
6310 return 0;
6311
6312 rollback:
6313 rollback_err = mlx5e_netdev_attach_profile(netdev, mdev, orig_profile, orig_ppriv);
6314 if (rollback_err)
6315 netdev_err(netdev, "%s: failed to rollback to orig profile, %d\n",
6316 __func__, rollback_err);
6317 return err;
6318 }
6319
mlx5e_netdev_attach_nic_profile(struct mlx5e_priv * priv)6320 void mlx5e_netdev_attach_nic_profile(struct mlx5e_priv *priv)
6321 {
6322 mlx5e_netdev_change_profile(priv, &mlx5e_nic_profile, NULL);
6323 }
6324
mlx5e_destroy_netdev(struct mlx5e_priv * priv)6325 void mlx5e_destroy_netdev(struct mlx5e_priv *priv)
6326 {
6327 struct net_device *netdev = priv->netdev;
6328
6329 mlx5e_priv_cleanup(priv);
6330 free_netdev(netdev);
6331 }
6332
_mlx5e_resume(struct auxiliary_device * adev)6333 static int _mlx5e_resume(struct auxiliary_device *adev)
6334 {
6335 struct mlx5_adev *edev = container_of(adev, struct mlx5_adev, adev);
6336 struct mlx5e_dev *mlx5e_dev = auxiliary_get_drvdata(adev);
6337 struct mlx5e_priv *priv = mlx5e_dev->priv;
6338 struct net_device *netdev = priv->netdev;
6339 struct mlx5_core_dev *mdev = edev->mdev;
6340 struct mlx5_core_dev *pos, *to;
6341 int err, i;
6342
6343 if (netif_device_present(netdev))
6344 return 0;
6345
6346 mlx5_sd_for_each_dev(i, mdev, pos) {
6347 err = mlx5e_create_mdev_resources(pos, true);
6348 if (err)
6349 goto err_destroy_mdev_res;
6350 }
6351
6352 err = mlx5e_attach_netdev(priv);
6353 if (err)
6354 goto err_destroy_mdev_res;
6355
6356 return 0;
6357
6358 err_destroy_mdev_res:
6359 to = pos;
6360 mlx5_sd_for_each_dev_to(i, mdev, to, pos)
6361 mlx5e_destroy_mdev_resources(pos);
6362 return err;
6363 }
6364
mlx5e_resume(struct auxiliary_device * adev)6365 static int mlx5e_resume(struct auxiliary_device *adev)
6366 {
6367 struct mlx5_adev *edev = container_of(adev, struct mlx5_adev, adev);
6368 struct mlx5_core_dev *mdev = edev->mdev;
6369 struct auxiliary_device *actual_adev;
6370 int err;
6371
6372 err = mlx5_sd_init(mdev);
6373 if (err)
6374 return err;
6375
6376 actual_adev = mlx5_sd_get_adev(mdev, adev, edev->idx);
6377 if (actual_adev)
6378 return _mlx5e_resume(actual_adev);
6379 return 0;
6380 }
6381
_mlx5e_suspend(struct auxiliary_device * adev,bool pre_netdev_reg)6382 static int _mlx5e_suspend(struct auxiliary_device *adev, bool pre_netdev_reg)
6383 {
6384 struct mlx5e_dev *mlx5e_dev = auxiliary_get_drvdata(adev);
6385 struct mlx5e_priv *priv = mlx5e_dev->priv;
6386 struct net_device *netdev = priv->netdev;
6387 struct mlx5_core_dev *mdev = priv->mdev;
6388 struct mlx5_core_dev *pos;
6389 int i;
6390
6391 if (!pre_netdev_reg && !netif_device_present(netdev)) {
6392 if (test_bit(MLX5E_STATE_DESTROYING, &priv->state))
6393 mlx5_sd_for_each_dev(i, mdev, pos)
6394 mlx5e_destroy_mdev_resources(pos);
6395 return -ENODEV;
6396 }
6397
6398 mlx5e_detach_netdev(priv);
6399 mlx5_sd_for_each_dev(i, mdev, pos)
6400 mlx5e_destroy_mdev_resources(pos);
6401
6402 return 0;
6403 }
6404
mlx5e_suspend(struct auxiliary_device * adev,pm_message_t state)6405 static int mlx5e_suspend(struct auxiliary_device *adev, pm_message_t state)
6406 {
6407 struct mlx5_adev *edev = container_of(adev, struct mlx5_adev, adev);
6408 struct mlx5_core_dev *mdev = edev->mdev;
6409 struct auxiliary_device *actual_adev;
6410 int err = 0;
6411
6412 actual_adev = mlx5_sd_get_adev(mdev, adev, edev->idx);
6413 if (actual_adev)
6414 err = _mlx5e_suspend(actual_adev, false);
6415
6416 mlx5_sd_cleanup(mdev);
6417 return err;
6418 }
6419
_mlx5e_probe(struct auxiliary_device * adev)6420 static int _mlx5e_probe(struct auxiliary_device *adev)
6421 {
6422 struct mlx5_adev *edev = container_of(adev, struct mlx5_adev, adev);
6423 const struct mlx5e_profile *profile = &mlx5e_nic_profile;
6424 struct mlx5_core_dev *mdev = edev->mdev;
6425 struct mlx5e_dev *mlx5e_dev;
6426 struct net_device *netdev;
6427 struct mlx5e_priv *priv;
6428 int err;
6429
6430 mlx5e_dev = mlx5e_create_devlink(&adev->dev, mdev);
6431 if (IS_ERR(mlx5e_dev))
6432 return PTR_ERR(mlx5e_dev);
6433 auxiliary_set_drvdata(adev, mlx5e_dev);
6434
6435 err = mlx5e_devlink_port_register(mlx5e_dev, mdev);
6436 if (err) {
6437 mlx5_core_err(mdev, "mlx5e_devlink_port_register failed, %d\n", err);
6438 goto err_devlink_unregister;
6439 }
6440
6441 netdev = mlx5e_create_netdev(mdev, profile);
6442 if (!netdev) {
6443 mlx5_core_err(mdev, "mlx5e_create_netdev failed\n");
6444 err = -ENOMEM;
6445 goto err_devlink_port_unregister;
6446 }
6447 SET_NETDEV_DEVLINK_PORT(netdev, &mlx5e_dev->dl_port);
6448
6449 mlx5e_build_nic_netdev(netdev);
6450
6451 priv = netdev_priv(netdev);
6452 mlx5e_dev->priv = priv;
6453
6454 priv->profile = profile;
6455 priv->ppriv = NULL;
6456
6457 err = profile->init(mdev, netdev);
6458 if (err) {
6459 mlx5_core_err(mdev, "mlx5e_nic_profile init failed, %d\n", err);
6460 goto err_destroy_netdev;
6461 }
6462
6463 err = _mlx5e_resume(adev);
6464 if (err) {
6465 mlx5_core_err(mdev, "_mlx5e_resume failed, %d\n", err);
6466 goto err_profile_cleanup;
6467 }
6468
6469 err = register_netdev(netdev);
6470 if (err) {
6471 mlx5_core_err(mdev, "register_netdev failed, %d\n", err);
6472 goto err_resume;
6473 }
6474
6475 mlx5e_dcbnl_init_app(priv);
6476 mlx5_core_uplink_netdev_set(mdev, netdev);
6477 mlx5e_params_print_info(mdev, &priv->channels.params);
6478 return 0;
6479
6480 err_resume:
6481 _mlx5e_suspend(adev, true);
6482 err_profile_cleanup:
6483 profile->cleanup(priv);
6484 err_destroy_netdev:
6485 mlx5e_destroy_netdev(priv);
6486 err_devlink_port_unregister:
6487 mlx5e_devlink_port_unregister(mlx5e_dev);
6488 err_devlink_unregister:
6489 mlx5e_destroy_devlink(mlx5e_dev);
6490 return err;
6491 }
6492
mlx5e_probe(struct auxiliary_device * adev,const struct auxiliary_device_id * id)6493 static int mlx5e_probe(struct auxiliary_device *adev,
6494 const struct auxiliary_device_id *id)
6495 {
6496 struct mlx5_adev *edev = container_of(adev, struct mlx5_adev, adev);
6497 struct mlx5_core_dev *mdev = edev->mdev;
6498 struct auxiliary_device *actual_adev;
6499 int err;
6500
6501 err = mlx5_sd_init(mdev);
6502 if (err)
6503 return err;
6504
6505 actual_adev = mlx5_sd_get_adev(mdev, adev, edev->idx);
6506 if (actual_adev)
6507 return _mlx5e_probe(actual_adev);
6508 return 0;
6509 }
6510
_mlx5e_remove(struct auxiliary_device * adev)6511 static void _mlx5e_remove(struct auxiliary_device *adev)
6512 {
6513 struct mlx5_adev *edev = container_of(adev, struct mlx5_adev, adev);
6514 struct mlx5e_dev *mlx5e_dev = auxiliary_get_drvdata(adev);
6515 struct mlx5e_priv *priv = mlx5e_dev->priv;
6516 struct mlx5_core_dev *mdev = edev->mdev;
6517
6518 mlx5_core_uplink_netdev_set(mdev, NULL);
6519 mlx5e_dcbnl_delete_app(priv);
6520 /* When unload driver, the netdev is in registered state
6521 * if it's from legacy mode. If from switchdev mode, it
6522 * is already unregistered before changing to NIC profile.
6523 */
6524 if (priv->netdev->reg_state == NETREG_REGISTERED) {
6525 unregister_netdev(priv->netdev);
6526 _mlx5e_suspend(adev, false);
6527 } else {
6528 struct mlx5_core_dev *pos;
6529 int i;
6530
6531 if (test_bit(MLX5E_STATE_DESTROYING, &priv->state))
6532 mlx5_sd_for_each_dev(i, mdev, pos)
6533 mlx5e_destroy_mdev_resources(pos);
6534 else
6535 _mlx5e_suspend(adev, true);
6536 }
6537 /* Avoid cleanup if profile rollback failed. */
6538 if (priv->profile)
6539 priv->profile->cleanup(priv);
6540 mlx5e_destroy_netdev(priv);
6541 mlx5e_devlink_port_unregister(mlx5e_dev);
6542 mlx5e_destroy_devlink(mlx5e_dev);
6543 }
6544
mlx5e_remove(struct auxiliary_device * adev)6545 static void mlx5e_remove(struct auxiliary_device *adev)
6546 {
6547 struct mlx5_adev *edev = container_of(adev, struct mlx5_adev, adev);
6548 struct mlx5_core_dev *mdev = edev->mdev;
6549 struct auxiliary_device *actual_adev;
6550
6551 actual_adev = mlx5_sd_get_adev(mdev, adev, edev->idx);
6552 if (actual_adev)
6553 _mlx5e_remove(actual_adev);
6554
6555 mlx5_sd_cleanup(mdev);
6556 }
6557
6558 static const struct auxiliary_device_id mlx5e_id_table[] = {
6559 { .name = MLX5_ADEV_NAME ".eth", },
6560 {},
6561 };
6562
6563 MODULE_DEVICE_TABLE(auxiliary, mlx5e_id_table);
6564
6565 static struct auxiliary_driver mlx5e_driver = {
6566 .name = "eth",
6567 .probe = mlx5e_probe,
6568 .remove = mlx5e_remove,
6569 .suspend = mlx5e_suspend,
6570 .resume = mlx5e_resume,
6571 .id_table = mlx5e_id_table,
6572 };
6573
mlx5e_init(void)6574 int mlx5e_init(void)
6575 {
6576 int ret;
6577
6578 mlx5e_build_ptys2ethtool_map();
6579 ret = auxiliary_driver_register(&mlx5e_driver);
6580 if (ret)
6581 return ret;
6582
6583 ret = mlx5e_rep_init();
6584 if (ret)
6585 auxiliary_driver_unregister(&mlx5e_driver);
6586 return ret;
6587 }
6588
mlx5e_cleanup(void)6589 void mlx5e_cleanup(void)
6590 {
6591 mlx5e_rep_cleanup();
6592 auxiliary_driver_unregister(&mlx5e_driver);
6593 }
6594