2 * Copyright (c) 2015-2016, Mellanox Technologies. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
33 #include <net/tc_act/tc_gact.h>
34 #include <net/pkt_cls.h>
35 #include <linux/mlx5/fs.h>
36 #include <net/vxlan.h>
37 #include <linux/bpf.h>
43 struct mlx5e_rq_param {
44 u32 rqc[MLX5_ST_SZ_DW(rqc)];
45 struct mlx5_wq_param wq;
49 struct mlx5e_sq_param {
50 u32 sqc[MLX5_ST_SZ_DW(sqc)];
51 struct mlx5_wq_param wq;
54 enum mlx5e_sq_type type;
57 struct mlx5e_cq_param {
58 u32 cqc[MLX5_ST_SZ_DW(cqc)];
59 struct mlx5_wq_param wq;
64 struct mlx5e_channel_param {
65 struct mlx5e_rq_param rq;
66 struct mlx5e_sq_param sq;
67 struct mlx5e_sq_param xdp_sq;
68 struct mlx5e_sq_param icosq;
69 struct mlx5e_cq_param rx_cq;
70 struct mlx5e_cq_param tx_cq;
71 struct mlx5e_cq_param icosq_cq;
74 static bool mlx5e_check_fragmented_striding_rq_cap(struct mlx5_core_dev *mdev)
76 return MLX5_CAP_GEN(mdev, striding_rq) &&
77 MLX5_CAP_GEN(mdev, umr_ptr_rlky) &&
78 MLX5_CAP_ETH(mdev, reg_umr_sq);
81 static void mlx5e_set_rq_type_params(struct mlx5e_priv *priv, u8 rq_type)
83 priv->params.rq_wq_type = rq_type;
84 switch (priv->params.rq_wq_type) {
85 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
86 priv->params.log_rq_size = MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE_MPW;
87 priv->params.mpwqe_log_stride_sz =
88 MLX5E_GET_PFLAG(priv, MLX5E_PFLAG_RX_CQE_COMPRESS) ?
89 MLX5_MPWRQ_LOG_STRIDE_SIZE_CQE_COMPRESS :
90 MLX5_MPWRQ_LOG_STRIDE_SIZE;
91 priv->params.mpwqe_log_num_strides = MLX5_MPWRQ_LOG_WQE_SZ -
92 priv->params.mpwqe_log_stride_sz;
94 default: /* MLX5_WQ_TYPE_LINKED_LIST */
95 priv->params.log_rq_size = MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE;
97 priv->params.min_rx_wqes = mlx5_min_rx_wqes(priv->params.rq_wq_type,
98 BIT(priv->params.log_rq_size));
100 mlx5_core_info(priv->mdev,
101 "MLX5E: StrdRq(%d) RqSz(%ld) StrdSz(%ld) RxCqeCmprss(%d)\n",
102 priv->params.rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ,
103 BIT(priv->params.log_rq_size),
104 BIT(priv->params.mpwqe_log_stride_sz),
105 MLX5E_GET_PFLAG(priv, MLX5E_PFLAG_RX_CQE_COMPRESS));
108 static void mlx5e_set_rq_priv_params(struct mlx5e_priv *priv)
110 u8 rq_type = mlx5e_check_fragmented_striding_rq_cap(priv->mdev) &&
112 MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ :
113 MLX5_WQ_TYPE_LINKED_LIST;
114 mlx5e_set_rq_type_params(priv, rq_type);
117 static void mlx5e_update_carrier(struct mlx5e_priv *priv)
119 struct mlx5_core_dev *mdev = priv->mdev;
122 port_state = mlx5_query_vport_state(mdev,
123 MLX5_QUERY_VPORT_STATE_IN_OP_MOD_VNIC_VPORT, 0);
125 if (port_state == VPORT_STATE_UP) {
126 netdev_info(priv->netdev, "Link up\n");
127 netif_carrier_on(priv->netdev);
129 netdev_info(priv->netdev, "Link down\n");
130 netif_carrier_off(priv->netdev);
134 static void mlx5e_update_carrier_work(struct work_struct *work)
136 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
137 update_carrier_work);
139 mutex_lock(&priv->state_lock);
140 if (test_bit(MLX5E_STATE_OPENED, &priv->state))
141 mlx5e_update_carrier(priv);
142 mutex_unlock(&priv->state_lock);
145 static void mlx5e_tx_timeout_work(struct work_struct *work)
147 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
152 mutex_lock(&priv->state_lock);
153 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
155 mlx5e_close_locked(priv->netdev);
156 err = mlx5e_open_locked(priv->netdev);
158 netdev_err(priv->netdev, "mlx5e_open_locked failed recovering from a tx_timeout, err(%d).\n",
161 mutex_unlock(&priv->state_lock);
165 static void mlx5e_update_sw_counters(struct mlx5e_priv *priv)
167 struct mlx5e_sw_stats *s = &priv->stats.sw;
168 struct mlx5e_rq_stats *rq_stats;
169 struct mlx5e_sq_stats *sq_stats;
170 u64 tx_offload_none = 0;
173 memset(s, 0, sizeof(*s));
174 for (i = 0; i < priv->params.num_channels; i++) {
175 rq_stats = &priv->channel[i]->rq.stats;
177 s->rx_packets += rq_stats->packets;
178 s->rx_bytes += rq_stats->bytes;
179 s->rx_lro_packets += rq_stats->lro_packets;
180 s->rx_lro_bytes += rq_stats->lro_bytes;
181 s->rx_csum_none += rq_stats->csum_none;
182 s->rx_csum_complete += rq_stats->csum_complete;
183 s->rx_csum_unnecessary_inner += rq_stats->csum_unnecessary_inner;
184 s->rx_xdp_drop += rq_stats->xdp_drop;
185 s->rx_xdp_tx += rq_stats->xdp_tx;
186 s->rx_xdp_tx_full += rq_stats->xdp_tx_full;
187 s->rx_wqe_err += rq_stats->wqe_err;
188 s->rx_mpwqe_filler += rq_stats->mpwqe_filler;
189 s->rx_buff_alloc_err += rq_stats->buff_alloc_err;
190 s->rx_cqe_compress_blks += rq_stats->cqe_compress_blks;
191 s->rx_cqe_compress_pkts += rq_stats->cqe_compress_pkts;
192 s->rx_cache_reuse += rq_stats->cache_reuse;
193 s->rx_cache_full += rq_stats->cache_full;
194 s->rx_cache_empty += rq_stats->cache_empty;
195 s->rx_cache_busy += rq_stats->cache_busy;
197 for (j = 0; j < priv->params.num_tc; j++) {
198 sq_stats = &priv->channel[i]->sq[j].stats;
200 s->tx_packets += sq_stats->packets;
201 s->tx_bytes += sq_stats->bytes;
202 s->tx_tso_packets += sq_stats->tso_packets;
203 s->tx_tso_bytes += sq_stats->tso_bytes;
204 s->tx_tso_inner_packets += sq_stats->tso_inner_packets;
205 s->tx_tso_inner_bytes += sq_stats->tso_inner_bytes;
206 s->tx_queue_stopped += sq_stats->stopped;
207 s->tx_queue_wake += sq_stats->wake;
208 s->tx_queue_dropped += sq_stats->dropped;
209 s->tx_xmit_more += sq_stats->xmit_more;
210 s->tx_csum_partial_inner += sq_stats->csum_partial_inner;
211 tx_offload_none += sq_stats->csum_none;
215 /* Update calculated offload counters */
216 s->tx_csum_partial = s->tx_packets - tx_offload_none - s->tx_csum_partial_inner;
217 s->rx_csum_unnecessary = s->rx_packets - s->rx_csum_none - s->rx_csum_complete;
219 s->link_down_events_phy = MLX5_GET(ppcnt_reg,
220 priv->stats.pport.phy_counters,
221 counter_set.phys_layer_cntrs.link_down_events);
224 static void mlx5e_update_vport_counters(struct mlx5e_priv *priv)
226 int outlen = MLX5_ST_SZ_BYTES(query_vport_counter_out);
227 u32 *out = (u32 *)priv->stats.vport.query_vport_out;
228 u32 in[MLX5_ST_SZ_DW(query_vport_counter_in)] = {0};
229 struct mlx5_core_dev *mdev = priv->mdev;
231 MLX5_SET(query_vport_counter_in, in, opcode,
232 MLX5_CMD_OP_QUERY_VPORT_COUNTER);
233 MLX5_SET(query_vport_counter_in, in, op_mod, 0);
234 MLX5_SET(query_vport_counter_in, in, other_vport, 0);
236 memset(out, 0, outlen);
237 mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen);
240 static void mlx5e_update_pport_counters(struct mlx5e_priv *priv)
242 struct mlx5e_pport_stats *pstats = &priv->stats.pport;
243 struct mlx5_core_dev *mdev = priv->mdev;
244 int sz = MLX5_ST_SZ_BYTES(ppcnt_reg);
249 in = mlx5_vzalloc(sz);
253 MLX5_SET(ppcnt_reg, in, local_port, 1);
255 out = pstats->IEEE_802_3_counters;
256 MLX5_SET(ppcnt_reg, in, grp, MLX5_IEEE_802_3_COUNTERS_GROUP);
257 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
259 out = pstats->RFC_2863_counters;
260 MLX5_SET(ppcnt_reg, in, grp, MLX5_RFC_2863_COUNTERS_GROUP);
261 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
263 out = pstats->RFC_2819_counters;
264 MLX5_SET(ppcnt_reg, in, grp, MLX5_RFC_2819_COUNTERS_GROUP);
265 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
267 out = pstats->phy_counters;
268 MLX5_SET(ppcnt_reg, in, grp, MLX5_PHYSICAL_LAYER_COUNTERS_GROUP);
269 mlx5_core_access_reg(mdev, in, sz, out, sz, MLX5_REG_PPCNT, 0, 0);
271 MLX5_SET(ppcnt_reg, in, grp, MLX5_PER_PRIORITY_COUNTERS_GROUP);
272 for (prio = 0; prio < NUM_PPORT_PRIO; prio++) {
273 out = pstats->per_prio_counters[prio];
274 MLX5_SET(ppcnt_reg, in, prio_tc, prio);
275 mlx5_core_access_reg(mdev, in, sz, out, sz,
276 MLX5_REG_PPCNT, 0, 0);
283 static void mlx5e_update_q_counter(struct mlx5e_priv *priv)
285 struct mlx5e_qcounter_stats *qcnt = &priv->stats.qcnt;
287 if (!priv->q_counter)
290 mlx5_core_query_out_of_buffer(priv->mdev, priv->q_counter,
291 &qcnt->rx_out_of_buffer);
294 void mlx5e_update_stats(struct mlx5e_priv *priv)
296 mlx5e_update_q_counter(priv);
297 mlx5e_update_vport_counters(priv);
298 mlx5e_update_pport_counters(priv);
299 mlx5e_update_sw_counters(priv);
302 void mlx5e_update_stats_work(struct work_struct *work)
304 struct delayed_work *dwork = to_delayed_work(work);
305 struct mlx5e_priv *priv = container_of(dwork, struct mlx5e_priv,
307 mutex_lock(&priv->state_lock);
308 if (test_bit(MLX5E_STATE_OPENED, &priv->state)) {
309 priv->profile->update_stats(priv);
310 queue_delayed_work(priv->wq, dwork,
311 msecs_to_jiffies(MLX5E_UPDATE_STATS_INTERVAL));
313 mutex_unlock(&priv->state_lock);
316 static void mlx5e_async_event(struct mlx5_core_dev *mdev, void *vpriv,
317 enum mlx5_dev_event event, unsigned long param)
319 struct mlx5e_priv *priv = vpriv;
321 if (!test_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLED, &priv->state))
325 case MLX5_DEV_EVENT_PORT_UP:
326 case MLX5_DEV_EVENT_PORT_DOWN:
327 queue_work(priv->wq, &priv->update_carrier_work);
335 static void mlx5e_enable_async_events(struct mlx5e_priv *priv)
337 set_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLED, &priv->state);
340 static void mlx5e_disable_async_events(struct mlx5e_priv *priv)
342 clear_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLED, &priv->state);
343 synchronize_irq(mlx5_get_msix_vec(priv->mdev, MLX5_EQ_VEC_ASYNC));
346 #define MLX5E_HW2SW_MTU(hwmtu) (hwmtu - (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN))
347 #define MLX5E_SW2HW_MTU(swmtu) (swmtu + (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN))
349 static inline int mlx5e_get_wqe_mtt_sz(void)
351 /* UMR copies MTTs in units of MLX5_UMR_MTT_ALIGNMENT bytes.
352 * To avoid copying garbage after the mtt array, we allocate
355 return ALIGN(MLX5_MPWRQ_PAGES_PER_WQE * sizeof(__be64),
356 MLX5_UMR_MTT_ALIGNMENT);
359 static inline void mlx5e_build_umr_wqe(struct mlx5e_rq *rq, struct mlx5e_sq *sq,
360 struct mlx5e_umr_wqe *wqe, u16 ix)
362 struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl;
363 struct mlx5_wqe_umr_ctrl_seg *ucseg = &wqe->uctrl;
364 struct mlx5_wqe_data_seg *dseg = &wqe->data;
365 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[ix];
366 u8 ds_cnt = DIV_ROUND_UP(sizeof(*wqe), MLX5_SEND_WQE_DS);
367 u32 umr_wqe_mtt_offset = mlx5e_get_wqe_mtt_offset(rq, ix);
369 cseg->qpn_ds = cpu_to_be32((sq->sqn << MLX5_WQE_CTRL_QPN_SHIFT) |
371 cseg->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
372 cseg->imm = rq->mkey_be;
374 ucseg->flags = MLX5_UMR_TRANSLATION_OFFSET_EN;
375 ucseg->klm_octowords =
376 cpu_to_be16(MLX5_MTT_OCTW(MLX5_MPWRQ_PAGES_PER_WQE));
377 ucseg->bsf_octowords =
378 cpu_to_be16(MLX5_MTT_OCTW(umr_wqe_mtt_offset));
379 ucseg->mkey_mask = cpu_to_be64(MLX5_MKEY_MASK_FREE);
381 dseg->lkey = sq->mkey_be;
382 dseg->addr = cpu_to_be64(wi->umr.mtt_addr);
385 static int mlx5e_rq_alloc_mpwqe_info(struct mlx5e_rq *rq,
386 struct mlx5e_channel *c)
388 int wq_sz = mlx5_wq_ll_get_size(&rq->wq);
389 int mtt_sz = mlx5e_get_wqe_mtt_sz();
390 int mtt_alloc = mtt_sz + MLX5_UMR_ALIGN - 1;
393 rq->mpwqe.info = kzalloc_node(wq_sz * sizeof(*rq->mpwqe.info),
394 GFP_KERNEL, cpu_to_node(c->cpu));
398 /* We allocate more than mtt_sz as we will align the pointer */
399 rq->mpwqe.mtt_no_align = kzalloc_node(mtt_alloc * wq_sz, GFP_KERNEL,
400 cpu_to_node(c->cpu));
401 if (unlikely(!rq->mpwqe.mtt_no_align))
402 goto err_free_wqe_info;
404 for (i = 0; i < wq_sz; i++) {
405 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[i];
407 wi->umr.mtt = PTR_ALIGN(rq->mpwqe.mtt_no_align + i * mtt_alloc,
409 wi->umr.mtt_addr = dma_map_single(c->pdev, wi->umr.mtt, mtt_sz,
411 if (unlikely(dma_mapping_error(c->pdev, wi->umr.mtt_addr)))
414 mlx5e_build_umr_wqe(rq, &c->icosq, &wi->umr.wqe, i);
421 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[i];
423 dma_unmap_single(c->pdev, wi->umr.mtt_addr, mtt_sz,
426 kfree(rq->mpwqe.mtt_no_align);
428 kfree(rq->mpwqe.info);
434 static void mlx5e_rq_free_mpwqe_info(struct mlx5e_rq *rq)
436 int wq_sz = mlx5_wq_ll_get_size(&rq->wq);
437 int mtt_sz = mlx5e_get_wqe_mtt_sz();
440 for (i = 0; i < wq_sz; i++) {
441 struct mlx5e_mpw_info *wi = &rq->mpwqe.info[i];
443 dma_unmap_single(rq->pdev, wi->umr.mtt_addr, mtt_sz,
446 kfree(rq->mpwqe.mtt_no_align);
447 kfree(rq->mpwqe.info);
450 static int mlx5e_create_umr_mkey(struct mlx5e_priv *priv,
451 u64 npages, u8 page_shift,
452 struct mlx5_core_mkey *umr_mkey)
454 struct mlx5_core_dev *mdev = priv->mdev;
455 int inlen = MLX5_ST_SZ_BYTES(create_mkey_in);
460 if (!MLX5E_VALID_NUM_MTTS(npages))
463 in = mlx5_vzalloc(inlen);
467 mkc = MLX5_ADDR_OF(create_mkey_in, in, memory_key_mkey_entry);
469 MLX5_SET(mkc, mkc, free, 1);
470 MLX5_SET(mkc, mkc, umr_en, 1);
471 MLX5_SET(mkc, mkc, lw, 1);
472 MLX5_SET(mkc, mkc, lr, 1);
473 MLX5_SET(mkc, mkc, access_mode, MLX5_MKC_ACCESS_MODE_MTT);
475 MLX5_SET(mkc, mkc, qpn, 0xffffff);
476 MLX5_SET(mkc, mkc, pd, mdev->mlx5e_res.pdn);
477 MLX5_SET64(mkc, mkc, len, npages << page_shift);
478 MLX5_SET(mkc, mkc, translations_octword_size,
479 MLX5_MTT_OCTW(npages));
480 MLX5_SET(mkc, mkc, log_page_size, page_shift);
482 err = mlx5_core_create_mkey(mdev, umr_mkey, in, inlen);
488 static int mlx5e_create_rq_umr_mkey(struct mlx5e_rq *rq)
490 struct mlx5e_priv *priv = rq->priv;
491 u64 num_mtts = MLX5E_REQUIRED_MTTS(BIT(priv->params.log_rq_size));
493 return mlx5e_create_umr_mkey(priv, num_mtts, PAGE_SHIFT, &rq->umr_mkey);
496 static int mlx5e_create_rq(struct mlx5e_channel *c,
497 struct mlx5e_rq_param *param,
500 struct mlx5e_priv *priv = c->priv;
501 struct mlx5_core_dev *mdev = priv->mdev;
502 void *rqc = param->rqc;
503 void *rqc_wq = MLX5_ADDR_OF(rqc, rqc, wq);
511 param->wq.db_numa_node = cpu_to_node(c->cpu);
513 err = mlx5_wq_ll_create(mdev, ¶m->wq, rqc_wq, &rq->wq,
518 rq->wq.db = &rq->wq.db[MLX5_RCV_DBR];
520 wq_sz = mlx5_wq_ll_get_size(&rq->wq);
522 rq->wq_type = priv->params.rq_wq_type;
524 rq->netdev = c->netdev;
525 rq->tstamp = &priv->tstamp;
530 rq->xdp_prog = priv->xdp_prog ? bpf_prog_inc(priv->xdp_prog) : NULL;
531 if (IS_ERR(rq->xdp_prog)) {
532 err = PTR_ERR(rq->xdp_prog);
534 goto err_rq_wq_destroy;
537 rq->buff.map_dir = DMA_FROM_DEVICE;
539 rq->buff.map_dir = DMA_BIDIRECTIONAL;
541 switch (priv->params.rq_wq_type) {
542 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
543 if (mlx5e_is_vf_vport_rep(priv)) {
545 goto err_rq_wq_destroy;
548 rq->handle_rx_cqe = mlx5e_handle_rx_cqe_mpwrq;
549 rq->alloc_wqe = mlx5e_alloc_rx_mpwqe;
550 rq->dealloc_wqe = mlx5e_dealloc_rx_mpwqe;
552 rq->mpwqe_stride_sz = BIT(priv->params.mpwqe_log_stride_sz);
553 rq->mpwqe_num_strides = BIT(priv->params.mpwqe_log_num_strides);
555 rq->buff.wqe_sz = rq->mpwqe_stride_sz * rq->mpwqe_num_strides;
556 byte_count = rq->buff.wqe_sz;
558 err = mlx5e_create_rq_umr_mkey(rq);
560 goto err_rq_wq_destroy;
561 rq->mkey_be = cpu_to_be32(rq->umr_mkey.key);
563 err = mlx5e_rq_alloc_mpwqe_info(rq, c);
565 goto err_destroy_umr_mkey;
567 default: /* MLX5_WQ_TYPE_LINKED_LIST */
568 rq->dma_info = kzalloc_node(wq_sz * sizeof(*rq->dma_info),
569 GFP_KERNEL, cpu_to_node(c->cpu));
572 goto err_rq_wq_destroy;
575 if (mlx5e_is_vf_vport_rep(priv))
576 rq->handle_rx_cqe = mlx5e_handle_rx_cqe_rep;
578 rq->handle_rx_cqe = mlx5e_handle_rx_cqe;
580 rq->alloc_wqe = mlx5e_alloc_rx_wqe;
581 rq->dealloc_wqe = mlx5e_dealloc_rx_wqe;
583 rq->buff.wqe_sz = (priv->params.lro_en) ?
584 priv->params.lro_wqe_sz :
585 MLX5E_SW2HW_MTU(priv->netdev->mtu);
586 byte_count = rq->buff.wqe_sz;
588 /* calc the required page order */
589 frag_sz = MLX5_RX_HEADROOM +
590 byte_count /* packet data */ +
591 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
592 frag_sz = SKB_DATA_ALIGN(frag_sz);
594 npages = DIV_ROUND_UP(frag_sz, PAGE_SIZE);
595 rq->buff.page_order = order_base_2(npages);
597 byte_count |= MLX5_HW_START_PADDING;
598 rq->mkey_be = c->mkey_be;
601 for (i = 0; i < wq_sz; i++) {
602 struct mlx5e_rx_wqe *wqe = mlx5_wq_ll_get_wqe(&rq->wq, i);
604 wqe->data.byte_count = cpu_to_be32(byte_count);
605 wqe->data.lkey = rq->mkey_be;
608 INIT_WORK(&rq->am.work, mlx5e_rx_am_work);
609 rq->am.mode = priv->params.rx_cq_period_mode;
611 rq->page_cache.head = 0;
612 rq->page_cache.tail = 0;
616 err_destroy_umr_mkey:
617 mlx5_core_destroy_mkey(mdev, &rq->umr_mkey);
621 bpf_prog_put(rq->xdp_prog);
622 mlx5_wq_destroy(&rq->wq_ctrl);
627 static void mlx5e_destroy_rq(struct mlx5e_rq *rq)
632 bpf_prog_put(rq->xdp_prog);
634 switch (rq->wq_type) {
635 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
636 mlx5e_rq_free_mpwqe_info(rq);
637 mlx5_core_destroy_mkey(rq->priv->mdev, &rq->umr_mkey);
639 default: /* MLX5_WQ_TYPE_LINKED_LIST */
643 for (i = rq->page_cache.head; i != rq->page_cache.tail;
644 i = (i + 1) & (MLX5E_CACHE_SIZE - 1)) {
645 struct mlx5e_dma_info *dma_info = &rq->page_cache.page_cache[i];
647 mlx5e_page_release(rq, dma_info, false);
649 mlx5_wq_destroy(&rq->wq_ctrl);
652 static int mlx5e_enable_rq(struct mlx5e_rq *rq, struct mlx5e_rq_param *param)
654 struct mlx5e_priv *priv = rq->priv;
655 struct mlx5_core_dev *mdev = priv->mdev;
663 inlen = MLX5_ST_SZ_BYTES(create_rq_in) +
664 sizeof(u64) * rq->wq_ctrl.buf.npages;
665 in = mlx5_vzalloc(inlen);
669 rqc = MLX5_ADDR_OF(create_rq_in, in, ctx);
670 wq = MLX5_ADDR_OF(rqc, rqc, wq);
672 memcpy(rqc, param->rqc, sizeof(param->rqc));
674 MLX5_SET(rqc, rqc, cqn, rq->cq.mcq.cqn);
675 MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RST);
676 MLX5_SET(rqc, rqc, vsd, priv->params.vlan_strip_disable);
677 MLX5_SET(wq, wq, log_wq_pg_sz, rq->wq_ctrl.buf.page_shift -
678 MLX5_ADAPTER_PAGE_SHIFT);
679 MLX5_SET64(wq, wq, dbr_addr, rq->wq_ctrl.db.dma);
681 mlx5_fill_page_array(&rq->wq_ctrl.buf,
682 (__be64 *)MLX5_ADDR_OF(wq, wq, pas));
684 err = mlx5_core_create_rq(mdev, in, inlen, &rq->rqn);
691 static int mlx5e_modify_rq_state(struct mlx5e_rq *rq, int curr_state,
694 struct mlx5e_channel *c = rq->channel;
695 struct mlx5e_priv *priv = c->priv;
696 struct mlx5_core_dev *mdev = priv->mdev;
703 inlen = MLX5_ST_SZ_BYTES(modify_rq_in);
704 in = mlx5_vzalloc(inlen);
708 rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx);
710 MLX5_SET(modify_rq_in, in, rq_state, curr_state);
711 MLX5_SET(rqc, rqc, state, next_state);
713 err = mlx5_core_modify_rq(mdev, rq->rqn, in, inlen);
720 static int mlx5e_modify_rq_vsd(struct mlx5e_rq *rq, bool vsd)
722 struct mlx5e_channel *c = rq->channel;
723 struct mlx5e_priv *priv = c->priv;
724 struct mlx5_core_dev *mdev = priv->mdev;
731 inlen = MLX5_ST_SZ_BYTES(modify_rq_in);
732 in = mlx5_vzalloc(inlen);
736 rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx);
738 MLX5_SET(modify_rq_in, in, rq_state, MLX5_RQC_STATE_RDY);
739 MLX5_SET64(modify_rq_in, in, modify_bitmask,
740 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_VSD);
741 MLX5_SET(rqc, rqc, vsd, vsd);
742 MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RDY);
744 err = mlx5_core_modify_rq(mdev, rq->rqn, in, inlen);
751 static void mlx5e_disable_rq(struct mlx5e_rq *rq)
753 mlx5_core_destroy_rq(rq->priv->mdev, rq->rqn);
756 static int mlx5e_wait_for_min_rx_wqes(struct mlx5e_rq *rq)
758 unsigned long exp_time = jiffies + msecs_to_jiffies(20000);
759 struct mlx5e_channel *c = rq->channel;
760 struct mlx5e_priv *priv = c->priv;
761 struct mlx5_wq_ll *wq = &rq->wq;
763 while (time_before(jiffies, exp_time)) {
764 if (wq->cur_sz >= priv->params.min_rx_wqes)
773 static void mlx5e_free_rx_descs(struct mlx5e_rq *rq)
775 struct mlx5_wq_ll *wq = &rq->wq;
776 struct mlx5e_rx_wqe *wqe;
780 /* UMR WQE (if in progress) is always at wq->head */
781 if (test_bit(MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS, &rq->state))
782 mlx5e_free_rx_mpwqe(rq, &rq->mpwqe.info[wq->head]);
784 while (!mlx5_wq_ll_is_empty(wq)) {
785 wqe_ix_be = *wq->tail_next;
786 wqe_ix = be16_to_cpu(wqe_ix_be);
787 wqe = mlx5_wq_ll_get_wqe(&rq->wq, wqe_ix);
788 rq->dealloc_wqe(rq, wqe_ix);
789 mlx5_wq_ll_pop(&rq->wq, wqe_ix_be,
790 &wqe->next.next_wqe_index);
794 static int mlx5e_open_rq(struct mlx5e_channel *c,
795 struct mlx5e_rq_param *param,
798 struct mlx5e_sq *sq = &c->icosq;
799 u16 pi = sq->pc & sq->wq.sz_m1;
802 err = mlx5e_create_rq(c, param, rq);
806 err = mlx5e_enable_rq(rq, param);
810 set_bit(MLX5E_RQ_STATE_ENABLED, &rq->state);
811 err = mlx5e_modify_rq_state(rq, MLX5_RQC_STATE_RST, MLX5_RQC_STATE_RDY);
815 if (param->am_enabled)
816 set_bit(MLX5E_RQ_STATE_AM, &c->rq.state);
818 sq->db.ico_wqe[pi].opcode = MLX5_OPCODE_NOP;
819 sq->db.ico_wqe[pi].num_wqebbs = 1;
820 mlx5e_send_nop(sq, true); /* trigger mlx5e_post_rx_wqes() */
825 clear_bit(MLX5E_RQ_STATE_ENABLED, &rq->state);
826 mlx5e_disable_rq(rq);
828 mlx5e_destroy_rq(rq);
833 static void mlx5e_close_rq(struct mlx5e_rq *rq)
835 clear_bit(MLX5E_RQ_STATE_ENABLED, &rq->state);
836 napi_synchronize(&rq->channel->napi); /* prevent mlx5e_post_rx_wqes */
837 cancel_work_sync(&rq->am.work);
839 mlx5e_disable_rq(rq);
840 mlx5e_free_rx_descs(rq);
841 mlx5e_destroy_rq(rq);
844 static void mlx5e_free_sq_xdp_db(struct mlx5e_sq *sq)
846 kfree(sq->db.xdp.di);
847 kfree(sq->db.xdp.wqe_info);
850 static int mlx5e_alloc_sq_xdp_db(struct mlx5e_sq *sq, int numa)
852 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
854 sq->db.xdp.di = kzalloc_node(sizeof(*sq->db.xdp.di) * wq_sz,
856 sq->db.xdp.wqe_info = kzalloc_node(sizeof(*sq->db.xdp.wqe_info) * wq_sz,
858 if (!sq->db.xdp.di || !sq->db.xdp.wqe_info) {
859 mlx5e_free_sq_xdp_db(sq);
866 static void mlx5e_free_sq_ico_db(struct mlx5e_sq *sq)
868 kfree(sq->db.ico_wqe);
871 static int mlx5e_alloc_sq_ico_db(struct mlx5e_sq *sq, int numa)
873 u8 wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
875 sq->db.ico_wqe = kzalloc_node(sizeof(*sq->db.ico_wqe) * wq_sz,
883 static void mlx5e_free_sq_txq_db(struct mlx5e_sq *sq)
885 kfree(sq->db.txq.wqe_info);
886 kfree(sq->db.txq.dma_fifo);
887 kfree(sq->db.txq.skb);
890 static int mlx5e_alloc_sq_txq_db(struct mlx5e_sq *sq, int numa)
892 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
893 int df_sz = wq_sz * MLX5_SEND_WQEBB_NUM_DS;
895 sq->db.txq.skb = kzalloc_node(wq_sz * sizeof(*sq->db.txq.skb),
897 sq->db.txq.dma_fifo = kzalloc_node(df_sz * sizeof(*sq->db.txq.dma_fifo),
899 sq->db.txq.wqe_info = kzalloc_node(wq_sz * sizeof(*sq->db.txq.wqe_info),
901 if (!sq->db.txq.skb || !sq->db.txq.dma_fifo || !sq->db.txq.wqe_info) {
902 mlx5e_free_sq_txq_db(sq);
906 sq->dma_fifo_mask = df_sz - 1;
911 static void mlx5e_free_sq_db(struct mlx5e_sq *sq)
915 mlx5e_free_sq_txq_db(sq);
918 mlx5e_free_sq_ico_db(sq);
921 mlx5e_free_sq_xdp_db(sq);
926 static int mlx5e_alloc_sq_db(struct mlx5e_sq *sq, int numa)
930 return mlx5e_alloc_sq_txq_db(sq, numa);
932 return mlx5e_alloc_sq_ico_db(sq, numa);
934 return mlx5e_alloc_sq_xdp_db(sq, numa);
940 static int mlx5e_sq_get_max_wqebbs(u8 sq_type)
944 return MLX5E_ICOSQ_MAX_WQEBBS;
946 return MLX5E_XDP_TX_WQEBBS;
948 return MLX5_SEND_WQE_MAX_WQEBBS;
951 static int mlx5e_create_sq(struct mlx5e_channel *c,
953 struct mlx5e_sq_param *param,
956 struct mlx5e_priv *priv = c->priv;
957 struct mlx5_core_dev *mdev = priv->mdev;
959 void *sqc = param->sqc;
960 void *sqc_wq = MLX5_ADDR_OF(sqc, sqc, wq);
963 sq->type = param->type;
965 sq->tstamp = &priv->tstamp;
966 sq->mkey_be = c->mkey_be;
970 err = mlx5_alloc_map_uar(mdev, &sq->uar, !!MLX5_CAP_GEN(mdev, bf));
974 param->wq.db_numa_node = cpu_to_node(c->cpu);
976 err = mlx5_wq_cyc_create(mdev, ¶m->wq, sqc_wq, &sq->wq,
979 goto err_unmap_free_uar;
981 sq->wq.db = &sq->wq.db[MLX5_SND_DBR];
982 if (sq->uar.bf_map) {
983 set_bit(MLX5E_SQ_STATE_BF_ENABLE, &sq->state);
984 sq->uar_map = sq->uar.bf_map;
986 sq->uar_map = sq->uar.map;
988 sq->bf_buf_size = (1 << MLX5_CAP_GEN(mdev, log_bf_reg_size)) / 2;
989 sq->max_inline = param->max_inline;
990 sq->min_inline_mode =
991 MLX5_CAP_ETH(mdev, wqe_inline_mode) == MLX5_CAP_INLINE_MODE_VPORT_CONTEXT ?
992 param->min_inline_mode : 0;
994 err = mlx5e_alloc_sq_db(sq, cpu_to_node(c->cpu));
996 goto err_sq_wq_destroy;
998 if (sq->type == MLX5E_SQ_TXQ) {
1001 txq_ix = c->ix + tc * priv->params.num_channels;
1002 sq->txq = netdev_get_tx_queue(priv->netdev, txq_ix);
1003 priv->txq_to_sq_map[txq_ix] = sq;
1006 sq->edge = (sq->wq.sz_m1 + 1) - mlx5e_sq_get_max_wqebbs(sq->type);
1007 sq->bf_budget = MLX5E_SQ_BF_BUDGET;
1012 mlx5_wq_destroy(&sq->wq_ctrl);
1015 mlx5_unmap_free_uar(mdev, &sq->uar);
1020 static void mlx5e_destroy_sq(struct mlx5e_sq *sq)
1022 struct mlx5e_channel *c = sq->channel;
1023 struct mlx5e_priv *priv = c->priv;
1025 mlx5e_free_sq_db(sq);
1026 mlx5_wq_destroy(&sq->wq_ctrl);
1027 mlx5_unmap_free_uar(priv->mdev, &sq->uar);
1030 static int mlx5e_enable_sq(struct mlx5e_sq *sq, struct mlx5e_sq_param *param)
1032 struct mlx5e_channel *c = sq->channel;
1033 struct mlx5e_priv *priv = c->priv;
1034 struct mlx5_core_dev *mdev = priv->mdev;
1042 inlen = MLX5_ST_SZ_BYTES(create_sq_in) +
1043 sizeof(u64) * sq->wq_ctrl.buf.npages;
1044 in = mlx5_vzalloc(inlen);
1048 sqc = MLX5_ADDR_OF(create_sq_in, in, ctx);
1049 wq = MLX5_ADDR_OF(sqc, sqc, wq);
1051 memcpy(sqc, param->sqc, sizeof(param->sqc));
1053 MLX5_SET(sqc, sqc, tis_num_0, param->type == MLX5E_SQ_ICO ?
1054 0 : priv->tisn[sq->tc]);
1055 MLX5_SET(sqc, sqc, cqn, sq->cq.mcq.cqn);
1056 MLX5_SET(sqc, sqc, min_wqe_inline_mode, sq->min_inline_mode);
1057 MLX5_SET(sqc, sqc, state, MLX5_SQC_STATE_RST);
1058 MLX5_SET(sqc, sqc, tis_lst_sz, param->type == MLX5E_SQ_ICO ? 0 : 1);
1060 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_CYCLIC);
1061 MLX5_SET(wq, wq, uar_page, sq->uar.index);
1062 MLX5_SET(wq, wq, log_wq_pg_sz, sq->wq_ctrl.buf.page_shift -
1063 MLX5_ADAPTER_PAGE_SHIFT);
1064 MLX5_SET64(wq, wq, dbr_addr, sq->wq_ctrl.db.dma);
1066 mlx5_fill_page_array(&sq->wq_ctrl.buf,
1067 (__be64 *)MLX5_ADDR_OF(wq, wq, pas));
1069 err = mlx5_core_create_sq(mdev, in, inlen, &sq->sqn);
1076 static int mlx5e_modify_sq(struct mlx5e_sq *sq, int curr_state,
1077 int next_state, bool update_rl, int rl_index)
1079 struct mlx5e_channel *c = sq->channel;
1080 struct mlx5e_priv *priv = c->priv;
1081 struct mlx5_core_dev *mdev = priv->mdev;
1088 inlen = MLX5_ST_SZ_BYTES(modify_sq_in);
1089 in = mlx5_vzalloc(inlen);
1093 sqc = MLX5_ADDR_OF(modify_sq_in, in, ctx);
1095 MLX5_SET(modify_sq_in, in, sq_state, curr_state);
1096 MLX5_SET(sqc, sqc, state, next_state);
1097 if (update_rl && next_state == MLX5_SQC_STATE_RDY) {
1098 MLX5_SET64(modify_sq_in, in, modify_bitmask, 1);
1099 MLX5_SET(sqc, sqc, packet_pacing_rate_limit_index, rl_index);
1102 err = mlx5_core_modify_sq(mdev, sq->sqn, in, inlen);
1109 static void mlx5e_disable_sq(struct mlx5e_sq *sq)
1111 struct mlx5e_channel *c = sq->channel;
1112 struct mlx5e_priv *priv = c->priv;
1113 struct mlx5_core_dev *mdev = priv->mdev;
1115 mlx5_core_destroy_sq(mdev, sq->sqn);
1117 mlx5_rl_remove_rate(mdev, sq->rate_limit);
1120 static int mlx5e_open_sq(struct mlx5e_channel *c,
1122 struct mlx5e_sq_param *param,
1123 struct mlx5e_sq *sq)
1127 err = mlx5e_create_sq(c, tc, param, sq);
1131 err = mlx5e_enable_sq(sq, param);
1133 goto err_destroy_sq;
1135 set_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1136 err = mlx5e_modify_sq(sq, MLX5_SQC_STATE_RST, MLX5_SQC_STATE_RDY,
1139 goto err_disable_sq;
1142 netdev_tx_reset_queue(sq->txq);
1143 netif_tx_start_queue(sq->txq);
1149 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1150 mlx5e_disable_sq(sq);
1152 mlx5e_destroy_sq(sq);
1157 static inline void netif_tx_disable_queue(struct netdev_queue *txq)
1159 __netif_tx_lock_bh(txq);
1160 netif_tx_stop_queue(txq);
1161 __netif_tx_unlock_bh(txq);
1164 static void mlx5e_close_sq(struct mlx5e_sq *sq)
1166 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
1167 /* prevent netif_tx_wake_queue */
1168 napi_synchronize(&sq->channel->napi);
1171 netif_tx_disable_queue(sq->txq);
1173 /* last doorbell out, godspeed .. */
1174 if (mlx5e_sq_has_room_for(sq, 1)) {
1175 sq->db.txq.skb[(sq->pc & sq->wq.sz_m1)] = NULL;
1176 mlx5e_send_nop(sq, true);
1180 mlx5e_disable_sq(sq);
1181 mlx5e_free_sq_descs(sq);
1182 mlx5e_destroy_sq(sq);
1185 static int mlx5e_create_cq(struct mlx5e_channel *c,
1186 struct mlx5e_cq_param *param,
1187 struct mlx5e_cq *cq)
1189 struct mlx5e_priv *priv = c->priv;
1190 struct mlx5_core_dev *mdev = priv->mdev;
1191 struct mlx5_core_cq *mcq = &cq->mcq;
1197 param->wq.buf_numa_node = cpu_to_node(c->cpu);
1198 param->wq.db_numa_node = cpu_to_node(c->cpu);
1199 param->eq_ix = c->ix;
1201 err = mlx5_cqwq_create(mdev, ¶m->wq, param->cqc, &cq->wq,
1206 mlx5_vector2eqn(mdev, param->eq_ix, &eqn_not_used, &irqn);
1208 cq->napi = &c->napi;
1211 mcq->set_ci_db = cq->wq_ctrl.db.db;
1212 mcq->arm_db = cq->wq_ctrl.db.db + 1;
1213 *mcq->set_ci_db = 0;
1215 mcq->vector = param->eq_ix;
1216 mcq->comp = mlx5e_completion_event;
1217 mcq->event = mlx5e_cq_error_event;
1219 mcq->uar = &mdev->mlx5e_res.cq_uar;
1221 for (i = 0; i < mlx5_cqwq_get_size(&cq->wq); i++) {
1222 struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(&cq->wq, i);
1233 static void mlx5e_destroy_cq(struct mlx5e_cq *cq)
1235 mlx5_cqwq_destroy(&cq->wq_ctrl);
1238 static int mlx5e_enable_cq(struct mlx5e_cq *cq, struct mlx5e_cq_param *param)
1240 struct mlx5e_priv *priv = cq->priv;
1241 struct mlx5_core_dev *mdev = priv->mdev;
1242 struct mlx5_core_cq *mcq = &cq->mcq;
1247 unsigned int irqn_not_used;
1251 inlen = MLX5_ST_SZ_BYTES(create_cq_in) +
1252 sizeof(u64) * cq->wq_ctrl.frag_buf.npages;
1253 in = mlx5_vzalloc(inlen);
1257 cqc = MLX5_ADDR_OF(create_cq_in, in, cq_context);
1259 memcpy(cqc, param->cqc, sizeof(param->cqc));
1261 mlx5_fill_page_frag_array(&cq->wq_ctrl.frag_buf,
1262 (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas));
1264 mlx5_vector2eqn(mdev, param->eq_ix, &eqn, &irqn_not_used);
1266 MLX5_SET(cqc, cqc, cq_period_mode, param->cq_period_mode);
1267 MLX5_SET(cqc, cqc, c_eqn, eqn);
1268 MLX5_SET(cqc, cqc, uar_page, mcq->uar->index);
1269 MLX5_SET(cqc, cqc, log_page_size, cq->wq_ctrl.frag_buf.page_shift -
1270 MLX5_ADAPTER_PAGE_SHIFT);
1271 MLX5_SET64(cqc, cqc, dbr_addr, cq->wq_ctrl.db.dma);
1273 err = mlx5_core_create_cq(mdev, mcq, in, inlen);
1285 static void mlx5e_disable_cq(struct mlx5e_cq *cq)
1287 struct mlx5e_priv *priv = cq->priv;
1288 struct mlx5_core_dev *mdev = priv->mdev;
1290 mlx5_core_destroy_cq(mdev, &cq->mcq);
1293 static int mlx5e_open_cq(struct mlx5e_channel *c,
1294 struct mlx5e_cq_param *param,
1295 struct mlx5e_cq *cq,
1296 struct mlx5e_cq_moder moderation)
1299 struct mlx5e_priv *priv = c->priv;
1300 struct mlx5_core_dev *mdev = priv->mdev;
1302 err = mlx5e_create_cq(c, param, cq);
1306 err = mlx5e_enable_cq(cq, param);
1308 goto err_destroy_cq;
1310 if (MLX5_CAP_GEN(mdev, cq_moderation))
1311 mlx5_core_modify_cq_moderation(mdev, &cq->mcq,
1317 mlx5e_destroy_cq(cq);
1322 static void mlx5e_close_cq(struct mlx5e_cq *cq)
1324 mlx5e_disable_cq(cq);
1325 mlx5e_destroy_cq(cq);
1328 static int mlx5e_get_cpu(struct mlx5e_priv *priv, int ix)
1330 return cpumask_first(priv->mdev->priv.irq_info[ix].mask);
1333 static int mlx5e_open_tx_cqs(struct mlx5e_channel *c,
1334 struct mlx5e_channel_param *cparam)
1336 struct mlx5e_priv *priv = c->priv;
1340 for (tc = 0; tc < c->num_tc; tc++) {
1341 err = mlx5e_open_cq(c, &cparam->tx_cq, &c->sq[tc].cq,
1342 priv->params.tx_cq_moderation);
1344 goto err_close_tx_cqs;
1350 for (tc--; tc >= 0; tc--)
1351 mlx5e_close_cq(&c->sq[tc].cq);
1356 static void mlx5e_close_tx_cqs(struct mlx5e_channel *c)
1360 for (tc = 0; tc < c->num_tc; tc++)
1361 mlx5e_close_cq(&c->sq[tc].cq);
1364 static int mlx5e_open_sqs(struct mlx5e_channel *c,
1365 struct mlx5e_channel_param *cparam)
1370 for (tc = 0; tc < c->num_tc; tc++) {
1371 err = mlx5e_open_sq(c, tc, &cparam->sq, &c->sq[tc]);
1379 for (tc--; tc >= 0; tc--)
1380 mlx5e_close_sq(&c->sq[tc]);
1385 static void mlx5e_close_sqs(struct mlx5e_channel *c)
1389 for (tc = 0; tc < c->num_tc; tc++)
1390 mlx5e_close_sq(&c->sq[tc]);
1393 static void mlx5e_build_channeltc_to_txq_map(struct mlx5e_priv *priv, int ix)
1397 for (i = 0; i < priv->profile->max_tc; i++)
1398 priv->channeltc_to_txq_map[ix][i] =
1399 ix + i * priv->params.num_channels;
1402 static int mlx5e_set_sq_maxrate(struct net_device *dev,
1403 struct mlx5e_sq *sq, u32 rate)
1405 struct mlx5e_priv *priv = netdev_priv(dev);
1406 struct mlx5_core_dev *mdev = priv->mdev;
1410 if (rate == sq->rate_limit)
1415 /* remove current rl index to free space to next ones */
1416 mlx5_rl_remove_rate(mdev, sq->rate_limit);
1421 err = mlx5_rl_add_rate(mdev, rate, &rl_index);
1423 netdev_err(dev, "Failed configuring rate %u: %d\n",
1429 err = mlx5e_modify_sq(sq, MLX5_SQC_STATE_RDY,
1430 MLX5_SQC_STATE_RDY, true, rl_index);
1432 netdev_err(dev, "Failed configuring rate %u: %d\n",
1434 /* remove the rate from the table */
1436 mlx5_rl_remove_rate(mdev, rate);
1440 sq->rate_limit = rate;
1444 static int mlx5e_set_tx_maxrate(struct net_device *dev, int index, u32 rate)
1446 struct mlx5e_priv *priv = netdev_priv(dev);
1447 struct mlx5_core_dev *mdev = priv->mdev;
1448 struct mlx5e_sq *sq = priv->txq_to_sq_map[index];
1451 if (!mlx5_rl_is_supported(mdev)) {
1452 netdev_err(dev, "Rate limiting is not supported on this device\n");
1456 /* rate is given in Mb/sec, HW config is in Kb/sec */
1459 /* Check whether rate in valid range, 0 is always valid */
1460 if (rate && !mlx5_rl_is_in_range(mdev, rate)) {
1461 netdev_err(dev, "TX rate %u, is not in range\n", rate);
1465 mutex_lock(&priv->state_lock);
1466 if (test_bit(MLX5E_STATE_OPENED, &priv->state))
1467 err = mlx5e_set_sq_maxrate(dev, sq, rate);
1469 priv->tx_rates[index] = rate;
1470 mutex_unlock(&priv->state_lock);
1475 static int mlx5e_open_channel(struct mlx5e_priv *priv, int ix,
1476 struct mlx5e_channel_param *cparam,
1477 struct mlx5e_channel **cp)
1479 struct mlx5e_cq_moder icosq_cq_moder = {0, 0};
1480 struct net_device *netdev = priv->netdev;
1481 struct mlx5e_cq_moder rx_cq_profile;
1482 int cpu = mlx5e_get_cpu(priv, ix);
1483 struct mlx5e_channel *c;
1484 struct mlx5e_sq *sq;
1488 c = kzalloc_node(sizeof(*c), GFP_KERNEL, cpu_to_node(cpu));
1495 c->pdev = &priv->mdev->pdev->dev;
1496 c->netdev = priv->netdev;
1497 c->mkey_be = cpu_to_be32(priv->mdev->mlx5e_res.mkey.key);
1498 c->num_tc = priv->params.num_tc;
1499 c->xdp = !!priv->xdp_prog;
1501 if (priv->params.rx_am_enabled)
1502 rx_cq_profile = mlx5e_am_get_def_profile(priv->params.rx_cq_period_mode);
1504 rx_cq_profile = priv->params.rx_cq_moderation;
1506 mlx5e_build_channeltc_to_txq_map(priv, ix);
1508 netif_napi_add(netdev, &c->napi, mlx5e_napi_poll, 64);
1510 err = mlx5e_open_cq(c, &cparam->icosq_cq, &c->icosq.cq, icosq_cq_moder);
1514 err = mlx5e_open_tx_cqs(c, cparam);
1516 goto err_close_icosq_cq;
1518 err = mlx5e_open_cq(c, &cparam->rx_cq, &c->rq.cq,
1521 goto err_close_tx_cqs;
1523 /* XDP SQ CQ params are same as normal TXQ sq CQ params */
1524 err = c->xdp ? mlx5e_open_cq(c, &cparam->tx_cq, &c->xdp_sq.cq,
1525 priv->params.tx_cq_moderation) : 0;
1527 goto err_close_rx_cq;
1529 napi_enable(&c->napi);
1531 err = mlx5e_open_sq(c, 0, &cparam->icosq, &c->icosq);
1533 goto err_disable_napi;
1535 err = mlx5e_open_sqs(c, cparam);
1537 goto err_close_icosq;
1539 for (i = 0; i < priv->params.num_tc; i++) {
1540 u32 txq_ix = priv->channeltc_to_txq_map[ix][i];
1542 if (priv->tx_rates[txq_ix]) {
1543 sq = priv->txq_to_sq_map[txq_ix];
1544 mlx5e_set_sq_maxrate(priv->netdev, sq,
1545 priv->tx_rates[txq_ix]);
1549 err = c->xdp ? mlx5e_open_sq(c, 0, &cparam->xdp_sq, &c->xdp_sq) : 0;
1553 err = mlx5e_open_rq(c, &cparam->rq, &c->rq);
1555 goto err_close_xdp_sq;
1557 netif_set_xps_queue(netdev, get_cpu_mask(c->cpu), ix);
1563 mlx5e_close_sq(&c->xdp_sq);
1569 mlx5e_close_sq(&c->icosq);
1572 napi_disable(&c->napi);
1574 mlx5e_close_cq(&c->xdp_sq.cq);
1577 mlx5e_close_cq(&c->rq.cq);
1580 mlx5e_close_tx_cqs(c);
1583 mlx5e_close_cq(&c->icosq.cq);
1586 netif_napi_del(&c->napi);
1592 static void mlx5e_close_channel(struct mlx5e_channel *c)
1594 mlx5e_close_rq(&c->rq);
1596 mlx5e_close_sq(&c->xdp_sq);
1598 mlx5e_close_sq(&c->icosq);
1599 napi_disable(&c->napi);
1601 mlx5e_close_cq(&c->xdp_sq.cq);
1602 mlx5e_close_cq(&c->rq.cq);
1603 mlx5e_close_tx_cqs(c);
1604 mlx5e_close_cq(&c->icosq.cq);
1605 netif_napi_del(&c->napi);
1610 static void mlx5e_build_rq_param(struct mlx5e_priv *priv,
1611 struct mlx5e_rq_param *param)
1613 void *rqc = param->rqc;
1614 void *wq = MLX5_ADDR_OF(rqc, rqc, wq);
1616 switch (priv->params.rq_wq_type) {
1617 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
1618 MLX5_SET(wq, wq, log_wqe_num_of_strides,
1619 priv->params.mpwqe_log_num_strides - 9);
1620 MLX5_SET(wq, wq, log_wqe_stride_size,
1621 priv->params.mpwqe_log_stride_sz - 6);
1622 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ);
1624 default: /* MLX5_WQ_TYPE_LINKED_LIST */
1625 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_LINKED_LIST);
1628 MLX5_SET(wq, wq, end_padding_mode, MLX5_WQ_END_PAD_MODE_ALIGN);
1629 MLX5_SET(wq, wq, log_wq_stride, ilog2(sizeof(struct mlx5e_rx_wqe)));
1630 MLX5_SET(wq, wq, log_wq_sz, priv->params.log_rq_size);
1631 MLX5_SET(wq, wq, pd, priv->mdev->mlx5e_res.pdn);
1632 MLX5_SET(rqc, rqc, counter_set_id, priv->q_counter);
1634 param->wq.buf_numa_node = dev_to_node(&priv->mdev->pdev->dev);
1635 param->wq.linear = 1;
1637 param->am_enabled = priv->params.rx_am_enabled;
1640 static void mlx5e_build_drop_rq_param(struct mlx5e_rq_param *param)
1642 void *rqc = param->rqc;
1643 void *wq = MLX5_ADDR_OF(rqc, rqc, wq);
1645 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_LINKED_LIST);
1646 MLX5_SET(wq, wq, log_wq_stride, ilog2(sizeof(struct mlx5e_rx_wqe)));
1649 static void mlx5e_build_sq_param_common(struct mlx5e_priv *priv,
1650 struct mlx5e_sq_param *param)
1652 void *sqc = param->sqc;
1653 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1655 MLX5_SET(wq, wq, log_wq_stride, ilog2(MLX5_SEND_WQE_BB));
1656 MLX5_SET(wq, wq, pd, priv->mdev->mlx5e_res.pdn);
1658 param->wq.buf_numa_node = dev_to_node(&priv->mdev->pdev->dev);
1661 static void mlx5e_build_sq_param(struct mlx5e_priv *priv,
1662 struct mlx5e_sq_param *param)
1664 void *sqc = param->sqc;
1665 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1667 mlx5e_build_sq_param_common(priv, param);
1668 MLX5_SET(wq, wq, log_wq_sz, priv->params.log_sq_size);
1670 param->max_inline = priv->params.tx_max_inline;
1671 param->min_inline_mode = priv->params.tx_min_inline_mode;
1672 param->type = MLX5E_SQ_TXQ;
1675 static void mlx5e_build_common_cq_param(struct mlx5e_priv *priv,
1676 struct mlx5e_cq_param *param)
1678 void *cqc = param->cqc;
1680 MLX5_SET(cqc, cqc, uar_page, priv->mdev->mlx5e_res.cq_uar.index);
1683 static void mlx5e_build_rx_cq_param(struct mlx5e_priv *priv,
1684 struct mlx5e_cq_param *param)
1686 void *cqc = param->cqc;
1689 switch (priv->params.rq_wq_type) {
1690 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
1691 log_cq_size = priv->params.log_rq_size +
1692 priv->params.mpwqe_log_num_strides;
1694 default: /* MLX5_WQ_TYPE_LINKED_LIST */
1695 log_cq_size = priv->params.log_rq_size;
1698 MLX5_SET(cqc, cqc, log_cq_size, log_cq_size);
1699 if (MLX5E_GET_PFLAG(priv, MLX5E_PFLAG_RX_CQE_COMPRESS)) {
1700 MLX5_SET(cqc, cqc, mini_cqe_res_format, MLX5_CQE_FORMAT_CSUM);
1701 MLX5_SET(cqc, cqc, cqe_comp_en, 1);
1704 mlx5e_build_common_cq_param(priv, param);
1706 param->cq_period_mode = priv->params.rx_cq_period_mode;
1709 static void mlx5e_build_tx_cq_param(struct mlx5e_priv *priv,
1710 struct mlx5e_cq_param *param)
1712 void *cqc = param->cqc;
1714 MLX5_SET(cqc, cqc, log_cq_size, priv->params.log_sq_size);
1716 mlx5e_build_common_cq_param(priv, param);
1718 param->cq_period_mode = MLX5_CQ_PERIOD_MODE_START_FROM_EQE;
1721 static void mlx5e_build_ico_cq_param(struct mlx5e_priv *priv,
1722 struct mlx5e_cq_param *param,
1725 void *cqc = param->cqc;
1727 MLX5_SET(cqc, cqc, log_cq_size, log_wq_size);
1729 mlx5e_build_common_cq_param(priv, param);
1731 param->cq_period_mode = MLX5_CQ_PERIOD_MODE_START_FROM_EQE;
1734 static void mlx5e_build_icosq_param(struct mlx5e_priv *priv,
1735 struct mlx5e_sq_param *param,
1738 void *sqc = param->sqc;
1739 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1741 mlx5e_build_sq_param_common(priv, param);
1743 MLX5_SET(wq, wq, log_wq_sz, log_wq_size);
1744 MLX5_SET(sqc, sqc, reg_umr, MLX5_CAP_ETH(priv->mdev, reg_umr_sq));
1746 param->type = MLX5E_SQ_ICO;
1749 static void mlx5e_build_xdpsq_param(struct mlx5e_priv *priv,
1750 struct mlx5e_sq_param *param)
1752 void *sqc = param->sqc;
1753 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1755 mlx5e_build_sq_param_common(priv, param);
1756 MLX5_SET(wq, wq, log_wq_sz, priv->params.log_sq_size);
1758 param->max_inline = priv->params.tx_max_inline;
1759 /* FOR XDP SQs will support only L2 inline mode */
1760 param->min_inline_mode = MLX5_INLINE_MODE_NONE;
1761 param->type = MLX5E_SQ_XDP;
1764 static void mlx5e_build_channel_param(struct mlx5e_priv *priv, struct mlx5e_channel_param *cparam)
1766 u8 icosq_log_wq_sz = MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE;
1768 mlx5e_build_rq_param(priv, &cparam->rq);
1769 mlx5e_build_sq_param(priv, &cparam->sq);
1770 mlx5e_build_xdpsq_param(priv, &cparam->xdp_sq);
1771 mlx5e_build_icosq_param(priv, &cparam->icosq, icosq_log_wq_sz);
1772 mlx5e_build_rx_cq_param(priv, &cparam->rx_cq);
1773 mlx5e_build_tx_cq_param(priv, &cparam->tx_cq);
1774 mlx5e_build_ico_cq_param(priv, &cparam->icosq_cq, icosq_log_wq_sz);
1777 static int mlx5e_open_channels(struct mlx5e_priv *priv)
1779 struct mlx5e_channel_param *cparam;
1780 int nch = priv->params.num_channels;
1785 priv->channel = kcalloc(nch, sizeof(struct mlx5e_channel *),
1788 priv->txq_to_sq_map = kcalloc(nch * priv->params.num_tc,
1789 sizeof(struct mlx5e_sq *), GFP_KERNEL);
1791 cparam = kzalloc(sizeof(struct mlx5e_channel_param), GFP_KERNEL);
1793 if (!priv->channel || !priv->txq_to_sq_map || !cparam)
1794 goto err_free_txq_to_sq_map;
1796 mlx5e_build_channel_param(priv, cparam);
1798 for (i = 0; i < nch; i++) {
1799 err = mlx5e_open_channel(priv, i, cparam, &priv->channel[i]);
1801 goto err_close_channels;
1804 for (j = 0; j < nch; j++) {
1805 err = mlx5e_wait_for_min_rx_wqes(&priv->channel[j]->rq);
1807 goto err_close_channels;
1810 /* FIXME: This is a W/A for tx timeout watch dog false alarm when
1811 * polling for inactive tx queues.
1813 netif_tx_start_all_queues(priv->netdev);
1819 for (i--; i >= 0; i--)
1820 mlx5e_close_channel(priv->channel[i]);
1822 err_free_txq_to_sq_map:
1823 kfree(priv->txq_to_sq_map);
1824 kfree(priv->channel);
1830 static void mlx5e_close_channels(struct mlx5e_priv *priv)
1834 /* FIXME: This is a W/A only for tx timeout watch dog false alarm when
1835 * polling for inactive tx queues.
1837 netif_tx_stop_all_queues(priv->netdev);
1838 netif_tx_disable(priv->netdev);
1840 for (i = 0; i < priv->params.num_channels; i++)
1841 mlx5e_close_channel(priv->channel[i]);
1843 kfree(priv->txq_to_sq_map);
1844 kfree(priv->channel);
1847 static int mlx5e_rx_hash_fn(int hfunc)
1849 return (hfunc == ETH_RSS_HASH_TOP) ?
1850 MLX5_RX_HASH_FN_TOEPLITZ :
1851 MLX5_RX_HASH_FN_INVERTED_XOR8;
1854 static int mlx5e_bits_invert(unsigned long a, int size)
1859 for (i = 0; i < size; i++)
1860 inv |= (test_bit(size - i - 1, &a) ? 1 : 0) << i;
1865 static void mlx5e_fill_indir_rqt_rqns(struct mlx5e_priv *priv, void *rqtc)
1869 for (i = 0; i < MLX5E_INDIR_RQT_SIZE; i++) {
1873 if (priv->params.rss_hfunc == ETH_RSS_HASH_XOR)
1874 ix = mlx5e_bits_invert(i, MLX5E_LOG_INDIR_RQT_SIZE);
1876 ix = priv->params.indirection_rqt[ix];
1877 rqn = test_bit(MLX5E_STATE_OPENED, &priv->state) ?
1878 priv->channel[ix]->rq.rqn :
1880 MLX5_SET(rqtc, rqtc, rq_num[i], rqn);
1884 static void mlx5e_fill_direct_rqt_rqn(struct mlx5e_priv *priv, void *rqtc,
1887 u32 rqn = test_bit(MLX5E_STATE_OPENED, &priv->state) ?
1888 priv->channel[ix]->rq.rqn :
1891 MLX5_SET(rqtc, rqtc, rq_num[0], rqn);
1894 static int mlx5e_create_rqt(struct mlx5e_priv *priv, int sz,
1895 int ix, struct mlx5e_rqt *rqt)
1897 struct mlx5_core_dev *mdev = priv->mdev;
1903 inlen = MLX5_ST_SZ_BYTES(create_rqt_in) + sizeof(u32) * sz;
1904 in = mlx5_vzalloc(inlen);
1908 rqtc = MLX5_ADDR_OF(create_rqt_in, in, rqt_context);
1910 MLX5_SET(rqtc, rqtc, rqt_actual_size, sz);
1911 MLX5_SET(rqtc, rqtc, rqt_max_size, sz);
1913 if (sz > 1) /* RSS */
1914 mlx5e_fill_indir_rqt_rqns(priv, rqtc);
1916 mlx5e_fill_direct_rqt_rqn(priv, rqtc, ix);
1918 err = mlx5_core_create_rqt(mdev, in, inlen, &rqt->rqtn);
1920 rqt->enabled = true;
1926 void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt)
1928 rqt->enabled = false;
1929 mlx5_core_destroy_rqt(priv->mdev, rqt->rqtn);
1932 static int mlx5e_create_indirect_rqts(struct mlx5e_priv *priv)
1934 struct mlx5e_rqt *rqt = &priv->indir_rqt;
1936 return mlx5e_create_rqt(priv, MLX5E_INDIR_RQT_SIZE, 0, rqt);
1939 int mlx5e_create_direct_rqts(struct mlx5e_priv *priv)
1941 struct mlx5e_rqt *rqt;
1945 for (ix = 0; ix < priv->profile->max_nch(priv->mdev); ix++) {
1946 rqt = &priv->direct_tir[ix].rqt;
1947 err = mlx5e_create_rqt(priv, 1 /*size */, ix, rqt);
1949 goto err_destroy_rqts;
1955 for (ix--; ix >= 0; ix--)
1956 mlx5e_destroy_rqt(priv, &priv->direct_tir[ix].rqt);
1961 int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz, int ix)
1963 struct mlx5_core_dev *mdev = priv->mdev;
1969 inlen = MLX5_ST_SZ_BYTES(modify_rqt_in) + sizeof(u32) * sz;
1970 in = mlx5_vzalloc(inlen);
1974 rqtc = MLX5_ADDR_OF(modify_rqt_in, in, ctx);
1976 MLX5_SET(rqtc, rqtc, rqt_actual_size, sz);
1977 if (sz > 1) /* RSS */
1978 mlx5e_fill_indir_rqt_rqns(priv, rqtc);
1980 mlx5e_fill_direct_rqt_rqn(priv, rqtc, ix);
1982 MLX5_SET(modify_rqt_in, in, bitmask.rqn_list, 1);
1984 err = mlx5_core_modify_rqt(mdev, rqtn, in, inlen);
1991 static void mlx5e_redirect_rqts(struct mlx5e_priv *priv)
1996 if (priv->indir_rqt.enabled) {
1997 rqtn = priv->indir_rqt.rqtn;
1998 mlx5e_redirect_rqt(priv, rqtn, MLX5E_INDIR_RQT_SIZE, 0);
2001 for (ix = 0; ix < priv->params.num_channels; ix++) {
2002 if (!priv->direct_tir[ix].rqt.enabled)
2004 rqtn = priv->direct_tir[ix].rqt.rqtn;
2005 mlx5e_redirect_rqt(priv, rqtn, 1, ix);
2009 static void mlx5e_build_tir_ctx_lro(void *tirc, struct mlx5e_priv *priv)
2011 if (!priv->params.lro_en)
2014 #define ROUGH_MAX_L2_L3_HDR_SZ 256
2016 MLX5_SET(tirc, tirc, lro_enable_mask,
2017 MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO |
2018 MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO);
2019 MLX5_SET(tirc, tirc, lro_max_ip_payload_size,
2020 (priv->params.lro_wqe_sz -
2021 ROUGH_MAX_L2_L3_HDR_SZ) >> 8);
2022 MLX5_SET(tirc, tirc, lro_timeout_period_usecs, priv->params.lro_timeout);
2025 void mlx5e_build_tir_ctx_hash(void *tirc, struct mlx5e_priv *priv)
2027 MLX5_SET(tirc, tirc, rx_hash_fn,
2028 mlx5e_rx_hash_fn(priv->params.rss_hfunc));
2029 if (priv->params.rss_hfunc == ETH_RSS_HASH_TOP) {
2030 void *rss_key = MLX5_ADDR_OF(tirc, tirc,
2031 rx_hash_toeplitz_key);
2032 size_t len = MLX5_FLD_SZ_BYTES(tirc,
2033 rx_hash_toeplitz_key);
2035 MLX5_SET(tirc, tirc, rx_hash_symmetric, 1);
2036 memcpy(rss_key, priv->params.toeplitz_hash_key, len);
2040 static int mlx5e_modify_tirs_lro(struct mlx5e_priv *priv)
2042 struct mlx5_core_dev *mdev = priv->mdev;
2051 inlen = MLX5_ST_SZ_BYTES(modify_tir_in);
2052 in = mlx5_vzalloc(inlen);
2056 MLX5_SET(modify_tir_in, in, bitmask.lro, 1);
2057 tirc = MLX5_ADDR_OF(modify_tir_in, in, ctx);
2059 mlx5e_build_tir_ctx_lro(tirc, priv);
2061 for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++) {
2062 err = mlx5_core_modify_tir(mdev, priv->indir_tir[tt].tirn, in,
2068 for (ix = 0; ix < priv->profile->max_nch(priv->mdev); ix++) {
2069 err = mlx5_core_modify_tir(mdev, priv->direct_tir[ix].tirn,
2081 static int mlx5e_set_mtu(struct mlx5e_priv *priv, u16 mtu)
2083 struct mlx5_core_dev *mdev = priv->mdev;
2084 u16 hw_mtu = MLX5E_SW2HW_MTU(mtu);
2087 err = mlx5_set_port_mtu(mdev, hw_mtu, 1);
2091 /* Update vport context MTU */
2092 mlx5_modify_nic_vport_mtu(mdev, hw_mtu);
2096 static void mlx5e_query_mtu(struct mlx5e_priv *priv, u16 *mtu)
2098 struct mlx5_core_dev *mdev = priv->mdev;
2102 err = mlx5_query_nic_vport_mtu(mdev, &hw_mtu);
2103 if (err || !hw_mtu) /* fallback to port oper mtu */
2104 mlx5_query_port_oper_mtu(mdev, &hw_mtu, 1);
2106 *mtu = MLX5E_HW2SW_MTU(hw_mtu);
2109 static int mlx5e_set_dev_port_mtu(struct net_device *netdev)
2111 struct mlx5e_priv *priv = netdev_priv(netdev);
2115 err = mlx5e_set_mtu(priv, netdev->mtu);
2119 mlx5e_query_mtu(priv, &mtu);
2120 if (mtu != netdev->mtu)
2121 netdev_warn(netdev, "%s: VPort MTU %d is different than netdev mtu %d\n",
2122 __func__, mtu, netdev->mtu);
2128 static void mlx5e_netdev_set_tcs(struct net_device *netdev)
2130 struct mlx5e_priv *priv = netdev_priv(netdev);
2131 int nch = priv->params.num_channels;
2132 int ntc = priv->params.num_tc;
2135 netdev_reset_tc(netdev);
2140 netdev_set_num_tc(netdev, ntc);
2142 /* Map netdev TCs to offset 0
2143 * We have our own UP to TXQ mapping for QoS
2145 for (tc = 0; tc < ntc; tc++)
2146 netdev_set_tc_queue(netdev, tc, nch, 0);
2149 int mlx5e_open_locked(struct net_device *netdev)
2151 struct mlx5e_priv *priv = netdev_priv(netdev);
2152 struct mlx5_core_dev *mdev = priv->mdev;
2156 set_bit(MLX5E_STATE_OPENED, &priv->state);
2158 mlx5e_netdev_set_tcs(netdev);
2160 num_txqs = priv->params.num_channels * priv->params.num_tc;
2161 netif_set_real_num_tx_queues(netdev, num_txqs);
2162 netif_set_real_num_rx_queues(netdev, priv->params.num_channels);
2164 err = mlx5e_open_channels(priv);
2166 netdev_err(netdev, "%s: mlx5e_open_channels failed, %d\n",
2168 goto err_clear_state_opened_flag;
2171 err = mlx5e_refresh_tirs_self_loopback(priv->mdev, false);
2173 netdev_err(netdev, "%s: mlx5e_refresh_tirs_self_loopback_enable failed, %d\n",
2175 goto err_close_channels;
2178 mlx5e_redirect_rqts(priv);
2179 mlx5e_update_carrier(priv);
2180 mlx5e_timestamp_init(priv);
2181 #ifdef CONFIG_RFS_ACCEL
2182 priv->netdev->rx_cpu_rmap = priv->mdev->rmap;
2184 if (priv->profile->update_stats)
2185 queue_delayed_work(priv->wq, &priv->update_stats_work, 0);
2187 if (MLX5_CAP_GEN(mdev, vport_group_manager)) {
2188 err = mlx5e_add_sqs_fwd_rules(priv);
2190 goto err_close_channels;
2195 mlx5e_close_channels(priv);
2196 err_clear_state_opened_flag:
2197 clear_bit(MLX5E_STATE_OPENED, &priv->state);
2201 int mlx5e_open(struct net_device *netdev)
2203 struct mlx5e_priv *priv = netdev_priv(netdev);
2206 mutex_lock(&priv->state_lock);
2207 err = mlx5e_open_locked(netdev);
2208 mutex_unlock(&priv->state_lock);
2213 int mlx5e_close_locked(struct net_device *netdev)
2215 struct mlx5e_priv *priv = netdev_priv(netdev);
2216 struct mlx5_core_dev *mdev = priv->mdev;
2218 /* May already be CLOSED in case a previous configuration operation
2219 * (e.g RX/TX queue size change) that involves close&open failed.
2221 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
2224 clear_bit(MLX5E_STATE_OPENED, &priv->state);
2226 if (MLX5_CAP_GEN(mdev, vport_group_manager))
2227 mlx5e_remove_sqs_fwd_rules(priv);
2229 mlx5e_timestamp_cleanup(priv);
2230 netif_carrier_off(priv->netdev);
2231 mlx5e_redirect_rqts(priv);
2232 mlx5e_close_channels(priv);
2237 int mlx5e_close(struct net_device *netdev)
2239 struct mlx5e_priv *priv = netdev_priv(netdev);
2242 if (!netif_device_present(netdev))
2245 mutex_lock(&priv->state_lock);
2246 err = mlx5e_close_locked(netdev);
2247 mutex_unlock(&priv->state_lock);
2252 static int mlx5e_create_drop_rq(struct mlx5e_priv *priv,
2253 struct mlx5e_rq *rq,
2254 struct mlx5e_rq_param *param)
2256 struct mlx5_core_dev *mdev = priv->mdev;
2257 void *rqc = param->rqc;
2258 void *rqc_wq = MLX5_ADDR_OF(rqc, rqc, wq);
2261 param->wq.db_numa_node = param->wq.buf_numa_node;
2263 err = mlx5_wq_ll_create(mdev, ¶m->wq, rqc_wq, &rq->wq,
2273 static int mlx5e_create_drop_cq(struct mlx5e_priv *priv,
2274 struct mlx5e_cq *cq,
2275 struct mlx5e_cq_param *param)
2277 struct mlx5_core_dev *mdev = priv->mdev;
2278 struct mlx5_core_cq *mcq = &cq->mcq;
2283 err = mlx5_cqwq_create(mdev, ¶m->wq, param->cqc, &cq->wq,
2288 mlx5_vector2eqn(mdev, param->eq_ix, &eqn_not_used, &irqn);
2291 mcq->set_ci_db = cq->wq_ctrl.db.db;
2292 mcq->arm_db = cq->wq_ctrl.db.db + 1;
2293 *mcq->set_ci_db = 0;
2295 mcq->vector = param->eq_ix;
2296 mcq->comp = mlx5e_completion_event;
2297 mcq->event = mlx5e_cq_error_event;
2299 mcq->uar = &mdev->mlx5e_res.cq_uar;
2306 static int mlx5e_open_drop_rq(struct mlx5e_priv *priv)
2308 struct mlx5e_cq_param cq_param;
2309 struct mlx5e_rq_param rq_param;
2310 struct mlx5e_rq *rq = &priv->drop_rq;
2311 struct mlx5e_cq *cq = &priv->drop_rq.cq;
2314 memset(&cq_param, 0, sizeof(cq_param));
2315 memset(&rq_param, 0, sizeof(rq_param));
2316 mlx5e_build_drop_rq_param(&rq_param);
2318 err = mlx5e_create_drop_cq(priv, cq, &cq_param);
2322 err = mlx5e_enable_cq(cq, &cq_param);
2324 goto err_destroy_cq;
2326 err = mlx5e_create_drop_rq(priv, rq, &rq_param);
2328 goto err_disable_cq;
2330 err = mlx5e_enable_rq(rq, &rq_param);
2332 goto err_destroy_rq;
2337 mlx5e_destroy_rq(&priv->drop_rq);
2340 mlx5e_disable_cq(&priv->drop_rq.cq);
2343 mlx5e_destroy_cq(&priv->drop_rq.cq);
2348 static void mlx5e_close_drop_rq(struct mlx5e_priv *priv)
2350 mlx5e_disable_rq(&priv->drop_rq);
2351 mlx5e_destroy_rq(&priv->drop_rq);
2352 mlx5e_disable_cq(&priv->drop_rq.cq);
2353 mlx5e_destroy_cq(&priv->drop_rq.cq);
2356 static int mlx5e_create_tis(struct mlx5e_priv *priv, int tc)
2358 struct mlx5_core_dev *mdev = priv->mdev;
2359 u32 in[MLX5_ST_SZ_DW(create_tis_in)] = {0};
2360 void *tisc = MLX5_ADDR_OF(create_tis_in, in, ctx);
2362 MLX5_SET(tisc, tisc, prio, tc << 1);
2363 MLX5_SET(tisc, tisc, transport_domain, mdev->mlx5e_res.td.tdn);
2365 if (mlx5_lag_is_lacp_owner(mdev))
2366 MLX5_SET(tisc, tisc, strict_lag_tx_port_affinity, 1);
2368 return mlx5_core_create_tis(mdev, in, sizeof(in), &priv->tisn[tc]);
2371 static void mlx5e_destroy_tis(struct mlx5e_priv *priv, int tc)
2373 mlx5_core_destroy_tis(priv->mdev, priv->tisn[tc]);
2376 int mlx5e_create_tises(struct mlx5e_priv *priv)
2381 for (tc = 0; tc < priv->profile->max_tc; tc++) {
2382 err = mlx5e_create_tis(priv, tc);
2384 goto err_close_tises;
2390 for (tc--; tc >= 0; tc--)
2391 mlx5e_destroy_tis(priv, tc);
2396 void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv)
2400 for (tc = 0; tc < priv->profile->max_tc; tc++)
2401 mlx5e_destroy_tis(priv, tc);
2404 static void mlx5e_build_indir_tir_ctx(struct mlx5e_priv *priv, u32 *tirc,
2405 enum mlx5e_traffic_types tt)
2407 void *hfso = MLX5_ADDR_OF(tirc, tirc, rx_hash_field_selector_outer);
2409 MLX5_SET(tirc, tirc, transport_domain, priv->mdev->mlx5e_res.td.tdn);
2411 #define MLX5_HASH_IP (MLX5_HASH_FIELD_SEL_SRC_IP |\
2412 MLX5_HASH_FIELD_SEL_DST_IP)
2414 #define MLX5_HASH_IP_L4PORTS (MLX5_HASH_FIELD_SEL_SRC_IP |\
2415 MLX5_HASH_FIELD_SEL_DST_IP |\
2416 MLX5_HASH_FIELD_SEL_L4_SPORT |\
2417 MLX5_HASH_FIELD_SEL_L4_DPORT)
2419 #define MLX5_HASH_IP_IPSEC_SPI (MLX5_HASH_FIELD_SEL_SRC_IP |\
2420 MLX5_HASH_FIELD_SEL_DST_IP |\
2421 MLX5_HASH_FIELD_SEL_IPSEC_SPI)
2423 mlx5e_build_tir_ctx_lro(tirc, priv);
2425 MLX5_SET(tirc, tirc, disp_type, MLX5_TIRC_DISP_TYPE_INDIRECT);
2426 MLX5_SET(tirc, tirc, indirect_table, priv->indir_rqt.rqtn);
2427 mlx5e_build_tir_ctx_hash(tirc, priv);
2430 case MLX5E_TT_IPV4_TCP:
2431 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2432 MLX5_L3_PROT_TYPE_IPV4);
2433 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
2434 MLX5_L4_PROT_TYPE_TCP);
2435 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2436 MLX5_HASH_IP_L4PORTS);
2439 case MLX5E_TT_IPV6_TCP:
2440 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2441 MLX5_L3_PROT_TYPE_IPV6);
2442 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
2443 MLX5_L4_PROT_TYPE_TCP);
2444 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2445 MLX5_HASH_IP_L4PORTS);
2448 case MLX5E_TT_IPV4_UDP:
2449 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2450 MLX5_L3_PROT_TYPE_IPV4);
2451 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
2452 MLX5_L4_PROT_TYPE_UDP);
2453 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2454 MLX5_HASH_IP_L4PORTS);
2457 case MLX5E_TT_IPV6_UDP:
2458 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2459 MLX5_L3_PROT_TYPE_IPV6);
2460 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
2461 MLX5_L4_PROT_TYPE_UDP);
2462 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2463 MLX5_HASH_IP_L4PORTS);
2466 case MLX5E_TT_IPV4_IPSEC_AH:
2467 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2468 MLX5_L3_PROT_TYPE_IPV4);
2469 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2470 MLX5_HASH_IP_IPSEC_SPI);
2473 case MLX5E_TT_IPV6_IPSEC_AH:
2474 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2475 MLX5_L3_PROT_TYPE_IPV6);
2476 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2477 MLX5_HASH_IP_IPSEC_SPI);
2480 case MLX5E_TT_IPV4_IPSEC_ESP:
2481 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2482 MLX5_L3_PROT_TYPE_IPV4);
2483 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2484 MLX5_HASH_IP_IPSEC_SPI);
2487 case MLX5E_TT_IPV6_IPSEC_ESP:
2488 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2489 MLX5_L3_PROT_TYPE_IPV6);
2490 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2491 MLX5_HASH_IP_IPSEC_SPI);
2495 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2496 MLX5_L3_PROT_TYPE_IPV4);
2497 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2502 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
2503 MLX5_L3_PROT_TYPE_IPV6);
2504 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
2509 "mlx5e_build_indir_tir_ctx: bad traffic type!\n");
2513 static void mlx5e_build_direct_tir_ctx(struct mlx5e_priv *priv, u32 *tirc,
2516 MLX5_SET(tirc, tirc, transport_domain, priv->mdev->mlx5e_res.td.tdn);
2518 mlx5e_build_tir_ctx_lro(tirc, priv);
2520 MLX5_SET(tirc, tirc, disp_type, MLX5_TIRC_DISP_TYPE_INDIRECT);
2521 MLX5_SET(tirc, tirc, indirect_table, rqtn);
2522 MLX5_SET(tirc, tirc, rx_hash_fn, MLX5_RX_HASH_FN_INVERTED_XOR8);
2525 static int mlx5e_create_indirect_tirs(struct mlx5e_priv *priv)
2527 struct mlx5e_tir *tir;
2534 inlen = MLX5_ST_SZ_BYTES(create_tir_in);
2535 in = mlx5_vzalloc(inlen);
2539 for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++) {
2540 memset(in, 0, inlen);
2541 tir = &priv->indir_tir[tt];
2542 tirc = MLX5_ADDR_OF(create_tir_in, in, ctx);
2543 mlx5e_build_indir_tir_ctx(priv, tirc, tt);
2544 err = mlx5e_create_tir(priv->mdev, tir, in, inlen);
2546 goto err_destroy_tirs;
2554 for (tt--; tt >= 0; tt--)
2555 mlx5e_destroy_tir(priv->mdev, &priv->indir_tir[tt]);
2562 int mlx5e_create_direct_tirs(struct mlx5e_priv *priv)
2564 int nch = priv->profile->max_nch(priv->mdev);
2565 struct mlx5e_tir *tir;
2572 inlen = MLX5_ST_SZ_BYTES(create_tir_in);
2573 in = mlx5_vzalloc(inlen);
2577 for (ix = 0; ix < nch; ix++) {
2578 memset(in, 0, inlen);
2579 tir = &priv->direct_tir[ix];
2580 tirc = MLX5_ADDR_OF(create_tir_in, in, ctx);
2581 mlx5e_build_direct_tir_ctx(priv, tirc,
2582 priv->direct_tir[ix].rqt.rqtn);
2583 err = mlx5e_create_tir(priv->mdev, tir, in, inlen);
2585 goto err_destroy_ch_tirs;
2592 err_destroy_ch_tirs:
2593 for (ix--; ix >= 0; ix--)
2594 mlx5e_destroy_tir(priv->mdev, &priv->direct_tir[ix]);
2601 static void mlx5e_destroy_indirect_tirs(struct mlx5e_priv *priv)
2605 for (i = 0; i < MLX5E_NUM_INDIR_TIRS; i++)
2606 mlx5e_destroy_tir(priv->mdev, &priv->indir_tir[i]);
2609 void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv)
2611 int nch = priv->profile->max_nch(priv->mdev);
2614 for (i = 0; i < nch; i++)
2615 mlx5e_destroy_tir(priv->mdev, &priv->direct_tir[i]);
2618 int mlx5e_modify_rqs_vsd(struct mlx5e_priv *priv, bool vsd)
2623 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
2626 for (i = 0; i < priv->params.num_channels; i++) {
2627 err = mlx5e_modify_rq_vsd(&priv->channel[i]->rq, vsd);
2635 static int mlx5e_setup_tc(struct net_device *netdev, u8 tc)
2637 struct mlx5e_priv *priv = netdev_priv(netdev);
2641 if (tc && tc != MLX5E_MAX_NUM_TC)
2644 mutex_lock(&priv->state_lock);
2646 was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
2648 mlx5e_close_locked(priv->netdev);
2650 priv->params.num_tc = tc ? tc : 1;
2653 err = mlx5e_open_locked(priv->netdev);
2655 mutex_unlock(&priv->state_lock);
2660 static int mlx5e_ndo_setup_tc(struct net_device *dev, u32 handle,
2661 __be16 proto, struct tc_to_netdev *tc)
2663 struct mlx5e_priv *priv = netdev_priv(dev);
2665 if (TC_H_MAJ(handle) != TC_H_MAJ(TC_H_INGRESS))
2669 case TC_SETUP_CLSFLOWER:
2670 switch (tc->cls_flower->command) {
2671 case TC_CLSFLOWER_REPLACE:
2672 return mlx5e_configure_flower(priv, proto, tc->cls_flower);
2673 case TC_CLSFLOWER_DESTROY:
2674 return mlx5e_delete_flower(priv, tc->cls_flower);
2675 case TC_CLSFLOWER_STATS:
2676 return mlx5e_stats_flower(priv, tc->cls_flower);
2683 if (tc->type != TC_SETUP_MQPRIO)
2686 return mlx5e_setup_tc(dev, tc->tc);
2689 static struct rtnl_link_stats64 *
2690 mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats)
2692 struct mlx5e_priv *priv = netdev_priv(dev);
2693 struct mlx5e_sw_stats *sstats = &priv->stats.sw;
2694 struct mlx5e_vport_stats *vstats = &priv->stats.vport;
2695 struct mlx5e_pport_stats *pstats = &priv->stats.pport;
2697 if (mlx5e_is_uplink_rep(priv)) {
2698 stats->rx_packets = PPORT_802_3_GET(pstats, a_frames_received_ok);
2699 stats->rx_bytes = PPORT_802_3_GET(pstats, a_octets_received_ok);
2700 stats->tx_packets = PPORT_802_3_GET(pstats, a_frames_transmitted_ok);
2701 stats->tx_bytes = PPORT_802_3_GET(pstats, a_octets_transmitted_ok);
2703 stats->rx_packets = sstats->rx_packets;
2704 stats->rx_bytes = sstats->rx_bytes;
2705 stats->tx_packets = sstats->tx_packets;
2706 stats->tx_bytes = sstats->tx_bytes;
2707 stats->tx_dropped = sstats->tx_queue_dropped;
2710 stats->rx_dropped = priv->stats.qcnt.rx_out_of_buffer;
2712 stats->rx_length_errors =
2713 PPORT_802_3_GET(pstats, a_in_range_length_errors) +
2714 PPORT_802_3_GET(pstats, a_out_of_range_length_field) +
2715 PPORT_802_3_GET(pstats, a_frame_too_long_errors);
2716 stats->rx_crc_errors =
2717 PPORT_802_3_GET(pstats, a_frame_check_sequence_errors);
2718 stats->rx_frame_errors = PPORT_802_3_GET(pstats, a_alignment_errors);
2719 stats->tx_aborted_errors = PPORT_2863_GET(pstats, if_out_discards);
2720 stats->tx_carrier_errors =
2721 PPORT_802_3_GET(pstats, a_symbol_error_during_carrier);
2722 stats->rx_errors = stats->rx_length_errors + stats->rx_crc_errors +
2723 stats->rx_frame_errors;
2724 stats->tx_errors = stats->tx_aborted_errors + stats->tx_carrier_errors;
2726 /* vport multicast also counts packets that are dropped due to steering
2727 * or rx out of buffer
2730 VPORT_COUNTER_GET(vstats, received_eth_multicast.packets);
2735 static void mlx5e_set_rx_mode(struct net_device *dev)
2737 struct mlx5e_priv *priv = netdev_priv(dev);
2739 queue_work(priv->wq, &priv->set_rx_mode_work);
2742 static int mlx5e_set_mac(struct net_device *netdev, void *addr)
2744 struct mlx5e_priv *priv = netdev_priv(netdev);
2745 struct sockaddr *saddr = addr;
2747 if (!is_valid_ether_addr(saddr->sa_data))
2748 return -EADDRNOTAVAIL;
2750 netif_addr_lock_bh(netdev);
2751 ether_addr_copy(netdev->dev_addr, saddr->sa_data);
2752 netif_addr_unlock_bh(netdev);
2754 queue_work(priv->wq, &priv->set_rx_mode_work);
2759 #define MLX5E_SET_FEATURE(netdev, feature, enable) \
2762 netdev->features |= feature; \
2764 netdev->features &= ~feature; \
2767 typedef int (*mlx5e_feature_handler)(struct net_device *netdev, bool enable);
2769 static int set_feature_lro(struct net_device *netdev, bool enable)
2771 struct mlx5e_priv *priv = netdev_priv(netdev);
2772 bool was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
2775 mutex_lock(&priv->state_lock);
2777 if (was_opened && (priv->params.rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST))
2778 mlx5e_close_locked(priv->netdev);
2780 priv->params.lro_en = enable;
2781 err = mlx5e_modify_tirs_lro(priv);
2783 netdev_err(netdev, "lro modify failed, %d\n", err);
2784 priv->params.lro_en = !enable;
2787 if (was_opened && (priv->params.rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST))
2788 mlx5e_open_locked(priv->netdev);
2790 mutex_unlock(&priv->state_lock);
2795 static int set_feature_vlan_filter(struct net_device *netdev, bool enable)
2797 struct mlx5e_priv *priv = netdev_priv(netdev);
2800 mlx5e_enable_vlan_filter(priv);
2802 mlx5e_disable_vlan_filter(priv);
2807 static int set_feature_tc_num_filters(struct net_device *netdev, bool enable)
2809 struct mlx5e_priv *priv = netdev_priv(netdev);
2811 if (!enable && mlx5e_tc_num_filters(priv)) {
2813 "Active offloaded tc filters, can't turn hw_tc_offload off\n");
2820 static int set_feature_rx_all(struct net_device *netdev, bool enable)
2822 struct mlx5e_priv *priv = netdev_priv(netdev);
2823 struct mlx5_core_dev *mdev = priv->mdev;
2825 return mlx5_set_port_fcs(mdev, !enable);
2828 static int set_feature_rx_vlan(struct net_device *netdev, bool enable)
2830 struct mlx5e_priv *priv = netdev_priv(netdev);
2833 mutex_lock(&priv->state_lock);
2835 priv->params.vlan_strip_disable = !enable;
2836 err = mlx5e_modify_rqs_vsd(priv, !enable);
2838 priv->params.vlan_strip_disable = enable;
2840 mutex_unlock(&priv->state_lock);
2845 #ifdef CONFIG_RFS_ACCEL
2846 static int set_feature_arfs(struct net_device *netdev, bool enable)
2848 struct mlx5e_priv *priv = netdev_priv(netdev);
2852 err = mlx5e_arfs_enable(priv);
2854 err = mlx5e_arfs_disable(priv);
2860 static int mlx5e_handle_feature(struct net_device *netdev,
2861 netdev_features_t wanted_features,
2862 netdev_features_t feature,
2863 mlx5e_feature_handler feature_handler)
2865 netdev_features_t changes = wanted_features ^ netdev->features;
2866 bool enable = !!(wanted_features & feature);
2869 if (!(changes & feature))
2872 err = feature_handler(netdev, enable);
2874 netdev_err(netdev, "%s feature 0x%llx failed err %d\n",
2875 enable ? "Enable" : "Disable", feature, err);
2879 MLX5E_SET_FEATURE(netdev, feature, enable);
2883 static int mlx5e_set_features(struct net_device *netdev,
2884 netdev_features_t features)
2888 err = mlx5e_handle_feature(netdev, features, NETIF_F_LRO,
2890 err |= mlx5e_handle_feature(netdev, features,
2891 NETIF_F_HW_VLAN_CTAG_FILTER,
2892 set_feature_vlan_filter);
2893 err |= mlx5e_handle_feature(netdev, features, NETIF_F_HW_TC,
2894 set_feature_tc_num_filters);
2895 err |= mlx5e_handle_feature(netdev, features, NETIF_F_RXALL,
2896 set_feature_rx_all);
2897 err |= mlx5e_handle_feature(netdev, features, NETIF_F_HW_VLAN_CTAG_RX,
2898 set_feature_rx_vlan);
2899 #ifdef CONFIG_RFS_ACCEL
2900 err |= mlx5e_handle_feature(netdev, features, NETIF_F_NTUPLE,
2904 return err ? -EINVAL : 0;
2907 static int mlx5e_change_mtu(struct net_device *netdev, int new_mtu)
2909 struct mlx5e_priv *priv = netdev_priv(netdev);
2914 mutex_lock(&priv->state_lock);
2916 reset = !priv->params.lro_en &&
2917 (priv->params.rq_wq_type !=
2918 MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ);
2920 was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
2921 if (was_opened && reset)
2922 mlx5e_close_locked(netdev);
2924 netdev->mtu = new_mtu;
2925 mlx5e_set_dev_port_mtu(netdev);
2927 if (was_opened && reset)
2928 err = mlx5e_open_locked(netdev);
2930 mutex_unlock(&priv->state_lock);
2935 static int mlx5e_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2939 return mlx5e_hwstamp_set(dev, ifr);
2941 return mlx5e_hwstamp_get(dev, ifr);
2947 static int mlx5e_set_vf_mac(struct net_device *dev, int vf, u8 *mac)
2949 struct mlx5e_priv *priv = netdev_priv(dev);
2950 struct mlx5_core_dev *mdev = priv->mdev;
2952 return mlx5_eswitch_set_vport_mac(mdev->priv.eswitch, vf + 1, mac);
2955 static int mlx5e_set_vf_vlan(struct net_device *dev, int vf, u16 vlan, u8 qos,
2958 struct mlx5e_priv *priv = netdev_priv(dev);
2959 struct mlx5_core_dev *mdev = priv->mdev;
2961 if (vlan_proto != htons(ETH_P_8021Q))
2962 return -EPROTONOSUPPORT;
2964 return mlx5_eswitch_set_vport_vlan(mdev->priv.eswitch, vf + 1,
2968 static int mlx5e_set_vf_spoofchk(struct net_device *dev, int vf, bool setting)
2970 struct mlx5e_priv *priv = netdev_priv(dev);
2971 struct mlx5_core_dev *mdev = priv->mdev;
2973 return mlx5_eswitch_set_vport_spoofchk(mdev->priv.eswitch, vf + 1, setting);
2976 static int mlx5e_set_vf_trust(struct net_device *dev, int vf, bool setting)
2978 struct mlx5e_priv *priv = netdev_priv(dev);
2979 struct mlx5_core_dev *mdev = priv->mdev;
2981 return mlx5_eswitch_set_vport_trust(mdev->priv.eswitch, vf + 1, setting);
2984 static int mlx5e_set_vf_rate(struct net_device *dev, int vf, int min_tx_rate,
2987 struct mlx5e_priv *priv = netdev_priv(dev);
2988 struct mlx5_core_dev *mdev = priv->mdev;
2993 return mlx5_eswitch_set_vport_rate(mdev->priv.eswitch, vf + 1,
2997 static int mlx5_vport_link2ifla(u8 esw_link)
3000 case MLX5_ESW_VPORT_ADMIN_STATE_DOWN:
3001 return IFLA_VF_LINK_STATE_DISABLE;
3002 case MLX5_ESW_VPORT_ADMIN_STATE_UP:
3003 return IFLA_VF_LINK_STATE_ENABLE;
3005 return IFLA_VF_LINK_STATE_AUTO;
3008 static int mlx5_ifla_link2vport(u8 ifla_link)
3010 switch (ifla_link) {
3011 case IFLA_VF_LINK_STATE_DISABLE:
3012 return MLX5_ESW_VPORT_ADMIN_STATE_DOWN;
3013 case IFLA_VF_LINK_STATE_ENABLE:
3014 return MLX5_ESW_VPORT_ADMIN_STATE_UP;
3016 return MLX5_ESW_VPORT_ADMIN_STATE_AUTO;
3019 static int mlx5e_set_vf_link_state(struct net_device *dev, int vf,
3022 struct mlx5e_priv *priv = netdev_priv(dev);
3023 struct mlx5_core_dev *mdev = priv->mdev;
3025 return mlx5_eswitch_set_vport_state(mdev->priv.eswitch, vf + 1,
3026 mlx5_ifla_link2vport(link_state));
3029 static int mlx5e_get_vf_config(struct net_device *dev,
3030 int vf, struct ifla_vf_info *ivi)
3032 struct mlx5e_priv *priv = netdev_priv(dev);
3033 struct mlx5_core_dev *mdev = priv->mdev;
3036 err = mlx5_eswitch_get_vport_config(mdev->priv.eswitch, vf + 1, ivi);
3039 ivi->linkstate = mlx5_vport_link2ifla(ivi->linkstate);
3043 static int mlx5e_get_vf_stats(struct net_device *dev,
3044 int vf, struct ifla_vf_stats *vf_stats)
3046 struct mlx5e_priv *priv = netdev_priv(dev);
3047 struct mlx5_core_dev *mdev = priv->mdev;
3049 return mlx5_eswitch_get_vport_stats(mdev->priv.eswitch, vf + 1,
3053 void mlx5e_add_vxlan_port(struct net_device *netdev,
3054 struct udp_tunnel_info *ti)
3056 struct mlx5e_priv *priv = netdev_priv(netdev);
3058 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3061 if (!mlx5e_vxlan_allowed(priv->mdev))
3064 mlx5e_vxlan_queue_work(priv, ti->sa_family, be16_to_cpu(ti->port), 1);
3067 void mlx5e_del_vxlan_port(struct net_device *netdev,
3068 struct udp_tunnel_info *ti)
3070 struct mlx5e_priv *priv = netdev_priv(netdev);
3072 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3075 if (!mlx5e_vxlan_allowed(priv->mdev))
3078 mlx5e_vxlan_queue_work(priv, ti->sa_family, be16_to_cpu(ti->port), 0);
3081 static netdev_features_t mlx5e_vxlan_features_check(struct mlx5e_priv *priv,
3082 struct sk_buff *skb,
3083 netdev_features_t features)
3085 struct udphdr *udph;
3089 switch (vlan_get_protocol(skb)) {
3090 case htons(ETH_P_IP):
3091 proto = ip_hdr(skb)->protocol;
3093 case htons(ETH_P_IPV6):
3094 proto = ipv6_hdr(skb)->nexthdr;
3100 if (proto == IPPROTO_UDP) {
3101 udph = udp_hdr(skb);
3102 port = be16_to_cpu(udph->dest);
3105 /* Verify if UDP port is being offloaded by HW */
3106 if (port && mlx5e_vxlan_lookup_port(priv, port))
3110 /* Disable CSUM and GSO if the udp dport is not offloaded by HW */
3111 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
3114 static netdev_features_t mlx5e_features_check(struct sk_buff *skb,
3115 struct net_device *netdev,
3116 netdev_features_t features)
3118 struct mlx5e_priv *priv = netdev_priv(netdev);
3120 features = vlan_features_check(skb, features);
3121 features = vxlan_features_check(skb, features);
3123 /* Validate if the tunneled packet is being offloaded by HW */
3124 if (skb->encapsulation &&
3125 (features & NETIF_F_CSUM_MASK || features & NETIF_F_GSO_MASK))
3126 return mlx5e_vxlan_features_check(priv, skb, features);
3131 static void mlx5e_tx_timeout(struct net_device *dev)
3133 struct mlx5e_priv *priv = netdev_priv(dev);
3134 bool sched_work = false;
3137 netdev_err(dev, "TX timeout detected\n");
3139 for (i = 0; i < priv->params.num_channels * priv->params.num_tc; i++) {
3140 struct mlx5e_sq *sq = priv->txq_to_sq_map[i];
3142 if (!netif_xmit_stopped(netdev_get_tx_queue(dev, i)))
3145 clear_bit(MLX5E_SQ_STATE_ENABLED, &sq->state);
3146 netdev_err(dev, "TX timeout on queue: %d, SQ: 0x%x, CQ: 0x%x, SQ Cons: 0x%x SQ Prod: 0x%x\n",
3147 i, sq->sqn, sq->cq.mcq.cqn, sq->cc, sq->pc);
3150 if (sched_work && test_bit(MLX5E_STATE_OPENED, &priv->state))
3151 schedule_work(&priv->tx_timeout_work);
3154 static int mlx5e_xdp_set(struct net_device *netdev, struct bpf_prog *prog)
3156 struct mlx5e_priv *priv = netdev_priv(netdev);
3157 struct bpf_prog *old_prog;
3159 bool reset, was_opened;
3162 if (prog && prog->xdp_adjust_head) {
3163 netdev_err(netdev, "Does not support bpf_xdp_adjust_head()\n");
3167 mutex_lock(&priv->state_lock);
3169 if ((netdev->features & NETIF_F_LRO) && prog) {
3170 netdev_warn(netdev, "can't set XDP while LRO is on, disable LRO first\n");
3175 was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
3176 /* no need for full reset when exchanging programs */
3177 reset = (!priv->xdp_prog || !prog);
3179 if (was_opened && reset)
3180 mlx5e_close_locked(netdev);
3181 if (was_opened && !reset) {
3182 /* num_channels is invariant here, so we can take the
3183 * batched reference right upfront.
3185 prog = bpf_prog_add(prog, priv->params.num_channels);
3187 err = PTR_ERR(prog);
3192 /* exchange programs, extra prog reference we got from caller
3193 * as long as we don't fail from this point onwards.
3195 old_prog = xchg(&priv->xdp_prog, prog);
3197 bpf_prog_put(old_prog);
3199 if (reset) /* change RQ type according to priv->xdp_prog */
3200 mlx5e_set_rq_priv_params(priv);
3202 if (was_opened && reset)
3203 mlx5e_open_locked(netdev);
3205 if (!test_bit(MLX5E_STATE_OPENED, &priv->state) || reset)
3208 /* exchanging programs w/o reset, we update ref counts on behalf
3209 * of the channels RQs here.
3211 for (i = 0; i < priv->params.num_channels; i++) {
3212 struct mlx5e_channel *c = priv->channel[i];
3214 clear_bit(MLX5E_RQ_STATE_ENABLED, &c->rq.state);
3215 napi_synchronize(&c->napi);
3216 /* prevent mlx5e_poll_rx_cq from accessing rq->xdp_prog */
3218 old_prog = xchg(&c->rq.xdp_prog, prog);
3220 set_bit(MLX5E_RQ_STATE_ENABLED, &c->rq.state);
3221 /* napi_schedule in case we have missed anything */
3222 set_bit(MLX5E_CHANNEL_NAPI_SCHED, &c->flags);
3223 napi_schedule(&c->napi);
3226 bpf_prog_put(old_prog);
3230 mutex_unlock(&priv->state_lock);
3234 static bool mlx5e_xdp_attached(struct net_device *dev)
3236 struct mlx5e_priv *priv = netdev_priv(dev);
3238 return !!priv->xdp_prog;
3241 static int mlx5e_xdp(struct net_device *dev, struct netdev_xdp *xdp)
3243 switch (xdp->command) {
3244 case XDP_SETUP_PROG:
3245 return mlx5e_xdp_set(dev, xdp->prog);
3246 case XDP_QUERY_PROG:
3247 xdp->prog_attached = mlx5e_xdp_attached(dev);
3254 #ifdef CONFIG_NET_POLL_CONTROLLER
3255 /* Fake "interrupt" called by netpoll (eg netconsole) to send skbs without
3256 * reenabling interrupts.
3258 static void mlx5e_netpoll(struct net_device *dev)
3260 struct mlx5e_priv *priv = netdev_priv(dev);
3263 for (i = 0; i < priv->params.num_channels; i++)
3264 napi_schedule(&priv->channel[i]->napi);
3268 static const struct net_device_ops mlx5e_netdev_ops_basic = {
3269 .ndo_open = mlx5e_open,
3270 .ndo_stop = mlx5e_close,
3271 .ndo_start_xmit = mlx5e_xmit,
3272 .ndo_setup_tc = mlx5e_ndo_setup_tc,
3273 .ndo_select_queue = mlx5e_select_queue,
3274 .ndo_get_stats64 = mlx5e_get_stats,
3275 .ndo_set_rx_mode = mlx5e_set_rx_mode,
3276 .ndo_set_mac_address = mlx5e_set_mac,
3277 .ndo_vlan_rx_add_vid = mlx5e_vlan_rx_add_vid,
3278 .ndo_vlan_rx_kill_vid = mlx5e_vlan_rx_kill_vid,
3279 .ndo_set_features = mlx5e_set_features,
3280 .ndo_change_mtu = mlx5e_change_mtu,
3281 .ndo_do_ioctl = mlx5e_ioctl,
3282 .ndo_set_tx_maxrate = mlx5e_set_tx_maxrate,
3283 #ifdef CONFIG_RFS_ACCEL
3284 .ndo_rx_flow_steer = mlx5e_rx_flow_steer,
3286 .ndo_tx_timeout = mlx5e_tx_timeout,
3287 .ndo_xdp = mlx5e_xdp,
3288 #ifdef CONFIG_NET_POLL_CONTROLLER
3289 .ndo_poll_controller = mlx5e_netpoll,
3293 static const struct net_device_ops mlx5e_netdev_ops_sriov = {
3294 .ndo_open = mlx5e_open,
3295 .ndo_stop = mlx5e_close,
3296 .ndo_start_xmit = mlx5e_xmit,
3297 .ndo_setup_tc = mlx5e_ndo_setup_tc,
3298 .ndo_select_queue = mlx5e_select_queue,
3299 .ndo_get_stats64 = mlx5e_get_stats,
3300 .ndo_set_rx_mode = mlx5e_set_rx_mode,
3301 .ndo_set_mac_address = mlx5e_set_mac,
3302 .ndo_vlan_rx_add_vid = mlx5e_vlan_rx_add_vid,
3303 .ndo_vlan_rx_kill_vid = mlx5e_vlan_rx_kill_vid,
3304 .ndo_set_features = mlx5e_set_features,
3305 .ndo_change_mtu = mlx5e_change_mtu,
3306 .ndo_do_ioctl = mlx5e_ioctl,
3307 .ndo_udp_tunnel_add = mlx5e_add_vxlan_port,
3308 .ndo_udp_tunnel_del = mlx5e_del_vxlan_port,
3309 .ndo_set_tx_maxrate = mlx5e_set_tx_maxrate,
3310 .ndo_features_check = mlx5e_features_check,
3311 #ifdef CONFIG_RFS_ACCEL
3312 .ndo_rx_flow_steer = mlx5e_rx_flow_steer,
3314 .ndo_set_vf_mac = mlx5e_set_vf_mac,
3315 .ndo_set_vf_vlan = mlx5e_set_vf_vlan,
3316 .ndo_set_vf_spoofchk = mlx5e_set_vf_spoofchk,
3317 .ndo_set_vf_trust = mlx5e_set_vf_trust,
3318 .ndo_set_vf_rate = mlx5e_set_vf_rate,
3319 .ndo_get_vf_config = mlx5e_get_vf_config,
3320 .ndo_set_vf_link_state = mlx5e_set_vf_link_state,
3321 .ndo_get_vf_stats = mlx5e_get_vf_stats,
3322 .ndo_tx_timeout = mlx5e_tx_timeout,
3323 .ndo_xdp = mlx5e_xdp,
3324 #ifdef CONFIG_NET_POLL_CONTROLLER
3325 .ndo_poll_controller = mlx5e_netpoll,
3327 .ndo_has_offload_stats = mlx5e_has_offload_stats,
3328 .ndo_get_offload_stats = mlx5e_get_offload_stats,
3331 static int mlx5e_check_required_hca_cap(struct mlx5_core_dev *mdev)
3333 if (MLX5_CAP_GEN(mdev, port_type) != MLX5_CAP_PORT_TYPE_ETH)
3335 if (!MLX5_CAP_GEN(mdev, eth_net_offloads) ||
3336 !MLX5_CAP_GEN(mdev, nic_flow_table) ||
3337 !MLX5_CAP_ETH(mdev, csum_cap) ||
3338 !MLX5_CAP_ETH(mdev, max_lso_cap) ||
3339 !MLX5_CAP_ETH(mdev, vlan_cap) ||
3340 !MLX5_CAP_ETH(mdev, rss_ind_tbl_cap) ||
3341 MLX5_CAP_FLOWTABLE(mdev,
3342 flow_table_properties_nic_receive.max_ft_level)
3344 mlx5_core_warn(mdev,
3345 "Not creating net device, some required device capabilities are missing\n");
3348 if (!MLX5_CAP_ETH(mdev, self_lb_en_modifiable))
3349 mlx5_core_warn(mdev, "Self loop back prevention is not supported\n");
3350 if (!MLX5_CAP_GEN(mdev, cq_moderation))
3351 mlx5_core_warn(mdev, "CQ modiration is not supported\n");
3356 u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev)
3358 int bf_buf_size = (1 << MLX5_CAP_GEN(mdev, log_bf_reg_size)) / 2;
3360 return bf_buf_size -
3361 sizeof(struct mlx5e_tx_wqe) +
3362 2 /*sizeof(mlx5e_tx_wqe.inline_hdr_start)*/;
3365 void mlx5e_build_default_indir_rqt(struct mlx5_core_dev *mdev,
3366 u32 *indirection_rqt, int len,
3369 int node = mdev->priv.numa_node;
3370 int node_num_of_cores;
3374 node = first_online_node;
3376 node_num_of_cores = cpumask_weight(cpumask_of_node(node));
3378 if (node_num_of_cores)
3379 num_channels = min_t(int, num_channels, node_num_of_cores);
3381 for (i = 0; i < len; i++)
3382 indirection_rqt[i] = i % num_channels;
3385 static int mlx5e_get_pci_bw(struct mlx5_core_dev *mdev, u32 *pci_bw)
3387 enum pcie_link_width width;
3388 enum pci_bus_speed speed;
3391 err = pcie_get_minimum_link(mdev->pdev, &speed, &width);
3395 if (speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN)
3399 case PCIE_SPEED_2_5GT:
3400 *pci_bw = 2500 * width;
3402 case PCIE_SPEED_5_0GT:
3403 *pci_bw = 5000 * width;
3405 case PCIE_SPEED_8_0GT:
3406 *pci_bw = 8000 * width;
3415 static bool cqe_compress_heuristic(u32 link_speed, u32 pci_bw)
3417 return (link_speed && pci_bw &&
3418 (pci_bw < 40000) && (pci_bw < link_speed));
3421 void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params, u8 cq_period_mode)
3423 params->rx_cq_period_mode = cq_period_mode;
3425 params->rx_cq_moderation.pkts =
3426 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS;
3427 params->rx_cq_moderation.usec =
3428 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC;
3430 if (cq_period_mode == MLX5_CQ_PERIOD_MODE_START_FROM_CQE)
3431 params->rx_cq_moderation.usec =
3432 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE;
3435 static void mlx5e_query_min_inline(struct mlx5_core_dev *mdev,
3436 u8 *min_inline_mode)
3438 switch (MLX5_CAP_ETH(mdev, wqe_inline_mode)) {
3439 case MLX5_CAP_INLINE_MODE_L2:
3440 *min_inline_mode = MLX5_INLINE_MODE_L2;
3442 case MLX5_CAP_INLINE_MODE_VPORT_CONTEXT:
3443 mlx5_query_nic_vport_min_inline(mdev, 0, min_inline_mode);
3445 case MLX5_CAP_INLINE_MODE_NOT_REQUIRED:
3446 *min_inline_mode = MLX5_INLINE_MODE_NONE;
3451 u32 mlx5e_choose_lro_timeout(struct mlx5_core_dev *mdev, u32 wanted_timeout)
3455 /* The supported periods are organized in ascending order */
3456 for (i = 0; i < MLX5E_LRO_TIMEOUT_ARR_SIZE - 1; i++)
3457 if (MLX5_CAP_ETH(mdev, lro_timer_supported_periods[i]) >= wanted_timeout)
3460 return MLX5_CAP_ETH(mdev, lro_timer_supported_periods[i]);
3463 static void mlx5e_build_nic_netdev_priv(struct mlx5_core_dev *mdev,
3464 struct net_device *netdev,
3465 const struct mlx5e_profile *profile,
3468 struct mlx5e_priv *priv = netdev_priv(netdev);
3471 u8 cq_period_mode = MLX5_CAP_GEN(mdev, cq_period_start_from_cqe) ?
3472 MLX5_CQ_PERIOD_MODE_START_FROM_CQE :
3473 MLX5_CQ_PERIOD_MODE_START_FROM_EQE;
3476 priv->netdev = netdev;
3477 priv->params.num_channels = profile->max_nch(mdev);
3478 priv->profile = profile;
3479 priv->ppriv = ppriv;
3481 priv->params.lro_timeout =
3482 mlx5e_choose_lro_timeout(mdev, MLX5E_DEFAULT_LRO_TIMEOUT);
3484 priv->params.log_sq_size = MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE;
3486 /* set CQE compression */
3487 priv->params.rx_cqe_compress_def = false;
3488 if (MLX5_CAP_GEN(mdev, cqe_compression) &&
3489 MLX5_CAP_GEN(mdev, vport_group_manager)) {
3490 mlx5e_get_max_linkspeed(mdev, &link_speed);
3491 mlx5e_get_pci_bw(mdev, &pci_bw);
3492 mlx5_core_dbg(mdev, "Max link speed = %d, PCI BW = %d\n",
3493 link_speed, pci_bw);
3494 priv->params.rx_cqe_compress_def =
3495 cqe_compress_heuristic(link_speed, pci_bw);
3498 mlx5e_set_rq_priv_params(priv);
3499 if (priv->params.rq_wq_type == MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ)
3500 priv->params.lro_en = true;
3502 priv->params.rx_am_enabled = MLX5_CAP_GEN(mdev, cq_moderation);
3503 mlx5e_set_rx_cq_mode_params(&priv->params, cq_period_mode);
3505 priv->params.tx_cq_moderation.usec =
3506 MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC;
3507 priv->params.tx_cq_moderation.pkts =
3508 MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS;
3509 priv->params.tx_max_inline = mlx5e_get_max_inline_cap(mdev);
3510 mlx5e_query_min_inline(mdev, &priv->params.tx_min_inline_mode);
3511 priv->params.num_tc = 1;
3512 priv->params.rss_hfunc = ETH_RSS_HASH_XOR;
3514 netdev_rss_key_fill(priv->params.toeplitz_hash_key,
3515 sizeof(priv->params.toeplitz_hash_key));
3517 mlx5e_build_default_indir_rqt(mdev, priv->params.indirection_rqt,
3518 MLX5E_INDIR_RQT_SIZE, profile->max_nch(mdev));
3520 priv->params.lro_wqe_sz =
3521 MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ -
3522 /* Extra room needed for build_skb */
3524 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
3526 /* Initialize pflags */
3527 MLX5E_SET_PFLAG(priv, MLX5E_PFLAG_RX_CQE_BASED_MODER,
3528 priv->params.rx_cq_period_mode == MLX5_CQ_PERIOD_MODE_START_FROM_CQE);
3529 MLX5E_SET_PFLAG(priv, MLX5E_PFLAG_RX_CQE_COMPRESS, priv->params.rx_cqe_compress_def);
3531 mutex_init(&priv->state_lock);
3533 INIT_WORK(&priv->update_carrier_work, mlx5e_update_carrier_work);
3534 INIT_WORK(&priv->set_rx_mode_work, mlx5e_set_rx_mode_work);
3535 INIT_WORK(&priv->tx_timeout_work, mlx5e_tx_timeout_work);
3536 INIT_DELAYED_WORK(&priv->update_stats_work, mlx5e_update_stats_work);
3539 static void mlx5e_set_netdev_dev_addr(struct net_device *netdev)
3541 struct mlx5e_priv *priv = netdev_priv(netdev);
3543 mlx5_query_nic_vport_mac_address(priv->mdev, 0, netdev->dev_addr);
3544 if (is_zero_ether_addr(netdev->dev_addr) &&
3545 !MLX5_CAP_GEN(priv->mdev, vport_group_manager)) {
3546 eth_hw_addr_random(netdev);
3547 mlx5_core_info(priv->mdev, "Assigned random MAC address %pM\n", netdev->dev_addr);
3551 static const struct switchdev_ops mlx5e_switchdev_ops = {
3552 .switchdev_port_attr_get = mlx5e_attr_get,
3555 static void mlx5e_build_nic_netdev(struct net_device *netdev)
3557 struct mlx5e_priv *priv = netdev_priv(netdev);
3558 struct mlx5_core_dev *mdev = priv->mdev;
3562 SET_NETDEV_DEV(netdev, &mdev->pdev->dev);
3564 if (MLX5_CAP_GEN(mdev, vport_group_manager)) {
3565 netdev->netdev_ops = &mlx5e_netdev_ops_sriov;
3566 #ifdef CONFIG_MLX5_CORE_EN_DCB
3567 if (MLX5_CAP_GEN(mdev, qos))
3568 netdev->dcbnl_ops = &mlx5e_dcbnl_ops;
3571 netdev->netdev_ops = &mlx5e_netdev_ops_basic;
3574 netdev->watchdog_timeo = 15 * HZ;
3576 netdev->ethtool_ops = &mlx5e_ethtool_ops;
3578 netdev->vlan_features |= NETIF_F_SG;
3579 netdev->vlan_features |= NETIF_F_IP_CSUM;
3580 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
3581 netdev->vlan_features |= NETIF_F_GRO;
3582 netdev->vlan_features |= NETIF_F_TSO;
3583 netdev->vlan_features |= NETIF_F_TSO6;
3584 netdev->vlan_features |= NETIF_F_RXCSUM;
3585 netdev->vlan_features |= NETIF_F_RXHASH;
3587 if (!!MLX5_CAP_ETH(mdev, lro_cap))
3588 netdev->vlan_features |= NETIF_F_LRO;
3590 netdev->hw_features = netdev->vlan_features;
3591 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX;
3592 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX;
3593 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
3595 if (mlx5e_vxlan_allowed(mdev)) {
3596 netdev->hw_features |= NETIF_F_GSO_UDP_TUNNEL |
3597 NETIF_F_GSO_UDP_TUNNEL_CSUM |
3598 NETIF_F_GSO_PARTIAL;
3599 netdev->hw_enc_features |= NETIF_F_IP_CSUM;
3600 netdev->hw_enc_features |= NETIF_F_IPV6_CSUM;
3601 netdev->hw_enc_features |= NETIF_F_TSO;
3602 netdev->hw_enc_features |= NETIF_F_TSO6;
3603 netdev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL;
3604 netdev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM |
3605 NETIF_F_GSO_PARTIAL;
3606 netdev->gso_partial_features = NETIF_F_GSO_UDP_TUNNEL_CSUM;
3609 mlx5_query_port_fcs(mdev, &fcs_supported, &fcs_enabled);
3612 netdev->hw_features |= NETIF_F_RXALL;
3614 netdev->features = netdev->hw_features;
3615 if (!priv->params.lro_en)
3616 netdev->features &= ~NETIF_F_LRO;
3619 netdev->features &= ~NETIF_F_RXALL;
3621 #define FT_CAP(f) MLX5_CAP_FLOWTABLE(mdev, flow_table_properties_nic_receive.f)
3622 if (FT_CAP(flow_modify_en) &&
3623 FT_CAP(modify_root) &&
3624 FT_CAP(identified_miss_table_mode) &&
3625 FT_CAP(flow_table_modify)) {
3626 netdev->hw_features |= NETIF_F_HW_TC;
3627 #ifdef CONFIG_RFS_ACCEL
3628 netdev->hw_features |= NETIF_F_NTUPLE;
3632 netdev->features |= NETIF_F_HIGHDMA;
3634 netdev->priv_flags |= IFF_UNICAST_FLT;
3636 mlx5e_set_netdev_dev_addr(netdev);
3638 #ifdef CONFIG_NET_SWITCHDEV
3639 if (MLX5_CAP_GEN(mdev, vport_group_manager))
3640 netdev->switchdev_ops = &mlx5e_switchdev_ops;
3644 static void mlx5e_create_q_counter(struct mlx5e_priv *priv)
3646 struct mlx5_core_dev *mdev = priv->mdev;
3649 err = mlx5_core_alloc_q_counter(mdev, &priv->q_counter);
3651 mlx5_core_warn(mdev, "alloc queue counter failed, %d\n", err);
3652 priv->q_counter = 0;
3656 static void mlx5e_destroy_q_counter(struct mlx5e_priv *priv)
3658 if (!priv->q_counter)
3661 mlx5_core_dealloc_q_counter(priv->mdev, priv->q_counter);
3664 static void mlx5e_nic_init(struct mlx5_core_dev *mdev,
3665 struct net_device *netdev,
3666 const struct mlx5e_profile *profile,
3669 struct mlx5e_priv *priv = netdev_priv(netdev);
3671 mlx5e_build_nic_netdev_priv(mdev, netdev, profile, ppriv);
3672 mlx5e_build_nic_netdev(netdev);
3673 mlx5e_vxlan_init(priv);
3676 static void mlx5e_nic_cleanup(struct mlx5e_priv *priv)
3678 mlx5e_vxlan_cleanup(priv);
3681 bpf_prog_put(priv->xdp_prog);
3684 static int mlx5e_init_nic_rx(struct mlx5e_priv *priv)
3686 struct mlx5_core_dev *mdev = priv->mdev;
3690 err = mlx5e_create_indirect_rqts(priv);
3692 mlx5_core_warn(mdev, "create indirect rqts failed, %d\n", err);
3696 err = mlx5e_create_direct_rqts(priv);
3698 mlx5_core_warn(mdev, "create direct rqts failed, %d\n", err);
3699 goto err_destroy_indirect_rqts;
3702 err = mlx5e_create_indirect_tirs(priv);
3704 mlx5_core_warn(mdev, "create indirect tirs failed, %d\n", err);
3705 goto err_destroy_direct_rqts;
3708 err = mlx5e_create_direct_tirs(priv);
3710 mlx5_core_warn(mdev, "create direct tirs failed, %d\n", err);
3711 goto err_destroy_indirect_tirs;
3714 err = mlx5e_create_flow_steering(priv);
3716 mlx5_core_warn(mdev, "create flow steering failed, %d\n", err);
3717 goto err_destroy_direct_tirs;
3720 err = mlx5e_tc_init(priv);
3722 goto err_destroy_flow_steering;
3726 err_destroy_flow_steering:
3727 mlx5e_destroy_flow_steering(priv);
3728 err_destroy_direct_tirs:
3729 mlx5e_destroy_direct_tirs(priv);
3730 err_destroy_indirect_tirs:
3731 mlx5e_destroy_indirect_tirs(priv);
3732 err_destroy_direct_rqts:
3733 for (i = 0; i < priv->profile->max_nch(mdev); i++)
3734 mlx5e_destroy_rqt(priv, &priv->direct_tir[i].rqt);
3735 err_destroy_indirect_rqts:
3736 mlx5e_destroy_rqt(priv, &priv->indir_rqt);
3740 static void mlx5e_cleanup_nic_rx(struct mlx5e_priv *priv)
3744 mlx5e_tc_cleanup(priv);
3745 mlx5e_destroy_flow_steering(priv);
3746 mlx5e_destroy_direct_tirs(priv);
3747 mlx5e_destroy_indirect_tirs(priv);
3748 for (i = 0; i < priv->profile->max_nch(priv->mdev); i++)
3749 mlx5e_destroy_rqt(priv, &priv->direct_tir[i].rqt);
3750 mlx5e_destroy_rqt(priv, &priv->indir_rqt);
3753 static int mlx5e_init_nic_tx(struct mlx5e_priv *priv)
3757 err = mlx5e_create_tises(priv);
3759 mlx5_core_warn(priv->mdev, "create tises failed, %d\n", err);
3763 #ifdef CONFIG_MLX5_CORE_EN_DCB
3764 mlx5e_dcbnl_initialize(priv);
3769 static void mlx5e_nic_enable(struct mlx5e_priv *priv)
3771 struct net_device *netdev = priv->netdev;
3772 struct mlx5_core_dev *mdev = priv->mdev;
3773 struct mlx5_eswitch *esw = mdev->priv.eswitch;
3774 struct mlx5_eswitch_rep rep;
3776 mlx5_lag_add(mdev, netdev);
3778 mlx5e_enable_async_events(priv);
3780 if (MLX5_CAP_GEN(mdev, vport_group_manager)) {
3781 mlx5_query_nic_vport_mac_address(mdev, 0, rep.hw_id);
3782 rep.load = mlx5e_nic_rep_load;
3783 rep.unload = mlx5e_nic_rep_unload;
3784 rep.vport = FDB_UPLINK_VPORT;
3785 rep.netdev = netdev;
3786 mlx5_eswitch_register_vport_rep(esw, 0, &rep);
3789 if (netdev->reg_state != NETREG_REGISTERED)
3792 /* Device already registered: sync netdev system state */
3793 if (mlx5e_vxlan_allowed(mdev)) {
3795 udp_tunnel_get_rx_info(netdev);
3799 queue_work(priv->wq, &priv->set_rx_mode_work);
3802 static void mlx5e_nic_disable(struct mlx5e_priv *priv)
3804 struct mlx5_core_dev *mdev = priv->mdev;
3805 struct mlx5_eswitch *esw = mdev->priv.eswitch;
3807 queue_work(priv->wq, &priv->set_rx_mode_work);
3808 if (MLX5_CAP_GEN(mdev, vport_group_manager))
3809 mlx5_eswitch_unregister_vport_rep(esw, 0);
3810 mlx5e_disable_async_events(priv);
3811 mlx5_lag_remove(mdev);
3814 static const struct mlx5e_profile mlx5e_nic_profile = {
3815 .init = mlx5e_nic_init,
3816 .cleanup = mlx5e_nic_cleanup,
3817 .init_rx = mlx5e_init_nic_rx,
3818 .cleanup_rx = mlx5e_cleanup_nic_rx,
3819 .init_tx = mlx5e_init_nic_tx,
3820 .cleanup_tx = mlx5e_cleanup_nic_tx,
3821 .enable = mlx5e_nic_enable,
3822 .disable = mlx5e_nic_disable,
3823 .update_stats = mlx5e_update_stats,
3824 .max_nch = mlx5e_get_max_num_channels,
3825 .max_tc = MLX5E_MAX_NUM_TC,
3828 struct net_device *mlx5e_create_netdev(struct mlx5_core_dev *mdev,
3829 const struct mlx5e_profile *profile,
3832 int nch = profile->max_nch(mdev);
3833 struct net_device *netdev;
3834 struct mlx5e_priv *priv;
3836 netdev = alloc_etherdev_mqs(sizeof(struct mlx5e_priv),
3837 nch * profile->max_tc,
3840 mlx5_core_err(mdev, "alloc_etherdev_mqs() failed\n");
3844 profile->init(mdev, netdev, profile, ppriv);
3846 netif_carrier_off(netdev);
3848 priv = netdev_priv(netdev);
3850 priv->wq = create_singlethread_workqueue("mlx5e");
3852 goto err_cleanup_nic;
3857 profile->cleanup(priv);
3858 free_netdev(netdev);
3863 int mlx5e_attach_netdev(struct mlx5_core_dev *mdev, struct net_device *netdev)
3865 const struct mlx5e_profile *profile;
3866 struct mlx5e_priv *priv;
3870 priv = netdev_priv(netdev);
3871 profile = priv->profile;
3872 clear_bit(MLX5E_STATE_DESTROYING, &priv->state);
3874 err = profile->init_tx(priv);
3878 err = mlx5e_open_drop_rq(priv);
3880 mlx5_core_err(mdev, "open drop rq failed, %d\n", err);
3881 goto err_cleanup_tx;
3884 err = profile->init_rx(priv);
3886 goto err_close_drop_rq;
3888 mlx5e_create_q_counter(priv);
3890 mlx5e_init_l2_addr(priv);
3892 /* MTU range: 68 - hw-specific max */
3893 netdev->min_mtu = ETH_MIN_MTU;
3894 mlx5_query_port_max_mtu(priv->mdev, &max_mtu, 1);
3895 netdev->max_mtu = MLX5E_HW2SW_MTU(max_mtu);
3897 mlx5e_set_dev_port_mtu(netdev);
3899 if (profile->enable)
3900 profile->enable(priv);
3903 if (netif_running(netdev))
3905 netif_device_attach(netdev);
3911 mlx5e_close_drop_rq(priv);
3914 profile->cleanup_tx(priv);
3920 static void mlx5e_register_vport_rep(struct mlx5_core_dev *mdev)
3922 struct mlx5_eswitch *esw = mdev->priv.eswitch;
3923 int total_vfs = MLX5_TOTAL_VPORTS(mdev);
3927 if (!MLX5_CAP_GEN(mdev, vport_group_manager))
3930 mlx5_query_nic_vport_mac_address(mdev, 0, mac);
3932 for (vport = 1; vport < total_vfs; vport++) {
3933 struct mlx5_eswitch_rep rep;
3935 rep.load = mlx5e_vport_rep_load;
3936 rep.unload = mlx5e_vport_rep_unload;
3938 ether_addr_copy(rep.hw_id, mac);
3939 mlx5_eswitch_register_vport_rep(esw, vport, &rep);
3943 void mlx5e_detach_netdev(struct mlx5_core_dev *mdev, struct net_device *netdev)
3945 struct mlx5e_priv *priv = netdev_priv(netdev);
3946 const struct mlx5e_profile *profile = priv->profile;
3948 set_bit(MLX5E_STATE_DESTROYING, &priv->state);
3951 if (netif_running(netdev))
3952 mlx5e_close(netdev);
3953 netif_device_detach(netdev);
3956 if (profile->disable)
3957 profile->disable(priv);
3958 flush_workqueue(priv->wq);
3960 mlx5e_destroy_q_counter(priv);
3961 profile->cleanup_rx(priv);
3962 mlx5e_close_drop_rq(priv);
3963 profile->cleanup_tx(priv);
3964 cancel_delayed_work_sync(&priv->update_stats_work);
3967 /* mlx5e_attach and mlx5e_detach scope should be only creating/destroying
3968 * hardware contexts and to connect it to the current netdev.
3970 static int mlx5e_attach(struct mlx5_core_dev *mdev, void *vpriv)
3972 struct mlx5e_priv *priv = vpriv;
3973 struct net_device *netdev = priv->netdev;
3976 if (netif_device_present(netdev))
3979 err = mlx5e_create_mdev_resources(mdev);
3983 err = mlx5e_attach_netdev(mdev, netdev);
3985 mlx5e_destroy_mdev_resources(mdev);
3992 static void mlx5e_detach(struct mlx5_core_dev *mdev, void *vpriv)
3994 struct mlx5e_priv *priv = vpriv;
3995 struct net_device *netdev = priv->netdev;
3997 if (!netif_device_present(netdev))
4000 mlx5e_detach_netdev(mdev, netdev);
4001 mlx5e_destroy_mdev_resources(mdev);
4004 static void *mlx5e_add(struct mlx5_core_dev *mdev)
4006 struct mlx5_eswitch *esw = mdev->priv.eswitch;
4007 int total_vfs = MLX5_TOTAL_VPORTS(mdev);
4012 struct net_device *netdev;
4014 err = mlx5e_check_required_hca_cap(mdev);
4018 mlx5e_register_vport_rep(mdev);
4020 if (MLX5_CAP_GEN(mdev, vport_group_manager))
4021 ppriv = &esw->offloads.vport_reps[0];
4023 netdev = mlx5e_create_netdev(mdev, &mlx5e_nic_profile, ppriv);
4025 mlx5_core_err(mdev, "mlx5e_create_netdev failed\n");
4026 goto err_unregister_reps;
4029 priv = netdev_priv(netdev);
4031 err = mlx5e_attach(mdev, priv);
4033 mlx5_core_err(mdev, "mlx5e_attach failed, %d\n", err);
4034 goto err_destroy_netdev;
4037 err = register_netdev(netdev);
4039 mlx5_core_err(mdev, "register_netdev failed, %d\n", err);
4046 mlx5e_detach(mdev, priv);
4049 mlx5e_destroy_netdev(mdev, priv);
4051 err_unregister_reps:
4052 for (vport = 1; vport < total_vfs; vport++)
4053 mlx5_eswitch_unregister_vport_rep(esw, vport);
4058 void mlx5e_destroy_netdev(struct mlx5_core_dev *mdev, struct mlx5e_priv *priv)
4060 const struct mlx5e_profile *profile = priv->profile;
4061 struct net_device *netdev = priv->netdev;
4063 destroy_workqueue(priv->wq);
4064 if (profile->cleanup)
4065 profile->cleanup(priv);
4066 free_netdev(netdev);
4069 static void mlx5e_remove(struct mlx5_core_dev *mdev, void *vpriv)
4071 struct mlx5_eswitch *esw = mdev->priv.eswitch;
4072 int total_vfs = MLX5_TOTAL_VPORTS(mdev);
4073 struct mlx5e_priv *priv = vpriv;
4076 for (vport = 1; vport < total_vfs; vport++)
4077 mlx5_eswitch_unregister_vport_rep(esw, vport);
4079 unregister_netdev(priv->netdev);
4080 mlx5e_detach(mdev, vpriv);
4081 mlx5e_destroy_netdev(mdev, priv);
4084 static void *mlx5e_get_netdev(void *vpriv)
4086 struct mlx5e_priv *priv = vpriv;
4088 return priv->netdev;
4091 static struct mlx5_interface mlx5e_interface = {
4093 .remove = mlx5e_remove,
4094 .attach = mlx5e_attach,
4095 .detach = mlx5e_detach,
4096 .event = mlx5e_async_event,
4097 .protocol = MLX5_INTERFACE_PROTOCOL_ETH,
4098 .get_dev = mlx5e_get_netdev,
4101 void mlx5e_init(void)
4103 mlx5e_build_ptys2ethtool_map();
4104 mlx5_register_interface(&mlx5e_interface);
4107 void mlx5e_cleanup(void)
4109 mlx5_unregister_interface(&mlx5e_interface);