]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/net/ethernet/mellanox/mlx5/core/en.h
Merge tag 'x86-fpu-2020-06-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[thirdparty/linux.git] / drivers / net / ethernet / mellanox / mlx5 / core / en.h
CommitLineData
f62b8bb8 1/*
1afff42c 2 * Copyright (c) 2015-2016, Mellanox Technologies. All rights reserved.
f62b8bb8
AV
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
1afff42c
MF
32#ifndef __MLX5_EN_H__
33#define __MLX5_EN_H__
f62b8bb8
AV
34
35#include <linux/if_vlan.h>
36#include <linux/etherdevice.h>
ef9814de
EBE
37#include <linux/timecounter.h>
38#include <linux/net_tstamp.h>
3d8c38af 39#include <linux/ptp_clock_kernel.h>
48935bbb 40#include <linux/crash_dump.h>
f62b8bb8
AV
41#include <linux/mlx5/driver.h>
42#include <linux/mlx5/qp.h>
43#include <linux/mlx5/cq.h>
ada68c31 44#include <linux/mlx5/port.h>
d18a9470 45#include <linux/mlx5/vport.h>
8d7f9ecb 46#include <linux/mlx5/transobj.h>
1ae1df3a 47#include <linux/mlx5/fs.h>
e8f887ac 48#include <linux/rhashtable.h>
cb67b832 49#include <net/switchdev.h>
0ddf5432 50#include <net/xdp.h>
4f75da36 51#include <linux/dim.h>
8ff57c18 52#include <linux/bits.h>
f62b8bb8 53#include "wq.h"
f62b8bb8 54#include "mlx5_core.h"
9218b44d 55#include "en_stats.h"
fe6d86b3 56#include "en/fs.h"
cef35af3 57#include "lib/hv_vhca.h"
f62b8bb8 58
4d8fcf21 59extern const struct net_device_ops mlx5e_netdev_ops;
60bbf7ee
JDB
60struct page_pool;
61
bb909416
IL
62#define MLX5E_METADATA_ETHER_TYPE (0x8CE4)
63#define MLX5E_METADATA_ETHER_LEN 8
64
1cabe6b0
MG
65#define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v)
66
c139dbfd
ES
67#define MLX5E_ETH_HARD_MTU (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN)
68
472a1e44
TT
69#define MLX5E_HW2SW_MTU(params, hwmtu) ((hwmtu) - ((params)->hard_mtu))
70#define MLX5E_SW2HW_MTU(params, swmtu) ((swmtu) + ((params)->hard_mtu))
d8bec2b2 71
0696d608 72#define MLX5E_MAX_PRIORITY 8
2a5e7a13 73#define MLX5E_MAX_DSCP 64
f62b8bb8
AV
74#define MLX5E_MAX_NUM_TC 8
75
1bfecfca 76#define MLX5_RX_HEADROOM NET_SKB_PAD
78aedd32
TT
77#define MLX5_SKB_FRAG_SZ(len) (SKB_DATA_ALIGN(len) + \
78 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
1bfecfca 79
94816278
TT
80#define MLX5E_RX_MAX_HEAD (256)
81
f32f5bd2
DJ
82#define MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev) \
83 (6 + MLX5_CAP_GEN(mdev, cache_line_128byte)) /* HW restriction */
84#define MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, req) \
85 max_t(u32, MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev), req)
94816278
TT
86#define MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev) \
87 MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, order_base_2(MLX5E_RX_MAX_HEAD))
f32f5bd2 88
7e426671 89#define MLX5_MPWRQ_LOG_WQE_SZ 18
461017cb
TT
90#define MLX5_MPWRQ_WQE_PAGE_ORDER (MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT > 0 ? \
91 MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT : 0)
92#define MLX5_MPWRQ_PAGES_PER_WQE BIT(MLX5_MPWRQ_WQE_PAGE_ORDER)
fe4c988b
SM
93
94#define MLX5_MTT_OCTW(npages) (ALIGN(npages, 8) / 2)
73281b78 95#define MLX5E_REQUIRED_WQE_MTTS (ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8))
b8a98a4c 96#define MLX5E_LOG_ALIGNED_MPWQE_PPW (ilog2(MLX5E_REQUIRED_WQE_MTTS))
73281b78
TT
97#define MLX5E_REQUIRED_MTTS(wqes) (wqes * MLX5E_REQUIRED_WQE_MTTS)
98#define MLX5E_MAX_RQ_NUM_MTTS \
99 ((1 << 16) * 2) /* So that MLX5_MTT_OCTW(num_mtts) fits into u16 */
100#define MLX5E_ORDER2_MAX_PACKET_MTU (order_base_2(10 * 1024))
101#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW \
102 (ilog2(MLX5E_MAX_RQ_NUM_MTTS / MLX5E_REQUIRED_WQE_MTTS))
103#define MLX5E_LOG_MAX_RQ_NUM_PACKETS_MPW \
104 (MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW + \
105 (MLX5_MPWRQ_LOG_WQE_SZ - MLX5E_ORDER2_MAX_PACKET_MTU))
106
069d1146
TT
107#define MLX5E_MIN_SKB_FRAG_SZ (MLX5_SKB_FRAG_SZ(MLX5_RX_HEADROOM))
108#define MLX5E_LOG_MAX_RX_WQE_BULK \
109 (ilog2(PAGE_SIZE / roundup_pow_of_two(MLX5E_MIN_SKB_FRAG_SZ)))
110
73281b78
TT
111#define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x6
112#define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa
113#define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd
114
069d1146 115#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE (1 + MLX5E_LOG_MAX_RX_WQE_BULK)
73281b78
TT
116#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa
117#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE min_t(u8, 0xd, \
118 MLX5E_LOG_MAX_RQ_NUM_PACKETS_MPW)
119
120#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW 0x2
fe4c988b 121
d9a40271 122#define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024)
2b029556
SM
123#define MLX5E_DEFAULT_LRO_TIMEOUT 32
124#define MLX5E_LRO_TIMEOUT_ARR_SIZE 4
125
f62b8bb8 126#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10
9908aa29 127#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE 0x3
f62b8bb8
AV
128#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20
129#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10
0088cbbc 130#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC_FROM_CQE 0x10
f62b8bb8
AV
131#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20
132#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80
461017cb 133#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW 0x2
f62b8bb8 134
936896e9
AS
135#define MLX5E_LOG_INDIR_RQT_SIZE 0x7
136#define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE)
b4e029da 137#define MLX5E_MIN_NUM_CHANNELS 0x1
57c7fce1 138#define MLX5E_MAX_NUM_CHANNELS MLX5E_INDIR_RQT_SIZE
507f0c81 139#define MLX5E_MAX_NUM_SQS (MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC)
f62b8bb8 140#define MLX5E_TX_CQ_POLL_BUDGET 128
db05815b 141#define MLX5E_TX_XSK_POLL_BUDGET 64
db75373c 142#define MLX5E_SQ_RECOVER_MIN_INTERVAL 500 /* msecs */
f62b8bb8 143
ea3886ca
TT
144#define MLX5E_UMR_WQE_INLINE_SZ \
145 (sizeof(struct mlx5e_umr_wqe) + \
146 ALIGN(MLX5_MPWRQ_PAGES_PER_WQE * sizeof(struct mlx5_mtt), \
147 MLX5_UMR_MTT_ALIGNMENT))
148#define MLX5E_UMR_WQEBBS \
149 (DIV_ROUND_UP(MLX5E_UMR_WQE_INLINE_SZ, MLX5_SEND_WQE_BB))
2f48af12 150
79c48764
GP
151#define MLX5E_MSG_LEVEL NETIF_MSG_LINK
152
153#define mlx5e_dbg(mlevel, priv, format, ...) \
154do { \
155 if (NETIF_MSG_##mlevel & (priv)->msglevel) \
156 netdev_warn(priv->netdev, format, \
157 ##__VA_ARGS__); \
158} while (0)
159
db05815b
MM
160enum mlx5e_rq_group {
161 MLX5E_RQ_GROUP_REGULAR,
162 MLX5E_RQ_GROUP_XSK,
694826e3 163#define MLX5E_NUM_RQ_GROUPS(g) (1 + MLX5E_RQ_GROUP_##g)
db05815b 164};
79c48764 165
45f171b1
MM
166static inline u8 mlx5e_get_num_lag_ports(struct mlx5_core_dev *mdev)
167{
168 if (mlx5_lag_is_lacp_owner(mdev))
169 return 1;
170
171 return clamp_t(u8, MLX5_CAP_GEN(mdev, num_lag_ports), 1, MLX5_MAX_PORTS);
172}
173
461017cb
TT
174static inline u16 mlx5_min_rx_wqes(int wq_type, u32 wq_size)
175{
176 switch (wq_type) {
177 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
178 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW,
179 wq_size / 2);
180 default:
181 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES,
182 wq_size / 2);
183 }
184}
185
779d986d 186/* Use this function to get max num channels (rxqs/txqs) only to create netdev */
48935bbb
SM
187static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
188{
189 return is_kdump_kernel() ?
190 MLX5E_MIN_NUM_CHANNELS :
f2f3df55 191 min_t(int, mlx5_comp_vectors_count(mdev), MLX5E_MAX_NUM_CHANNELS);
48935bbb
SM
192}
193
2f48af12
TT
194struct mlx5e_tx_wqe {
195 struct mlx5_wqe_ctrl_seg ctrl;
a9bc3390
TT
196 union {
197 struct {
198 struct mlx5_wqe_eth_seg eth;
199 struct mlx5_wqe_data_seg data[0];
200 };
201 u8 tls_progress_params_ctx[0];
202 };
2f48af12
TT
203};
204
99cbfa93 205struct mlx5e_rx_wqe_ll {
2f48af12 206 struct mlx5_wqe_srq_next_seg next;
339ffae5 207 struct mlx5_wqe_data_seg data[];
99cbfa93
TT
208};
209
210struct mlx5e_rx_wqe_cyc {
211 struct mlx5_wqe_data_seg data[0];
2f48af12 212};
86d722ad 213
bc77b240
TT
214struct mlx5e_umr_wqe {
215 struct mlx5_wqe_ctrl_seg ctrl;
216 struct mlx5_wqe_umr_ctrl_seg uctrl;
217 struct mlx5_mkey_seg mkc;
d2ead1f3
TT
218 union {
219 struct mlx5_mtt inline_mtts[0];
220 u8 tls_static_params_ctx[0];
221 };
bc77b240
TT
222};
223
d605d668
KH
224extern const char mlx5e_self_tests[][ETH_GSTRING_LEN];
225
4e59e288 226enum mlx5e_priv_flag {
8ff57c18
TT
227 MLX5E_PFLAG_RX_CQE_BASED_MODER,
228 MLX5E_PFLAG_TX_CQE_BASED_MODER,
229 MLX5E_PFLAG_RX_CQE_COMPRESS,
230 MLX5E_PFLAG_RX_STRIDING_RQ,
231 MLX5E_PFLAG_RX_NO_CSUM_COMPLETE,
6277053a 232 MLX5E_PFLAG_XDP_TX_MPWQE,
8ff57c18 233 MLX5E_NUM_PFLAGS, /* Keep last */
4e59e288
GP
234};
235
6a9764ef 236#define MLX5E_SET_PFLAG(params, pflag, enable) \
59ece1c9
SD
237 do { \
238 if (enable) \
8ff57c18 239 (params)->pflags |= BIT(pflag); \
59ece1c9 240 else \
8ff57c18 241 (params)->pflags &= ~(BIT(pflag)); \
4e59e288
GP
242 } while (0)
243
8ff57c18 244#define MLX5E_GET_PFLAG(params, pflag) (!!((params)->pflags & (BIT(pflag))))
59ece1c9 245
08fb1dac
SM
246#ifdef CONFIG_MLX5_CORE_EN_DCB
247#define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
08fb1dac
SM
248#endif
249
f62b8bb8
AV
250struct mlx5e_params {
251 u8 log_sq_size;
461017cb 252 u8 rq_wq_type;
73281b78 253 u8 log_rq_mtu_frames;
f62b8bb8 254 u16 num_channels;
f62b8bb8 255 u8 num_tc;
9bcc8606 256 bool rx_cqe_compress_def;
69dad68d 257 bool tunneled_offload_en;
8960b389
TG
258 struct dim_cq_moder rx_cq_moderation;
259 struct dim_cq_moder tx_cq_moderation;
f62b8bb8 260 bool lro_en;
cff92d7c 261 u8 tx_min_inline_mode;
36350114 262 bool vlan_strip_disable;
102722fc 263 bool scatter_fcs_en;
9a317425 264 bool rx_dim_enabled;
cbce4f44 265 bool tx_dim_enabled;
2b029556 266 u32 lro_timeout;
59ece1c9 267 u32 pflags;
6a9764ef 268 struct bpf_prog *xdp_prog;
db05815b 269 struct mlx5e_xsk *xsk;
472a1e44
TT
270 unsigned int sw_mtu;
271 int hard_mtu;
f62b8bb8
AV
272};
273
3a6a931d
HN
274#ifdef CONFIG_MLX5_CORE_EN_DCB
275struct mlx5e_cee_config {
276 /* bw pct for priority group */
277 u8 pg_bw_pct[CEE_DCBX_MAX_PGS];
278 u8 prio_to_pg_map[CEE_DCBX_MAX_PRIO];
279 bool pfc_setting[CEE_DCBX_MAX_PRIO];
280 bool pfc_enable;
281};
282
283enum {
284 MLX5_DCB_CHG_RESET,
285 MLX5_DCB_NO_CHG,
286 MLX5_DCB_CHG_NO_RESET,
287};
288
289struct mlx5e_dcbx {
e207b7e9 290 enum mlx5_dcbx_oper_mode mode;
3a6a931d 291 struct mlx5e_cee_config cee_cfg; /* pending configuration */
2a5e7a13 292 u8 dscp_app_cnt;
820c2c5e
HN
293
294 /* The only setting that cannot be read from FW */
295 u8 tc_tsa[IEEE_8021QAZ_MAX_TCS];
9e10bf1d 296 u8 cap;
0696d608
HN
297
298 /* Buffer configuration */
ecdf2dad 299 bool manual_buffer;
0696d608
HN
300 u32 cable_len;
301 u32 xoff;
3a6a931d 302};
2a5e7a13
HN
303
304struct mlx5e_dcbx_dp {
305 u8 dscp2prio[MLX5E_MAX_DSCP];
306 u8 trust_state;
307};
3a6a931d
HN
308#endif
309
f62b8bb8 310enum {
c0f1147d 311 MLX5E_RQ_STATE_ENABLED,
8276ea13 312 MLX5E_RQ_STATE_RECOVERING,
cb3c7fd4 313 MLX5E_RQ_STATE_AM,
b856df28 314 MLX5E_RQ_STATE_NO_CSUM_COMPLETE,
db849faa 315 MLX5E_RQ_STATE_CSUM_FULL, /* cqe_csum_full hw bit is set */
f62b8bb8
AV
316};
317
f62b8bb8
AV
318struct mlx5e_cq {
319 /* data path - accessed per cqe */
320 struct mlx5_cqwq wq;
f62b8bb8
AV
321
322 /* data path - accessed per napi poll */
cb3c7fd4 323 u16 event_ctr;
f62b8bb8
AV
324 struct napi_struct *napi;
325 struct mlx5_core_cq mcq;
326 struct mlx5e_channel *channel;
327
79d356ef
TT
328 /* control */
329 struct mlx5_core_dev *mdev;
330 struct mlx5_wq_ctrl wq_ctrl;
331} ____cacheline_aligned_in_smp;
332
333struct mlx5e_cq_decomp {
7219ab34
TT
334 /* cqe decompression */
335 struct mlx5_cqe64 title;
336 struct mlx5_mini_cqe8 mini_arr[MLX5_MINI_CQE_ARRAY_SIZE];
337 u8 mini_arr_idx;
79d356ef
TT
338 u16 left;
339 u16 wqe_counter;
f62b8bb8
AV
340} ____cacheline_aligned_in_smp;
341
eba2db2b 342struct mlx5e_tx_wqe_info {
77bdf895 343 struct sk_buff *skb;
eba2db2b
SM
344 u32 num_bytes;
345 u8 num_wqebbs;
346 u8 num_dma;
d2ead1f3 347#ifdef CONFIG_MLX5_EN_TLS
f45da371 348 struct page *resync_dump_frag_page;
d2ead1f3 349#endif
eba2db2b
SM
350};
351
352enum mlx5e_dma_map_type {
353 MLX5E_DMA_MAP_SINGLE,
354 MLX5E_DMA_MAP_PAGE
355};
356
357struct mlx5e_sq_dma {
358 dma_addr_t addr;
359 u32 size;
360 enum mlx5e_dma_map_type type;
361};
362
363enum {
364 MLX5E_SQ_STATE_ENABLED,
db75373c 365 MLX5E_SQ_STATE_RECOVERING,
2ac9cfe7 366 MLX5E_SQ_STATE_IPSEC,
cbce4f44 367 MLX5E_SQ_STATE_AM,
bf239741 368 MLX5E_SQ_STATE_TLS,
b431302e 369 MLX5E_SQ_STATE_VLAN_NEED_L2_INLINE,
e7e0004a 370 MLX5E_SQ_STATE_PENDING_XSK_TX,
eba2db2b
SM
371};
372
373struct mlx5e_sq_wqe_info {
374 u8 opcode;
1de0306c 375 u8 num_wqebbs;
ed084fb6
MM
376
377 /* Auxiliary data for different opcodes. */
378 union {
379 struct {
380 struct mlx5e_rq *rq;
381 } umr;
382 };
eba2db2b 383};
2f48af12 384
31391048 385struct mlx5e_txqsq {
eba2db2b
SM
386 /* data path */
387
388 /* dirtied @completion */
389 u16 cc;
390 u32 dma_fifo_cc;
8960b389 391 struct dim dim; /* Adaptive Moderation */
eba2db2b
SM
392
393 /* dirtied @xmit */
394 u16 pc ____cacheline_aligned_in_smp;
395 u32 dma_fifo_pc;
eba2db2b
SM
396
397 struct mlx5e_cq cq;
398
eba2db2b
SM
399 /* read only */
400 struct mlx5_wq_cyc wq;
401 u32 dma_fifo_mask;
05909bab 402 struct mlx5e_sq_stats *stats;
9a3956da
TT
403 struct {
404 struct mlx5e_sq_dma *dma_fifo;
405 struct mlx5e_tx_wqe_info *wqe_info;
406 } db;
eba2db2b
SM
407 void __iomem *uar_map;
408 struct netdev_queue *txq;
409 u32 sqn;
01614d4f 410 u16 stop_room;
eba2db2b 411 u8 min_inline_mode;
eba2db2b 412 struct device *pdev;
eba2db2b
SM
413 __be32 mkey_be;
414 unsigned long state;
84d1bb2b 415 unsigned int hw_mtu;
7c39afb3
FD
416 struct hwtstamp_config *tstamp;
417 struct mlx5_clock *clock;
eba2db2b
SM
418
419 /* control path */
420 struct mlx5_wq_ctrl wq_ctrl;
421 struct mlx5e_channel *channel;
57c70d87 422 int ch_ix;
acc6c595 423 int txq_ix;
eba2db2b 424 u32 rate_limit;
de8650a8 425 struct work_struct recover_work;
31391048
SM
426} ____cacheline_aligned_in_smp;
427
c94e4f11 428struct mlx5e_dma_info {
db05815b
MM
429 dma_addr_t addr;
430 union {
431 struct page *page;
432 struct {
433 u64 handle;
434 void *data;
435 } xsk;
436 };
c94e4f11
TT
437};
438
d963fa15
MM
439/* XDP packets can be transmitted in different ways. On completion, we need to
440 * distinguish between them to clean up things in a proper way.
441 */
442enum mlx5e_xdp_xmit_mode {
443 /* An xdp_frame was transmitted due to either XDP_REDIRECT from another
444 * device or XDP_TX from an XSK RQ. The frame has to be unmapped and
445 * returned.
446 */
447 MLX5E_XDP_XMIT_MODE_FRAME,
448
449 /* The xdp_frame was created in place as a result of XDP_TX from a
450 * regular RQ. No DMA remapping happened, and the page belongs to us.
451 */
452 MLX5E_XDP_XMIT_MODE_PAGE,
453
454 /* No xdp_frame was created at all, the transmit happened from a UMEM
455 * page. The UMEM Completion Ring producer pointer has to be increased.
456 */
457 MLX5E_XDP_XMIT_MODE_XSK,
c94e4f11
TT
458};
459
460struct mlx5e_xdp_info {
d963fa15
MM
461 enum mlx5e_xdp_xmit_mode mode;
462 union {
463 struct {
464 struct xdp_frame *xdpf;
465 dma_addr_t dma_addr;
466 } frame;
467 struct {
b9673cf5 468 struct mlx5e_rq *rq;
d963fa15
MM
469 struct mlx5e_dma_info di;
470 } page;
471 };
472};
473
474struct mlx5e_xdp_xmit_data {
475 dma_addr_t dma_addr;
476 void *data;
477 u32 len;
c94e4f11
TT
478};
479
fea28dd6
TT
480struct mlx5e_xdp_info_fifo {
481 struct mlx5e_xdp_info *xi;
482 u32 *cc;
483 u32 *pc;
484 u32 mask;
485};
486
1feeab80
TT
487struct mlx5e_xdp_wqe_info {
488 u8 num_wqebbs;
c2273219 489 u8 num_pkts;
1feeab80
TT
490};
491
5e0d2eef
TT
492struct mlx5e_xdp_mpwqe {
493 /* Current MPWQE session */
494 struct mlx5e_tx_wqe *wqe;
495 u8 ds_count;
c2273219 496 u8 pkt_count;
c2273219 497 u8 inline_on;
5e0d2eef
TT
498};
499
500struct mlx5e_xdpsq;
db05815b 501typedef int (*mlx5e_fp_xmit_xdp_frame_check)(struct mlx5e_xdpsq *);
d963fa15
MM
502typedef bool (*mlx5e_fp_xmit_xdp_frame)(struct mlx5e_xdpsq *,
503 struct mlx5e_xdp_xmit_data *,
db05815b
MM
504 struct mlx5e_xdp_info *,
505 int);
d963fa15 506
31391048
SM
507struct mlx5e_xdpsq {
508 /* data path */
509
dac0d15f 510 /* dirtied @completion */
fea28dd6 511 u32 xdpi_fifo_cc;
31391048 512 u16 cc;
31391048 513
dac0d15f 514 /* dirtied @xmit */
fea28dd6
TT
515 u32 xdpi_fifo_pc ____cacheline_aligned_in_smp;
516 u16 pc;
b8180392 517 struct mlx5_wqe_ctrl_seg *doorbell_cseg;
5e0d2eef 518 struct mlx5e_xdp_mpwqe mpwqe;
31391048 519
dac0d15f 520 struct mlx5e_cq cq;
31391048
SM
521
522 /* read only */
db05815b 523 struct xdp_umem *umem;
31391048 524 struct mlx5_wq_cyc wq;
890388ad 525 struct mlx5e_xdpsq_stats *stats;
db05815b 526 mlx5e_fp_xmit_xdp_frame_check xmit_xdp_frame_check;
5e0d2eef 527 mlx5e_fp_xmit_xdp_frame xmit_xdp_frame;
dac0d15f 528 struct {
1feeab80 529 struct mlx5e_xdp_wqe_info *wqe_info;
fea28dd6 530 struct mlx5e_xdp_info_fifo xdpi_fifo;
dac0d15f 531 } db;
31391048
SM
532 void __iomem *uar_map;
533 u32 sqn;
534 struct device *pdev;
535 __be32 mkey_be;
536 u8 min_inline_mode;
537 unsigned long state;
c94e4f11 538 unsigned int hw_mtu;
31391048
SM
539
540 /* control path */
541 struct mlx5_wq_ctrl wq_ctrl;
542 struct mlx5e_channel *channel;
543} ____cacheline_aligned_in_smp;
544
545struct mlx5e_icosq {
546 /* data path */
fd9b4be8
TT
547 u16 cc;
548 u16 pc;
31391048 549
fd9b4be8 550 struct mlx5_wqe_ctrl_seg *doorbell_cseg;
31391048
SM
551 struct mlx5e_cq cq;
552
553 /* write@xmit, read@completion */
554 struct {
555 struct mlx5e_sq_wqe_info *ico_wqe;
556 } db;
557
558 /* read only */
559 struct mlx5_wq_cyc wq;
560 void __iomem *uar_map;
561 u32 sqn;
31391048
SM
562 unsigned long state;
563
564 /* control path */
565 struct mlx5_wq_ctrl wq_ctrl;
566 struct mlx5e_channel *channel;
be5323c8
AL
567
568 struct work_struct recover_work;
eba2db2b
SM
569} ____cacheline_aligned_in_smp;
570
accd5883 571struct mlx5e_wqe_frag_info {
069d1146 572 struct mlx5e_dma_info *di;
accd5883 573 u32 offset;
069d1146 574 bool last_in_page;
accd5883
TT
575};
576
eba2db2b 577struct mlx5e_umr_dma_info {
eba2db2b 578 struct mlx5e_dma_info dma_info[MLX5_MPWRQ_PAGES_PER_WQE];
eba2db2b
SM
579};
580
581struct mlx5e_mpw_info {
582 struct mlx5e_umr_dma_info umr;
583 u16 consumed_strides;
22f45398 584 DECLARE_BITMAP(xdp_xmit_bitmap, MLX5_MPWRQ_PAGES_PER_WQE);
eba2db2b
SM
585};
586
069d1146
TT
587#define MLX5E_MAX_RX_FRAGS 4
588
4415a031
TT
589/* a single cache unit is capable to serve one napi call (for non-striding rq)
590 * or a MPWQE (for striding rq).
591 */
592#define MLX5E_CACHE_UNIT (MLX5_MPWRQ_PAGES_PER_WQE > NAPI_POLL_WEIGHT ? \
593 MLX5_MPWRQ_PAGES_PER_WQE : NAPI_POLL_WEIGHT)
29c2849e 594#define MLX5E_CACHE_SIZE (4 * roundup_pow_of_two(MLX5E_CACHE_UNIT))
4415a031
TT
595struct mlx5e_page_cache {
596 u32 head;
597 u32 tail;
598 struct mlx5e_dma_info page_cache[MLX5E_CACHE_SIZE];
599};
600
eba2db2b
SM
601struct mlx5e_rq;
602typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq*, struct mlx5_cqe64*);
619a8f2a
TT
603typedef struct sk_buff *
604(*mlx5e_fp_skb_from_cqe_mpwrq)(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
605 u16 cqe_bcnt, u32 head_offset, u32 page_idx);
069d1146
TT
606typedef struct sk_buff *
607(*mlx5e_fp_skb_from_cqe)(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
608 struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
7cc6d77b 609typedef bool (*mlx5e_fp_post_rx_wqes)(struct mlx5e_rq *rq);
eba2db2b
SM
610typedef void (*mlx5e_fp_dealloc_wqe)(struct mlx5e_rq*, u16);
611
121e8927 612enum mlx5e_rq_flag {
f03590f7 613 MLX5E_RQ_FLAG_XDP_XMIT,
15143bf5 614 MLX5E_RQ_FLAG_XDP_REDIRECT,
121e8927
TT
615};
616
069d1146
TT
617struct mlx5e_rq_frag_info {
618 int frag_size;
619 int frag_stride;
620};
621
622struct mlx5e_rq_frags_info {
623 struct mlx5e_rq_frag_info arr[MLX5E_MAX_RX_FRAGS];
624 u8 num_frags;
625 u8 log_num_frags;
626 u8 wqe_bulk;
627};
628
f62b8bb8
AV
629struct mlx5e_rq {
630 /* data path */
21c59685 631 union {
accd5883 632 struct {
069d1146
TT
633 struct mlx5_wq_cyc wq;
634 struct mlx5e_wqe_frag_info *frags;
635 struct mlx5e_dma_info *di;
636 struct mlx5e_rq_frags_info info;
637 mlx5e_fp_skb_from_cqe skb_from_cqe;
accd5883 638 } wqe;
21c59685 639 struct {
422d4c40 640 struct mlx5_wq_ll wq;
b8a98a4c 641 struct mlx5e_umr_wqe umr_wqe;
21c59685 642 struct mlx5e_mpw_info *info;
619a8f2a 643 mlx5e_fp_skb_from_cqe_mpwrq skb_from_cqe_mpwrq;
b45d8b50 644 u16 num_strides;
fd9b4be8 645 u16 actual_wq_head;
89e89f7a 646 u8 log_stride_sz;
fd9b4be8
TT
647 u8 umr_in_progress;
648 u8 umr_last_bulk;
ed084fb6 649 u8 umr_completed;
21c59685
SM
650 } mpwqe;
651 };
1bfecfca 652 struct {
db05815b 653 u16 umem_headroom;
b45d8b50 654 u16 headroom;
b5503b99 655 u8 map_dir; /* dma map direction */
1bfecfca 656 } buff;
f62b8bb8 657
7cc6d77b 658 struct mlx5e_channel *channel;
f62b8bb8
AV
659 struct device *pdev;
660 struct net_device *netdev;
05909bab 661 struct mlx5e_rq_stats *stats;
f62b8bb8 662 struct mlx5e_cq cq;
79d356ef 663 struct mlx5e_cq_decomp cqd;
4415a031 664 struct mlx5e_page_cache page_cache;
7c39afb3
FD
665 struct hwtstamp_config *tstamp;
666 struct mlx5_clock *clock;
4415a031 667
2f48af12 668 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
7cc6d77b 669 mlx5e_fp_post_rx_wqes post_wqes;
6cd392a0 670 mlx5e_fp_dealloc_wqe dealloc_wqe;
f62b8bb8
AV
671
672 unsigned long state;
673 int ix;
0073c8f7 674 unsigned int hw_mtu;
f62b8bb8 675
8960b389 676 struct dim dim; /* Dynamic Interrupt Moderation */
31871f87
SM
677
678 /* XDP */
86994156 679 struct bpf_prog *xdp_prog;
b9673cf5 680 struct mlx5e_xdpsq *xdpsq;
121e8927 681 DECLARE_BITMAP(flags, 8);
60bbf7ee 682 struct page_pool *page_pool;
cb3c7fd4 683
db05815b
MM
684 /* AF_XDP zero-copy */
685 struct zero_copy_allocator zca;
686 struct xdp_umem *umem;
687
8276ea13
AL
688 struct work_struct recover_work;
689
f62b8bb8
AV
690 /* control */
691 struct mlx5_wq_ctrl wq_ctrl;
b45d8b50 692 __be32 mkey_be;
461017cb 693 u8 wq_type;
f62b8bb8 694 u32 rqn;
a43b25da 695 struct mlx5_core_dev *mdev;
ec8b9981 696 struct mlx5_core_mkey umr_mkey;
0ddf5432
JDB
697
698 /* XDP read-mostly */
699 struct xdp_rxq_info xdp_rxq;
f62b8bb8
AV
700} ____cacheline_aligned_in_smp;
701
db05815b
MM
702enum mlx5e_channel_state {
703 MLX5E_CHANNEL_STATE_XSK,
704 MLX5E_CHANNEL_NUM_STATES
705};
706
f62b8bb8
AV
707struct mlx5e_channel {
708 /* data path */
709 struct mlx5e_rq rq;
b9673cf5 710 struct mlx5e_xdpsq rq_xdpsq;
31391048
SM
711 struct mlx5e_txqsq sq[MLX5E_MAX_NUM_TC];
712 struct mlx5e_icosq icosq; /* internal control operations */
b5503b99 713 bool xdp;
f62b8bb8
AV
714 struct napi_struct napi;
715 struct device *pdev;
716 struct net_device *netdev;
717 __be32 mkey_be;
718 u8 num_tc;
45f171b1 719 u8 lag_port;
f62b8bb8 720
58b99ee3
TT
721 /* XDP_REDIRECT */
722 struct mlx5e_xdpsq xdpsq;
723
db05815b
MM
724 /* AF_XDP zero-copy */
725 struct mlx5e_rq xskrq;
726 struct mlx5e_xdpsq xsksq;
727 struct mlx5e_icosq xskicosq;
728 /* xskicosq can be accessed from any CPU - the spinlock protects it. */
729 spinlock_t xskicosq_lock;
730
a8c2eb15
TT
731 /* data path - accessed per napi poll */
732 struct irq_desc *irq_desc;
05909bab 733 struct mlx5e_ch_stats *stats;
f62b8bb8
AV
734
735 /* control */
736 struct mlx5e_priv *priv;
a43b25da 737 struct mlx5_core_dev *mdev;
7c39afb3 738 struct hwtstamp_config *tstamp;
db05815b 739 DECLARE_BITMAP(state, MLX5E_CHANNEL_NUM_STATES);
f62b8bb8 740 int ix;
231243c8 741 int cpu;
f62b8bb8
AV
742};
743
ff9c852f
SM
744struct mlx5e_channels {
745 struct mlx5e_channel **c;
746 unsigned int num;
6a9764ef 747 struct mlx5e_params params;
ff9c852f
SM
748};
749
05909bab
EBE
750struct mlx5e_channel_stats {
751 struct mlx5e_ch_stats ch;
752 struct mlx5e_sq_stats sq[MLX5E_MAX_NUM_TC];
753 struct mlx5e_rq_stats rq;
db05815b 754 struct mlx5e_rq_stats xskrq;
890388ad 755 struct mlx5e_xdpsq_stats rq_xdpsq;
58b99ee3 756 struct mlx5e_xdpsq_stats xdpsq;
db05815b 757 struct mlx5e_xdpsq_stats xsksq;
05909bab
EBE
758} ____cacheline_aligned_in_smp;
759
acff797c 760enum {
acff797c
MG
761 MLX5E_STATE_OPENED,
762 MLX5E_STATE_DESTROYING,
407e17b1 763 MLX5E_STATE_XDP_TX_ENABLED,
9cf88808 764 MLX5E_STATE_XDP_ACTIVE,
acff797c
MG
765};
766
398f3351 767struct mlx5e_rqt {
1da36696 768 u32 rqtn;
398f3351
HHZ
769 bool enabled;
770};
771
772struct mlx5e_tir {
773 u32 tirn;
774 struct mlx5e_rqt rqt;
775 struct list_head list;
1da36696
TT
776};
777
acff797c
MG
778enum {
779 MLX5E_TC_PRIO = 0,
780 MLX5E_NIC_PRIO
781};
782
bbeb53b8
AL
783struct mlx5e_rss_params {
784 u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE];
756c4160 785 u32 rx_hash_fields[MLX5E_NUM_INDIR_TIRS];
bbeb53b8
AL
786 u8 toeplitz_hash_key[40];
787 u8 hfunc;
788};
789
de8650a8
EBE
790struct mlx5e_modify_sq_param {
791 int curr_state;
792 int next_state;
793 int rl_update;
794 int rl_index;
795};
796
cef35af3
EBE
797#if IS_ENABLED(CONFIG_PCI_HYPERV_INTERFACE)
798struct mlx5e_hv_vhca_stats_agent {
799 struct mlx5_hv_vhca_agent *agent;
800 struct delayed_work work;
801 u16 delay;
802 void *buf;
803};
804#endif
805
db05815b
MM
806struct mlx5e_xsk {
807 /* UMEMs are stored separately from channels, because we don't want to
808 * lose them when channels are recreated. The kernel also stores UMEMs,
809 * but it doesn't distinguish between zero-copy and non-zero-copy UMEMs,
810 * so rely on our mechanism.
811 */
812 struct xdp_umem **umems;
813 u16 refcnt;
814 bool ever_used;
815};
816
3909a12e
MM
817/* Temporary storage for variables that are allocated when struct mlx5e_priv is
818 * initialized, and used where we can't allocate them because that functions
819 * must not fail. Use with care and make sure the same variable is not used
820 * simultaneously by multiple users.
821 */
822struct mlx5e_scratchpad {
823 cpumask_var_t cpumask;
824};
825
f62b8bb8
AV
826struct mlx5e_priv {
827 /* priv data path fields - start */
acc6c595 828 struct mlx5e_txqsq *txq2sq[MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC];
c55d8b10 829 int channel_tc2realtxq[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
2a5e7a13
HN
830#ifdef CONFIG_MLX5_CORE_EN_DCB
831 struct mlx5e_dcbx_dp dcbx_dp;
832#endif
f62b8bb8
AV
833 /* priv data path fields - end */
834
79c48764 835 u32 msglevel;
f62b8bb8
AV
836 unsigned long state;
837 struct mutex state_lock; /* Protects Interface state */
50cfa25a 838 struct mlx5e_rq drop_rq;
f62b8bb8 839
ff9c852f 840 struct mlx5e_channels channels;
45f171b1 841 u32 tisn[MLX5_MAX_PORTS][MLX5E_MAX_NUM_TC];
398f3351 842 struct mlx5e_rqt indir_rqt;
724b2aa1 843 struct mlx5e_tir indir_tir[MLX5E_NUM_INDIR_TIRS];
7b3722fa 844 struct mlx5e_tir inner_indir_tir[MLX5E_NUM_INDIR_TIRS];
724b2aa1 845 struct mlx5e_tir direct_tir[MLX5E_MAX_NUM_CHANNELS];
db05815b 846 struct mlx5e_tir xsk_tir[MLX5E_MAX_NUM_CHANNELS];
bbeb53b8 847 struct mlx5e_rss_params rss_params;
507f0c81 848 u32 tx_rates[MLX5E_MAX_NUM_SQS];
f62b8bb8 849
acff797c 850 struct mlx5e_flow_steering fs;
f62b8bb8 851
7bb29755 852 struct workqueue_struct *wq;
f62b8bb8
AV
853 struct work_struct update_carrier_work;
854 struct work_struct set_rx_mode_work;
3947ca18 855 struct work_struct tx_timeout_work;
cdeef2b1 856 struct work_struct update_stats_work;
5c7e8bbb
ED
857 struct work_struct monitor_counters_work;
858 struct mlx5_nb monitor_counters_nb;
f62b8bb8
AV
859
860 struct mlx5_core_dev *mdev;
861 struct net_device *netdev;
862 struct mlx5e_stats stats;
05909bab 863 struct mlx5e_channel_stats channel_stats[MLX5E_MAX_NUM_CHANNELS];
694826e3 864 u16 max_nch;
05909bab 865 u8 max_opened_tc;
7c39afb3 866 struct hwtstamp_config tstamp;
7cbaf9a3
MS
867 u16 q_counter;
868 u16 drop_rq_q_counter;
7cffaddd
SM
869 struct notifier_block events_nb;
870
3a6a931d
HN
871#ifdef CONFIG_MLX5_CORE_EN_DCB
872 struct mlx5e_dcbx dcbx;
873#endif
874
6bfd390b 875 const struct mlx5e_profile *profile;
127ea380 876 void *ppriv;
547eede0
IT
877#ifdef CONFIG_MLX5_EN_IPSEC
878 struct mlx5e_ipsec *ipsec;
879#endif
43585a41
IL
880#ifdef CONFIG_MLX5_EN_TLS
881 struct mlx5e_tls *tls;
882#endif
de8650a8 883 struct devlink_health_reporter *tx_reporter;
9032e719 884 struct devlink_health_reporter *rx_reporter;
162add8c 885 struct devlink_port dl_port;
db05815b 886 struct mlx5e_xsk xsk;
cef35af3
EBE
887#if IS_ENABLED(CONFIG_PCI_HYPERV_INTERFACE)
888 struct mlx5e_hv_vhca_stats_agent stats_agent;
889#endif
3909a12e 890 struct mlx5e_scratchpad scratchpad;
f62b8bb8
AV
891};
892
a43b25da 893struct mlx5e_profile {
182570b2 894 int (*init)(struct mlx5_core_dev *mdev,
a43b25da
SM
895 struct net_device *netdev,
896 const struct mlx5e_profile *profile, void *ppriv);
897 void (*cleanup)(struct mlx5e_priv *priv);
898 int (*init_rx)(struct mlx5e_priv *priv);
899 void (*cleanup_rx)(struct mlx5e_priv *priv);
900 int (*init_tx)(struct mlx5e_priv *priv);
901 void (*cleanup_tx)(struct mlx5e_priv *priv);
902 void (*enable)(struct mlx5e_priv *priv);
903 void (*disable)(struct mlx5e_priv *priv);
a90f88fe 904 int (*update_rx)(struct mlx5e_priv *priv);
a43b25da 905 void (*update_stats)(struct mlx5e_priv *priv);
7ca42c80 906 void (*update_carrier)(struct mlx5e_priv *priv);
3460c184 907 unsigned int (*stats_grps_num)(struct mlx5e_priv *priv);
f0ff8e8c 908 mlx5e_stats_grp_t *stats_grps;
20fd0c19
SM
909 struct {
910 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
911 mlx5e_fp_handle_rx_cqe handle_rx_cqe_mpwqe;
912 } rx_handlers;
a43b25da 913 int max_tc;
694826e3 914 u8 rq_groups;
a43b25da
SM
915};
916
665bc539
GP
917void mlx5e_build_ptys2ethtool_map(void);
918
f62b8bb8 919u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
a350ecce 920 struct net_device *sb_dev);
f62b8bb8 921netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
bf239741 922netdev_tx_t mlx5e_sq_xmit(struct mlx5e_txqsq *sq, struct sk_buff *skb,
3c31ff22 923 struct mlx5e_tx_wqe *wqe, u16 pi, bool xmit_more);
f62b8bb8 924
63d26b49 925void mlx5e_trigger_irq(struct mlx5e_icosq *sq);
4e0e2ea1 926void mlx5e_completion_event(struct mlx5_core_cq *mcq, struct mlx5_eqe *eqe);
f62b8bb8
AV
927void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
928int mlx5e_napi_poll(struct napi_struct *napi, int budget);
8ec736e5 929bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
44fb6fbb 930int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
31391048 931void mlx5e_free_txqsq_descs(struct mlx5e_txqsq *sq);
461017cb 932
9032e719
AL
933static inline u32 mlx5e_rqwq_get_size(struct mlx5e_rq *rq)
934{
935 switch (rq->wq_type) {
936 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
937 return mlx5_wq_ll_get_size(&rq->mpwqe.wq);
938 default:
939 return mlx5_wq_cyc_get_size(&rq->wqe.wq);
940 }
941}
942
943static inline u32 mlx5e_rqwq_get_cur_sz(struct mlx5e_rq *rq)
944{
945 switch (rq->wq_type) {
946 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
947 return rq->mpwqe.wq.cur_sz;
948 default:
949 return rq->wqe.wq.cur_sz;
950 }
951}
952
2ccb0a79
TT
953bool mlx5e_check_fragmented_striding_rq_cap(struct mlx5_core_dev *mdev);
954bool mlx5e_striding_rq_possible(struct mlx5_core_dev *mdev,
955 struct mlx5e_params *params);
956
159d2131 957void mlx5e_page_dma_unmap(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info);
db05815b
MM
958void mlx5e_page_release_dynamic(struct mlx5e_rq *rq,
959 struct mlx5e_dma_info *dma_info,
960 bool recycle);
2f48af12 961void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
461017cb 962void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
f62b8bb8 963bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
e7e0004a 964int mlx5e_poll_ico_cq(struct mlx5e_cq *cq);
7cc6d77b 965bool mlx5e_post_rx_mpwqes(struct mlx5e_rq *rq);
6cd392a0
DJ
966void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix);
967void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix);
619a8f2a
TT
968struct sk_buff *
969mlx5e_skb_from_cqe_mpwrq_linear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
970 u16 cqe_bcnt, u32 head_offset, u32 page_idx);
971struct sk_buff *
972mlx5e_skb_from_cqe_mpwrq_nonlinear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
973 u16 cqe_bcnt, u32 head_offset, u32 page_idx);
069d1146
TT
974struct sk_buff *
975mlx5e_skb_from_cqe_linear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
976 struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
977struct sk_buff *
978mlx5e_skb_from_cqe_nonlinear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
979 struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
f62b8bb8 980
d9ee0491 981void mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats);
b832d4fd 982void mlx5e_fold_sw_stats64(struct mlx5e_priv *priv, struct rtnl_link_stats64 *s);
f62b8bb8 983
33cfaaa8 984void mlx5e_init_l2_addr(struct mlx5e_priv *priv);
d605d668
KH
985int mlx5e_self_test_num(struct mlx5e_priv *priv);
986void mlx5e_self_test(struct net_device *ndev, struct ethtool_test *etest,
987 u64 *buf);
f62b8bb8
AV
988void mlx5e_set_rx_mode_work(struct work_struct *work);
989
1170fbd8
FD
990int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr);
991int mlx5e_hwstamp_get(struct mlx5e_priv *priv, struct ifreq *ifr);
be7e87f9 992int mlx5e_modify_rx_cqe_compression_locked(struct mlx5e_priv *priv, bool val);
ef9814de 993
f62b8bb8
AV
994int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
995 u16 vid);
996int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
997 u16 vid);
237f258c 998void mlx5e_timestamp_init(struct mlx5e_priv *priv);
f62b8bb8 999
a5f97fee
SM
1000struct mlx5e_redirect_rqt_param {
1001 bool is_rss;
1002 union {
1003 u32 rqn; /* Direct RQN (Non-RSS) */
1004 struct {
1005 u8 hfunc;
1006 struct mlx5e_channels *channels;
1007 } rss; /* RSS data */
1008 };
1009};
1010
1011int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz,
1012 struct mlx5e_redirect_rqt_param rrp);
bbeb53b8 1013void mlx5e_build_indir_tir_ctx_hash(struct mlx5e_rss_params *rss_params,
d930ac79 1014 const struct mlx5e_tirc_config *ttconfig,
7b3722fa 1015 void *tirc, bool inner);
080d1b17 1016void mlx5e_modify_tirs_hash(struct mlx5e_priv *priv, void *in, int inlen);
d930ac79 1017struct mlx5e_tirc_config mlx5e_tirc_get_default_config(enum mlx5e_traffic_types tt);
2d75b2bc 1018
db05815b
MM
1019struct mlx5e_xsk_param;
1020
1021struct mlx5e_rq_param;
1022int mlx5e_open_rq(struct mlx5e_channel *c, struct mlx5e_params *params,
1023 struct mlx5e_rq_param *param, struct mlx5e_xsk_param *xsk,
1024 struct xdp_umem *umem, struct mlx5e_rq *rq);
1025int mlx5e_wait_for_min_rx_wqes(struct mlx5e_rq *rq, int wait_time);
1026void mlx5e_deactivate_rq(struct mlx5e_rq *rq);
1027void mlx5e_close_rq(struct mlx5e_rq *rq);
1028
1029struct mlx5e_sq_param;
1030int mlx5e_open_icosq(struct mlx5e_channel *c, struct mlx5e_params *params,
1031 struct mlx5e_sq_param *param, struct mlx5e_icosq *sq);
1032void mlx5e_close_icosq(struct mlx5e_icosq *sq);
1033int mlx5e_open_xdpsq(struct mlx5e_channel *c, struct mlx5e_params *params,
1034 struct mlx5e_sq_param *param, struct xdp_umem *umem,
1035 struct mlx5e_xdpsq *sq, bool is_redirect);
1036void mlx5e_close_xdpsq(struct mlx5e_xdpsq *sq);
1037
1038struct mlx5e_cq_param;
c4cde580 1039int mlx5e_open_cq(struct mlx5e_channel *c, struct dim_cq_moder moder,
db05815b
MM
1040 struct mlx5e_cq_param *param, struct mlx5e_cq *cq);
1041void mlx5e_close_cq(struct mlx5e_cq *cq);
1042
f62b8bb8
AV
1043int mlx5e_open_locked(struct net_device *netdev);
1044int mlx5e_close_locked(struct net_device *netdev);
55c2503d
SM
1045
1046int mlx5e_open_channels(struct mlx5e_priv *priv,
1047 struct mlx5e_channels *chs);
1048void mlx5e_close_channels(struct mlx5e_channels *chs);
2e20a151 1049
dca147b3 1050/* Function pointer to be used to modify HW or kernel settings while
2e20a151
SM
1051 * switching channels
1052 */
b9ab5d0e
MM
1053typedef int (*mlx5e_fp_preactivate)(struct mlx5e_priv *priv, void *context);
1054#define MLX5E_DEFINE_PREACTIVATE_WRAPPER_CTX(fn) \
1055int fn##_ctx(struct mlx5e_priv *priv, void *context) \
1056{ \
1057 return fn(priv); \
1058}
484c1ada 1059int mlx5e_safe_reopen_channels(struct mlx5e_priv *priv);
877662e2
TT
1060int mlx5e_safe_switch_channels(struct mlx5e_priv *priv,
1061 struct mlx5e_channels *new_chs,
b9ab5d0e
MM
1062 mlx5e_fp_preactivate preactivate,
1063 void *context);
fe867cac 1064int mlx5e_num_channels_changed(struct mlx5e_priv *priv);
b9ab5d0e 1065int mlx5e_num_channels_changed_ctx(struct mlx5e_priv *priv, void *context);
603f4a45
SM
1066void mlx5e_activate_priv_channels(struct mlx5e_priv *priv);
1067void mlx5e_deactivate_priv_channels(struct mlx5e_priv *priv);
55c2503d 1068
d4b6c488 1069void mlx5e_build_default_indir_rqt(u32 *indirection_rqt, int len,
85082dba 1070 int num_channels);
ebeaf084
TG
1071
1072void mlx5e_reset_tx_moderation(struct mlx5e_params *params, u8 cq_period_mode);
1073void mlx5e_reset_rx_moderation(struct mlx5e_params *params, u8 cq_period_mode);
1074void mlx5e_set_tx_cq_mode_params(struct mlx5e_params *params, u8 cq_period_mode);
1075void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params, u8 cq_period_mode);
1076
2ccb0a79 1077void mlx5e_set_rq_type(struct mlx5_core_dev *mdev, struct mlx5e_params *params);
696a97cf 1078void mlx5e_init_rq_type_params(struct mlx5_core_dev *mdev,
2a0f561b 1079 struct mlx5e_params *params);
be5323c8
AL
1080int mlx5e_modify_rq_state(struct mlx5e_rq *rq, int curr_state, int next_state);
1081void mlx5e_activate_rq(struct mlx5e_rq *rq);
1082void mlx5e_deactivate_rq(struct mlx5e_rq *rq);
1083void mlx5e_free_rx_descs(struct mlx5e_rq *rq);
e239c6d6 1084void mlx5e_free_rx_in_progress_descs(struct mlx5e_rq *rq);
be5323c8
AL
1085void mlx5e_activate_icosq(struct mlx5e_icosq *icosq);
1086void mlx5e_deactivate_icosq(struct mlx5e_icosq *icosq);
9908aa29 1087
de8650a8
EBE
1088int mlx5e_modify_sq(struct mlx5_core_dev *mdev, u32 sqn,
1089 struct mlx5e_modify_sq_param *p);
1090void mlx5e_activate_txqsq(struct mlx5e_txqsq *sq);
1091void mlx5e_tx_disable_queue(struct netdev_queue *txq);
1092
e3cfc7e6
MS
1093static inline bool mlx5_tx_swp_supported(struct mlx5_core_dev *mdev)
1094{
1095 return MLX5_CAP_ETH(mdev, swp) &&
1096 MLX5_CAP_ETH(mdev, swp_csum) && MLX5_CAP_ETH(mdev, swp_lso);
1097}
1098
f62b8bb8 1099extern const struct ethtool_ops mlx5e_ethtool_ops;
08fb1dac
SM
1100#ifdef CONFIG_MLX5_CORE_EN_DCB
1101extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
1102int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
e207b7e9 1103void mlx5e_dcbnl_initialize(struct mlx5e_priv *priv);
2a5e7a13
HN
1104void mlx5e_dcbnl_init_app(struct mlx5e_priv *priv);
1105void mlx5e_dcbnl_delete_app(struct mlx5e_priv *priv);
08fb1dac
SM
1106#endif
1107
724b2aa1
HHZ
1108int mlx5e_create_tir(struct mlx5_core_dev *mdev,
1109 struct mlx5e_tir *tir, u32 *in, int inlen);
1110void mlx5e_destroy_tir(struct mlx5_core_dev *mdev,
1111 struct mlx5e_tir *tir);
b50d292b
HHZ
1112int mlx5e_create_mdev_resources(struct mlx5_core_dev *mdev);
1113void mlx5e_destroy_mdev_resources(struct mlx5_core_dev *mdev);
b676f653 1114int mlx5e_refresh_tirs(struct mlx5e_priv *priv, bool enable_uc_lb);
1afff42c 1115
bc81b9d3 1116/* common netdev helpers */
1462e48d
RD
1117void mlx5e_create_q_counters(struct mlx5e_priv *priv);
1118void mlx5e_destroy_q_counters(struct mlx5e_priv *priv);
1119int mlx5e_open_drop_rq(struct mlx5e_priv *priv,
1120 struct mlx5e_rq *drop_rq);
1121void mlx5e_close_drop_rq(struct mlx5e_rq *drop_rq);
1122
8f493ffd
SM
1123int mlx5e_create_indirect_rqt(struct mlx5e_priv *priv);
1124
46dc933c 1125int mlx5e_create_indirect_tirs(struct mlx5e_priv *priv, bool inner_ttc);
a16b8e0d 1126void mlx5e_destroy_indirect_tirs(struct mlx5e_priv *priv);
8f493ffd 1127
db05815b
MM
1128int mlx5e_create_direct_rqts(struct mlx5e_priv *priv, struct mlx5e_tir *tirs);
1129void mlx5e_destroy_direct_rqts(struct mlx5e_priv *priv, struct mlx5e_tir *tirs);
1130int mlx5e_create_direct_tirs(struct mlx5e_priv *priv, struct mlx5e_tir *tirs);
1131void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv, struct mlx5e_tir *tirs);
8f493ffd
SM
1132void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt);
1133
2b257a6e 1134int mlx5e_create_tis(struct mlx5_core_dev *mdev, void *in, u32 *tisn);
5426a0b2
SM
1135void mlx5e_destroy_tis(struct mlx5_core_dev *mdev, u32 tisn);
1136
cb67b832 1137int mlx5e_create_tises(struct mlx5e_priv *priv);
3c145626 1138void mlx5e_destroy_tises(struct mlx5e_priv *priv);
a90f88fe 1139int mlx5e_update_nic_rx(struct mlx5e_priv *priv);
b36cdb42 1140void mlx5e_update_carrier(struct mlx5e_priv *priv);
cb67b832
HHZ
1141int mlx5e_close(struct net_device *netdev);
1142int mlx5e_open(struct net_device *netdev);
5c7e8bbb 1143void mlx5e_update_ndo_stats(struct mlx5e_priv *priv);
cb67b832 1144
cdeef2b1 1145void mlx5e_queue_update_stats(struct mlx5e_priv *priv);
3f6d08d1
OG
1146int mlx5e_bits_invert(unsigned long a, int size);
1147
d9ee0491 1148int mlx5e_set_dev_port_mtu(struct mlx5e_priv *priv);
b9ab5d0e 1149int mlx5e_set_dev_port_mtu_ctx(struct mlx5e_priv *priv, void *context);
250a42b6 1150int mlx5e_change_mtu(struct net_device *netdev, int new_mtu,
b9ab5d0e 1151 mlx5e_fp_preactivate preactivate);
250a42b6 1152
076b0936
ES
1153/* ethtool helpers */
1154void mlx5e_ethtool_get_drvinfo(struct mlx5e_priv *priv,
1155 struct ethtool_drvinfo *drvinfo);
1156void mlx5e_ethtool_get_strings(struct mlx5e_priv *priv,
1157 uint32_t stringset, uint8_t *data);
1158int mlx5e_ethtool_get_sset_count(struct mlx5e_priv *priv, int sset);
1159void mlx5e_ethtool_get_ethtool_stats(struct mlx5e_priv *priv,
1160 struct ethtool_stats *stats, u64 *data);
1161void mlx5e_ethtool_get_ringparam(struct mlx5e_priv *priv,
1162 struct ethtool_ringparam *param);
1163int mlx5e_ethtool_set_ringparam(struct mlx5e_priv *priv,
1164 struct ethtool_ringparam *param);
1165void mlx5e_ethtool_get_channels(struct mlx5e_priv *priv,
1166 struct ethtool_channels *ch);
1167int mlx5e_ethtool_set_channels(struct mlx5e_priv *priv,
1168 struct ethtool_channels *ch);
1169int mlx5e_ethtool_get_coalesce(struct mlx5e_priv *priv,
1170 struct ethtool_coalesce *coal);
1171int mlx5e_ethtool_set_coalesce(struct mlx5e_priv *priv,
1172 struct ethtool_coalesce *coal);
371289b6
OG
1173int mlx5e_ethtool_get_link_ksettings(struct mlx5e_priv *priv,
1174 struct ethtool_link_ksettings *link_ksettings);
1175int mlx5e_ethtool_set_link_ksettings(struct mlx5e_priv *priv,
1176 const struct ethtool_link_ksettings *link_ksettings);
01013ad3
VB
1177int mlx5e_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key, u8 *hfunc);
1178int mlx5e_set_rxfh(struct net_device *dev, const u32 *indir, const u8 *key,
1179 const u8 hfunc);
b63293e7
VB
1180int mlx5e_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
1181 u32 *rule_locs);
1182int mlx5e_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd);
a5355de8
OG
1183u32 mlx5e_ethtool_get_rxfh_key_size(struct mlx5e_priv *priv);
1184u32 mlx5e_ethtool_get_rxfh_indir_size(struct mlx5e_priv *priv);
3844b07e
FD
1185int mlx5e_ethtool_get_ts_info(struct mlx5e_priv *priv,
1186 struct ethtool_ts_info *info);
f43d48d1
EBE
1187int mlx5e_ethtool_flash_device(struct mlx5e_priv *priv,
1188 struct ethtool_flash *flash);
371289b6
OG
1189void mlx5e_ethtool_get_pauseparam(struct mlx5e_priv *priv,
1190 struct ethtool_pauseparam *pauseparam);
1191int mlx5e_ethtool_set_pauseparam(struct mlx5e_priv *priv,
1192 struct ethtool_pauseparam *pauseparam);
076b0936 1193
2c3b5bee 1194/* mlx5e generic netdev management API */
519a0bf5
SM
1195int mlx5e_netdev_init(struct net_device *netdev,
1196 struct mlx5e_priv *priv,
1197 struct mlx5_core_dev *mdev,
1198 const struct mlx5e_profile *profile,
1199 void *ppriv);
182570b2 1200void mlx5e_netdev_cleanup(struct net_device *netdev, struct mlx5e_priv *priv);
2c3b5bee
SM
1201struct net_device*
1202mlx5e_create_netdev(struct mlx5_core_dev *mdev, const struct mlx5e_profile *profile,
779d986d 1203 int nch, void *ppriv);
2c3b5bee
SM
1204int mlx5e_attach_netdev(struct mlx5e_priv *priv);
1205void mlx5e_detach_netdev(struct mlx5e_priv *priv);
1206void mlx5e_destroy_netdev(struct mlx5e_priv *priv);
6d7ee2ed 1207void mlx5e_set_netdev_mtu_boundaries(struct mlx5e_priv *priv);
57c7fce1 1208void mlx5e_build_nic_params(struct mlx5e_priv *priv,
db05815b 1209 struct mlx5e_xsk *xsk,
bbeb53b8 1210 struct mlx5e_rss_params *rss_params,
8f493ffd 1211 struct mlx5e_params *params,
57c7fce1 1212 u16 mtu);
749359f4
GT
1213void mlx5e_build_rq_params(struct mlx5_core_dev *mdev,
1214 struct mlx5e_params *params);
bbeb53b8
AL
1215void mlx5e_build_rss_params(struct mlx5e_rss_params *rss_params,
1216 u16 num_channels);
9a317425 1217void mlx5e_rx_dim_work(struct work_struct *work);
cbce4f44 1218void mlx5e_tx_dim_work(struct work_struct *work);
073caf50
OG
1219
1220void mlx5e_add_vxlan_port(struct net_device *netdev, struct udp_tunnel_info *ti);
1221void mlx5e_del_vxlan_port(struct net_device *netdev, struct udp_tunnel_info *ti);
1222netdev_features_t mlx5e_features_check(struct sk_buff *skb,
1223 struct net_device *netdev,
1224 netdev_features_t features);
d3cbd425 1225int mlx5e_set_features(struct net_device *netdev, netdev_features_t features);
073caf50
OG
1226#ifdef CONFIG_MLX5_ESWITCH
1227int mlx5e_set_vf_mac(struct net_device *dev, int vf, u8 *mac);
1228int mlx5e_set_vf_rate(struct net_device *dev, int vf, int min_tx_rate, int max_tx_rate);
1229int mlx5e_get_vf_config(struct net_device *dev, int vf, struct ifla_vf_info *ivi);
1230int mlx5e_get_vf_stats(struct net_device *dev, int vf, struct ifla_vf_stats *vf_stats);
1231#endif
1afff42c 1232#endif /* __MLX5_EN_H__ */