]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/net/ethernet/mellanox/mlx5/core/en_main.c
net/mlx5e: Reuse alloc cq code for all CQs allocation
[mirror_ubuntu-bionic-kernel.git] / drivers / net / ethernet / mellanox / mlx5 / core / en_main.c
1 /*
2 * Copyright (c) 2015-2016, Mellanox Technologies. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33 #include <net/tc_act/tc_gact.h>
34 #include <linux/crash_dump.h>
35 #include <net/pkt_cls.h>
36 #include <linux/mlx5/fs.h>
37 #include <net/vxlan.h>
38 #include <linux/bpf.h>
39 #include "en.h"
40 #include "en_tc.h"
41 #include "eswitch.h"
42 #include "vxlan.h"
43
44 struct mlx5e_rq_param {
45 u32 rqc[MLX5_ST_SZ_DW(rqc)];
46 struct mlx5_wq_param wq;
47 };
48
49 struct mlx5e_sq_param {
50 u32 sqc[MLX5_ST_SZ_DW(sqc)];
51 struct mlx5_wq_param wq;
52 };
53
54 struct mlx5e_cq_param {
55 u32 cqc[MLX5_ST_SZ_DW(cqc)];
56 struct mlx5_wq_param wq;
57 u16 eq_ix;
58 u8 cq_period_mode;
59 };
60
61 struct mlx5e_channel_param {
62 struct mlx5e_rq_param rq;
63 struct mlx5e_sq_param sq;
64 struct mlx5e_sq_param xdp_sq;
65 struct mlx5e_sq_param icosq;
66 struct mlx5e_cq_param rx_cq;
67 struct mlx5e_cq_param tx_cq;
68 struct mlx5e_cq_param icosq_cq;
69 };
70
71 static bool mlx5e_check_fragmented_striding_rq_cap(struct mlx5_core_dev *mdev)
72 {
73 return MLX5_CAP_GEN(mdev, striding_rq) &&
74 MLX5_CAP_GEN(mdev, umr_ptr_rlky) &&
75 MLX5_CAP_ETH(mdev, reg_umr_sq);
76 }
77
78 void mlx5e_set_rq_type_params(struct mlx5_core_dev *mdev,
79 struct mlx5e_params *params, u8 rq_type)
80 {
81 params->rq_wq_type = rq_type;
82 params->lro_wqe_sz = MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ;
83 switch (params->rq_wq_type) {
84 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
85 params->log_rq_size = is_kdump_kernel() ?
86 MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW :
87 MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE_MPW;
88 params->mpwqe_log_stride_sz =
89 MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS) ?
90 MLX5_MPWRQ_CQE_CMPRS_LOG_STRIDE_SZ(mdev) :
91 MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev);
92 params->mpwqe_log_num_strides = MLX5_MPWRQ_LOG_WQE_SZ -
93 params->mpwqe_log_stride_sz;
94 break;
95 default: /* MLX5_WQ_TYPE_LINKED_LIST */
96 params->log_rq_size = is_kdump_kernel() ?
97 MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE :
98 MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE;
99
100 /* Extra room needed for build_skb */
101 params->lro_wqe_sz -= MLX5_RX_HEADROOM +
102 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
103 }
104
105 mlx5_core_info(mdev, "MLX5E: StrdRq(%d) RqSz(%ld) StrdSz(%ld) RxCqeCmprss(%d)\n",
106 params->rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ,
107 BIT(params->log_rq_size),
108 BIT(params->mpwqe_log_stride_sz),
109 MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS));
110 }
111
112 static void mlx5e_set_rq_params(struct mlx5_core_dev *mdev, struct mlx5e_params *params)
113 {
114 u8 rq_type = mlx5e_check_fragmented_striding_rq_cap(mdev) &&
115 !params->xdp_prog ?
116 MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ :
117 MLX5_WQ_TYPE_LINKED_LIST;
118 mlx5e_set_rq_type_params(mdev, params, rq_type);
119 }
120
121 static void mlx5e_update_carrier(struct mlx5e_priv *priv)
122 {
123 struct mlx5_core_dev *mdev = priv->mdev;
124 u8 port_state;
125
126 port_state = mlx5_query_vport_state(mdev,
127 MLX5_QUERY_VPORT_STATE_IN_OP_MOD_VNIC_VPORT, 0);
128
129 if (port_state == VPORT_STATE_UP) {
130 netdev_info(priv->netdev, "Link up\n");
131 netif_carrier_on(priv->netdev);
132 } else {
133 netdev_info(priv->netdev, "Link down\n");
134 netif_carrier_off(priv->netdev);
135 }
136 }
137
138 static void mlx5e_update_carrier_work(struct work_struct *work)
139 {
140 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
141 update_carrier_work);
142
143 mutex_lock(&priv->state_lock);
144 if (test_bit(MLX5E_STATE_OPENED, &priv->state))
145 mlx5e_update_carrier(priv);
146 mutex_unlock(&priv->state_lock);
147 }
148
149 static void mlx5e_tx_timeout_work(struct work_struct *work)
150 {
151 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
152 tx_timeout_work);
153 int err;
154
155 rtnl_lock();
156 mutex_lock(&priv->state_lock);
157 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
158 goto unlock;
159 mlx5e_close_locked(priv->netdev);
160 err = mlx5e_open_locked(priv->netdev);
161 if (err)
162 netdev_err(priv->netdev, "mlx5e_open_locked failed recovering from a tx_timeout, err(%d).\n",
163 err);
164 unlock:
165 mutex_unlock(&priv->state_lock);
166 rtnl_unlock();
167 }
168
169 static void mlx5e_update_sw_counters(struct mlx5e_priv *priv)
170 {
171 struct mlx5e_sw_stats *s = &priv->stats.sw;
172 struct mlx5e_rq_stats *rq_stats;
173 struct mlx5e_sq_stats *sq_stats;
174 u64 tx_offload_none = 0;
175 int i, j;
176
177 memset(s, 0, sizeof(*s));
178 for (i = 0; i < priv->channels.num; i++) {
179 struct mlx5e_channel *c = priv->channels.c[i];
180
181 rq_stats = &c->rq.stats;
182
183 s->rx_packets += rq_stats->packets;
184 s->rx_bytes += rq_stats->bytes;
185 s->rx_lro_packets += rq_stats->lro_packets;
186 s->rx_lro_bytes += rq_stats->lro_bytes;
187 s->rx_csum_none += rq_stats->csum_none;
188 s->rx_csum_complete += rq_stats->csum_complete;
189 s->rx_csum_unnecessary_inner += rq_stats->csum_unnecessary_inner;
190 s->rx_xdp_drop += rq_stats->xdp_drop;
191 s->rx_xdp_tx += rq_stats->xdp_tx;
192 s->rx_xdp_tx_full += rq_stats->xdp_tx_full;
193 s->rx_wqe_err += rq_stats->wqe_err;
194 s->rx_mpwqe_filler += rq_stats->mpwqe_filler;
195 s->rx_buff_alloc_err += rq_stats->buff_alloc_err;
196 s->rx_cqe_compress_blks += rq_stats->cqe_compress_blks;
197 s->rx_cqe_compress_pkts += rq_stats->cqe_compress_pkts;
198 s->rx_cache_reuse += rq_stats->cache_reuse;
199 s->rx_cache_full += rq_stats->cache_full;
200 s->rx_cache_empty += rq_stats->cache_empty;
201 s->rx_cache_busy += rq_stats->cache_busy;
202
203 for (j = 0; j < priv->channels.params.num_tc; j++) {
204 sq_stats = &c->sq[j].stats;
205
206 s->tx_packets += sq_stats->packets;
207 s->tx_bytes += sq_stats->bytes;
208 s->tx_tso_packets += sq_stats->tso_packets;
209 s->tx_tso_bytes += sq_stats->tso_bytes;
210 s->tx_tso_inner_packets += sq_stats->tso_inner_packets;
211 s->tx_tso_inner_bytes += sq_stats->tso_inner_bytes;
212 s->tx_queue_stopped += sq_stats->stopped;
213 s->tx_queue_wake += sq_stats->wake;
214 s->tx_queue_dropped += sq_stats->dropped;
215 s->tx_xmit_more += sq_stats->xmit_more;
216 s->tx_csum_partial_inner += sq_stats->csum_partial_inner;
217 tx_offload_none += sq_stats->csum_none;
218 }
219 }
220
221 /* Update calculated offload counters */
222 s->tx_csum_partial = s->tx_packets - tx_offload_none - s->tx_csum_partial_inner;
223 s->rx_csum_unnecessary = s->rx_packets - s->rx_csum_none - s->rx_csum_complete;
224
225 s->link_down_events_phy = MLX5_GET(ppcnt_reg,
226 priv->stats.pport.phy_counters,
227 counter_set.phys_layer_cntrs.link_down_events);
228 }
229
230 static void mlx5e_update_vport_counters(struct mlx5e_priv *priv)
231 {
232 int outlen = MLX5_ST_SZ_BYTES(query_vport_counter_out);
233 u32 *out = (u32 *)priv->stats.vport.query_vport_out;
234 u32 in[MLX5_ST_SZ_DW(query_vport_counter_in)] = {0};
235 struct mlx5_core_dev *mdev = priv->mdev;
236
237 MLX5_SET(query_vport_counter_in, in, opcode,
238 MLX5_CMD_OP_QUERY_VPORT_COUNTER);
239 MLX5_SET(query_vport_counter_in, in, op_mod, 0);
240 MLX5_SET(query_vport_counter_in, in, other_vport, 0);
241
242 memset(out, 0, outlen);
243 mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen);
244 }
245
246 static void mlx5e_update_pport_counters(struct mlx5e_priv *priv)
247 {
248 struct mlx5e_pport_stats *pstats = &priv->stats.pport;
249 struct mlx5_core_dev *mdev = priv->mdev;
250 int sz = MLX5_ST_SZ_BYTES(ppcnt_reg);
251 int prio;
252 void *out;
253 u32 *in;
254
255 in = mlx5_vzalloc(sz);
256 if (!in)
257 goto free_out;
258
259 MLX5_SET(ppcnt_reg, in, local_port, 1);
260
261 out = pstats->IEEE_802_3_counters;
262 MLX5_SET(ppcnt_reg, in, grp, MLX5_IEEE_802_3_COUNTERS_GROUP);
263 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
264
265 out = pstats->RFC_2863_counters;
266 MLX5_SET(ppcnt_reg, in, grp, MLX5_RFC_2863_COUNTERS_GROUP);
267 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
268
269 out = pstats->RFC_2819_counters;
270 MLX5_SET(ppcnt_reg, in, grp, MLX5_RFC_2819_COUNTERS_GROUP);
271 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
272
273 out = pstats->phy_counters;
274 MLX5_SET(ppcnt_reg, in, grp, MLX5_PHYSICAL_LAYER_COUNTERS_GROUP);
275 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
276
277 if (MLX5_CAP_PCAM_FEATURE(mdev, ppcnt_statistical_group)) {
278 out = pstats->phy_statistical_counters;
279 MLX5_SET(ppcnt_reg, in, grp, MLX5_PHYSICAL_LAYER_STATISTICAL_GROUP);
280 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
281 }
282
283 MLX5_SET(ppcnt_reg, in, grp, MLX5_PER_PRIORITY_COUNTERS_GROUP);
284 for (prio = 0; prio < NUM_PPORT_PRIO; prio++) {
285 out = pstats->per_prio_counters[prio];
286 MLX5_SET(ppcnt_reg, in, prio_tc, prio);
287 mlx5_core_access_reg(mdev, in, sz, out, sz,
288 MLX5_REG_PPCNT, 0, 0);
289 }
290
291 free_out:
292 kvfree(in);
293 }
294
295 static void mlx5e_update_q_counter(struct mlx5e_priv *priv)
296 {
297 struct mlx5e_qcounter_stats *qcnt = &priv->stats.qcnt;
298
299 if (!priv->q_counter)
300 return;
301
302 mlx5_core_query_out_of_buffer(priv->mdev, priv->q_counter,
303 &qcnt->rx_out_of_buffer);
304 }
305
306 static void mlx5e_update_pcie_counters(struct mlx5e_priv *priv)
307 {
308 struct mlx5e_pcie_stats *pcie_stats = &priv->stats.pcie;
309 struct mlx5_core_dev *mdev = priv->mdev;
310 int sz = MLX5_ST_SZ_BYTES(mpcnt_reg);
311 void *out;
312 u32 *in;
313
314 if (!MLX5_CAP_MCAM_FEATURE(mdev, pcie_performance_group))
315 return;
316
317 in = mlx5_vzalloc(sz);
318 if (!in)
319 return;
320
321 out = pcie_stats->pcie_perf_counters;
322 MLX5_SET(mpcnt_reg, in, grp, MLX5_PCIE_PERFORMANCE_COUNTERS_GROUP);
323 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_MPCNT, 0, 0);
324
325 kvfree(in);
326 }
327
328 void mlx5e_update_stats(struct mlx5e_priv *priv)
329 {
330 mlx5e_update_pcie_counters(priv);
331 mlx5e_update_pport_counters(priv);
332 mlx5e_update_vport_counters(priv);
333 mlx5e_update_q_counter(priv);
334 mlx5e_update_sw_counters(priv);
335 }
336
337 void mlx5e_update_stats_work(struct work_struct *work)
338 {
339 struct delayed_work *dwork = to_delayed_work(work);
340 struct mlx5e_priv *priv = container_of(dwork, struct mlx5e_priv,
341 update_stats_work);
342 mutex_lock(&priv->state_lock);
343 if (test_bit(MLX5E_STATE_OPENED, &priv->state)) {
344 priv->profile->update_stats(priv);
345 queue_delayed_work(priv->wq, dwork,
346 msecs_to_jiffies(MLX5E_UPDATE_STATS_INTERVAL));
347 }
348 mutex_unlock(&priv->state_lock);
349 }
350
351 static void mlx5e_async_event(struct mlx5_core_dev *mdev, void *vpriv,
352 enum mlx5_dev_event event, unsigned long param)
353 {
354 struct mlx5e_priv *priv = vpriv;
355 struct ptp_clock_event ptp_event;
356 struct mlx5_eqe *eqe = NULL;
357
358 if (!test_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLED, &priv->state))
359 return;
360
361 switch (event) {
362 case MLX5_DEV_EVENT_PORT_UP:
363 case MLX5_DEV_EVENT_PORT_DOWN:
364 queue_work(priv->wq, &priv->update_carrier_work);
365 break;
366 case MLX5_DEV_EVENT_PPS:
367 eqe = (struct mlx5_eqe *)param;
368 ptp_event.type = PTP_CLOCK_EXTTS;
369 ptp_event.index = eqe->data.pps.pin;
370 ptp_event.timestamp =
371 timecounter_cyc2time(&priv->tstamp.clock,
372 be64_to_cpu(eqe->data.pps.time_stamp));
373 mlx5e_pps_event_handler(vpriv, &ptp_event);
374 break;
375 default:
376 break;
377 }
378 }
379
380 static void mlx5e_enable_async_events(struct mlx5e_priv *priv)
381 {
382 set_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLED, &priv->state);
383 }
384
385 static void mlx5e_disable_async_events(struct mlx5e_priv *priv)
386 {
387 clear_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLED, &priv->state);
388 synchronize_irq(mlx5_get_msix_vec(priv->mdev, MLX5_EQ_VEC_ASYNC));
389 }
390
391 static inline int mlx5e_get_wqe_mtt_sz(void)
392 {
393 /* UMR copies MTTs in units of MLX5_UMR_MTT_ALIGNMENT bytes.
394 * To avoid copying garbage after the mtt array, we allocate
395 * a little more.
396 */
397 return ALIGN(MLX5_MPWRQ_PAGES_PER_WQE * sizeof(__be64),
398 MLX5_UMR_MTT_ALIGNMENT);
399 }
400
401 static inline void mlx5e_build_umr_wqe(struct mlx5e_rq *rq,
402 struct mlx5e_icosq *sq,
403 struct mlx5e_umr_wqe *wqe,
404 u16 ix)
405 {
406 struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl;
407 struct mlx5_wqe_umr_ctrl_seg *ucseg = &wqe->uctrl;
408 struct mlx5_wqe_data_seg *dseg = &wqe->data;
409 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[ix];
410 u8 ds_cnt = DIV_ROUND_UP(sizeof(*wqe), MLX5_SEND_WQE_DS);
411 u32 umr_wqe_mtt_offset = mlx5e_get_wqe_mtt_offset(rq, ix);
412
413 cseg->qpn_ds = cpu_to_be32((sq->sqn << MLX5_WQE_CTRL_QPN_SHIFT) |
414 ds_cnt);
415 cseg->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
416 cseg->imm = rq->mkey_be;
417
418 ucseg->flags = MLX5_UMR_TRANSLATION_OFFSET_EN;
419 ucseg->xlt_octowords =
420 cpu_to_be16(MLX5_MTT_OCTW(MLX5_MPWRQ_PAGES_PER_WQE));
421 ucseg->bsf_octowords =
422 cpu_to_be16(MLX5_MTT_OCTW(umr_wqe_mtt_offset));
423 ucseg->mkey_mask = cpu_to_be64(MLX5_MKEY_MASK_FREE);
424
425 dseg->lkey = sq->mkey_be;
426 dseg->addr = cpu_to_be64(wi->umr.mtt_addr);
427 }
428
429 static int mlx5e_rq_alloc_mpwqe_info(struct mlx5e_rq *rq,
430 struct mlx5e_channel *c)
431 {
432 int wq_sz = mlx5_wq_ll_get_size(&rq->wq);
433 int mtt_sz = mlx5e_get_wqe_mtt_sz();
434 int mtt_alloc = mtt_sz + MLX5_UMR_ALIGN - 1;
435 int i;
436
437 rq->mpwqe.info = kzalloc_node(wq_sz * sizeof(*rq->mpwqe.info),
438 GFP_KERNEL, cpu_to_node(c->cpu));
439 if (!rq->mpwqe.info)
440 goto err_out;
441
442 /* We allocate more than mtt_sz as we will align the pointer */
443 rq->mpwqe.mtt_no_align = kzalloc_node(mtt_alloc * wq_sz, GFP_KERNEL,
444 cpu_to_node(c->cpu));
445 if (unlikely(!rq->mpwqe.mtt_no_align))
446 goto err_free_wqe_info;
447
448 for (i = 0; i < wq_sz; i++) {
449 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[i];
450
451 wi->umr.mtt = PTR_ALIGN(rq->mpwqe.mtt_no_align + i * mtt_alloc,
452 MLX5_UMR_ALIGN);
453 wi->umr.mtt_addr = dma_map_single(c->pdev, wi->umr.mtt, mtt_sz,
454 PCI_DMA_TODEVICE);
455 if (unlikely(dma_mapping_error(c->pdev, wi->umr.mtt_addr)))
456 goto err_unmap_mtts;
457
458 mlx5e_build_umr_wqe(rq, &c->icosq, &wi->umr.wqe, i);
459 }
460
461 return 0;
462
463 err_unmap_mtts:
464 while (--i >= 0) {
465 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[i];
466
467 dma_unmap_single(c->pdev, wi->umr.mtt_addr, mtt_sz,
468 PCI_DMA_TODEVICE);
469 }
470 kfree(rq->mpwqe.mtt_no_align);
471 err_free_wqe_info:
472 kfree(rq->mpwqe.info);
473
474 err_out:
475 return -ENOMEM;
476 }
477
478 static void mlx5e_rq_free_mpwqe_info(struct mlx5e_rq *rq)
479 {
480 int wq_sz = mlx5_wq_ll_get_size(&rq->wq);
481 int mtt_sz = mlx5e_get_wqe_mtt_sz();
482 int i;
483
484 for (i = 0; i < wq_sz; i++) {
485 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[i];
486
487 dma_unmap_single(rq->pdev, wi->umr.mtt_addr, mtt_sz,
488 PCI_DMA_TODEVICE);
489 }
490 kfree(rq->mpwqe.mtt_no_align);
491 kfree(rq->mpwqe.info);
492 }
493
494 static int mlx5e_create_umr_mkey(struct mlx5_core_dev *mdev,
495 u64 npages, u8 page_shift,
496 struct mlx5_core_mkey *umr_mkey)
497 {
498 int inlen = MLX5_ST_SZ_BYTES(create_mkey_in);
499 void *mkc;
500 u32 *in;
501 int err;
502
503 if (!MLX5E_VALID_NUM_MTTS(npages))
504 return -EINVAL;
505
506 in = mlx5_vzalloc(inlen);
507 if (!in)
508 return -ENOMEM;
509
510 mkc = MLX5_ADDR_OF(create_mkey_in, in, memory_key_mkey_entry);
511
512 MLX5_SET(mkc, mkc, free, 1);
513 MLX5_SET(mkc, mkc, umr_en, 1);
514 MLX5_SET(mkc, mkc, lw, 1);
515 MLX5_SET(mkc, mkc, lr, 1);
516 MLX5_SET(mkc, mkc, access_mode, MLX5_MKC_ACCESS_MODE_MTT);
517
518 MLX5_SET(mkc, mkc, qpn, 0xffffff);
519 MLX5_SET(mkc, mkc, pd, mdev->mlx5e_res.pdn);
520 MLX5_SET64(mkc, mkc, len, npages << page_shift);
521 MLX5_SET(mkc, mkc, translations_octword_size,
522 MLX5_MTT_OCTW(npages));
523 MLX5_SET(mkc, mkc, log_page_size, page_shift);
524
525 err = mlx5_core_create_mkey(mdev, umr_mkey, in, inlen);
526
527 kvfree(in);
528 return err;
529 }
530
531 static int mlx5e_create_rq_umr_mkey(struct mlx5_core_dev *mdev, struct mlx5e_rq *rq)
532 {
533 u64 num_mtts = MLX5E_REQUIRED_MTTS(mlx5_wq_ll_get_size(&rq->wq));
534
535 return mlx5e_create_umr_mkey(mdev, num_mtts, PAGE_SHIFT, &rq->umr_mkey);
536 }
537
538 static int mlx5e_alloc_rq(struct mlx5e_channel *c,
539 struct mlx5e_params *params,
540 struct mlx5e_rq_param *rqp,
541 struct mlx5e_rq *rq)
542 {
543 struct mlx5_core_dev *mdev = c->mdev;
544 void *rqc = rqp->rqc;
545 void *rqc_wq = MLX5_ADDR_OF(rqc, rqc, wq);
546 u32 byte_count;
547 u32 frag_sz;
548 int npages;
549 int wq_sz;
550 int err;
551 int i;
552
553 rqp->wq.db_numa_node = cpu_to_node(c->cpu);
554
555 err = mlx5_wq_ll_create(mdev, &rqp->wq, rqc_wq, &rq->wq,
556 &rq->wq_ctrl);
557 if (err)
558 return err;
559
560 rq->wq.db = &rq->wq.db[MLX5_RCV_DBR];
561
562 wq_sz = mlx5_wq_ll_get_size(&rq->wq);
563
564 rq->wq_type = params->rq_wq_type;
565 rq->pdev = c->pdev;
566 rq->netdev = c->netdev;
567 rq->tstamp = c->tstamp;
568 rq->channel = c;
569 rq->ix = c->ix;
570 rq->mdev = mdev;
571
572 rq->xdp_prog = params->xdp_prog ? bpf_prog_inc(params->xdp_prog) : NULL;
573 if (IS_ERR(rq->xdp_prog)) {
574 err = PTR_ERR(rq->xdp_prog);
575 rq->xdp_prog = NULL;
576 goto err_rq_wq_destroy;
577 }
578
579 if (rq->xdp_prog) {
580 rq->buff.map_dir = DMA_BIDIRECTIONAL;
581 rq->rx_headroom = XDP_PACKET_HEADROOM;
582 } else {
583 rq->buff.map_dir = DMA_FROM_DEVICE;
584 rq->rx_headroom = MLX5_RX_HEADROOM;
585 }
586
587 switch (rq->wq_type) {
588 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
589 if (mlx5e_is_vf_vport_rep(c->priv)) {
590 err = -EINVAL;
591 goto err_rq_wq_destroy;
592 }
593
594 rq->handle_rx_cqe = mlx5e_handle_rx_cqe_mpwrq;
595 rq->alloc_wqe = mlx5e_alloc_rx_mpwqe;
596 rq->dealloc_wqe = mlx5e_dealloc_rx_mpwqe;
597
598 rq->mpwqe_stride_sz = BIT(params->mpwqe_log_stride_sz);
599 rq->mpwqe_num_strides = BIT(params->mpwqe_log_num_strides);
600
601 rq->buff.wqe_sz = rq->mpwqe_stride_sz * rq->mpwqe_num_strides;
602 byte_count = rq->buff.wqe_sz;
603
604 err = mlx5e_create_rq_umr_mkey(mdev, rq);
605 if (err)
606 goto err_rq_wq_destroy;
607 rq->mkey_be = cpu_to_be32(rq->umr_mkey.key);
608
609 err = mlx5e_rq_alloc_mpwqe_info(rq, c);
610 if (err)
611 goto err_destroy_umr_mkey;
612 break;
613 default: /* MLX5_WQ_TYPE_LINKED_LIST */
614 rq->dma_info = kzalloc_node(wq_sz * sizeof(*rq->dma_info),
615 GFP_KERNEL, cpu_to_node(c->cpu));
616 if (!rq->dma_info) {
617 err = -ENOMEM;
618 goto err_rq_wq_destroy;
619 }
620
621 if (mlx5e_is_vf_vport_rep(c->priv))
622 rq->handle_rx_cqe = mlx5e_handle_rx_cqe_rep;
623 else
624 rq->handle_rx_cqe = mlx5e_handle_rx_cqe;
625
626 rq->alloc_wqe = mlx5e_alloc_rx_wqe;
627 rq->dealloc_wqe = mlx5e_dealloc_rx_wqe;
628
629 rq->buff.wqe_sz = params->lro_en ?
630 params->lro_wqe_sz :
631 MLX5E_SW2HW_MTU(c->netdev->mtu);
632 byte_count = rq->buff.wqe_sz;
633
634 /* calc the required page order */
635 frag_sz = rq->rx_headroom +
636 byte_count /* packet data */ +
637 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
638 frag_sz = SKB_DATA_ALIGN(frag_sz);
639
640 npages = DIV_ROUND_UP(frag_sz, PAGE_SIZE);
641 rq->buff.page_order = order_base_2(npages);
642
643 byte_count |= MLX5_HW_START_PADDING;
644 rq->mkey_be = c->mkey_be;
645 }
646
647 for (i = 0; i < wq_sz; i++) {
648 struct mlx5e_rx_wqe *wqe = mlx5_wq_ll_get_wqe(&rq->wq, i);
649
650 wqe->data.byte_count = cpu_to_be32(byte_count);
651 wqe->data.lkey = rq->mkey_be;
652 }
653
654 INIT_WORK(&rq->am.work, mlx5e_rx_am_work);
655 rq->am.mode = params->rx_cq_period_mode;
656 rq->page_cache.head = 0;
657 rq->page_cache.tail = 0;
658
659 return 0;
660
661 err_destroy_umr_mkey:
662 mlx5_core_destroy_mkey(mdev, &rq->umr_mkey);
663
664 err_rq_wq_destroy:
665 if (rq->xdp_prog)
666 bpf_prog_put(rq->xdp_prog);
667 mlx5_wq_destroy(&rq->wq_ctrl);
668
669 return err;
670 }
671
672 static void mlx5e_free_rq(struct mlx5e_rq *rq)
673 {
674 int i;
675
676 if (rq->xdp_prog)
677 bpf_prog_put(rq->xdp_prog);
678
679 switch (rq->wq_type) {
680 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
681 mlx5e_rq_free_mpwqe_info(rq);
682 mlx5_core_destroy_mkey(rq->mdev, &rq->umr_mkey);
683 break;
684 default: /* MLX5_WQ_TYPE_LINKED_LIST */
685 kfree(rq->dma_info);
686 }
687
688 for (i = rq->page_cache.head; i != rq->page_cache.tail;
689 i = (i + 1) & (MLX5E_CACHE_SIZE - 1)) {
690 struct mlx5e_dma_info *dma_info = &rq->page_cache.page_cache[i];
691
692 mlx5e_page_release(rq, dma_info, false);
693 }
694 mlx5_wq_destroy(&rq->wq_ctrl);
695 }
696
697 static int mlx5e_create_rq(struct mlx5e_rq *rq,
698 struct mlx5e_rq_param *param)
699 {
700 struct mlx5_core_dev *mdev = rq->mdev;
701
702 void *in;
703 void *rqc;
704 void *wq;
705 int inlen;
706 int err;
707
708 inlen = MLX5_ST_SZ_BYTES(create_rq_in) +
709 sizeof(u64) * rq->wq_ctrl.buf.npages;
710 in = mlx5_vzalloc(inlen);
711 if (!in)
712 return -ENOMEM;
713
714 rqc = MLX5_ADDR_OF(create_rq_in, in, ctx);
715 wq = MLX5_ADDR_OF(rqc, rqc, wq);
716
717 memcpy(rqc, param->rqc, sizeof(param->rqc));
718
719 MLX5_SET(rqc, rqc, cqn, rq->cq.mcq.cqn);
720 MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RST);
721 MLX5_SET(wq, wq, log_wq_pg_sz, rq->wq_ctrl.buf.page_shift -
722 MLX5_ADAPTER_PAGE_SHIFT);
723 MLX5_SET64(wq, wq, dbr_addr, rq->wq_ctrl.db.dma);
724
725 mlx5_fill_page_array(&rq->wq_ctrl.buf,
726 (__be64 *)MLX5_ADDR_OF(wq, wq, pas));
727
728 err = mlx5_core_create_rq(mdev, in, inlen, &rq->rqn);
729
730 kvfree(in);
731
732 return err;
733 }
734
735 static int mlx5e_modify_rq_state(struct mlx5e_rq *rq, int curr_state,
736 int next_state)
737 {
738 struct mlx5e_channel *c = rq->channel;
739 struct mlx5_core_dev *mdev = c->mdev;
740
741 void *in;
742 void *rqc;
743 int inlen;
744 int err;
745
746 inlen = MLX5_ST_SZ_BYTES(modify_rq_in);
747 in = mlx5_vzalloc(inlen);
748 if (!in)
749 return -ENOMEM;
750
751 rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx);
752
753 MLX5_SET(modify_rq_in, in, rq_state, curr_state);
754 MLX5_SET(rqc, rqc, state, next_state);
755
756 err = mlx5_core_modify_rq(mdev, rq->rqn, in, inlen);
757
758 kvfree(in);
759
760 return err;
761 }
762
763 static int mlx5e_modify_rq_scatter_fcs(struct mlx5e_rq *rq, bool enable)
764 {
765 struct mlx5e_channel *c = rq->channel;
766 struct mlx5e_priv *priv = c->priv;
767 struct mlx5_core_dev *mdev = priv->mdev;
768
769 void *in;
770 void *rqc;
771 int inlen;
772 int err;
773
774 inlen = MLX5_ST_SZ_BYTES(modify_rq_in);
775 in = mlx5_vzalloc(inlen);
776 if (!in)
777 return -ENOMEM;
778
779 rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx);
780
781 MLX5_SET(modify_rq_in, in, rq_state, MLX5_RQC_STATE_RDY);
782 MLX5_SET64(modify_rq_in, in, modify_bitmask,
783 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_SCATTER_FCS);
784 MLX5_SET(rqc, rqc, scatter_fcs, enable);
785 MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RDY);
786
787 err = mlx5_core_modify_rq(mdev, rq->rqn, in, inlen);
788
789 kvfree(in);
790
791 return err;
792 }
793
794 static int mlx5e_modify_rq_vsd(struct mlx5e_rq *rq, bool vsd)
795 {
796 struct mlx5e_channel *c = rq->channel;
797 struct mlx5_core_dev *mdev = c->mdev;
798 void *in;
799 void *rqc;
800 int inlen;
801 int err;
802
803 inlen = MLX5_ST_SZ_BYTES(modify_rq_in);
804 in = mlx5_vzalloc(inlen);
805 if (!in)
806 return -ENOMEM;
807
808 rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx);
809
810 MLX5_SET(modify_rq_in, in, rq_state, MLX5_RQC_STATE_RDY);
811 MLX5_SET64(modify_rq_in, in, modify_bitmask,
812 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_VSD);
813 MLX5_SET(rqc, rqc, vsd, vsd);
814 MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RDY);
815
816 err = mlx5_core_modify_rq(mdev, rq->rqn, in, inlen);
817
818 kvfree(in);
819
820 return err;
821 }
822
823 static void mlx5e_destroy_rq(struct mlx5e_rq *rq)
824 {
825 mlx5_core_destroy_rq(rq->mdev, rq->rqn);
826 }
827
828 static int mlx5e_wait_for_min_rx_wqes(struct mlx5e_rq *rq)
829 {
830 unsigned long exp_time = jiffies + msecs_to_jiffies(20000);
831 struct mlx5e_channel *c = rq->channel;
832
833 struct mlx5_wq_ll *wq = &rq->wq;
834 u16 min_wqes = mlx5_min_rx_wqes(rq->wq_type, mlx5_wq_ll_get_size(wq));
835
836 while (time_before(jiffies, exp_time)) {
837 if (wq->cur_sz >= min_wqes)
838 return 0;
839
840 msleep(20);
841 }
842
843 netdev_warn(c->netdev, "Failed to get min RX wqes on RQN[0x%x] wq cur_sz(%d) min_rx_wqes(%d)\n",
844 rq->rqn, wq->cur_sz, min_wqes);
845 return -ETIMEDOUT;
846 }
847
848 static void mlx5e_free_rx_descs(struct mlx5e_rq *rq)
849 {
850 struct mlx5_wq_ll *wq = &rq->wq;
851 struct mlx5e_rx_wqe *wqe;
852 __be16 wqe_ix_be;
853 u16 wqe_ix;
854
855 /* UMR WQE (if in progress) is always at wq->head */
856 if (test_bit(MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS, &rq->state))
857 mlx5e_free_rx_mpwqe(rq, &rq->mpwqe.info[wq->head]);
858
859 while (!mlx5_wq_ll_is_empty(wq)) {
860 wqe_ix_be = *wq->tail_next;
861 wqe_ix = be16_to_cpu(wqe_ix_be);
862 wqe = mlx5_wq_ll_get_wqe(&rq->wq, wqe_ix);
863 rq->dealloc_wqe(rq, wqe_ix);
864 mlx5_wq_ll_pop(&rq->wq, wqe_ix_be,
865 &wqe->next.next_wqe_index);
866 }
867 }
868
869 static int mlx5e_open_rq(struct mlx5e_channel *c,
870 struct mlx5e_params *params,
871 struct mlx5e_rq_param *param,
872 struct mlx5e_rq *rq)
873 {
874 int err;
875
876 err = mlx5e_alloc_rq(c, params, param, rq);
877 if (err)
878 return err;
879
880 err = mlx5e_create_rq(rq, param);
881 if (err)
882 goto err_free_rq;
883
884 err = mlx5e_modify_rq_state(rq, MLX5_RQC_STATE_RST, MLX5_RQC_STATE_RDY);
885 if (err)
886 goto err_destroy_rq;
887
888 if (params->rx_am_enabled)
889 set_bit(MLX5E_RQ_STATE_AM, &c->rq.state);
890
891 return 0;
892
893 err_destroy_rq:
894 mlx5e_destroy_rq(rq);
895 err_free_rq:
896 mlx5e_free_rq(rq);
897
898 return err;
899 }
900
901 static void mlx5e_activate_rq(struct mlx5e_rq *rq)
902 {
903 struct mlx5e_icosq *sq = &rq->channel->icosq;
904 u16 pi = sq->pc & sq->wq.sz_m1;
905 struct mlx5e_tx_wqe *nopwqe;
906
907 set_bit(MLX5E_RQ_STATE_ENABLED, &rq->state);
908 sq->db.ico_wqe[pi].opcode = MLX5_OPCODE_NOP;
909 sq->db.ico_wqe[pi].num_wqebbs = 1;
910 nopwqe = mlx5e_post_nop(&sq->wq, sq->sqn, &sq->pc);
911 mlx5e_notify_hw(&sq->wq, sq->pc, sq->uar_map, &nopwqe->ctrl);
912 }
913
914 static void mlx5e_deactivate_rq(struct mlx5e_rq *rq)
915 {
916 clear_bit(MLX5E_RQ_STATE_ENABLED, &rq->state);
917 napi_synchronize(&rq->channel->napi); /* prevent mlx5e_post_rx_wqes */
918 }
919
920 static void mlx5e_close_rq(struct mlx5e_rq *rq)
921 {
922 cancel_work_sync(&rq->am.work);
923 mlx5e_destroy_rq(rq);
924 mlx5e_free_rx_descs(rq);
925 mlx5e_free_rq(rq);
926 }
927
928 static void mlx5e_free_xdpsq_db(struct mlx5e_xdpsq *sq)
929 {
930 kfree(sq->db.di);
931 }
932
933 static int mlx5e_alloc_xdpsq_db(struct mlx5e_xdpsq *sq, int numa)
934 {
935 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
936
937 sq->db.di = kzalloc_node(sizeof(*sq->db.di) * wq_sz,
938 GFP_KERNEL, numa);
939 if (!sq->db.di) {
940 mlx5e_free_xdpsq_db(sq);
941 return -ENOMEM;
942 }
943
944 return 0;
945 }
946
947 static int mlx5e_alloc_xdpsq(struct mlx5e_channel *c,
948 struct mlx5e_params *params,
949 struct mlx5e_sq_param *param,
950 struct mlx5e_xdpsq *sq)
951 {
952 void *sqc_wq = MLX5_ADDR_OF(sqc, param->sqc, wq);
953 struct mlx5_core_dev *mdev = c->mdev;
954 int err;
955
956 sq->pdev = c->pdev;
957 sq->mkey_be = c->mkey_be;
958 sq->channel = c;
959 sq->uar_map = mdev->mlx5e_res.bfreg.map;
960 sq->min_inline_mode = params->tx_min_inline_mode;
961
962 param->wq.db_numa_node = cpu_to_node(c->cpu);
963 err = mlx5_wq_cyc_create(mdev, &param->wq, sqc_wq, &sq->wq, &sq->wq_ctrl);
964 if (err)
965 return err;
966 sq->wq.db = &sq->wq.db[MLX5_SND_DBR];
967
968 err = mlx5e_alloc_xdpsq_db(sq, cpu_to_node(c->cpu));
969 if (err)
970 goto err_sq_wq_destroy;
971
972 return 0;
973
974 err_sq_wq_destroy:
975 mlx5_wq_destroy(&sq->wq_ctrl);
976
977 return err;
978 }
979
980 static void mlx5e_free_xdpsq(struct mlx5e_xdpsq *sq)
981 {
982 mlx5e_free_xdpsq_db(sq);
983 mlx5_wq_destroy(&sq->wq_ctrl);
984 }
985
986 static void mlx5e_free_icosq_db(struct mlx5e_icosq *sq)
987 {
988 kfree(sq->db.ico_wqe);
989 }
990
991 static int mlx5e_alloc_icosq_db(struct mlx5e_icosq *sq, int numa)
992 {
993 u8 wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
994
995 sq->db.ico_wqe = kzalloc_node(sizeof(*sq->db.ico_wqe) * wq_sz,
996 GFP_KERNEL, numa);
997 if (!sq->db.ico_wqe)
998 return -ENOMEM;
999
1000 return 0;
1001 }
1002
1003 static int mlx5e_alloc_icosq(struct mlx5e_channel *c,
1004 struct mlx5e_sq_param *param,
1005 struct mlx5e_icosq *sq)
1006 {
1007 void *sqc_wq = MLX5_ADDR_OF(sqc, param->sqc, wq);
1008 struct mlx5_core_dev *mdev = c->mdev;
1009 int err;
1010
1011 sq->pdev = c->pdev;
1012 sq->mkey_be = c->mkey_be;
1013 sq->channel = c;
1014 sq->uar_map = mdev->mlx5e_res.bfreg.map;
1015
1016 param->wq.db_numa_node = cpu_to_node(c->cpu);
1017 err = mlx5_wq_cyc_create(mdev, &param->wq, sqc_wq, &sq->wq, &sq->wq_ctrl);
1018 if (err)
1019 return err;
1020 sq->wq.db = &sq->wq.db[MLX5_SND_DBR];
1021
1022 err = mlx5e_alloc_icosq_db(sq, cpu_to_node(c->cpu));
1023 if (err)
1024 goto err_sq_wq_destroy;
1025
1026 sq->edge = (sq->wq.sz_m1 + 1) - MLX5E_ICOSQ_MAX_WQEBBS;
1027
1028 return 0;
1029
1030 err_sq_wq_destroy:
1031 mlx5_wq_destroy(&sq->wq_ctrl);
1032
1033 return err;
1034 }
1035
1036 static void mlx5e_free_icosq(struct mlx5e_icosq *sq)
1037 {
1038 mlx5e_free_icosq_db(sq);
1039 mlx5_wq_destroy(&sq->wq_ctrl);
1040 }
1041
1042 static void mlx5e_free_txqsq_db(struct mlx5e_txqsq *sq)
1043 {
1044 kfree(sq->db.wqe_info);
1045 kfree(sq->db.dma_fifo);
1046 kfree(sq->db.skb);
1047 }
1048
1049 static int mlx5e_alloc_txqsq_db(struct mlx5e_txqsq *sq, int numa)
1050 {
1051 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
1052 int df_sz = wq_sz * MLX5_SEND_WQEBB_NUM_DS;
1053
1054 sq->db.skb = kzalloc_node(wq_sz * sizeof(*sq->db.skb),
1055 GFP_KERNEL, numa);
1056 sq->db.dma_fifo = kzalloc_node(df_sz * sizeof(*sq->db.dma_fifo),
1057 GFP_KERNEL, numa);
1058 sq->db.wqe_info = kzalloc_node(wq_sz * sizeof(*sq->db.wqe_info),
1059 GFP_KERNEL, numa);
1060 if (!sq->db.skb || !sq->db.dma_fifo || !sq->db.wqe_info) {
1061 mlx5e_free_txqsq_db(sq);
1062 return -ENOMEM;
1063 }
1064
1065 sq->dma_fifo_mask = df_sz - 1;
1066
1067 return 0;
1068 }
1069
1070 static int mlx5e_alloc_txqsq(struct mlx5e_channel *c,
1071 int txq_ix,
1072 struct mlx5e_params *params,
1073 struct mlx5e_sq_param *param,
1074 struct mlx5e_txqsq *sq)
1075 {
1076 void *sqc_wq = MLX5_ADDR_OF(sqc, param->sqc, wq);
1077 struct mlx5_core_dev *mdev = c->mdev;
1078 int err;
1079
1080 sq->pdev = c->pdev;
1081 sq->tstamp = c->tstamp;
1082 sq->mkey_be = c->mkey_be;
1083 sq->channel = c;
1084 sq->txq_ix = txq_ix;
1085 sq->uar_map = mdev->mlx5e_res.bfreg.map;
1086 sq->max_inline = params->tx_max_inline;
1087 sq->min_inline_mode = params->tx_min_inline_mode;
1088
1089 param->wq.db_numa_node = cpu_to_node(c->cpu);
1090 err = mlx5_wq_cyc_create(mdev, &param->wq, sqc_wq, &sq->wq, &sq->wq_ctrl);
1091 if (err)
1092 return err;
1093 sq->wq.db = &sq->wq.db[MLX5_SND_DBR];
1094
1095 err = mlx5e_alloc_txqsq_db(sq, cpu_to_node(c->cpu));
1096 if (err)
1097 goto err_sq_wq_destroy;
1098
1099 sq->edge = (sq->wq.sz_m1 + 1) - MLX5_SEND_WQE_MAX_WQEBBS;
1100
1101 return 0;
1102
1103 err_sq_wq_destroy:
1104 mlx5_wq_destroy(&sq->wq_ctrl);
1105
1106 return err;
1107 }
1108
1109 static void mlx5e_free_txqsq(struct mlx5e_txqsq *sq)
1110 {
1111 mlx5e_free_txqsq_db(sq);
1112 mlx5_wq_destroy(&sq->wq_ctrl);
1113 }
1114
1115 struct mlx5e_create_sq_param {
1116 struct mlx5_wq_ctrl *wq_ctrl;
1117 u32 cqn;
1118 u32 tisn;
1119 u8 tis_lst_sz;
1120 u8 min_inline_mode;
1121 };
1122
1123 static int mlx5e_create_sq(struct mlx5_core_dev *mdev,
1124 struct mlx5e_sq_param *param,
1125 struct mlx5e_create_sq_param *csp,
1126 u32 *sqn)
1127 {
1128 void *in;
1129 void *sqc;
1130 void *wq;
1131 int inlen;
1132 int err;
1133
1134 inlen = MLX5_ST_SZ_BYTES(create_sq_in) +
1135 sizeof(u64) * csp->wq_ctrl->buf.npages;
1136 in = mlx5_vzalloc(inlen);
1137 if (!in)
1138 return -ENOMEM;
1139
1140 sqc = MLX5_ADDR_OF(create_sq_in, in, ctx);
1141 wq = MLX5_ADDR_OF(sqc, sqc, wq);
1142
1143 memcpy(sqc, param->sqc, sizeof(param->sqc));
1144 MLX5_SET(sqc, sqc, tis_lst_sz, csp->tis_lst_sz);
1145 MLX5_SET(sqc, sqc, tis_num_0, csp->tisn);
1146 MLX5_SET(sqc, sqc, cqn, csp->cqn);
1147
1148 if (MLX5_CAP_ETH(mdev, wqe_inline_mode) == MLX5_CAP_INLINE_MODE_VPORT_CONTEXT)
1149 MLX5_SET(sqc, sqc, min_wqe_inline_mode, csp->min_inline_mode);
1150
1151 MLX5_SET(sqc, sqc, state, MLX5_SQC_STATE_RST);
1152
1153 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_CYCLIC);
1154 MLX5_SET(wq, wq, uar_page, mdev->mlx5e_res.bfreg.index);
1155 MLX5_SET(wq, wq, log_wq_pg_sz, csp->wq_ctrl->buf.page_shift -
1156 MLX5_ADAPTER_PAGE_SHIFT);
1157 MLX5_SET64(wq, wq, dbr_addr, csp->wq_ctrl->db.dma);
1158
1159 mlx5_fill_page_array(&csp->wq_ctrl->buf, (__be64 *)MLX5_ADDR_OF(wq, wq, pas));
1160
1161 err = mlx5_core_create_sq(mdev, in, inlen, sqn);
1162
1163 kvfree(in);
1164
1165 return err;
1166 }
1167
1168 struct mlx5e_modify_sq_param {
1169 int curr_state;
1170 int next_state;
1171 bool rl_update;
1172 int rl_index;
1173 };
1174
1175 static int mlx5e_modify_sq(struct mlx5_core_dev *mdev, u32 sqn,
1176 struct mlx5e_modify_sq_param *p)
1177 {
1178 void *in;
1179 void *sqc;
1180 int inlen;
1181 int err;
1182
1183 inlen = MLX5_ST_SZ_BYTES(modify_sq_in);
1184 in = mlx5_vzalloc(inlen);
1185 if (!in)
1186 return -ENOMEM;
1187
1188 sqc = MLX5_ADDR_OF(modify_sq_in, in, ctx);
1189
1190 MLX5_SET(modify_sq_in, in, sq_state, p->curr_state);
1191 MLX5_SET(sqc, sqc, state, p->next_state);
1192 if (p->rl_update && p->next_state == MLX5_SQC_STATE_RDY) {
1193 MLX5_SET64(modify_sq_in, in, modify_bitmask, 1);
1194 MLX5_SET(sqc, sqc, packet_pacing_rate_limit_index, p->rl_index);
1195 }
1196
1197 err = mlx5_core_modify_sq(mdev, sqn, in, inlen);
1198
1199 kvfree(in);
1200
1201 return err;
1202 }
1203
1204 static void mlx5e_destroy_sq(struct mlx5_core_dev *mdev, u32 sqn)
1205 {
1206 mlx5_core_destroy_sq(mdev, sqn);
1207 }
1208
1209 static int mlx5e_create_sq_rdy(struct mlx5_core_dev *mdev,
1210 struct mlx5e_sq_param *param,
1211 struct mlx5e_create_sq_param *csp,
1212 u32 *sqn)
1213 {
1214 struct mlx5e_modify_sq_param msp = {0};
1215 int err;
1216
1217 err = mlx5e_create_sq(mdev, param, csp, sqn);
1218 if (err)
1219 return err;
1220
1221 msp.curr_state = MLX5_SQC_STATE_RST;
1222 msp.next_state = MLX5_SQC_STATE_RDY;
1223 err = mlx5e_modify_sq(mdev, *sqn, &msp);
1224 if (err)
1225 mlx5e_destroy_sq(mdev, *sqn);
1226
1227 return err;
1228 }
1229
1230 static int mlx5e_set_sq_maxrate(struct net_device *dev,
1231 struct mlx5e_txqsq *sq, u32 rate);
1232
1233 static int mlx5e_open_txqsq(struct mlx5e_channel *c,
1234 u32 tisn,
1235 int txq_ix,
1236 struct mlx5e_params *params,
1237 struct mlx5e_sq_param *param,
1238 struct mlx5e_txqsq *sq)
1239 {
1240 struct mlx5e_create_sq_param csp = {};
1241 u32 tx_rate;
1242 int err;
1243
1244 err = mlx5e_alloc_txqsq(c, txq_ix, params, param, sq);
1245 if (err)
1246 return err;
1247
1248 csp.tisn = tisn;
1249 csp.tis_lst_sz = 1;
1250 csp.cqn = sq->cq.mcq.cqn;
1251 csp.wq_ctrl = &sq->wq_ctrl;
1252 csp.min_inline_mode = sq->min_inline_mode;
1253 err = mlx5e_create_sq_rdy(c->mdev, param, &csp, &sq->sqn);
1254 if (err)
1255 goto err_free_txqsq;
1256
1257 tx_rate = c->priv->tx_rates[sq->txq_ix];
1258 if (tx_rate)
1259 mlx5e_set_sq_maxrate(c->netdev, sq, tx_rate);
1260
1261 return 0;
1262
1263 err_free_txqsq:
1264 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1265 mlx5e_free_txqsq(sq);
1266
1267 return err;
1268 }
1269
1270 static void mlx5e_activate_txqsq(struct mlx5e_txqsq *sq)
1271 {
1272 sq->txq = netdev_get_tx_queue(sq->channel->netdev, sq->txq_ix);
1273 set_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1274 netdev_tx_reset_queue(sq->txq);
1275 netif_tx_start_queue(sq->txq);
1276 }
1277
1278 static inline void netif_tx_disable_queue(struct netdev_queue *txq)
1279 {
1280 __netif_tx_lock_bh(txq);
1281 netif_tx_stop_queue(txq);
1282 __netif_tx_unlock_bh(txq);
1283 }
1284
1285 static void mlx5e_deactivate_txqsq(struct mlx5e_txqsq *sq)
1286 {
1287 struct mlx5e_channel *c = sq->channel;
1288
1289 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1290 /* prevent netif_tx_wake_queue */
1291 napi_synchronize(&c->napi);
1292
1293 netif_tx_disable_queue(sq->txq);
1294
1295 /* last doorbell out, godspeed .. */
1296 if (mlx5e_wqc_has_room_for(&sq->wq, sq->cc, sq->pc, 1)) {
1297 struct mlx5e_tx_wqe *nop;
1298
1299 sq->db.skb[(sq->pc & sq->wq.sz_m1)] = NULL;
1300 nop = mlx5e_post_nop(&sq->wq, sq->sqn, &sq->pc);
1301 mlx5e_notify_hw(&sq->wq, sq->pc, sq->uar_map, &nop->ctrl);
1302 }
1303 }
1304
1305 static void mlx5e_close_txqsq(struct mlx5e_txqsq *sq)
1306 {
1307 struct mlx5e_channel *c = sq->channel;
1308 struct mlx5_core_dev *mdev = c->mdev;
1309
1310 mlx5e_destroy_sq(mdev, sq->sqn);
1311 if (sq->rate_limit)
1312 mlx5_rl_remove_rate(mdev, sq->rate_limit);
1313 mlx5e_free_txqsq_descs(sq);
1314 mlx5e_free_txqsq(sq);
1315 }
1316
1317 static int mlx5e_open_icosq(struct mlx5e_channel *c,
1318 struct mlx5e_params *params,
1319 struct mlx5e_sq_param *param,
1320 struct mlx5e_icosq *sq)
1321 {
1322 struct mlx5e_create_sq_param csp = {};
1323 int err;
1324
1325 err = mlx5e_alloc_icosq(c, param, sq);
1326 if (err)
1327 return err;
1328
1329 csp.cqn = sq->cq.mcq.cqn;
1330 csp.wq_ctrl = &sq->wq_ctrl;
1331 csp.min_inline_mode = params->tx_min_inline_mode;
1332 set_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1333 err = mlx5e_create_sq_rdy(c->mdev, param, &csp, &sq->sqn);
1334 if (err)
1335 goto err_free_icosq;
1336
1337 return 0;
1338
1339 err_free_icosq:
1340 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1341 mlx5e_free_icosq(sq);
1342
1343 return err;
1344 }
1345
1346 static void mlx5e_close_icosq(struct mlx5e_icosq *sq)
1347 {
1348 struct mlx5e_channel *c = sq->channel;
1349
1350 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1351 napi_synchronize(&c->napi);
1352
1353 mlx5e_destroy_sq(c->mdev, sq->sqn);
1354 mlx5e_free_icosq(sq);
1355 }
1356
1357 static int mlx5e_open_xdpsq(struct mlx5e_channel *c,
1358 struct mlx5e_params *params,
1359 struct mlx5e_sq_param *param,
1360 struct mlx5e_xdpsq *sq)
1361 {
1362 unsigned int ds_cnt = MLX5E_XDP_TX_DS_COUNT;
1363 struct mlx5e_create_sq_param csp = {};
1364 unsigned int inline_hdr_sz = 0;
1365 int err;
1366 int i;
1367
1368 err = mlx5e_alloc_xdpsq(c, params, param, sq);
1369 if (err)
1370 return err;
1371
1372 csp.tis_lst_sz = 1;
1373 csp.tisn = c->priv->tisn[0]; /* tc = 0 */
1374 csp.cqn = sq->cq.mcq.cqn;
1375 csp.wq_ctrl = &sq->wq_ctrl;
1376 csp.min_inline_mode = sq->min_inline_mode;
1377 set_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1378 err = mlx5e_create_sq_rdy(c->mdev, param, &csp, &sq->sqn);
1379 if (err)
1380 goto err_free_xdpsq;
1381
1382 if (sq->min_inline_mode != MLX5_INLINE_MODE_NONE) {
1383 inline_hdr_sz = MLX5E_XDP_MIN_INLINE;
1384 ds_cnt++;
1385 }
1386
1387 /* Pre initialize fixed WQE fields */
1388 for (i = 0; i < mlx5_wq_cyc_get_size(&sq->wq); i++) {
1389 struct mlx5e_tx_wqe *wqe = mlx5_wq_cyc_get_wqe(&sq->wq, i);
1390 struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl;
1391 struct mlx5_wqe_eth_seg *eseg = &wqe->eth;
1392 struct mlx5_wqe_data_seg *dseg;
1393
1394 cseg->qpn_ds = cpu_to_be32((sq->sqn << 8) | ds_cnt);
1395 eseg->inline_hdr.sz = cpu_to_be16(inline_hdr_sz);
1396
1397 dseg = (struct mlx5_wqe_data_seg *)cseg + (ds_cnt - 1);
1398 dseg->lkey = sq->mkey_be;
1399 }
1400
1401 return 0;
1402
1403 err_free_xdpsq:
1404 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1405 mlx5e_free_xdpsq(sq);
1406
1407 return err;
1408 }
1409
1410 static void mlx5e_close_xdpsq(struct mlx5e_xdpsq *sq)
1411 {
1412 struct mlx5e_channel *c = sq->channel;
1413
1414 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1415 napi_synchronize(&c->napi);
1416
1417 mlx5e_destroy_sq(c->mdev, sq->sqn);
1418 mlx5e_free_xdpsq_descs(sq);
1419 mlx5e_free_xdpsq(sq);
1420 }
1421
1422 static int mlx5e_alloc_cq_common(struct mlx5_core_dev *mdev,
1423 struct mlx5e_cq_param *param,
1424 struct mlx5e_cq *cq)
1425 {
1426 struct mlx5_core_cq *mcq = &cq->mcq;
1427 int eqn_not_used;
1428 unsigned int irqn;
1429 int err;
1430 u32 i;
1431
1432 err = mlx5_cqwq_create(mdev, &param->wq, param->cqc, &cq->wq,
1433 &cq->wq_ctrl);
1434 if (err)
1435 return err;
1436
1437 mlx5_vector2eqn(mdev, param->eq_ix, &eqn_not_used, &irqn);
1438
1439 mcq->cqe_sz = 64;
1440 mcq->set_ci_db = cq->wq_ctrl.db.db;
1441 mcq->arm_db = cq->wq_ctrl.db.db + 1;
1442 *mcq->set_ci_db = 0;
1443 *mcq->arm_db = 0;
1444 mcq->vector = param->eq_ix;
1445 mcq->comp = mlx5e_completion_event;
1446 mcq->event = mlx5e_cq_error_event;
1447 mcq->irqn = irqn;
1448
1449 for (i = 0; i < mlx5_cqwq_get_size(&cq->wq); i++) {
1450 struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(&cq->wq, i);
1451
1452 cqe->op_own = 0xf1;
1453 }
1454
1455 cq->mdev = mdev;
1456
1457 return 0;
1458 }
1459
1460 static int mlx5e_alloc_cq(struct mlx5e_channel *c,
1461 struct mlx5e_cq_param *param,
1462 struct mlx5e_cq *cq)
1463 {
1464 struct mlx5_core_dev *mdev = c->priv->mdev;
1465 int err;
1466
1467 param->wq.buf_numa_node = cpu_to_node(c->cpu);
1468 param->wq.db_numa_node = cpu_to_node(c->cpu);
1469 param->eq_ix = c->ix;
1470
1471 err = mlx5e_alloc_cq_common(mdev, param, cq);
1472
1473 cq->napi = &c->napi;
1474 cq->channel = c;
1475
1476 return err;
1477 }
1478
1479 static void mlx5e_free_cq(struct mlx5e_cq *cq)
1480 {
1481 mlx5_cqwq_destroy(&cq->wq_ctrl);
1482 }
1483
1484 static int mlx5e_create_cq(struct mlx5e_cq *cq, struct mlx5e_cq_param *param)
1485 {
1486 struct mlx5_core_dev *mdev = cq->mdev;
1487 struct mlx5_core_cq *mcq = &cq->mcq;
1488
1489 void *in;
1490 void *cqc;
1491 int inlen;
1492 unsigned int irqn_not_used;
1493 int eqn;
1494 int err;
1495
1496 inlen = MLX5_ST_SZ_BYTES(create_cq_in) +
1497 sizeof(u64) * cq->wq_ctrl.frag_buf.npages;
1498 in = mlx5_vzalloc(inlen);
1499 if (!in)
1500 return -ENOMEM;
1501
1502 cqc = MLX5_ADDR_OF(create_cq_in, in, cq_context);
1503
1504 memcpy(cqc, param->cqc, sizeof(param->cqc));
1505
1506 mlx5_fill_page_frag_array(&cq->wq_ctrl.frag_buf,
1507 (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas));
1508
1509 mlx5_vector2eqn(mdev, param->eq_ix, &eqn, &irqn_not_used);
1510
1511 MLX5_SET(cqc, cqc, cq_period_mode, param->cq_period_mode);
1512 MLX5_SET(cqc, cqc, c_eqn, eqn);
1513 MLX5_SET(cqc, cqc, uar_page, mdev->priv.uar->index);
1514 MLX5_SET(cqc, cqc, log_page_size, cq->wq_ctrl.frag_buf.page_shift -
1515 MLX5_ADAPTER_PAGE_SHIFT);
1516 MLX5_SET64(cqc, cqc, dbr_addr, cq->wq_ctrl.db.dma);
1517
1518 err = mlx5_core_create_cq(mdev, mcq, in, inlen);
1519
1520 kvfree(in);
1521
1522 if (err)
1523 return err;
1524
1525 mlx5e_cq_arm(cq);
1526
1527 return 0;
1528 }
1529
1530 static void mlx5e_destroy_cq(struct mlx5e_cq *cq)
1531 {
1532 mlx5_core_destroy_cq(cq->mdev, &cq->mcq);
1533 }
1534
1535 static int mlx5e_open_cq(struct mlx5e_channel *c,
1536 struct mlx5e_cq_moder moder,
1537 struct mlx5e_cq_param *param,
1538 struct mlx5e_cq *cq)
1539 {
1540 struct mlx5_core_dev *mdev = c->mdev;
1541 int err;
1542
1543 err = mlx5e_alloc_cq(c, param, cq);
1544 if (err)
1545 return err;
1546
1547 err = mlx5e_create_cq(cq, param);
1548 if (err)
1549 goto err_free_cq;
1550
1551 if (MLX5_CAP_GEN(mdev, cq_moderation))
1552 mlx5_core_modify_cq_moderation(mdev, &cq->mcq, moder.usec, moder.pkts);
1553 return 0;
1554
1555 err_free_cq:
1556 mlx5e_free_cq(cq);
1557
1558 return err;
1559 }
1560
1561 static void mlx5e_close_cq(struct mlx5e_cq *cq)
1562 {
1563 mlx5e_destroy_cq(cq);
1564 mlx5e_free_cq(cq);
1565 }
1566
1567 static int mlx5e_get_cpu(struct mlx5e_priv *priv, int ix)
1568 {
1569 return cpumask_first(priv->mdev->priv.irq_info[ix].mask);
1570 }
1571
1572 static int mlx5e_open_tx_cqs(struct mlx5e_channel *c,
1573 struct mlx5e_params *params,
1574 struct mlx5e_channel_param *cparam)
1575 {
1576 int err;
1577 int tc;
1578
1579 for (tc = 0; tc < c->num_tc; tc++) {
1580 err = mlx5e_open_cq(c, params->tx_cq_moderation,
1581 &cparam->tx_cq, &c->sq[tc].cq);
1582 if (err)
1583 goto err_close_tx_cqs;
1584 }
1585
1586 return 0;
1587
1588 err_close_tx_cqs:
1589 for (tc--; tc >= 0; tc--)
1590 mlx5e_close_cq(&c->sq[tc].cq);
1591
1592 return err;
1593 }
1594
1595 static void mlx5e_close_tx_cqs(struct mlx5e_channel *c)
1596 {
1597 int tc;
1598
1599 for (tc = 0; tc < c->num_tc; tc++)
1600 mlx5e_close_cq(&c->sq[tc].cq);
1601 }
1602
1603 static int mlx5e_open_sqs(struct mlx5e_channel *c,
1604 struct mlx5e_params *params,
1605 struct mlx5e_channel_param *cparam)
1606 {
1607 int err;
1608 int tc;
1609
1610 for (tc = 0; tc < params->num_tc; tc++) {
1611 int txq_ix = c->ix + tc * params->num_channels;
1612
1613 err = mlx5e_open_txqsq(c, c->priv->tisn[tc], txq_ix,
1614 params, &cparam->sq, &c->sq[tc]);
1615 if (err)
1616 goto err_close_sqs;
1617 }
1618
1619 return 0;
1620
1621 err_close_sqs:
1622 for (tc--; tc >= 0; tc--)
1623 mlx5e_close_txqsq(&c->sq[tc]);
1624
1625 return err;
1626 }
1627
1628 static void mlx5e_close_sqs(struct mlx5e_channel *c)
1629 {
1630 int tc;
1631
1632 for (tc = 0; tc < c->num_tc; tc++)
1633 mlx5e_close_txqsq(&c->sq[tc]);
1634 }
1635
1636 static int mlx5e_set_sq_maxrate(struct net_device *dev,
1637 struct mlx5e_txqsq *sq, u32 rate)
1638 {
1639 struct mlx5e_priv *priv = netdev_priv(dev);
1640 struct mlx5_core_dev *mdev = priv->mdev;
1641 struct mlx5e_modify_sq_param msp = {0};
1642 u16 rl_index = 0;
1643 int err;
1644
1645 if (rate == sq->rate_limit)
1646 /* nothing to do */
1647 return 0;
1648
1649 if (sq->rate_limit)
1650 /* remove current rl index to free space to next ones */
1651 mlx5_rl_remove_rate(mdev, sq->rate_limit);
1652
1653 sq->rate_limit = 0;
1654
1655 if (rate) {
1656 err = mlx5_rl_add_rate(mdev, rate, &rl_index);
1657 if (err) {
1658 netdev_err(dev, "Failed configuring rate %u: %d\n",
1659 rate, err);
1660 return err;
1661 }
1662 }
1663
1664 msp.curr_state = MLX5_SQC_STATE_RDY;
1665 msp.next_state = MLX5_SQC_STATE_RDY;
1666 msp.rl_index = rl_index;
1667 msp.rl_update = true;
1668 err = mlx5e_modify_sq(mdev, sq->sqn, &msp);
1669 if (err) {
1670 netdev_err(dev, "Failed configuring rate %u: %d\n",
1671 rate, err);
1672 /* remove the rate from the table */
1673 if (rate)
1674 mlx5_rl_remove_rate(mdev, rate);
1675 return err;
1676 }
1677
1678 sq->rate_limit = rate;
1679 return 0;
1680 }
1681
1682 static int mlx5e_set_tx_maxrate(struct net_device *dev, int index, u32 rate)
1683 {
1684 struct mlx5e_priv *priv = netdev_priv(dev);
1685 struct mlx5_core_dev *mdev = priv->mdev;
1686 struct mlx5e_txqsq *sq = priv->txq2sq[index];
1687 int err = 0;
1688
1689 if (!mlx5_rl_is_supported(mdev)) {
1690 netdev_err(dev, "Rate limiting is not supported on this device\n");
1691 return -EINVAL;
1692 }
1693
1694 /* rate is given in Mb/sec, HW config is in Kb/sec */
1695 rate = rate << 10;
1696
1697 /* Check whether rate in valid range, 0 is always valid */
1698 if (rate && !mlx5_rl_is_in_range(mdev, rate)) {
1699 netdev_err(dev, "TX rate %u, is not in range\n", rate);
1700 return -ERANGE;
1701 }
1702
1703 mutex_lock(&priv->state_lock);
1704 if (test_bit(MLX5E_STATE_OPENED, &priv->state))
1705 err = mlx5e_set_sq_maxrate(dev, sq, rate);
1706 if (!err)
1707 priv->tx_rates[index] = rate;
1708 mutex_unlock(&priv->state_lock);
1709
1710 return err;
1711 }
1712
1713 static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
1714 {
1715 return is_kdump_kernel() ?
1716 MLX5E_MIN_NUM_CHANNELS :
1717 min_t(int, mdev->priv.eq_table.num_comp_vectors,
1718 MLX5E_MAX_NUM_CHANNELS);
1719 }
1720
1721 static int mlx5e_open_channel(struct mlx5e_priv *priv, int ix,
1722 struct mlx5e_params *params,
1723 struct mlx5e_channel_param *cparam,
1724 struct mlx5e_channel **cp)
1725 {
1726 struct mlx5e_cq_moder icocq_moder = {0, 0};
1727 struct net_device *netdev = priv->netdev;
1728 int cpu = mlx5e_get_cpu(priv, ix);
1729 struct mlx5e_channel *c;
1730 int err;
1731
1732 c = kzalloc_node(sizeof(*c), GFP_KERNEL, cpu_to_node(cpu));
1733 if (!c)
1734 return -ENOMEM;
1735
1736 c->priv = priv;
1737 c->mdev = priv->mdev;
1738 c->tstamp = &priv->tstamp;
1739 c->ix = ix;
1740 c->cpu = cpu;
1741 c->pdev = &priv->mdev->pdev->dev;
1742 c->netdev = priv->netdev;
1743 c->mkey_be = cpu_to_be32(priv->mdev->mlx5e_res.mkey.key);
1744 c->num_tc = params->num_tc;
1745 c->xdp = !!params->xdp_prog;
1746
1747 netif_napi_add(netdev, &c->napi, mlx5e_napi_poll, 64);
1748
1749 err = mlx5e_open_cq(c, icocq_moder, &cparam->icosq_cq, &c->icosq.cq);
1750 if (err)
1751 goto err_napi_del;
1752
1753 err = mlx5e_open_tx_cqs(c, params, cparam);
1754 if (err)
1755 goto err_close_icosq_cq;
1756
1757 err = mlx5e_open_cq(c, params->rx_cq_moderation, &cparam->rx_cq, &c->rq.cq);
1758 if (err)
1759 goto err_close_tx_cqs;
1760
1761 /* XDP SQ CQ params are same as normal TXQ sq CQ params */
1762 err = c->xdp ? mlx5e_open_cq(c, params->tx_cq_moderation,
1763 &cparam->tx_cq, &c->rq.xdpsq.cq) : 0;
1764 if (err)
1765 goto err_close_rx_cq;
1766
1767 napi_enable(&c->napi);
1768
1769 err = mlx5e_open_icosq(c, params, &cparam->icosq, &c->icosq);
1770 if (err)
1771 goto err_disable_napi;
1772
1773 err = mlx5e_open_sqs(c, params, cparam);
1774 if (err)
1775 goto err_close_icosq;
1776
1777 err = c->xdp ? mlx5e_open_xdpsq(c, params, &cparam->xdp_sq, &c->rq.xdpsq) : 0;
1778 if (err)
1779 goto err_close_sqs;
1780
1781 err = mlx5e_open_rq(c, params, &cparam->rq, &c->rq);
1782 if (err)
1783 goto err_close_xdp_sq;
1784
1785 *cp = c;
1786
1787 return 0;
1788 err_close_xdp_sq:
1789 if (c->xdp)
1790 mlx5e_close_xdpsq(&c->rq.xdpsq);
1791
1792 err_close_sqs:
1793 mlx5e_close_sqs(c);
1794
1795 err_close_icosq:
1796 mlx5e_close_icosq(&c->icosq);
1797
1798 err_disable_napi:
1799 napi_disable(&c->napi);
1800 if (c->xdp)
1801 mlx5e_close_cq(&c->rq.xdpsq.cq);
1802
1803 err_close_rx_cq:
1804 mlx5e_close_cq(&c->rq.cq);
1805
1806 err_close_tx_cqs:
1807 mlx5e_close_tx_cqs(c);
1808
1809 err_close_icosq_cq:
1810 mlx5e_close_cq(&c->icosq.cq);
1811
1812 err_napi_del:
1813 netif_napi_del(&c->napi);
1814 kfree(c);
1815
1816 return err;
1817 }
1818
1819 static void mlx5e_activate_channel(struct mlx5e_channel *c)
1820 {
1821 int tc;
1822
1823 for (tc = 0; tc < c->num_tc; tc++)
1824 mlx5e_activate_txqsq(&c->sq[tc]);
1825 mlx5e_activate_rq(&c->rq);
1826 netif_set_xps_queue(c->netdev, get_cpu_mask(c->cpu), c->ix);
1827 }
1828
1829 static void mlx5e_deactivate_channel(struct mlx5e_channel *c)
1830 {
1831 int tc;
1832
1833 mlx5e_deactivate_rq(&c->rq);
1834 for (tc = 0; tc < c->num_tc; tc++)
1835 mlx5e_deactivate_txqsq(&c->sq[tc]);
1836 }
1837
1838 static void mlx5e_close_channel(struct mlx5e_channel *c)
1839 {
1840 mlx5e_close_rq(&c->rq);
1841 if (c->xdp)
1842 mlx5e_close_xdpsq(&c->rq.xdpsq);
1843 mlx5e_close_sqs(c);
1844 mlx5e_close_icosq(&c->icosq);
1845 napi_disable(&c->napi);
1846 if (c->xdp)
1847 mlx5e_close_cq(&c->rq.xdpsq.cq);
1848 mlx5e_close_cq(&c->rq.cq);
1849 mlx5e_close_tx_cqs(c);
1850 mlx5e_close_cq(&c->icosq.cq);
1851 netif_napi_del(&c->napi);
1852
1853 kfree(c);
1854 }
1855
1856 static void mlx5e_build_rq_param(struct mlx5e_priv *priv,
1857 struct mlx5e_params *params,
1858 struct mlx5e_rq_param *param)
1859 {
1860 void *rqc = param->rqc;
1861 void *wq = MLX5_ADDR_OF(rqc, rqc, wq);
1862
1863 switch (params->rq_wq_type) {
1864 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
1865 MLX5_SET(wq, wq, log_wqe_num_of_strides, params->mpwqe_log_num_strides - 9);
1866 MLX5_SET(wq, wq, log_wqe_stride_size, params->mpwqe_log_stride_sz - 6);
1867 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ);
1868 break;
1869 default: /* MLX5_WQ_TYPE_LINKED_LIST */
1870 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_LINKED_LIST);
1871 }
1872
1873 MLX5_SET(wq, wq, end_padding_mode, MLX5_WQ_END_PAD_MODE_ALIGN);
1874 MLX5_SET(wq, wq, log_wq_stride, ilog2(sizeof(struct mlx5e_rx_wqe)));
1875 MLX5_SET(wq, wq, log_wq_sz, params->log_rq_size);
1876 MLX5_SET(wq, wq, pd, priv->mdev->mlx5e_res.pdn);
1877 MLX5_SET(rqc, rqc, counter_set_id, priv->q_counter);
1878 MLX5_SET(rqc, rqc, vsd, params->vlan_strip_disable);
1879 MLX5_SET(rqc, rqc, scatter_fcs, params->scatter_fcs_en);
1880
1881 param->wq.buf_numa_node = dev_to_node(&priv->mdev->pdev->dev);
1882 param->wq.linear = 1;
1883 }
1884
1885 static void mlx5e_build_drop_rq_param(struct mlx5e_rq_param *param)
1886 {
1887 void *rqc = param->rqc;
1888 void *wq = MLX5_ADDR_OF(rqc, rqc, wq);
1889
1890 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_LINKED_LIST);
1891 MLX5_SET(wq, wq, log_wq_stride, ilog2(sizeof(struct mlx5e_rx_wqe)));
1892 }
1893
1894 static void mlx5e_build_sq_param_common(struct mlx5e_priv *priv,
1895 struct mlx5e_sq_param *param)
1896 {
1897 void *sqc = param->sqc;
1898 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1899
1900 MLX5_SET(wq, wq, log_wq_stride, ilog2(MLX5_SEND_WQE_BB));
1901 MLX5_SET(wq, wq, pd, priv->mdev->mlx5e_res.pdn);
1902
1903 param->wq.buf_numa_node = dev_to_node(&priv->mdev->pdev->dev);
1904 }
1905
1906 static void mlx5e_build_sq_param(struct mlx5e_priv *priv,
1907 struct mlx5e_params *params,
1908 struct mlx5e_sq_param *param)
1909 {
1910 void *sqc = param->sqc;
1911 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1912
1913 mlx5e_build_sq_param_common(priv, param);
1914 MLX5_SET(wq, wq, log_wq_sz, params->log_sq_size);
1915 }
1916
1917 static void mlx5e_build_common_cq_param(struct mlx5e_priv *priv,
1918 struct mlx5e_cq_param *param)
1919 {
1920 void *cqc = param->cqc;
1921
1922 MLX5_SET(cqc, cqc, uar_page, priv->mdev->priv.uar->index);
1923 }
1924
1925 static void mlx5e_build_rx_cq_param(struct mlx5e_priv *priv,
1926 struct mlx5e_params *params,
1927 struct mlx5e_cq_param *param)
1928 {
1929 void *cqc = param->cqc;
1930 u8 log_cq_size;
1931
1932 switch (params->rq_wq_type) {
1933 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
1934 log_cq_size = params->log_rq_size + params->mpwqe_log_num_strides;
1935 break;
1936 default: /* MLX5_WQ_TYPE_LINKED_LIST */
1937 log_cq_size = params->log_rq_size;
1938 }
1939
1940 MLX5_SET(cqc, cqc, log_cq_size, log_cq_size);
1941 if (MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS)) {
1942 MLX5_SET(cqc, cqc, mini_cqe_res_format, MLX5_CQE_FORMAT_CSUM);
1943 MLX5_SET(cqc, cqc, cqe_comp_en, 1);
1944 }
1945
1946 mlx5e_build_common_cq_param(priv, param);
1947
1948 if (params->rx_am_enabled)
1949 params->rx_cq_moderation =
1950 mlx5e_am_get_def_profile(params->rx_cq_period_mode);
1951 }
1952
1953 static void mlx5e_build_tx_cq_param(struct mlx5e_priv *priv,
1954 struct mlx5e_params *params,
1955 struct mlx5e_cq_param *param)
1956 {
1957 void *cqc = param->cqc;
1958
1959 MLX5_SET(cqc, cqc, log_cq_size, params->log_sq_size);
1960
1961 mlx5e_build_common_cq_param(priv, param);
1962
1963 param->cq_period_mode = MLX5_CQ_PERIOD_MODE_START_FROM_EQE;
1964 }
1965
1966 static void mlx5e_build_ico_cq_param(struct mlx5e_priv *priv,
1967 u8 log_wq_size,
1968 struct mlx5e_cq_param *param)
1969 {
1970 void *cqc = param->cqc;
1971
1972 MLX5_SET(cqc, cqc, log_cq_size, log_wq_size);
1973
1974 mlx5e_build_common_cq_param(priv, param);
1975
1976 param->cq_period_mode = MLX5_CQ_PERIOD_MODE_START_FROM_EQE;
1977 }
1978
1979 static void mlx5e_build_icosq_param(struct mlx5e_priv *priv,
1980 u8 log_wq_size,
1981 struct mlx5e_sq_param *param)
1982 {
1983 void *sqc = param->sqc;
1984 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1985
1986 mlx5e_build_sq_param_common(priv, param);
1987
1988 MLX5_SET(wq, wq, log_wq_sz, log_wq_size);
1989 MLX5_SET(sqc, sqc, reg_umr, MLX5_CAP_ETH(priv->mdev, reg_umr_sq));
1990 }
1991
1992 static void mlx5e_build_xdpsq_param(struct mlx5e_priv *priv,
1993 struct mlx5e_params *params,
1994 struct mlx5e_sq_param *param)
1995 {
1996 void *sqc = param->sqc;
1997 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1998
1999 mlx5e_build_sq_param_common(priv, param);
2000 MLX5_SET(wq, wq, log_wq_sz, params->log_sq_size);
2001 }
2002
2003 static void mlx5e_build_channel_param(struct mlx5e_priv *priv,
2004 struct mlx5e_params *params,
2005 struct mlx5e_channel_param *cparam)
2006 {
2007 u8 icosq_log_wq_sz = MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE;
2008
2009 mlx5e_build_rq_param(priv, params, &cparam->rq);
2010 mlx5e_build_sq_param(priv, params, &cparam->sq);
2011 mlx5e_build_xdpsq_param(priv, params, &cparam->xdp_sq);
2012 mlx5e_build_icosq_param(priv, icosq_log_wq_sz, &cparam->icosq);
2013 mlx5e_build_rx_cq_param(priv, params, &cparam->rx_cq);
2014 mlx5e_build_tx_cq_param(priv, params, &cparam->tx_cq);
2015 mlx5e_build_ico_cq_param(priv, icosq_log_wq_sz, &cparam->icosq_cq);
2016 }
2017
2018 int mlx5e_open_channels(struct mlx5e_priv *priv,
2019 struct mlx5e_channels *chs)
2020 {
2021 struct mlx5e_channel_param *cparam;
2022 int err = -ENOMEM;
2023 int i;
2024
2025 chs->num = chs->params.num_channels;
2026
2027 chs->c = kcalloc(chs->num, sizeof(struct mlx5e_channel *), GFP_KERNEL);
2028 cparam = kzalloc(sizeof(struct mlx5e_channel_param), GFP_KERNEL);
2029 if (!chs->c || !cparam)
2030 goto err_free;
2031
2032 mlx5e_build_channel_param(priv, &chs->params, cparam);
2033 for (i = 0; i < chs->num; i++) {
2034 err = mlx5e_open_channel(priv, i, &chs->params, cparam, &chs->c[i]);
2035 if (err)
2036 goto err_close_channels;
2037 }
2038
2039 kfree(cparam);
2040 return 0;
2041
2042 err_close_channels:
2043 for (i--; i >= 0; i--)
2044 mlx5e_close_channel(chs->c[i]);
2045
2046 err_free:
2047 kfree(chs->c);
2048 kfree(cparam);
2049 chs->num = 0;
2050 return err;
2051 }
2052
2053 static void mlx5e_activate_channels(struct mlx5e_channels *chs)
2054 {
2055 int i;
2056
2057 for (i = 0; i < chs->num; i++)
2058 mlx5e_activate_channel(chs->c[i]);
2059 }
2060
2061 static int mlx5e_wait_channels_min_rx_wqes(struct mlx5e_channels *chs)
2062 {
2063 int err = 0;
2064 int i;
2065
2066 for (i = 0; i < chs->num; i++) {
2067 err = mlx5e_wait_for_min_rx_wqes(&chs->c[i]->rq);
2068 if (err)
2069 break;
2070 }
2071
2072 return err;
2073 }
2074
2075 static void mlx5e_deactivate_channels(struct mlx5e_channels *chs)
2076 {
2077 int i;
2078
2079 for (i = 0; i < chs->num; i++)
2080 mlx5e_deactivate_channel(chs->c[i]);
2081 }
2082
2083 void mlx5e_close_channels(struct mlx5e_channels *chs)
2084 {
2085 int i;
2086
2087 for (i = 0; i < chs->num; i++)
2088 mlx5e_close_channel(chs->c[i]);
2089
2090 kfree(chs->c);
2091 chs->num = 0;
2092 }
2093
2094 static int
2095 mlx5e_create_rqt(struct mlx5e_priv *priv, int sz, struct mlx5e_rqt *rqt)
2096 {
2097 struct mlx5_core_dev *mdev = priv->mdev;
2098 void *rqtc;
2099 int inlen;
2100 int err;
2101 u32 *in;
2102 int i;
2103
2104 inlen = MLX5_ST_SZ_BYTES(create_rqt_in) + sizeof(u32) * sz;
2105 in = mlx5_vzalloc(inlen);
2106 if (!in)
2107 return -ENOMEM;
2108
2109 rqtc = MLX5_ADDR_OF(create_rqt_in, in, rqt_context);
2110
2111 MLX5_SET(rqtc, rqtc, rqt_actual_size, sz);
2112 MLX5_SET(rqtc, rqtc, rqt_max_size, sz);
2113
2114 for (i = 0; i < sz; i++)
2115 MLX5_SET(rqtc, rqtc, rq_num[i], priv->drop_rq.rqn);
2116
2117 err = mlx5_core_create_rqt(mdev, in, inlen, &rqt->rqtn);
2118 if (!err)
2119 rqt->enabled = true;
2120
2121 kvfree(in);
2122 return err;
2123 }
2124
2125 void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt)
2126 {
2127 rqt->enabled = false;
2128 mlx5_core_destroy_rqt(priv->mdev, rqt->rqtn);
2129 }
2130
2131 static int mlx5e_create_indirect_rqts(struct mlx5e_priv *priv)
2132 {
2133 struct mlx5e_rqt *rqt = &priv->indir_rqt;
2134
2135 return mlx5e_create_rqt(priv, MLX5E_INDIR_RQT_SIZE, rqt);
2136 }
2137
2138 int mlx5e_create_direct_rqts(struct mlx5e_priv *priv)
2139 {
2140 struct mlx5e_rqt *rqt;
2141 int err;
2142 int ix;
2143
2144 for (ix = 0; ix < priv->profile->max_nch(priv->mdev); ix++) {
2145 rqt = &priv->direct_tir[ix].rqt;
2146 err = mlx5e_create_rqt(priv, 1 /*size */, rqt);
2147 if (err)
2148 goto err_destroy_rqts;
2149 }
2150
2151 return 0;
2152
2153 err_destroy_rqts:
2154 for (ix--; ix >= 0; ix--)
2155 mlx5e_destroy_rqt(priv, &priv->direct_tir[ix].rqt);
2156
2157 return err;
2158 }
2159
2160 static int mlx5e_rx_hash_fn(int hfunc)
2161 {
2162 return (hfunc == ETH_RSS_HASH_TOP) ?
2163 MLX5_RX_HASH_FN_TOEPLITZ :
2164 MLX5_RX_HASH_FN_INVERTED_XOR8;
2165 }
2166
2167 static int mlx5e_bits_invert(unsigned long a, int size)
2168 {
2169 int inv = 0;
2170 int i;
2171
2172 for (i = 0; i < size; i++)
2173 inv |= (test_bit(size - i - 1, &a) ? 1 : 0) << i;
2174
2175 return inv;
2176 }
2177
2178 static void mlx5e_fill_rqt_rqns(struct mlx5e_priv *priv, int sz,
2179 struct mlx5e_redirect_rqt_param rrp, void *rqtc)
2180 {
2181 int i;
2182
2183 for (i = 0; i < sz; i++) {
2184 u32 rqn;
2185
2186 if (rrp.is_rss) {
2187 int ix = i;
2188
2189 if (rrp.rss.hfunc == ETH_RSS_HASH_XOR)
2190 ix = mlx5e_bits_invert(i, ilog2(sz));
2191
2192 ix = priv->channels.params.indirection_rqt[ix];
2193 rqn = rrp.rss.channels->c[ix]->rq.rqn;
2194 } else {
2195 rqn = rrp.rqn;
2196 }
2197 MLX5_SET(rqtc, rqtc, rq_num[i], rqn);
2198 }
2199 }
2200
2201 int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz,
2202 struct mlx5e_redirect_rqt_param rrp)
2203 {
2204 struct mlx5_core_dev *mdev = priv->mdev;
2205 void *rqtc;
2206 int inlen;
2207 u32 *in;
2208 int err;
2209
2210 inlen = MLX5_ST_SZ_BYTES(modify_rqt_in) + sizeof(u32) * sz;
2211 in = mlx5_vzalloc(inlen);
2212 if (!in)
2213 return -ENOMEM;
2214
2215 rqtc = MLX5_ADDR_OF(modify_rqt_in, in, ctx);
2216
2217 MLX5_SET(rqtc, rqtc, rqt_actual_size, sz);
2218 MLX5_SET(modify_rqt_in, in, bitmask.rqn_list, 1);
2219 mlx5e_fill_rqt_rqns(priv, sz, rrp, rqtc);
2220 err = mlx5_core_modify_rqt(mdev, rqtn, in, inlen);
2221
2222 kvfree(in);
2223 return err;
2224 }
2225
2226 static u32 mlx5e_get_direct_rqn(struct mlx5e_priv *priv, int ix,
2227 struct mlx5e_redirect_rqt_param rrp)
2228 {
2229 if (!rrp.is_rss)
2230 return rrp.rqn;
2231
2232 if (ix >= rrp.rss.channels->num)
2233 return priv->drop_rq.rqn;
2234
2235 return rrp.rss.channels->c[ix]->rq.rqn;
2236 }
2237
2238 static void mlx5e_redirect_rqts(struct mlx5e_priv *priv,
2239 struct mlx5e_redirect_rqt_param rrp)
2240 {
2241 u32 rqtn;
2242 int ix;
2243
2244 if (priv->indir_rqt.enabled) {
2245 /* RSS RQ table */
2246 rqtn = priv->indir_rqt.rqtn;
2247 mlx5e_redirect_rqt(priv, rqtn, MLX5E_INDIR_RQT_SIZE, rrp);
2248 }
2249
2250 for (ix = 0; ix < priv->profile->max_nch(priv->mdev); ix++) {
2251 struct mlx5e_redirect_rqt_param direct_rrp = {
2252 .is_rss = false,
2253 {
2254 .rqn = mlx5e_get_direct_rqn(priv, ix, rrp)
2255 },
2256 };
2257
2258 /* Direct RQ Tables */
2259 if (!priv->direct_tir[ix].rqt.enabled)
2260 continue;
2261
2262 rqtn = priv->direct_tir[ix].rqt.rqtn;
2263 mlx5e_redirect_rqt(priv, rqtn, 1, direct_rrp);
2264 }
2265 }
2266
2267 static void mlx5e_redirect_rqts_to_channels(struct mlx5e_priv *priv,
2268 struct mlx5e_channels *chs)
2269 {
2270 struct mlx5e_redirect_rqt_param rrp = {
2271 .is_rss = true,
2272 {
2273 .rss = {
2274 .channels = chs,
2275 .hfunc = chs->params.rss_hfunc,
2276 }
2277 },
2278 };
2279
2280 mlx5e_redirect_rqts(priv, rrp);
2281 }
2282
2283 static void mlx5e_redirect_rqts_to_drop(struct mlx5e_priv *priv)
2284 {
2285 struct mlx5e_redirect_rqt_param drop_rrp = {
2286 .is_rss = false,
2287 {
2288 .rqn = priv->drop_rq.rqn,
2289 },
2290 };
2291
2292 mlx5e_redirect_rqts(priv, drop_rrp);
2293 }
2294
2295 static void mlx5e_build_tir_ctx_lro(struct mlx5e_params *params, void *tirc)
2296 {
2297 if (!params->lro_en)
2298 return;
2299
2300 #define ROUGH_MAX_L2_L3_HDR_SZ 256
2301
2302 MLX5_SET(tirc, tirc, lro_enable_mask,
2303 MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO |
2304 MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO);
2305 MLX5_SET(tirc, tirc, lro_max_ip_payload_size,
2306 (params->lro_wqe_sz - ROUGH_MAX_L2_L3_HDR_SZ) >> 8);
2307 MLX5_SET(tirc, tirc, lro_timeout_period_usecs, params->lro_timeout);
2308 }
2309
2310 void mlx5e_build_indir_tir_ctx_hash(struct mlx5e_params *params,
2311 enum mlx5e_traffic_types tt,
2312 void *tirc)
2313 {
2314 void *hfso = MLX5_ADDR_OF(tirc, tirc, rx_hash_field_selector_outer);
2315
2316 #define MLX5_HASH_IP (MLX5_HASH_FIELD_SEL_SRC_IP |\
2317 MLX5_HASH_FIELD_SEL_DST_IP)
2318
2319 #define MLX5_HASH_IP_L4PORTS (MLX5_HASH_FIELD_SEL_SRC_IP |\
2320 MLX5_HASH_FIELD_SEL_DST_IP |\
2321 MLX5_HASH_FIELD_SEL_L4_SPORT |\
2322 MLX5_HASH_FIELD_SEL_L4_DPORT)
2323
2324 #define MLX5_HASH_IP_IPSEC_SPI (MLX5_HASH_FIELD_SEL_SRC_IP |\
2325 MLX5_HASH_FIELD_SEL_DST_IP |\
2326 MLX5_HASH_FIELD_SEL_IPSEC_SPI)
2327
2328 MLX5_SET(tirc, tirc, rx_hash_fn, mlx5e_rx_hash_fn(params->rss_hfunc));
2329 if (params->rss_hfunc == ETH_RSS_HASH_TOP) {
2330 void *rss_key = MLX5_ADDR_OF(tirc, tirc,
2331 rx_hash_toeplitz_key);
2332 size_t len = MLX5_FLD_SZ_BYTES(tirc,
2333 rx_hash_toeplitz_key);
2334
2335 MLX5_SET(tirc, tirc, rx_hash_symmetric, 1);
2336 memcpy(rss_key, params->toeplitz_hash_key, len);
2337 }
2338
2339 switch (tt) {
2340 case MLX5E_TT_IPV4_TCP:
2341 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2342 MLX5_L3_PROT_TYPE_IPV4);
2343 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
2344 MLX5_L4_PROT_TYPE_TCP);
2345 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2346 MLX5_HASH_IP_L4PORTS);
2347 break;
2348
2349 case MLX5E_TT_IPV6_TCP:
2350 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2351 MLX5_L3_PROT_TYPE_IPV6);
2352 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
2353 MLX5_L4_PROT_TYPE_TCP);
2354 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2355 MLX5_HASH_IP_L4PORTS);
2356 break;
2357
2358 case MLX5E_TT_IPV4_UDP:
2359 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2360 MLX5_L3_PROT_TYPE_IPV4);
2361 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
2362 MLX5_L4_PROT_TYPE_UDP);
2363 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2364 MLX5_HASH_IP_L4PORTS);
2365 break;
2366
2367 case MLX5E_TT_IPV6_UDP:
2368 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2369 MLX5_L3_PROT_TYPE_IPV6);
2370 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
2371 MLX5_L4_PROT_TYPE_UDP);
2372 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2373 MLX5_HASH_IP_L4PORTS);
2374 break;
2375
2376 case MLX5E_TT_IPV4_IPSEC_AH:
2377 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2378 MLX5_L3_PROT_TYPE_IPV4);
2379 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2380 MLX5_HASH_IP_IPSEC_SPI);
2381 break;
2382
2383 case MLX5E_TT_IPV6_IPSEC_AH:
2384 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2385 MLX5_L3_PROT_TYPE_IPV6);
2386 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2387 MLX5_HASH_IP_IPSEC_SPI);
2388 break;
2389
2390 case MLX5E_TT_IPV4_IPSEC_ESP:
2391 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2392 MLX5_L3_PROT_TYPE_IPV4);
2393 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2394 MLX5_HASH_IP_IPSEC_SPI);
2395 break;
2396
2397 case MLX5E_TT_IPV6_IPSEC_ESP:
2398 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2399 MLX5_L3_PROT_TYPE_IPV6);
2400 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2401 MLX5_HASH_IP_IPSEC_SPI);
2402 break;
2403
2404 case MLX5E_TT_IPV4:
2405 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2406 MLX5_L3_PROT_TYPE_IPV4);
2407 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2408 MLX5_HASH_IP);
2409 break;
2410
2411 case MLX5E_TT_IPV6:
2412 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2413 MLX5_L3_PROT_TYPE_IPV6);
2414 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2415 MLX5_HASH_IP);
2416 break;
2417 default:
2418 WARN_ONCE(true, "%s: bad traffic type!\n", __func__);
2419 }
2420 }
2421
2422 static int mlx5e_modify_tirs_lro(struct mlx5e_priv *priv)
2423 {
2424 struct mlx5_core_dev *mdev = priv->mdev;
2425
2426 void *in;
2427 void *tirc;
2428 int inlen;
2429 int err;
2430 int tt;
2431 int ix;
2432
2433 inlen = MLX5_ST_SZ_BYTES(modify_tir_in);
2434 in = mlx5_vzalloc(inlen);
2435 if (!in)
2436 return -ENOMEM;
2437
2438 MLX5_SET(modify_tir_in, in, bitmask.lro, 1);
2439 tirc = MLX5_ADDR_OF(modify_tir_in, in, ctx);
2440
2441 mlx5e_build_tir_ctx_lro(&priv->channels.params, tirc);
2442
2443 for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++) {
2444 err = mlx5_core_modify_tir(mdev, priv->indir_tir[tt].tirn, in,
2445 inlen);
2446 if (err)
2447 goto free_in;
2448 }
2449
2450 for (ix = 0; ix < priv->profile->max_nch(priv->mdev); ix++) {
2451 err = mlx5_core_modify_tir(mdev, priv->direct_tir[ix].tirn,
2452 in, inlen);
2453 if (err)
2454 goto free_in;
2455 }
2456
2457 free_in:
2458 kvfree(in);
2459
2460 return err;
2461 }
2462
2463 static int mlx5e_set_mtu(struct mlx5e_priv *priv, u16 mtu)
2464 {
2465 struct mlx5_core_dev *mdev = priv->mdev;
2466 u16 hw_mtu = MLX5E_SW2HW_MTU(mtu);
2467 int err;
2468
2469 err = mlx5_set_port_mtu(mdev, hw_mtu, 1);
2470 if (err)
2471 return err;
2472
2473 /* Update vport context MTU */
2474 mlx5_modify_nic_vport_mtu(mdev, hw_mtu);
2475 return 0;
2476 }
2477
2478 static void mlx5e_query_mtu(struct mlx5e_priv *priv, u16 *mtu)
2479 {
2480 struct mlx5_core_dev *mdev = priv->mdev;
2481 u16 hw_mtu = 0;
2482 int err;
2483
2484 err = mlx5_query_nic_vport_mtu(mdev, &hw_mtu);
2485 if (err || !hw_mtu) /* fallback to port oper mtu */
2486 mlx5_query_port_oper_mtu(mdev, &hw_mtu, 1);
2487
2488 *mtu = MLX5E_HW2SW_MTU(hw_mtu);
2489 }
2490
2491 static int mlx5e_set_dev_port_mtu(struct mlx5e_priv *priv)
2492 {
2493 struct net_device *netdev = priv->netdev;
2494 u16 mtu;
2495 int err;
2496
2497 err = mlx5e_set_mtu(priv, netdev->mtu);
2498 if (err)
2499 return err;
2500
2501 mlx5e_query_mtu(priv, &mtu);
2502 if (mtu != netdev->mtu)
2503 netdev_warn(netdev, "%s: VPort MTU %d is different than netdev mtu %d\n",
2504 __func__, mtu, netdev->mtu);
2505
2506 netdev->mtu = mtu;
2507 return 0;
2508 }
2509
2510 static void mlx5e_netdev_set_tcs(struct net_device *netdev)
2511 {
2512 struct mlx5e_priv *priv = netdev_priv(netdev);
2513 int nch = priv->channels.params.num_channels;
2514 int ntc = priv->channels.params.num_tc;
2515 int tc;
2516
2517 netdev_reset_tc(netdev);
2518
2519 if (ntc == 1)
2520 return;
2521
2522 netdev_set_num_tc(netdev, ntc);
2523
2524 /* Map netdev TCs to offset 0
2525 * We have our own UP to TXQ mapping for QoS
2526 */
2527 for (tc = 0; tc < ntc; tc++)
2528 netdev_set_tc_queue(netdev, tc, nch, 0);
2529 }
2530
2531 static void mlx5e_build_channels_tx_maps(struct mlx5e_priv *priv)
2532 {
2533 struct mlx5e_channel *c;
2534 struct mlx5e_txqsq *sq;
2535 int i, tc;
2536
2537 for (i = 0; i < priv->channels.num; i++)
2538 for (tc = 0; tc < priv->profile->max_tc; tc++)
2539 priv->channel_tc2txq[i][tc] = i + tc * priv->channels.num;
2540
2541 for (i = 0; i < priv->channels.num; i++) {
2542 c = priv->channels.c[i];
2543 for (tc = 0; tc < c->num_tc; tc++) {
2544 sq = &c->sq[tc];
2545 priv->txq2sq[sq->txq_ix] = sq;
2546 }
2547 }
2548 }
2549
2550 static void mlx5e_activate_priv_channels(struct mlx5e_priv *priv)
2551 {
2552 int num_txqs = priv->channels.num * priv->channels.params.num_tc;
2553 struct net_device *netdev = priv->netdev;
2554
2555 mlx5e_netdev_set_tcs(netdev);
2556 netif_set_real_num_tx_queues(netdev, num_txqs);
2557 netif_set_real_num_rx_queues(netdev, priv->channels.num);
2558
2559 mlx5e_build_channels_tx_maps(priv);
2560 mlx5e_activate_channels(&priv->channels);
2561 netif_tx_start_all_queues(priv->netdev);
2562
2563 if (MLX5_CAP_GEN(priv->mdev, vport_group_manager))
2564 mlx5e_add_sqs_fwd_rules(priv);
2565
2566 mlx5e_wait_channels_min_rx_wqes(&priv->channels);
2567 mlx5e_redirect_rqts_to_channels(priv, &priv->channels);
2568 }
2569
2570 static void mlx5e_deactivate_priv_channels(struct mlx5e_priv *priv)
2571 {
2572 mlx5e_redirect_rqts_to_drop(priv);
2573
2574 if (MLX5_CAP_GEN(priv->mdev, vport_group_manager))
2575 mlx5e_remove_sqs_fwd_rules(priv);
2576
2577 /* FIXME: This is a W/A only for tx timeout watch dog false alarm when
2578 * polling for inactive tx queues.
2579 */
2580 netif_tx_stop_all_queues(priv->netdev);
2581 netif_tx_disable(priv->netdev);
2582 mlx5e_deactivate_channels(&priv->channels);
2583 }
2584
2585 void mlx5e_switch_priv_channels(struct mlx5e_priv *priv,
2586 struct mlx5e_channels *new_chs,
2587 mlx5e_fp_hw_modify hw_modify)
2588 {
2589 struct net_device *netdev = priv->netdev;
2590 int new_num_txqs;
2591
2592 new_num_txqs = new_chs->num * new_chs->params.num_tc;
2593
2594 netif_carrier_off(netdev);
2595
2596 if (new_num_txqs < netdev->real_num_tx_queues)
2597 netif_set_real_num_tx_queues(netdev, new_num_txqs);
2598
2599 mlx5e_deactivate_priv_channels(priv);
2600 mlx5e_close_channels(&priv->channels);
2601
2602 priv->channels = *new_chs;
2603
2604 /* New channels are ready to roll, modify HW settings if needed */
2605 if (hw_modify)
2606 hw_modify(priv);
2607
2608 mlx5e_refresh_tirs(priv, false);
2609 mlx5e_activate_priv_channels(priv);
2610
2611 mlx5e_update_carrier(priv);
2612 }
2613
2614 int mlx5e_open_locked(struct net_device *netdev)
2615 {
2616 struct mlx5e_priv *priv = netdev_priv(netdev);
2617 int err;
2618
2619 set_bit(MLX5E_STATE_OPENED, &priv->state);
2620
2621 err = mlx5e_open_channels(priv, &priv->channels);
2622 if (err)
2623 goto err_clear_state_opened_flag;
2624
2625 mlx5e_refresh_tirs(priv, false);
2626 mlx5e_activate_priv_channels(priv);
2627 mlx5e_update_carrier(priv);
2628 mlx5e_timestamp_init(priv);
2629
2630 if (priv->profile->update_stats)
2631 queue_delayed_work(priv->wq, &priv->update_stats_work, 0);
2632
2633 return 0;
2634
2635 err_clear_state_opened_flag:
2636 clear_bit(MLX5E_STATE_OPENED, &priv->state);
2637 return err;
2638 }
2639
2640 int mlx5e_open(struct net_device *netdev)
2641 {
2642 struct mlx5e_priv *priv = netdev_priv(netdev);
2643 int err;
2644
2645 mutex_lock(&priv->state_lock);
2646 err = mlx5e_open_locked(netdev);
2647 mutex_unlock(&priv->state_lock);
2648
2649 return err;
2650 }
2651
2652 int mlx5e_close_locked(struct net_device *netdev)
2653 {
2654 struct mlx5e_priv *priv = netdev_priv(netdev);
2655
2656 /* May already be CLOSED in case a previous configuration operation
2657 * (e.g RX/TX queue size change) that involves close&open failed.
2658 */
2659 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
2660 return 0;
2661
2662 clear_bit(MLX5E_STATE_OPENED, &priv->state);
2663
2664 mlx5e_timestamp_cleanup(priv);
2665 netif_carrier_off(priv->netdev);
2666 mlx5e_deactivate_priv_channels(priv);
2667 mlx5e_close_channels(&priv->channels);
2668
2669 return 0;
2670 }
2671
2672 int mlx5e_close(struct net_device *netdev)
2673 {
2674 struct mlx5e_priv *priv = netdev_priv(netdev);
2675 int err;
2676
2677 if (!netif_device_present(netdev))
2678 return -ENODEV;
2679
2680 mutex_lock(&priv->state_lock);
2681 err = mlx5e_close_locked(netdev);
2682 mutex_unlock(&priv->state_lock);
2683
2684 return err;
2685 }
2686
2687 static int mlx5e_alloc_drop_rq(struct mlx5_core_dev *mdev,
2688 struct mlx5e_rq *rq,
2689 struct mlx5e_rq_param *param)
2690 {
2691 void *rqc = param->rqc;
2692 void *rqc_wq = MLX5_ADDR_OF(rqc, rqc, wq);
2693 int err;
2694
2695 param->wq.db_numa_node = param->wq.buf_numa_node;
2696
2697 err = mlx5_wq_ll_create(mdev, &param->wq, rqc_wq, &rq->wq,
2698 &rq->wq_ctrl);
2699 if (err)
2700 return err;
2701
2702 rq->mdev = mdev;
2703
2704 return 0;
2705 }
2706
2707 static int mlx5e_alloc_drop_cq(struct mlx5_core_dev *mdev,
2708 struct mlx5e_cq *cq,
2709 struct mlx5e_cq_param *param)
2710 {
2711 return mlx5e_alloc_cq_common(mdev, param, cq);
2712 }
2713
2714 static int mlx5e_open_drop_rq(struct mlx5_core_dev *mdev,
2715 struct mlx5e_rq *drop_rq)
2716 {
2717 struct mlx5e_cq_param cq_param = {};
2718 struct mlx5e_rq_param rq_param = {};
2719 struct mlx5e_cq *cq = &drop_rq->cq;
2720 int err;
2721
2722 mlx5e_build_drop_rq_param(&rq_param);
2723
2724 err = mlx5e_alloc_drop_cq(mdev, cq, &cq_param);
2725 if (err)
2726 return err;
2727
2728 err = mlx5e_create_cq(cq, &cq_param);
2729 if (err)
2730 goto err_free_cq;
2731
2732 err = mlx5e_alloc_drop_rq(mdev, drop_rq, &rq_param);
2733 if (err)
2734 goto err_destroy_cq;
2735
2736 err = mlx5e_create_rq(drop_rq, &rq_param);
2737 if (err)
2738 goto err_free_rq;
2739
2740 return 0;
2741
2742 err_free_rq:
2743 mlx5e_free_rq(drop_rq);
2744
2745 err_destroy_cq:
2746 mlx5e_destroy_cq(cq);
2747
2748 err_free_cq:
2749 mlx5e_free_cq(cq);
2750
2751 return err;
2752 }
2753
2754 static void mlx5e_close_drop_rq(struct mlx5e_rq *drop_rq)
2755 {
2756 mlx5e_destroy_rq(drop_rq);
2757 mlx5e_free_rq(drop_rq);
2758 mlx5e_destroy_cq(&drop_rq->cq);
2759 mlx5e_free_cq(&drop_rq->cq);
2760 }
2761
2762 static int mlx5e_create_tis(struct mlx5e_priv *priv, int tc)
2763 {
2764 struct mlx5_core_dev *mdev = priv->mdev;
2765 u32 in[MLX5_ST_SZ_DW(create_tis_in)] = {0};
2766 void *tisc = MLX5_ADDR_OF(create_tis_in, in, ctx);
2767
2768 MLX5_SET(tisc, tisc, prio, tc << 1);
2769 MLX5_SET(tisc, tisc, transport_domain, mdev->mlx5e_res.td.tdn);
2770
2771 if (mlx5_lag_is_lacp_owner(mdev))
2772 MLX5_SET(tisc, tisc, strict_lag_tx_port_affinity, 1);
2773
2774 return mlx5_core_create_tis(mdev, in, sizeof(in), &priv->tisn[tc]);
2775 }
2776
2777 static void mlx5e_destroy_tis(struct mlx5e_priv *priv, int tc)
2778 {
2779 mlx5_core_destroy_tis(priv->mdev, priv->tisn[tc]);
2780 }
2781
2782 int mlx5e_create_tises(struct mlx5e_priv *priv)
2783 {
2784 int err;
2785 int tc;
2786
2787 for (tc = 0; tc < priv->profile->max_tc; tc++) {
2788 err = mlx5e_create_tis(priv, tc);
2789 if (err)
2790 goto err_close_tises;
2791 }
2792
2793 return 0;
2794
2795 err_close_tises:
2796 for (tc--; tc >= 0; tc--)
2797 mlx5e_destroy_tis(priv, tc);
2798
2799 return err;
2800 }
2801
2802 void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv)
2803 {
2804 int tc;
2805
2806 for (tc = 0; tc < priv->profile->max_tc; tc++)
2807 mlx5e_destroy_tis(priv, tc);
2808 }
2809
2810 static void mlx5e_build_indir_tir_ctx(struct mlx5e_priv *priv,
2811 enum mlx5e_traffic_types tt,
2812 u32 *tirc)
2813 {
2814 MLX5_SET(tirc, tirc, transport_domain, priv->mdev->mlx5e_res.td.tdn);
2815
2816 mlx5e_build_tir_ctx_lro(&priv->channels.params, tirc);
2817
2818 MLX5_SET(tirc, tirc, disp_type, MLX5_TIRC_DISP_TYPE_INDIRECT);
2819 MLX5_SET(tirc, tirc, indirect_table, priv->indir_rqt.rqtn);
2820 mlx5e_build_indir_tir_ctx_hash(&priv->channels.params, tt, tirc);
2821 }
2822
2823 static void mlx5e_build_direct_tir_ctx(struct mlx5e_priv *priv, u32 rqtn, u32 *tirc)
2824 {
2825 MLX5_SET(tirc, tirc, transport_domain, priv->mdev->mlx5e_res.td.tdn);
2826
2827 mlx5e_build_tir_ctx_lro(&priv->channels.params, tirc);
2828
2829 MLX5_SET(tirc, tirc, disp_type, MLX5_TIRC_DISP_TYPE_INDIRECT);
2830 MLX5_SET(tirc, tirc, indirect_table, rqtn);
2831 MLX5_SET(tirc, tirc, rx_hash_fn, MLX5_RX_HASH_FN_INVERTED_XOR8);
2832 }
2833
2834 static int mlx5e_create_indirect_tirs(struct mlx5e_priv *priv)
2835 {
2836 struct mlx5e_tir *tir;
2837 void *tirc;
2838 int inlen;
2839 int err;
2840 u32 *in;
2841 int tt;
2842
2843 inlen = MLX5_ST_SZ_BYTES(create_tir_in);
2844 in = mlx5_vzalloc(inlen);
2845 if (!in)
2846 return -ENOMEM;
2847
2848 for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++) {
2849 memset(in, 0, inlen);
2850 tir = &priv->indir_tir[tt];
2851 tirc = MLX5_ADDR_OF(create_tir_in, in, ctx);
2852 mlx5e_build_indir_tir_ctx(priv, tt, tirc);
2853 err = mlx5e_create_tir(priv->mdev, tir, in, inlen);
2854 if (err)
2855 goto err_destroy_tirs;
2856 }
2857
2858 kvfree(in);
2859
2860 return 0;
2861
2862 err_destroy_tirs:
2863 for (tt--; tt >= 0; tt--)
2864 mlx5e_destroy_tir(priv->mdev, &priv->indir_tir[tt]);
2865
2866 kvfree(in);
2867
2868 return err;
2869 }
2870
2871 int mlx5e_create_direct_tirs(struct mlx5e_priv *priv)
2872 {
2873 int nch = priv->profile->max_nch(priv->mdev);
2874 struct mlx5e_tir *tir;
2875 void *tirc;
2876 int inlen;
2877 int err;
2878 u32 *in;
2879 int ix;
2880
2881 inlen = MLX5_ST_SZ_BYTES(create_tir_in);
2882 in = mlx5_vzalloc(inlen);
2883 if (!in)
2884 return -ENOMEM;
2885
2886 for (ix = 0; ix < nch; ix++) {
2887 memset(in, 0, inlen);
2888 tir = &priv->direct_tir[ix];
2889 tirc = MLX5_ADDR_OF(create_tir_in, in, ctx);
2890 mlx5e_build_direct_tir_ctx(priv, priv->direct_tir[ix].rqt.rqtn, tirc);
2891 err = mlx5e_create_tir(priv->mdev, tir, in, inlen);
2892 if (err)
2893 goto err_destroy_ch_tirs;
2894 }
2895
2896 kvfree(in);
2897
2898 return 0;
2899
2900 err_destroy_ch_tirs:
2901 for (ix--; ix >= 0; ix--)
2902 mlx5e_destroy_tir(priv->mdev, &priv->direct_tir[ix]);
2903
2904 kvfree(in);
2905
2906 return err;
2907 }
2908
2909 static void mlx5e_destroy_indirect_tirs(struct mlx5e_priv *priv)
2910 {
2911 int i;
2912
2913 for (i = 0; i < MLX5E_NUM_INDIR_TIRS; i++)
2914 mlx5e_destroy_tir(priv->mdev, &priv->indir_tir[i]);
2915 }
2916
2917 void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv)
2918 {
2919 int nch = priv->profile->max_nch(priv->mdev);
2920 int i;
2921
2922 for (i = 0; i < nch; i++)
2923 mlx5e_destroy_tir(priv->mdev, &priv->direct_tir[i]);
2924 }
2925
2926 static int mlx5e_modify_channels_scatter_fcs(struct mlx5e_channels *chs, bool enable)
2927 {
2928 int err = 0;
2929 int i;
2930
2931 for (i = 0; i < chs->num; i++) {
2932 err = mlx5e_modify_rq_scatter_fcs(&chs->c[i]->rq, enable);
2933 if (err)
2934 return err;
2935 }
2936
2937 return 0;
2938 }
2939
2940 static int mlx5e_modify_channels_vsd(struct mlx5e_channels *chs, bool vsd)
2941 {
2942 int err = 0;
2943 int i;
2944
2945 for (i = 0; i < chs->num; i++) {
2946 err = mlx5e_modify_rq_vsd(&chs->c[i]->rq, vsd);
2947 if (err)
2948 return err;
2949 }
2950
2951 return 0;
2952 }
2953
2954 static int mlx5e_setup_tc(struct net_device *netdev, u8 tc)
2955 {
2956 struct mlx5e_priv *priv = netdev_priv(netdev);
2957 struct mlx5e_channels new_channels = {};
2958 int err = 0;
2959
2960 if (tc && tc != MLX5E_MAX_NUM_TC)
2961 return -EINVAL;
2962
2963 mutex_lock(&priv->state_lock);
2964
2965 new_channels.params = priv->channels.params;
2966 new_channels.params.num_tc = tc ? tc : 1;
2967
2968 if (test_bit(MLX5E_STATE_OPENED, &priv->state)) {
2969 priv->channels.params = new_channels.params;
2970 goto out;
2971 }
2972
2973 err = mlx5e_open_channels(priv, &new_channels);
2974 if (err)
2975 goto out;
2976
2977 mlx5e_switch_priv_channels(priv, &new_channels, NULL);
2978 out:
2979 mutex_unlock(&priv->state_lock);
2980 return err;
2981 }
2982
2983 static int mlx5e_ndo_setup_tc(struct net_device *dev, u32 handle,
2984 __be16 proto, struct tc_to_netdev *tc)
2985 {
2986 struct mlx5e_priv *priv = netdev_priv(dev);
2987
2988 if (TC_H_MAJ(handle) != TC_H_MAJ(TC_H_INGRESS))
2989 goto mqprio;
2990
2991 switch (tc->type) {
2992 case TC_SETUP_CLSFLOWER:
2993 switch (tc->cls_flower->command) {
2994 case TC_CLSFLOWER_REPLACE:
2995 return mlx5e_configure_flower(priv, proto, tc->cls_flower);
2996 case TC_CLSFLOWER_DESTROY:
2997 return mlx5e_delete_flower(priv, tc->cls_flower);
2998 case TC_CLSFLOWER_STATS:
2999 return mlx5e_stats_flower(priv, tc->cls_flower);
3000 }
3001 default:
3002 return -EOPNOTSUPP;
3003 }
3004
3005 mqprio:
3006 if (tc->type != TC_SETUP_MQPRIO)
3007 return -EINVAL;
3008
3009 tc->mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
3010
3011 return mlx5e_setup_tc(dev, tc->mqprio->num_tc);
3012 }
3013
3014 static void
3015 mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats)
3016 {
3017 struct mlx5e_priv *priv = netdev_priv(dev);
3018 struct mlx5e_sw_stats *sstats = &priv->stats.sw;
3019 struct mlx5e_vport_stats *vstats = &priv->stats.vport;
3020 struct mlx5e_pport_stats *pstats = &priv->stats.pport;
3021
3022 if (mlx5e_is_uplink_rep(priv)) {
3023 stats->rx_packets = PPORT_802_3_GET(pstats, a_frames_received_ok);
3024 stats->rx_bytes = PPORT_802_3_GET(pstats, a_octets_received_ok);
3025 stats->tx_packets = PPORT_802_3_GET(pstats, a_frames_transmitted_ok);
3026 stats->tx_bytes = PPORT_802_3_GET(pstats, a_octets_transmitted_ok);
3027 } else {
3028 stats->rx_packets = sstats->rx_packets;
3029 stats->rx_bytes = sstats->rx_bytes;
3030 stats->tx_packets = sstats->tx_packets;
3031 stats->tx_bytes = sstats->tx_bytes;
3032 stats->tx_dropped = sstats->tx_queue_dropped;
3033 }
3034
3035 stats->rx_dropped = priv->stats.qcnt.rx_out_of_buffer;
3036
3037 stats->rx_length_errors =
3038 PPORT_802_3_GET(pstats, a_in_range_length_errors) +
3039 PPORT_802_3_GET(pstats, a_out_of_range_length_field) +
3040 PPORT_802_3_GET(pstats, a_frame_too_long_errors);
3041 stats->rx_crc_errors =
3042 PPORT_802_3_GET(pstats, a_frame_check_sequence_errors);
3043 stats->rx_frame_errors = PPORT_802_3_GET(pstats, a_alignment_errors);
3044 stats->tx_aborted_errors = PPORT_2863_GET(pstats, if_out_discards);
3045 stats->tx_carrier_errors =
3046 PPORT_802_3_GET(pstats, a_symbol_error_during_carrier);
3047 stats->rx_errors = stats->rx_length_errors + stats->rx_crc_errors +
3048 stats->rx_frame_errors;
3049 stats->tx_errors = stats->tx_aborted_errors + stats->tx_carrier_errors;
3050
3051 /* vport multicast also counts packets that are dropped due to steering
3052 * or rx out of buffer
3053 */
3054 stats->multicast =
3055 VPORT_COUNTER_GET(vstats, received_eth_multicast.packets);
3056
3057 }
3058
3059 static void mlx5e_set_rx_mode(struct net_device *dev)
3060 {
3061 struct mlx5e_priv *priv = netdev_priv(dev);
3062
3063 queue_work(priv->wq, &priv->set_rx_mode_work);
3064 }
3065
3066 static int mlx5e_set_mac(struct net_device *netdev, void *addr)
3067 {
3068 struct mlx5e_priv *priv = netdev_priv(netdev);
3069 struct sockaddr *saddr = addr;
3070
3071 if (!is_valid_ether_addr(saddr->sa_data))
3072 return -EADDRNOTAVAIL;
3073
3074 netif_addr_lock_bh(netdev);
3075 ether_addr_copy(netdev->dev_addr, saddr->sa_data);
3076 netif_addr_unlock_bh(netdev);
3077
3078 queue_work(priv->wq, &priv->set_rx_mode_work);
3079
3080 return 0;
3081 }
3082
3083 #define MLX5E_SET_FEATURE(netdev, feature, enable) \
3084 do { \
3085 if (enable) \
3086 netdev->features |= feature; \
3087 else \
3088 netdev->features &= ~feature; \
3089 } while (0)
3090
3091 typedef int (*mlx5e_feature_handler)(struct net_device *netdev, bool enable);
3092
3093 static int set_feature_lro(struct net_device *netdev, bool enable)
3094 {
3095 struct mlx5e_priv *priv = netdev_priv(netdev);
3096 struct mlx5e_channels new_channels = {};
3097 int err = 0;
3098 bool reset;
3099
3100 mutex_lock(&priv->state_lock);
3101
3102 reset = (priv->channels.params.rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST);
3103 reset = reset && test_bit(MLX5E_STATE_OPENED, &priv->state);
3104
3105 new_channels.params = priv->channels.params;
3106 new_channels.params.lro_en = enable;
3107
3108 if (!reset) {
3109 priv->channels.params = new_channels.params;
3110 err = mlx5e_modify_tirs_lro(priv);
3111 goto out;
3112 }
3113
3114 err = mlx5e_open_channels(priv, &new_channels);
3115 if (err)
3116 goto out;
3117
3118 mlx5e_switch_priv_channels(priv, &new_channels, mlx5e_modify_tirs_lro);
3119 out:
3120 mutex_unlock(&priv->state_lock);
3121 return err;
3122 }
3123
3124 static int set_feature_vlan_filter(struct net_device *netdev, bool enable)
3125 {
3126 struct mlx5e_priv *priv = netdev_priv(netdev);
3127
3128 if (enable)
3129 mlx5e_enable_vlan_filter(priv);
3130 else
3131 mlx5e_disable_vlan_filter(priv);
3132
3133 return 0;
3134 }
3135
3136 static int set_feature_tc_num_filters(struct net_device *netdev, bool enable)
3137 {
3138 struct mlx5e_priv *priv = netdev_priv(netdev);
3139
3140 if (!enable && mlx5e_tc_num_filters(priv)) {
3141 netdev_err(netdev,
3142 "Active offloaded tc filters, can't turn hw_tc_offload off\n");
3143 return -EINVAL;
3144 }
3145
3146 return 0;
3147 }
3148
3149 static int set_feature_rx_all(struct net_device *netdev, bool enable)
3150 {
3151 struct mlx5e_priv *priv = netdev_priv(netdev);
3152 struct mlx5_core_dev *mdev = priv->mdev;
3153
3154 return mlx5_set_port_fcs(mdev, !enable);
3155 }
3156
3157 static int set_feature_rx_fcs(struct net_device *netdev, bool enable)
3158 {
3159 struct mlx5e_priv *priv = netdev_priv(netdev);
3160 int err;
3161
3162 mutex_lock(&priv->state_lock);
3163
3164 priv->channels.params.scatter_fcs_en = enable;
3165 err = mlx5e_modify_channels_scatter_fcs(&priv->channels, enable);
3166 if (err)
3167 priv->channels.params.scatter_fcs_en = !enable;
3168
3169 mutex_unlock(&priv->state_lock);
3170
3171 return err;
3172 }
3173
3174 static int set_feature_rx_vlan(struct net_device *netdev, bool enable)
3175 {
3176 struct mlx5e_priv *priv = netdev_priv(netdev);
3177 int err = 0;
3178
3179 mutex_lock(&priv->state_lock);
3180
3181 priv->channels.params.vlan_strip_disable = !enable;
3182 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
3183 goto unlock;
3184
3185 err = mlx5e_modify_channels_vsd(&priv->channels, !enable);
3186 if (err)
3187 priv->channels.params.vlan_strip_disable = enable;
3188
3189 unlock:
3190 mutex_unlock(&priv->state_lock);
3191
3192 return err;
3193 }
3194
3195 #ifdef CONFIG_RFS_ACCEL
3196 static int set_feature_arfs(struct net_device *netdev, bool enable)
3197 {
3198 struct mlx5e_priv *priv = netdev_priv(netdev);
3199 int err;
3200
3201 if (enable)
3202 err = mlx5e_arfs_enable(priv);
3203 else
3204 err = mlx5e_arfs_disable(priv);
3205
3206 return err;
3207 }
3208 #endif
3209
3210 static int mlx5e_handle_feature(struct net_device *netdev,
3211 netdev_features_t wanted_features,
3212 netdev_features_t feature,
3213 mlx5e_feature_handler feature_handler)
3214 {
3215 netdev_features_t changes = wanted_features ^ netdev->features;
3216 bool enable = !!(wanted_features & feature);
3217 int err;
3218
3219 if (!(changes & feature))
3220 return 0;
3221
3222 err = feature_handler(netdev, enable);
3223 if (err) {
3224 netdev_err(netdev, "%s feature 0x%llx failed err %d\n",
3225 enable ? "Enable" : "Disable", feature, err);
3226 return err;
3227 }
3228
3229 MLX5E_SET_FEATURE(netdev, feature, enable);
3230 return 0;
3231 }
3232
3233 static int mlx5e_set_features(struct net_device *netdev,
3234 netdev_features_t features)
3235 {
3236 int err;
3237
3238 err = mlx5e_handle_feature(netdev, features, NETIF_F_LRO,
3239 set_feature_lro);
3240 err |= mlx5e_handle_feature(netdev, features,
3241 NETIF_F_HW_VLAN_CTAG_FILTER,
3242 set_feature_vlan_filter);
3243 err |= mlx5e_handle_feature(netdev, features, NETIF_F_HW_TC,
3244 set_feature_tc_num_filters);
3245 err |= mlx5e_handle_feature(netdev, features, NETIF_F_RXALL,
3246 set_feature_rx_all);
3247 err |= mlx5e_handle_feature(netdev, features, NETIF_F_RXFCS,
3248 set_feature_rx_fcs);
3249 err |= mlx5e_handle_feature(netdev, features, NETIF_F_HW_VLAN_CTAG_RX,
3250 set_feature_rx_vlan);
3251 #ifdef CONFIG_RFS_ACCEL
3252 err |= mlx5e_handle_feature(netdev, features, NETIF_F_NTUPLE,
3253 set_feature_arfs);
3254 #endif
3255
3256 return err ? -EINVAL : 0;
3257 }
3258
3259 static int mlx5e_change_mtu(struct net_device *netdev, int new_mtu)
3260 {
3261 struct mlx5e_priv *priv = netdev_priv(netdev);
3262 struct mlx5e_channels new_channels = {};
3263 int curr_mtu;
3264 int err = 0;
3265 bool reset;
3266
3267 mutex_lock(&priv->state_lock);
3268
3269 reset = !priv->channels.params.lro_en &&
3270 (priv->channels.params.rq_wq_type !=
3271 MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ);
3272
3273 reset = reset && test_bit(MLX5E_STATE_OPENED, &priv->state);
3274
3275 curr_mtu = netdev->mtu;
3276 netdev->mtu = new_mtu;
3277
3278 if (!reset) {
3279 mlx5e_set_dev_port_mtu(priv);
3280 goto out;
3281 }
3282
3283 new_channels.params = priv->channels.params;
3284 err = mlx5e_open_channels(priv, &new_channels);
3285 if (err) {
3286 netdev->mtu = curr_mtu;
3287 goto out;
3288 }
3289
3290 mlx5e_switch_priv_channels(priv, &new_channels, mlx5e_set_dev_port_mtu);
3291
3292 out:
3293 mutex_unlock(&priv->state_lock);
3294 return err;
3295 }
3296
3297 static int mlx5e_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3298 {
3299 switch (cmd) {
3300 case SIOCSHWTSTAMP:
3301 return mlx5e_hwstamp_set(dev, ifr);
3302 case SIOCGHWTSTAMP:
3303 return mlx5e_hwstamp_get(dev, ifr);
3304 default:
3305 return -EOPNOTSUPP;
3306 }
3307 }
3308
3309 static int mlx5e_set_vf_mac(struct net_device *dev, int vf, u8 *mac)
3310 {
3311 struct mlx5e_priv *priv = netdev_priv(dev);
3312 struct mlx5_core_dev *mdev = priv->mdev;
3313
3314 return mlx5_eswitch_set_vport_mac(mdev->priv.eswitch, vf + 1, mac);
3315 }
3316
3317 static int mlx5e_set_vf_vlan(struct net_device *dev, int vf, u16 vlan, u8 qos,
3318 __be16 vlan_proto)
3319 {
3320 struct mlx5e_priv *priv = netdev_priv(dev);
3321 struct mlx5_core_dev *mdev = priv->mdev;
3322
3323 if (vlan_proto != htons(ETH_P_8021Q))
3324 return -EPROTONOSUPPORT;
3325
3326 return mlx5_eswitch_set_vport_vlan(mdev->priv.eswitch, vf + 1,
3327 vlan, qos);
3328 }
3329
3330 static int mlx5e_set_vf_spoofchk(struct net_device *dev, int vf, bool setting)
3331 {
3332 struct mlx5e_priv *priv = netdev_priv(dev);
3333 struct mlx5_core_dev *mdev = priv->mdev;
3334
3335 return mlx5_eswitch_set_vport_spoofchk(mdev->priv.eswitch, vf + 1, setting);
3336 }
3337
3338 static int mlx5e_set_vf_trust(struct net_device *dev, int vf, bool setting)
3339 {
3340 struct mlx5e_priv *priv = netdev_priv(dev);
3341 struct mlx5_core_dev *mdev = priv->mdev;
3342
3343 return mlx5_eswitch_set_vport_trust(mdev->priv.eswitch, vf + 1, setting);
3344 }
3345
3346 static int mlx5e_set_vf_rate(struct net_device *dev, int vf, int min_tx_rate,
3347 int max_tx_rate)
3348 {
3349 struct mlx5e_priv *priv = netdev_priv(dev);
3350 struct mlx5_core_dev *mdev = priv->mdev;
3351
3352 return mlx5_eswitch_set_vport_rate(mdev->priv.eswitch, vf + 1,
3353 max_tx_rate, min_tx_rate);
3354 }
3355
3356 static int mlx5_vport_link2ifla(u8 esw_link)
3357 {
3358 switch (esw_link) {
3359 case MLX5_ESW_VPORT_ADMIN_STATE_DOWN:
3360 return IFLA_VF_LINK_STATE_DISABLE;
3361 case MLX5_ESW_VPORT_ADMIN_STATE_UP:
3362 return IFLA_VF_LINK_STATE_ENABLE;
3363 }
3364 return IFLA_VF_LINK_STATE_AUTO;
3365 }
3366
3367 static int mlx5_ifla_link2vport(u8 ifla_link)
3368 {
3369 switch (ifla_link) {
3370 case IFLA_VF_LINK_STATE_DISABLE:
3371 return MLX5_ESW_VPORT_ADMIN_STATE_DOWN;
3372 case IFLA_VF_LINK_STATE_ENABLE:
3373 return MLX5_ESW_VPORT_ADMIN_STATE_UP;
3374 }
3375 return MLX5_ESW_VPORT_ADMIN_STATE_AUTO;
3376 }
3377
3378 static int mlx5e_set_vf_link_state(struct net_device *dev, int vf,
3379 int link_state)
3380 {
3381 struct mlx5e_priv *priv = netdev_priv(dev);
3382 struct mlx5_core_dev *mdev = priv->mdev;
3383
3384 return mlx5_eswitch_set_vport_state(mdev->priv.eswitch, vf + 1,
3385 mlx5_ifla_link2vport(link_state));
3386 }
3387
3388 static int mlx5e_get_vf_config(struct net_device *dev,
3389 int vf, struct ifla_vf_info *ivi)
3390 {
3391 struct mlx5e_priv *priv = netdev_priv(dev);
3392 struct mlx5_core_dev *mdev = priv->mdev;
3393 int err;
3394
3395 err = mlx5_eswitch_get_vport_config(mdev->priv.eswitch, vf + 1, ivi);
3396 if (err)
3397 return err;
3398 ivi->linkstate = mlx5_vport_link2ifla(ivi->linkstate);
3399 return 0;
3400 }
3401
3402 static int mlx5e_get_vf_stats(struct net_device *dev,
3403 int vf, struct ifla_vf_stats *vf_stats)
3404 {
3405 struct mlx5e_priv *priv = netdev_priv(dev);
3406 struct mlx5_core_dev *mdev = priv->mdev;
3407
3408 return mlx5_eswitch_get_vport_stats(mdev->priv.eswitch, vf + 1,
3409 vf_stats);
3410 }
3411
3412 static void mlx5e_add_vxlan_port(struct net_device *netdev,
3413 struct udp_tunnel_info *ti)
3414 {
3415 struct mlx5e_priv *priv = netdev_priv(netdev);
3416
3417 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3418 return;
3419
3420 if (!mlx5e_vxlan_allowed(priv->mdev))
3421 return;
3422
3423 mlx5e_vxlan_queue_work(priv, ti->sa_family, be16_to_cpu(ti->port), 1);
3424 }
3425
3426 static void mlx5e_del_vxlan_port(struct net_device *netdev,
3427 struct udp_tunnel_info *ti)
3428 {
3429 struct mlx5e_priv *priv = netdev_priv(netdev);
3430
3431 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3432 return;
3433
3434 if (!mlx5e_vxlan_allowed(priv->mdev))
3435 return;
3436
3437 mlx5e_vxlan_queue_work(priv, ti->sa_family, be16_to_cpu(ti->port), 0);
3438 }
3439
3440 static netdev_features_t mlx5e_vxlan_features_check(struct mlx5e_priv *priv,
3441 struct sk_buff *skb,
3442 netdev_features_t features)
3443 {
3444 struct udphdr *udph;
3445 u16 proto;
3446 u16 port = 0;
3447
3448 switch (vlan_get_protocol(skb)) {
3449 case htons(ETH_P_IP):
3450 proto = ip_hdr(skb)->protocol;
3451 break;
3452 case htons(ETH_P_IPV6):
3453 proto = ipv6_hdr(skb)->nexthdr;
3454 break;
3455 default:
3456 goto out;
3457 }
3458
3459 if (proto == IPPROTO_UDP) {
3460 udph = udp_hdr(skb);
3461 port = be16_to_cpu(udph->dest);
3462 }
3463
3464 /* Verify if UDP port is being offloaded by HW */
3465 if (port && mlx5e_vxlan_lookup_port(priv, port))
3466 return features;
3467
3468 out:
3469 /* Disable CSUM and GSO if the udp dport is not offloaded by HW */
3470 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
3471 }
3472
3473 static netdev_features_t mlx5e_features_check(struct sk_buff *skb,
3474 struct net_device *netdev,
3475 netdev_features_t features)
3476 {
3477 struct mlx5e_priv *priv = netdev_priv(netdev);
3478
3479 features = vlan_features_check(skb, features);
3480 features = vxlan_features_check(skb, features);
3481
3482 /* Validate if the tunneled packet is being offloaded by HW */
3483 if (skb->encapsulation &&
3484 (features & NETIF_F_CSUM_MASK || features & NETIF_F_GSO_MASK))
3485 return mlx5e_vxlan_features_check(priv, skb, features);
3486
3487 return features;
3488 }
3489
3490 static void mlx5e_tx_timeout(struct net_device *dev)
3491 {
3492 struct mlx5e_priv *priv = netdev_priv(dev);
3493 bool sched_work = false;
3494 int i;
3495
3496 netdev_err(dev, "TX timeout detected\n");
3497
3498 for (i = 0; i < priv->channels.num * priv->channels.params.num_tc; i++) {
3499 struct mlx5e_txqsq *sq = priv->txq2sq[i];
3500
3501 if (!netif_xmit_stopped(netdev_get_tx_queue(dev, i)))
3502 continue;
3503 sched_work = true;
3504 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
3505 netdev_err(dev, "TX timeout on queue: %d, SQ: 0x%x, CQ: 0x%x, SQ Cons: 0x%x SQ Prod: 0x%x\n",
3506 i, sq->sqn, sq->cq.mcq.cqn, sq->cc, sq->pc);
3507 }
3508
3509 if (sched_work && test_bit(MLX5E_STATE_OPENED, &priv->state))
3510 schedule_work(&priv->tx_timeout_work);
3511 }
3512
3513 static int mlx5e_xdp_set(struct net_device *netdev, struct bpf_prog *prog)
3514 {
3515 struct mlx5e_priv *priv = netdev_priv(netdev);
3516 struct bpf_prog *old_prog;
3517 int err = 0;
3518 bool reset, was_opened;
3519 int i;
3520
3521 mutex_lock(&priv->state_lock);
3522
3523 if ((netdev->features & NETIF_F_LRO) && prog) {
3524 netdev_warn(netdev, "can't set XDP while LRO is on, disable LRO first\n");
3525 err = -EINVAL;
3526 goto unlock;
3527 }
3528
3529 was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
3530 /* no need for full reset when exchanging programs */
3531 reset = (!priv->channels.params.xdp_prog || !prog);
3532
3533 if (was_opened && reset)
3534 mlx5e_close_locked(netdev);
3535 if (was_opened && !reset) {
3536 /* num_channels is invariant here, so we can take the
3537 * batched reference right upfront.
3538 */
3539 prog = bpf_prog_add(prog, priv->channels.num);
3540 if (IS_ERR(prog)) {
3541 err = PTR_ERR(prog);
3542 goto unlock;
3543 }
3544 }
3545
3546 /* exchange programs, extra prog reference we got from caller
3547 * as long as we don't fail from this point onwards.
3548 */
3549 old_prog = xchg(&priv->channels.params.xdp_prog, prog);
3550 if (old_prog)
3551 bpf_prog_put(old_prog);
3552
3553 if (reset) /* change RQ type according to priv->xdp_prog */
3554 mlx5e_set_rq_params(priv->mdev, &priv->channels.params);
3555
3556 if (was_opened && reset)
3557 mlx5e_open_locked(netdev);
3558
3559 if (!test_bit(MLX5E_STATE_OPENED, &priv->state) || reset)
3560 goto unlock;
3561
3562 /* exchanging programs w/o reset, we update ref counts on behalf
3563 * of the channels RQs here.
3564 */
3565 for (i = 0; i < priv->channels.num; i++) {
3566 struct mlx5e_channel *c = priv->channels.c[i];
3567
3568 clear_bit(MLX5E_RQ_STATE_ENABLED, &c->rq.state);
3569 napi_synchronize(&c->napi);
3570 /* prevent mlx5e_poll_rx_cq from accessing rq->xdp_prog */
3571
3572 old_prog = xchg(&c->rq.xdp_prog, prog);
3573
3574 set_bit(MLX5E_RQ_STATE_ENABLED, &c->rq.state);
3575 /* napi_schedule in case we have missed anything */
3576 set_bit(MLX5E_CHANNEL_NAPI_SCHED, &c->flags);
3577 napi_schedule(&c->napi);
3578
3579 if (old_prog)
3580 bpf_prog_put(old_prog);
3581 }
3582
3583 unlock:
3584 mutex_unlock(&priv->state_lock);
3585 return err;
3586 }
3587
3588 static bool mlx5e_xdp_attached(struct net_device *dev)
3589 {
3590 struct mlx5e_priv *priv = netdev_priv(dev);
3591
3592 return !!priv->channels.params.xdp_prog;
3593 }
3594
3595 static int mlx5e_xdp(struct net_device *dev, struct netdev_xdp *xdp)
3596 {
3597 switch (xdp->command) {
3598 case XDP_SETUP_PROG:
3599 return mlx5e_xdp_set(dev, xdp->prog);
3600 case XDP_QUERY_PROG:
3601 xdp->prog_attached = mlx5e_xdp_attached(dev);
3602 return 0;
3603 default:
3604 return -EINVAL;
3605 }
3606 }
3607
3608 #ifdef CONFIG_NET_POLL_CONTROLLER
3609 /* Fake "interrupt" called by netpoll (eg netconsole) to send skbs without
3610 * reenabling interrupts.
3611 */
3612 static void mlx5e_netpoll(struct net_device *dev)
3613 {
3614 struct mlx5e_priv *priv = netdev_priv(dev);
3615 struct mlx5e_channels *chs = &priv->channels;
3616
3617 int i;
3618
3619 for (i = 0; i < chs->num; i++)
3620 napi_schedule(&chs->c[i]->napi);
3621 }
3622 #endif
3623
3624 static const struct net_device_ops mlx5e_netdev_ops_basic = {
3625 .ndo_open = mlx5e_open,
3626 .ndo_stop = mlx5e_close,
3627 .ndo_start_xmit = mlx5e_xmit,
3628 .ndo_setup_tc = mlx5e_ndo_setup_tc,
3629 .ndo_select_queue = mlx5e_select_queue,
3630 .ndo_get_stats64 = mlx5e_get_stats,
3631 .ndo_set_rx_mode = mlx5e_set_rx_mode,
3632 .ndo_set_mac_address = mlx5e_set_mac,
3633 .ndo_vlan_rx_add_vid = mlx5e_vlan_rx_add_vid,
3634 .ndo_vlan_rx_kill_vid = mlx5e_vlan_rx_kill_vid,
3635 .ndo_set_features = mlx5e_set_features,
3636 .ndo_change_mtu = mlx5e_change_mtu,
3637 .ndo_do_ioctl = mlx5e_ioctl,
3638 .ndo_set_tx_maxrate = mlx5e_set_tx_maxrate,
3639 #ifdef CONFIG_RFS_ACCEL
3640 .ndo_rx_flow_steer = mlx5e_rx_flow_steer,
3641 #endif
3642 .ndo_tx_timeout = mlx5e_tx_timeout,
3643 .ndo_xdp = mlx5e_xdp,
3644 #ifdef CONFIG_NET_POLL_CONTROLLER
3645 .ndo_poll_controller = mlx5e_netpoll,
3646 #endif
3647 };
3648
3649 static const struct net_device_ops mlx5e_netdev_ops_sriov = {
3650 .ndo_open = mlx5e_open,
3651 .ndo_stop = mlx5e_close,
3652 .ndo_start_xmit = mlx5e_xmit,
3653 .ndo_setup_tc = mlx5e_ndo_setup_tc,
3654 .ndo_select_queue = mlx5e_select_queue,
3655 .ndo_get_stats64 = mlx5e_get_stats,
3656 .ndo_set_rx_mode = mlx5e_set_rx_mode,
3657 .ndo_set_mac_address = mlx5e_set_mac,
3658 .ndo_vlan_rx_add_vid = mlx5e_vlan_rx_add_vid,
3659 .ndo_vlan_rx_kill_vid = mlx5e_vlan_rx_kill_vid,
3660 .ndo_set_features = mlx5e_set_features,
3661 .ndo_change_mtu = mlx5e_change_mtu,
3662 .ndo_do_ioctl = mlx5e_ioctl,
3663 .ndo_udp_tunnel_add = mlx5e_add_vxlan_port,
3664 .ndo_udp_tunnel_del = mlx5e_del_vxlan_port,
3665 .ndo_set_tx_maxrate = mlx5e_set_tx_maxrate,
3666 .ndo_features_check = mlx5e_features_check,
3667 #ifdef CONFIG_RFS_ACCEL
3668 .ndo_rx_flow_steer = mlx5e_rx_flow_steer,
3669 #endif
3670 .ndo_set_vf_mac = mlx5e_set_vf_mac,
3671 .ndo_set_vf_vlan = mlx5e_set_vf_vlan,
3672 .ndo_set_vf_spoofchk = mlx5e_set_vf_spoofchk,
3673 .ndo_set_vf_trust = mlx5e_set_vf_trust,
3674 .ndo_set_vf_rate = mlx5e_set_vf_rate,
3675 .ndo_get_vf_config = mlx5e_get_vf_config,
3676 .ndo_set_vf_link_state = mlx5e_set_vf_link_state,
3677 .ndo_get_vf_stats = mlx5e_get_vf_stats,
3678 .ndo_tx_timeout = mlx5e_tx_timeout,
3679 .ndo_xdp = mlx5e_xdp,
3680 #ifdef CONFIG_NET_POLL_CONTROLLER
3681 .ndo_poll_controller = mlx5e_netpoll,
3682 #endif
3683 .ndo_has_offload_stats = mlx5e_has_offload_stats,
3684 .ndo_get_offload_stats = mlx5e_get_offload_stats,
3685 };
3686
3687 static int mlx5e_check_required_hca_cap(struct mlx5_core_dev *mdev)
3688 {
3689 if (MLX5_CAP_GEN(mdev, port_type) != MLX5_CAP_PORT_TYPE_ETH)
3690 return -EOPNOTSUPP;
3691 if (!MLX5_CAP_GEN(mdev, eth_net_offloads) ||
3692 !MLX5_CAP_GEN(mdev, nic_flow_table) ||
3693 !MLX5_CAP_ETH(mdev, csum_cap) ||
3694 !MLX5_CAP_ETH(mdev, max_lso_cap) ||
3695 !MLX5_CAP_ETH(mdev, vlan_cap) ||
3696 !MLX5_CAP_ETH(mdev, rss_ind_tbl_cap) ||
3697 MLX5_CAP_FLOWTABLE(mdev,
3698 flow_table_properties_nic_receive.max_ft_level)
3699 < 3) {
3700 mlx5_core_warn(mdev,
3701 "Not creating net device, some required device capabilities are missing\n");
3702 return -EOPNOTSUPP;
3703 }
3704 if (!MLX5_CAP_ETH(mdev, self_lb_en_modifiable))
3705 mlx5_core_warn(mdev, "Self loop back prevention is not supported\n");
3706 if (!MLX5_CAP_GEN(mdev, cq_moderation))
3707 mlx5_core_warn(mdev, "CQ modiration is not supported\n");
3708
3709 return 0;
3710 }
3711
3712 u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev)
3713 {
3714 int bf_buf_size = (1 << MLX5_CAP_GEN(mdev, log_bf_reg_size)) / 2;
3715
3716 return bf_buf_size -
3717 sizeof(struct mlx5e_tx_wqe) +
3718 2 /*sizeof(mlx5e_tx_wqe.inline_hdr_start)*/;
3719 }
3720
3721 void mlx5e_build_default_indir_rqt(struct mlx5_core_dev *mdev,
3722 u32 *indirection_rqt, int len,
3723 int num_channels)
3724 {
3725 int node = mdev->priv.numa_node;
3726 int node_num_of_cores;
3727 int i;
3728
3729 if (node == -1)
3730 node = first_online_node;
3731
3732 node_num_of_cores = cpumask_weight(cpumask_of_node(node));
3733
3734 if (node_num_of_cores)
3735 num_channels = min_t(int, num_channels, node_num_of_cores);
3736
3737 for (i = 0; i < len; i++)
3738 indirection_rqt[i] = i % num_channels;
3739 }
3740
3741 static int mlx5e_get_pci_bw(struct mlx5_core_dev *mdev, u32 *pci_bw)
3742 {
3743 enum pcie_link_width width;
3744 enum pci_bus_speed speed;
3745 int err = 0;
3746
3747 err = pcie_get_minimum_link(mdev->pdev, &speed, &width);
3748 if (err)
3749 return err;
3750
3751 if (speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN)
3752 return -EINVAL;
3753
3754 switch (speed) {
3755 case PCIE_SPEED_2_5GT:
3756 *pci_bw = 2500 * width;
3757 break;
3758 case PCIE_SPEED_5_0GT:
3759 *pci_bw = 5000 * width;
3760 break;
3761 case PCIE_SPEED_8_0GT:
3762 *pci_bw = 8000 * width;
3763 break;
3764 default:
3765 return -EINVAL;
3766 }
3767
3768 return 0;
3769 }
3770
3771 static bool cqe_compress_heuristic(u32 link_speed, u32 pci_bw)
3772 {
3773 return (link_speed && pci_bw &&
3774 (pci_bw < 40000) && (pci_bw < link_speed));
3775 }
3776
3777 void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params, u8 cq_period_mode)
3778 {
3779 params->rx_cq_period_mode = cq_period_mode;
3780
3781 params->rx_cq_moderation.pkts =
3782 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS;
3783 params->rx_cq_moderation.usec =
3784 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC;
3785
3786 if (cq_period_mode == MLX5_CQ_PERIOD_MODE_START_FROM_CQE)
3787 params->rx_cq_moderation.usec =
3788 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE;
3789
3790 MLX5E_SET_PFLAG(params, MLX5E_PFLAG_RX_CQE_BASED_MODER,
3791 params->rx_cq_period_mode == MLX5_CQ_PERIOD_MODE_START_FROM_CQE);
3792 }
3793
3794 u32 mlx5e_choose_lro_timeout(struct mlx5_core_dev *mdev, u32 wanted_timeout)
3795 {
3796 int i;
3797
3798 /* The supported periods are organized in ascending order */
3799 for (i = 0; i < MLX5E_LRO_TIMEOUT_ARR_SIZE - 1; i++)
3800 if (MLX5_CAP_ETH(mdev, lro_timer_supported_periods[i]) >= wanted_timeout)
3801 break;
3802
3803 return MLX5_CAP_ETH(mdev, lro_timer_supported_periods[i]);
3804 }
3805
3806 static void mlx5e_build_nic_params(struct mlx5_core_dev *mdev,
3807 struct mlx5e_params *params,
3808 u16 max_channels)
3809 {
3810 u8 cq_period_mode = 0;
3811 u32 link_speed = 0;
3812 u32 pci_bw = 0;
3813
3814 params->num_channels = max_channels;
3815 params->num_tc = 1;
3816
3817 /* SQ */
3818 params->log_sq_size = is_kdump_kernel() ?
3819 MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE :
3820 MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE;
3821
3822 /* set CQE compression */
3823 params->rx_cqe_compress_def = false;
3824 if (MLX5_CAP_GEN(mdev, cqe_compression) &&
3825 MLX5_CAP_GEN(mdev, vport_group_manager)) {
3826 mlx5e_get_max_linkspeed(mdev, &link_speed);
3827 mlx5e_get_pci_bw(mdev, &pci_bw);
3828 mlx5_core_dbg(mdev, "Max link speed = %d, PCI BW = %d\n",
3829 link_speed, pci_bw);
3830 params->rx_cqe_compress_def = cqe_compress_heuristic(link_speed, pci_bw);
3831 }
3832 MLX5E_SET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS, params->rx_cqe_compress_def);
3833
3834 /* RQ */
3835 mlx5e_set_rq_params(mdev, params);
3836
3837 /* HW LRO */
3838 if (params->rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ)
3839 params->lro_en = true;
3840 params->lro_timeout = mlx5e_choose_lro_timeout(mdev, MLX5E_DEFAULT_LRO_TIMEOUT);
3841
3842 /* CQ moderation params */
3843 cq_period_mode = MLX5_CAP_GEN(mdev, cq_period_start_from_cqe) ?
3844 MLX5_CQ_PERIOD_MODE_START_FROM_CQE :
3845 MLX5_CQ_PERIOD_MODE_START_FROM_EQE;
3846 params->rx_am_enabled = MLX5_CAP_GEN(mdev, cq_moderation);
3847 mlx5e_set_rx_cq_mode_params(params, cq_period_mode);
3848
3849 params->tx_cq_moderation.usec = MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC;
3850 params->tx_cq_moderation.pkts = MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS;
3851
3852 /* TX inline */
3853 params->tx_max_inline = mlx5e_get_max_inline_cap(mdev);
3854 mlx5_query_min_inline(mdev, &params->tx_min_inline_mode);
3855 if (params->tx_min_inline_mode == MLX5_INLINE_MODE_NONE &&
3856 !MLX5_CAP_ETH(mdev, wqe_vlan_insert))
3857 params->tx_min_inline_mode = MLX5_INLINE_MODE_L2;
3858
3859 /* RSS */
3860 params->rss_hfunc = ETH_RSS_HASH_XOR;
3861 netdev_rss_key_fill(params->toeplitz_hash_key, sizeof(params->toeplitz_hash_key));
3862 mlx5e_build_default_indir_rqt(mdev, params->indirection_rqt,
3863 MLX5E_INDIR_RQT_SIZE, max_channels);
3864 }
3865
3866 static void mlx5e_build_nic_netdev_priv(struct mlx5_core_dev *mdev,
3867 struct net_device *netdev,
3868 const struct mlx5e_profile *profile,
3869 void *ppriv)
3870 {
3871 struct mlx5e_priv *priv = netdev_priv(netdev);
3872
3873 priv->mdev = mdev;
3874 priv->netdev = netdev;
3875 priv->profile = profile;
3876 priv->ppriv = ppriv;
3877
3878 mlx5e_build_nic_params(mdev, &priv->channels.params, profile->max_nch(mdev));
3879
3880 mutex_init(&priv->state_lock);
3881
3882 INIT_WORK(&priv->update_carrier_work, mlx5e_update_carrier_work);
3883 INIT_WORK(&priv->set_rx_mode_work, mlx5e_set_rx_mode_work);
3884 INIT_WORK(&priv->tx_timeout_work, mlx5e_tx_timeout_work);
3885 INIT_DELAYED_WORK(&priv->update_stats_work, mlx5e_update_stats_work);
3886 }
3887
3888 static void mlx5e_set_netdev_dev_addr(struct net_device *netdev)
3889 {
3890 struct mlx5e_priv *priv = netdev_priv(netdev);
3891
3892 mlx5_query_nic_vport_mac_address(priv->mdev, 0, netdev->dev_addr);
3893 if (is_zero_ether_addr(netdev->dev_addr) &&
3894 !MLX5_CAP_GEN(priv->mdev, vport_group_manager)) {
3895 eth_hw_addr_random(netdev);
3896 mlx5_core_info(priv->mdev, "Assigned random MAC address %pM\n", netdev->dev_addr);
3897 }
3898 }
3899
3900 static const struct switchdev_ops mlx5e_switchdev_ops = {
3901 .switchdev_port_attr_get = mlx5e_attr_get,
3902 };
3903
3904 static void mlx5e_build_nic_netdev(struct net_device *netdev)
3905 {
3906 struct mlx5e_priv *priv = netdev_priv(netdev);
3907 struct mlx5_core_dev *mdev = priv->mdev;
3908 bool fcs_supported;
3909 bool fcs_enabled;
3910
3911 SET_NETDEV_DEV(netdev, &mdev->pdev->dev);
3912
3913 if (MLX5_CAP_GEN(mdev, vport_group_manager)) {
3914 netdev->netdev_ops = &mlx5e_netdev_ops_sriov;
3915 #ifdef CONFIG_MLX5_CORE_EN_DCB
3916 if (MLX5_CAP_GEN(mdev, qos))
3917 netdev->dcbnl_ops = &mlx5e_dcbnl_ops;
3918 #endif
3919 } else {
3920 netdev->netdev_ops = &mlx5e_netdev_ops_basic;
3921 }
3922
3923 netdev->watchdog_timeo = 15 * HZ;
3924
3925 netdev->ethtool_ops = &mlx5e_ethtool_ops;
3926
3927 netdev->vlan_features |= NETIF_F_SG;
3928 netdev->vlan_features |= NETIF_F_IP_CSUM;
3929 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
3930 netdev->vlan_features |= NETIF_F_GRO;
3931 netdev->vlan_features |= NETIF_F_TSO;
3932 netdev->vlan_features |= NETIF_F_TSO6;
3933 netdev->vlan_features |= NETIF_F_RXCSUM;
3934 netdev->vlan_features |= NETIF_F_RXHASH;
3935
3936 if (!!MLX5_CAP_ETH(mdev, lro_cap))
3937 netdev->vlan_features |= NETIF_F_LRO;
3938
3939 netdev->hw_features = netdev->vlan_features;
3940 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX;
3941 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX;
3942 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
3943
3944 if (mlx5e_vxlan_allowed(mdev)) {
3945 netdev->hw_features |= NETIF_F_GSO_UDP_TUNNEL |
3946 NETIF_F_GSO_UDP_TUNNEL_CSUM |
3947 NETIF_F_GSO_PARTIAL;
3948 netdev->hw_enc_features |= NETIF_F_IP_CSUM;
3949 netdev->hw_enc_features |= NETIF_F_IPV6_CSUM;
3950 netdev->hw_enc_features |= NETIF_F_TSO;
3951 netdev->hw_enc_features |= NETIF_F_TSO6;
3952 netdev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL;
3953 netdev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM |
3954 NETIF_F_GSO_PARTIAL;
3955 netdev->gso_partial_features = NETIF_F_GSO_UDP_TUNNEL_CSUM;
3956 }
3957
3958 mlx5_query_port_fcs(mdev, &fcs_supported, &fcs_enabled);
3959
3960 if (fcs_supported)
3961 netdev->hw_features |= NETIF_F_RXALL;
3962
3963 if (MLX5_CAP_ETH(mdev, scatter_fcs))
3964 netdev->hw_features |= NETIF_F_RXFCS;
3965
3966 netdev->features = netdev->hw_features;
3967 if (!priv->channels.params.lro_en)
3968 netdev->features &= ~NETIF_F_LRO;
3969
3970 if (fcs_enabled)
3971 netdev->features &= ~NETIF_F_RXALL;
3972
3973 if (!priv->channels.params.scatter_fcs_en)
3974 netdev->features &= ~NETIF_F_RXFCS;
3975
3976 #define FT_CAP(f) MLX5_CAP_FLOWTABLE(mdev, flow_table_properties_nic_receive.f)
3977 if (FT_CAP(flow_modify_en) &&
3978 FT_CAP(modify_root) &&
3979 FT_CAP(identified_miss_table_mode) &&
3980 FT_CAP(flow_table_modify)) {
3981 netdev->hw_features |= NETIF_F_HW_TC;
3982 #ifdef CONFIG_RFS_ACCEL
3983 netdev->hw_features |= NETIF_F_NTUPLE;
3984 #endif
3985 }
3986
3987 netdev->features |= NETIF_F_HIGHDMA;
3988
3989 netdev->priv_flags |= IFF_UNICAST_FLT;
3990
3991 mlx5e_set_netdev_dev_addr(netdev);
3992
3993 #ifdef CONFIG_NET_SWITCHDEV
3994 if (MLX5_CAP_GEN(mdev, vport_group_manager))
3995 netdev->switchdev_ops = &mlx5e_switchdev_ops;
3996 #endif
3997 }
3998
3999 static void mlx5e_create_q_counter(struct mlx5e_priv *priv)
4000 {
4001 struct mlx5_core_dev *mdev = priv->mdev;
4002 int err;
4003
4004 err = mlx5_core_alloc_q_counter(mdev, &priv->q_counter);
4005 if (err) {
4006 mlx5_core_warn(mdev, "alloc queue counter failed, %d\n", err);
4007 priv->q_counter = 0;
4008 }
4009 }
4010
4011 static void mlx5e_destroy_q_counter(struct mlx5e_priv *priv)
4012 {
4013 if (!priv->q_counter)
4014 return;
4015
4016 mlx5_core_dealloc_q_counter(priv->mdev, priv->q_counter);
4017 }
4018
4019 static void mlx5e_nic_init(struct mlx5_core_dev *mdev,
4020 struct net_device *netdev,
4021 const struct mlx5e_profile *profile,
4022 void *ppriv)
4023 {
4024 struct mlx5e_priv *priv = netdev_priv(netdev);
4025
4026 mlx5e_build_nic_netdev_priv(mdev, netdev, profile, ppriv);
4027 mlx5e_build_nic_netdev(netdev);
4028 mlx5e_vxlan_init(priv);
4029 }
4030
4031 static void mlx5e_nic_cleanup(struct mlx5e_priv *priv)
4032 {
4033 mlx5e_vxlan_cleanup(priv);
4034
4035 if (priv->channels.params.xdp_prog)
4036 bpf_prog_put(priv->channels.params.xdp_prog);
4037 }
4038
4039 static int mlx5e_init_nic_rx(struct mlx5e_priv *priv)
4040 {
4041 struct mlx5_core_dev *mdev = priv->mdev;
4042 int err;
4043 int i;
4044
4045 err = mlx5e_create_indirect_rqts(priv);
4046 if (err) {
4047 mlx5_core_warn(mdev, "create indirect rqts failed, %d\n", err);
4048 return err;
4049 }
4050
4051 err = mlx5e_create_direct_rqts(priv);
4052 if (err) {
4053 mlx5_core_warn(mdev, "create direct rqts failed, %d\n", err);
4054 goto err_destroy_indirect_rqts;
4055 }
4056
4057 err = mlx5e_create_indirect_tirs(priv);
4058 if (err) {
4059 mlx5_core_warn(mdev, "create indirect tirs failed, %d\n", err);
4060 goto err_destroy_direct_rqts;
4061 }
4062
4063 err = mlx5e_create_direct_tirs(priv);
4064 if (err) {
4065 mlx5_core_warn(mdev, "create direct tirs failed, %d\n", err);
4066 goto err_destroy_indirect_tirs;
4067 }
4068
4069 err = mlx5e_create_flow_steering(priv);
4070 if (err) {
4071 mlx5_core_warn(mdev, "create flow steering failed, %d\n", err);
4072 goto err_destroy_direct_tirs;
4073 }
4074
4075 err = mlx5e_tc_init(priv);
4076 if (err)
4077 goto err_destroy_flow_steering;
4078
4079 return 0;
4080
4081 err_destroy_flow_steering:
4082 mlx5e_destroy_flow_steering(priv);
4083 err_destroy_direct_tirs:
4084 mlx5e_destroy_direct_tirs(priv);
4085 err_destroy_indirect_tirs:
4086 mlx5e_destroy_indirect_tirs(priv);
4087 err_destroy_direct_rqts:
4088 for (i = 0; i < priv->profile->max_nch(mdev); i++)
4089 mlx5e_destroy_rqt(priv, &priv->direct_tir[i].rqt);
4090 err_destroy_indirect_rqts:
4091 mlx5e_destroy_rqt(priv, &priv->indir_rqt);
4092 return err;
4093 }
4094
4095 static void mlx5e_cleanup_nic_rx(struct mlx5e_priv *priv)
4096 {
4097 int i;
4098
4099 mlx5e_tc_cleanup(priv);
4100 mlx5e_destroy_flow_steering(priv);
4101 mlx5e_destroy_direct_tirs(priv);
4102 mlx5e_destroy_indirect_tirs(priv);
4103 for (i = 0; i < priv->profile->max_nch(priv->mdev); i++)
4104 mlx5e_destroy_rqt(priv, &priv->direct_tir[i].rqt);
4105 mlx5e_destroy_rqt(priv, &priv->indir_rqt);
4106 }
4107
4108 static int mlx5e_init_nic_tx(struct mlx5e_priv *priv)
4109 {
4110 int err;
4111
4112 err = mlx5e_create_tises(priv);
4113 if (err) {
4114 mlx5_core_warn(priv->mdev, "create tises failed, %d\n", err);
4115 return err;
4116 }
4117
4118 #ifdef CONFIG_MLX5_CORE_EN_DCB
4119 mlx5e_dcbnl_initialize(priv);
4120 #endif
4121 return 0;
4122 }
4123
4124 static void mlx5e_nic_enable(struct mlx5e_priv *priv)
4125 {
4126 struct net_device *netdev = priv->netdev;
4127 struct mlx5_core_dev *mdev = priv->mdev;
4128 struct mlx5_eswitch *esw = mdev->priv.eswitch;
4129 struct mlx5_eswitch_rep rep;
4130
4131 mlx5_lag_add(mdev, netdev);
4132
4133 mlx5e_enable_async_events(priv);
4134
4135 if (MLX5_CAP_GEN(mdev, vport_group_manager)) {
4136 mlx5_query_nic_vport_mac_address(mdev, 0, rep.hw_id);
4137 rep.load = mlx5e_nic_rep_load;
4138 rep.unload = mlx5e_nic_rep_unload;
4139 rep.vport = FDB_UPLINK_VPORT;
4140 rep.netdev = netdev;
4141 mlx5_eswitch_register_vport_rep(esw, 0, &rep);
4142 }
4143
4144 if (netdev->reg_state != NETREG_REGISTERED)
4145 return;
4146
4147 /* Device already registered: sync netdev system state */
4148 if (mlx5e_vxlan_allowed(mdev)) {
4149 rtnl_lock();
4150 udp_tunnel_get_rx_info(netdev);
4151 rtnl_unlock();
4152 }
4153
4154 queue_work(priv->wq, &priv->set_rx_mode_work);
4155 }
4156
4157 static void mlx5e_nic_disable(struct mlx5e_priv *priv)
4158 {
4159 struct mlx5_core_dev *mdev = priv->mdev;
4160 struct mlx5_eswitch *esw = mdev->priv.eswitch;
4161
4162 queue_work(priv->wq, &priv->set_rx_mode_work);
4163 if (MLX5_CAP_GEN(mdev, vport_group_manager))
4164 mlx5_eswitch_unregister_vport_rep(esw, 0);
4165 mlx5e_disable_async_events(priv);
4166 mlx5_lag_remove(mdev);
4167 }
4168
4169 static const struct mlx5e_profile mlx5e_nic_profile = {
4170 .init = mlx5e_nic_init,
4171 .cleanup = mlx5e_nic_cleanup,
4172 .init_rx = mlx5e_init_nic_rx,
4173 .cleanup_rx = mlx5e_cleanup_nic_rx,
4174 .init_tx = mlx5e_init_nic_tx,
4175 .cleanup_tx = mlx5e_cleanup_nic_tx,
4176 .enable = mlx5e_nic_enable,
4177 .disable = mlx5e_nic_disable,
4178 .update_stats = mlx5e_update_stats,
4179 .max_nch = mlx5e_get_max_num_channels,
4180 .max_tc = MLX5E_MAX_NUM_TC,
4181 };
4182
4183 struct net_device *mlx5e_create_netdev(struct mlx5_core_dev *mdev,
4184 const struct mlx5e_profile *profile,
4185 void *ppriv)
4186 {
4187 int nch = profile->max_nch(mdev);
4188 struct net_device *netdev;
4189 struct mlx5e_priv *priv;
4190
4191 netdev = alloc_etherdev_mqs(sizeof(struct mlx5e_priv),
4192 nch * profile->max_tc,
4193 nch);
4194 if (!netdev) {
4195 mlx5_core_err(mdev, "alloc_etherdev_mqs() failed\n");
4196 return NULL;
4197 }
4198
4199 #ifdef CONFIG_RFS_ACCEL
4200 netdev->rx_cpu_rmap = mdev->rmap;
4201 #endif
4202
4203 profile->init(mdev, netdev, profile, ppriv);
4204
4205 netif_carrier_off(netdev);
4206
4207 priv = netdev_priv(netdev);
4208
4209 priv->wq = create_singlethread_workqueue("mlx5e");
4210 if (!priv->wq)
4211 goto err_cleanup_nic;
4212
4213 return netdev;
4214
4215 err_cleanup_nic:
4216 profile->cleanup(priv);
4217 free_netdev(netdev);
4218
4219 return NULL;
4220 }
4221
4222 int mlx5e_attach_netdev(struct mlx5_core_dev *mdev, struct net_device *netdev)
4223 {
4224 const struct mlx5e_profile *profile;
4225 struct mlx5e_priv *priv;
4226 u16 max_mtu;
4227 int err;
4228
4229 priv = netdev_priv(netdev);
4230 profile = priv->profile;
4231 clear_bit(MLX5E_STATE_DESTROYING, &priv->state);
4232
4233 err = profile->init_tx(priv);
4234 if (err)
4235 goto out;
4236
4237 err = mlx5e_open_drop_rq(mdev, &priv->drop_rq);
4238 if (err) {
4239 mlx5_core_err(mdev, "open drop rq failed, %d\n", err);
4240 goto err_cleanup_tx;
4241 }
4242
4243 err = profile->init_rx(priv);
4244 if (err)
4245 goto err_close_drop_rq;
4246
4247 mlx5e_create_q_counter(priv);
4248
4249 mlx5e_init_l2_addr(priv);
4250
4251 /* MTU range: 68 - hw-specific max */
4252 netdev->min_mtu = ETH_MIN_MTU;
4253 mlx5_query_port_max_mtu(priv->mdev, &max_mtu, 1);
4254 netdev->max_mtu = MLX5E_HW2SW_MTU(max_mtu);
4255
4256 mlx5e_set_dev_port_mtu(priv);
4257
4258 if (profile->enable)
4259 profile->enable(priv);
4260
4261 rtnl_lock();
4262 if (netif_running(netdev))
4263 mlx5e_open(netdev);
4264 netif_device_attach(netdev);
4265 rtnl_unlock();
4266
4267 return 0;
4268
4269 err_close_drop_rq:
4270 mlx5e_close_drop_rq(&priv->drop_rq);
4271
4272 err_cleanup_tx:
4273 profile->cleanup_tx(priv);
4274
4275 out:
4276 return err;
4277 }
4278
4279 static void mlx5e_register_vport_rep(struct mlx5_core_dev *mdev)
4280 {
4281 struct mlx5_eswitch *esw = mdev->priv.eswitch;
4282 int total_vfs = MLX5_TOTAL_VPORTS(mdev);
4283 int vport;
4284 u8 mac[ETH_ALEN];
4285
4286 if (!MLX5_CAP_GEN(mdev, vport_group_manager))
4287 return;
4288
4289 mlx5_query_nic_vport_mac_address(mdev, 0, mac);
4290
4291 for (vport = 1; vport < total_vfs; vport++) {
4292 struct mlx5_eswitch_rep rep;
4293
4294 rep.load = mlx5e_vport_rep_load;
4295 rep.unload = mlx5e_vport_rep_unload;
4296 rep.vport = vport;
4297 ether_addr_copy(rep.hw_id, mac);
4298 mlx5_eswitch_register_vport_rep(esw, vport, &rep);
4299 }
4300 }
4301
4302 static void mlx5e_unregister_vport_rep(struct mlx5_core_dev *mdev)
4303 {
4304 struct mlx5_eswitch *esw = mdev->priv.eswitch;
4305 int total_vfs = MLX5_TOTAL_VPORTS(mdev);
4306 int vport;
4307
4308 if (!MLX5_CAP_GEN(mdev, vport_group_manager))
4309 return;
4310
4311 for (vport = 1; vport < total_vfs; vport++)
4312 mlx5_eswitch_unregister_vport_rep(esw, vport);
4313 }
4314
4315 void mlx5e_detach_netdev(struct mlx5_core_dev *mdev, struct net_device *netdev)
4316 {
4317 struct mlx5e_priv *priv = netdev_priv(netdev);
4318 const struct mlx5e_profile *profile = priv->profile;
4319
4320 set_bit(MLX5E_STATE_DESTROYING, &priv->state);
4321
4322 rtnl_lock();
4323 if (netif_running(netdev))
4324 mlx5e_close(netdev);
4325 netif_device_detach(netdev);
4326 rtnl_unlock();
4327
4328 if (profile->disable)
4329 profile->disable(priv);
4330 flush_workqueue(priv->wq);
4331
4332 mlx5e_destroy_q_counter(priv);
4333 profile->cleanup_rx(priv);
4334 mlx5e_close_drop_rq(&priv->drop_rq);
4335 profile->cleanup_tx(priv);
4336 cancel_delayed_work_sync(&priv->update_stats_work);
4337 }
4338
4339 /* mlx5e_attach and mlx5e_detach scope should be only creating/destroying
4340 * hardware contexts and to connect it to the current netdev.
4341 */
4342 static int mlx5e_attach(struct mlx5_core_dev *mdev, void *vpriv)
4343 {
4344 struct mlx5e_priv *priv = vpriv;
4345 struct net_device *netdev = priv->netdev;
4346 int err;
4347
4348 if (netif_device_present(netdev))
4349 return 0;
4350
4351 err = mlx5e_create_mdev_resources(mdev);
4352 if (err)
4353 return err;
4354
4355 err = mlx5e_attach_netdev(mdev, netdev);
4356 if (err) {
4357 mlx5e_destroy_mdev_resources(mdev);
4358 return err;
4359 }
4360
4361 mlx5e_register_vport_rep(mdev);
4362 return 0;
4363 }
4364
4365 static void mlx5e_detach(struct mlx5_core_dev *mdev, void *vpriv)
4366 {
4367 struct mlx5e_priv *priv = vpriv;
4368 struct net_device *netdev = priv->netdev;
4369
4370 if (!netif_device_present(netdev))
4371 return;
4372
4373 mlx5e_unregister_vport_rep(mdev);
4374 mlx5e_detach_netdev(mdev, netdev);
4375 mlx5e_destroy_mdev_resources(mdev);
4376 }
4377
4378 static void *mlx5e_add(struct mlx5_core_dev *mdev)
4379 {
4380 struct mlx5_eswitch *esw = mdev->priv.eswitch;
4381 int total_vfs = MLX5_TOTAL_VPORTS(mdev);
4382 void *ppriv = NULL;
4383 void *priv;
4384 int vport;
4385 int err;
4386 struct net_device *netdev;
4387
4388 err = mlx5e_check_required_hca_cap(mdev);
4389 if (err)
4390 return NULL;
4391
4392 if (MLX5_CAP_GEN(mdev, vport_group_manager))
4393 ppriv = &esw->offloads.vport_reps[0];
4394
4395 netdev = mlx5e_create_netdev(mdev, &mlx5e_nic_profile, ppriv);
4396 if (!netdev) {
4397 mlx5_core_err(mdev, "mlx5e_create_netdev failed\n");
4398 goto err_unregister_reps;
4399 }
4400
4401 priv = netdev_priv(netdev);
4402
4403 err = mlx5e_attach(mdev, priv);
4404 if (err) {
4405 mlx5_core_err(mdev, "mlx5e_attach failed, %d\n", err);
4406 goto err_destroy_netdev;
4407 }
4408
4409 err = register_netdev(netdev);
4410 if (err) {
4411 mlx5_core_err(mdev, "register_netdev failed, %d\n", err);
4412 goto err_detach;
4413 }
4414
4415 return priv;
4416
4417 err_detach:
4418 mlx5e_detach(mdev, priv);
4419
4420 err_destroy_netdev:
4421 mlx5e_destroy_netdev(mdev, priv);
4422
4423 err_unregister_reps:
4424 for (vport = 1; vport < total_vfs; vport++)
4425 mlx5_eswitch_unregister_vport_rep(esw, vport);
4426
4427 return NULL;
4428 }
4429
4430 void mlx5e_destroy_netdev(struct mlx5_core_dev *mdev, struct mlx5e_priv *priv)
4431 {
4432 const struct mlx5e_profile *profile = priv->profile;
4433 struct net_device *netdev = priv->netdev;
4434
4435 destroy_workqueue(priv->wq);
4436 if (profile->cleanup)
4437 profile->cleanup(priv);
4438 free_netdev(netdev);
4439 }
4440
4441 static void mlx5e_remove(struct mlx5_core_dev *mdev, void *vpriv)
4442 {
4443 struct mlx5e_priv *priv = vpriv;
4444
4445 unregister_netdev(priv->netdev);
4446 mlx5e_detach(mdev, vpriv);
4447 mlx5e_destroy_netdev(mdev, priv);
4448 }
4449
4450 static void *mlx5e_get_netdev(void *vpriv)
4451 {
4452 struct mlx5e_priv *priv = vpriv;
4453
4454 return priv->netdev;
4455 }
4456
4457 static struct mlx5_interface mlx5e_interface = {
4458 .add = mlx5e_add,
4459 .remove = mlx5e_remove,
4460 .attach = mlx5e_attach,
4461 .detach = mlx5e_detach,
4462 .event = mlx5e_async_event,
4463 .protocol = MLX5_INTERFACE_PROTOCOL_ETH,
4464 .get_dev = mlx5e_get_netdev,
4465 };
4466
4467 void mlx5e_init(void)
4468 {
4469 mlx5e_build_ptys2ethtool_map();
4470 mlx5_register_interface(&mlx5e_interface);
4471 }
4472
4473 void mlx5e_cleanup(void)
4474 {
4475 mlx5_unregister_interface(&mlx5e_interface);
4476 }