]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/ethernet/mellanox/mlx5/core/en.h
xdp: base API for new XDP rx-queue info concept
[mirror_ubuntu-hirsute-kernel.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>
e8f887ac 47#include <linux/rhashtable.h>
cb67b832 48#include <net/switchdev.h>
f62b8bb8 49#include "wq.h"
f62b8bb8 50#include "mlx5_core.h"
9218b44d 51#include "en_stats.h"
f62b8bb8 52
1cabe6b0
MG
53#define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v)
54
c139dbfd
ES
55#define MLX5E_ETH_HARD_MTU (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN)
56
57#define MLX5E_HW2SW_MTU(priv, hwmtu) ((hwmtu) - ((priv)->hard_mtu))
58#define MLX5E_SW2HW_MTU(priv, swmtu) ((swmtu) + ((priv)->hard_mtu))
d8bec2b2 59
2a5e7a13 60#define MLX5E_MAX_DSCP 64
f62b8bb8
AV
61#define MLX5E_MAX_NUM_TC 8
62
e842b100 63#define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x6
f62b8bb8
AV
64#define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa
65#define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd
66
e842b100 67#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE 0x1
f62b8bb8
AV
68#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa
69#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE 0xd
70
d1c61e6d 71#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW 0x2
7e426671 72#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE_MPW 0x3
461017cb
TT
73#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW 0x6
74
1bfecfca 75#define MLX5_RX_HEADROOM NET_SKB_PAD
78aedd32
TT
76#define MLX5_SKB_FRAG_SZ(len) (SKB_DATA_ALIGN(len) + \
77 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
1bfecfca 78
f32f5bd2
DJ
79#define MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev) \
80 (6 + MLX5_CAP_GEN(mdev, cache_line_128byte)) /* HW restriction */
81#define MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, req) \
82 max_t(u32, MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev), req)
83#define MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev) MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, 6)
84#define MLX5_MPWRQ_CQE_CMPRS_LOG_STRIDE_SZ(mdev) MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, 8)
696a97cf
EE
85#define MLX5E_MPWQE_STRIDE_SZ(mdev, cqe_cmprs) \
86 (cqe_cmprs ? MLX5_MPWRQ_CQE_CMPRS_LOG_STRIDE_SZ(mdev) : \
87 MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev))
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)
93#define MLX5_MPWRQ_STRIDES_PER_PAGE (MLX5_MPWRQ_NUM_STRIDES >> \
94 MLX5_MPWRQ_WQE_PAGE_ORDER)
fe4c988b
SM
95
96#define MLX5_MTT_OCTW(npages) (ALIGN(npages, 8) / 2)
ec8b9981
TT
97#define MLX5E_REQUIRED_MTTS(wqes) \
98 (wqes * ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8))
99#define MLX5E_VALID_NUM_MTTS(num_mtts) (MLX5_MTT_OCTW(num_mtts) - 1 <= U16_MAX)
fe4c988b 100
bc77b240 101#define MLX5_UMR_ALIGN (2048)
cbad8cdd 102#define MLX5_MPWRQ_SMALL_PACKET_THRESHOLD (256)
461017cb 103
d9a40271 104#define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024)
2b029556
SM
105#define MLX5E_DEFAULT_LRO_TIMEOUT 32
106#define MLX5E_LRO_TIMEOUT_ARR_SIZE 4
107
f62b8bb8 108#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10
9908aa29 109#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE 0x3
f62b8bb8
AV
110#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20
111#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10
0088cbbc 112#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC_FROM_CQE 0x10
f62b8bb8
AV
113#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20
114#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80
461017cb 115#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW 0x2
f62b8bb8 116
936896e9
AS
117#define MLX5E_LOG_INDIR_RQT_SIZE 0x7
118#define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE)
b4e029da 119#define MLX5E_MIN_NUM_CHANNELS 0x1
936896e9 120#define MLX5E_MAX_NUM_CHANNELS (MLX5E_INDIR_RQT_SIZE >> 1)
507f0c81 121#define MLX5E_MAX_NUM_SQS (MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC)
f62b8bb8
AV
122#define MLX5E_TX_CQ_POLL_BUDGET 128
123#define MLX5E_UPDATE_STATS_INTERVAL 200 /* msecs */
124
f10b7cc7
SM
125#define MLX5E_ICOSQ_MAX_WQEBBS \
126 (DIV_ROUND_UP(sizeof(struct mlx5e_umr_wqe), MLX5_SEND_WQE_BB))
127
b5503b99 128#define MLX5E_XDP_MIN_INLINE (ETH_HLEN + VLAN_HLEN)
b5503b99 129#define MLX5E_XDP_TX_DS_COUNT \
b70149dd 130 ((sizeof(struct mlx5e_tx_wqe) / MLX5_SEND_WQE_DS) + 1 /* SG DS */)
b5503b99 131
86d722ad 132#define MLX5E_NUM_MAIN_GROUPS 9
2f48af12 133
79c48764
GP
134#define MLX5E_MSG_LEVEL NETIF_MSG_LINK
135
136#define mlx5e_dbg(mlevel, priv, format, ...) \
137do { \
138 if (NETIF_MSG_##mlevel & (priv)->msglevel) \
139 netdev_warn(priv->netdev, format, \
140 ##__VA_ARGS__); \
141} while (0)
142
143
461017cb
TT
144static inline u16 mlx5_min_rx_wqes(int wq_type, u32 wq_size)
145{
146 switch (wq_type) {
147 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
148 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW,
149 wq_size / 2);
150 default:
151 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES,
152 wq_size / 2);
153 }
154}
155
156static inline int mlx5_min_log_rq_size(int wq_type)
157{
158 switch (wq_type) {
159 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
160 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW;
161 default:
162 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE;
163 }
164}
165
166static inline int mlx5_max_log_rq_size(int wq_type)
167{
168 switch (wq_type) {
169 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
170 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW;
171 default:
172 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE;
173 }
174}
175
48935bbb
SM
176static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
177{
178 return is_kdump_kernel() ?
179 MLX5E_MIN_NUM_CHANNELS :
180 min_t(int, mdev->priv.eq_table.num_comp_vectors,
181 MLX5E_MAX_NUM_CHANNELS);
182}
183
2f48af12
TT
184struct mlx5e_tx_wqe {
185 struct mlx5_wqe_ctrl_seg ctrl;
186 struct mlx5_wqe_eth_seg eth;
187};
188
189struct mlx5e_rx_wqe {
190 struct mlx5_wqe_srq_next_seg next;
191 struct mlx5_wqe_data_seg data;
192};
86d722ad 193
bc77b240
TT
194struct mlx5e_umr_wqe {
195 struct mlx5_wqe_ctrl_seg ctrl;
196 struct mlx5_wqe_umr_ctrl_seg uctrl;
197 struct mlx5_mkey_seg mkc;
198 struct mlx5_wqe_data_seg data;
199};
200
d605d668
KH
201extern const char mlx5e_self_tests[][ETH_GSTRING_LEN];
202
4e59e288 203static const char mlx5e_priv_flags[][ETH_GSTRING_LEN] = {
9908aa29 204 "rx_cqe_moder",
0088cbbc 205 "tx_cqe_moder",
9bcc8606 206 "rx_cqe_compress",
4e59e288
GP
207};
208
209enum mlx5e_priv_flag {
9908aa29 210 MLX5E_PFLAG_RX_CQE_BASED_MODER = (1 << 0),
0088cbbc
TG
211 MLX5E_PFLAG_TX_CQE_BASED_MODER = (1 << 1),
212 MLX5E_PFLAG_RX_CQE_COMPRESS = (1 << 2),
4e59e288
GP
213};
214
6a9764ef 215#define MLX5E_SET_PFLAG(params, pflag, enable) \
59ece1c9
SD
216 do { \
217 if (enable) \
6a9764ef 218 (params)->pflags |= (pflag); \
59ece1c9 219 else \
6a9764ef 220 (params)->pflags &= ~(pflag); \
4e59e288
GP
221 } while (0)
222
6a9764ef 223#define MLX5E_GET_PFLAG(params, pflag) (!!((params)->pflags & (pflag)))
59ece1c9 224
08fb1dac
SM
225#ifdef CONFIG_MLX5_CORE_EN_DCB
226#define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
08fb1dac
SM
227#endif
228
9908aa29
TT
229struct mlx5e_cq_moder {
230 u16 usec;
231 u16 pkts;
0088cbbc 232 u8 cq_period_mode;
9908aa29
TT
233};
234
f62b8bb8
AV
235struct mlx5e_params {
236 u8 log_sq_size;
461017cb 237 u8 rq_wq_type;
bce2b2bf 238 u16 rq_headroom;
d9d9f156
TT
239 u8 mpwqe_log_stride_sz;
240 u8 mpwqe_log_num_strides;
f62b8bb8
AV
241 u8 log_rq_size;
242 u16 num_channels;
f62b8bb8 243 u8 num_tc;
9bcc8606 244 bool rx_cqe_compress_def;
9908aa29
TT
245 struct mlx5e_cq_moder rx_cq_moderation;
246 struct mlx5e_cq_moder tx_cq_moderation;
f62b8bb8
AV
247 bool lro_en;
248 u32 lro_wqe_sz;
58d52291 249 u16 tx_max_inline;
cff92d7c 250 u8 tx_min_inline_mode;
2d75b2bc
AS
251 u8 rss_hfunc;
252 u8 toeplitz_hash_key[40];
253 u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE];
36350114 254 bool vlan_strip_disable;
102722fc 255 bool scatter_fcs_en;
cb3c7fd4 256 bool rx_am_enabled;
2b029556 257 u32 lro_timeout;
59ece1c9 258 u32 pflags;
6a9764ef 259 struct bpf_prog *xdp_prog;
f62b8bb8
AV
260};
261
3a6a931d
HN
262#ifdef CONFIG_MLX5_CORE_EN_DCB
263struct mlx5e_cee_config {
264 /* bw pct for priority group */
265 u8 pg_bw_pct[CEE_DCBX_MAX_PGS];
266 u8 prio_to_pg_map[CEE_DCBX_MAX_PRIO];
267 bool pfc_setting[CEE_DCBX_MAX_PRIO];
268 bool pfc_enable;
269};
270
271enum {
272 MLX5_DCB_CHG_RESET,
273 MLX5_DCB_NO_CHG,
274 MLX5_DCB_CHG_NO_RESET,
275};
276
277struct mlx5e_dcbx {
e207b7e9 278 enum mlx5_dcbx_oper_mode mode;
3a6a931d 279 struct mlx5e_cee_config cee_cfg; /* pending configuration */
2a5e7a13 280 u8 dscp_app_cnt;
820c2c5e
HN
281
282 /* The only setting that cannot be read from FW */
283 u8 tc_tsa[IEEE_8021QAZ_MAX_TCS];
9e10bf1d 284 u8 cap;
3a6a931d 285};
2a5e7a13
HN
286
287struct mlx5e_dcbx_dp {
288 u8 dscp2prio[MLX5E_MAX_DSCP];
289 u8 trust_state;
290};
3a6a931d
HN
291#endif
292
f62b8bb8 293enum {
c0f1147d 294 MLX5E_RQ_STATE_ENABLED,
cb3c7fd4 295 MLX5E_RQ_STATE_AM,
f62b8bb8
AV
296};
297
a1eaba4c
TT
298#define MLX5E_TEST_BIT(state, nr) (state & BIT(nr))
299
f62b8bb8
AV
300struct mlx5e_cq {
301 /* data path - accessed per cqe */
302 struct mlx5_cqwq wq;
f62b8bb8
AV
303
304 /* data path - accessed per napi poll */
cb3c7fd4 305 u16 event_ctr;
f62b8bb8
AV
306 struct napi_struct *napi;
307 struct mlx5_core_cq mcq;
308 struct mlx5e_channel *channel;
309
7219ab34
TT
310 /* cqe decompression */
311 struct mlx5_cqe64 title;
312 struct mlx5_mini_cqe8 mini_arr[MLX5_MINI_CQE_ARRAY_SIZE];
313 u8 mini_arr_idx;
314 u16 decmprs_left;
315 u16 decmprs_wqe_counter;
316
f62b8bb8 317 /* control */
a43b25da 318 struct mlx5_core_dev *mdev;
1c1b5228 319 struct mlx5_frag_wq_ctrl wq_ctrl;
f62b8bb8
AV
320} ____cacheline_aligned_in_smp;
321
eba2db2b 322struct mlx5e_tx_wqe_info {
77bdf895 323 struct sk_buff *skb;
eba2db2b
SM
324 u32 num_bytes;
325 u8 num_wqebbs;
326 u8 num_dma;
327};
328
329enum mlx5e_dma_map_type {
330 MLX5E_DMA_MAP_SINGLE,
331 MLX5E_DMA_MAP_PAGE
332};
333
334struct mlx5e_sq_dma {
335 dma_addr_t addr;
336 u32 size;
337 enum mlx5e_dma_map_type type;
338};
339
340enum {
341 MLX5E_SQ_STATE_ENABLED,
2ac9cfe7 342 MLX5E_SQ_STATE_IPSEC,
eba2db2b
SM
343};
344
345struct mlx5e_sq_wqe_info {
346 u8 opcode;
eba2db2b 347};
2f48af12 348
31391048 349struct mlx5e_txqsq {
eba2db2b
SM
350 /* data path */
351
352 /* dirtied @completion */
353 u16 cc;
354 u32 dma_fifo_cc;
355
356 /* dirtied @xmit */
357 u16 pc ____cacheline_aligned_in_smp;
358 u32 dma_fifo_pc;
359 struct mlx5e_sq_stats stats;
360
361 struct mlx5e_cq cq;
362
31391048
SM
363 /* write@xmit, read@completion */
364 struct {
31391048
SM
365 struct mlx5e_sq_dma *dma_fifo;
366 struct mlx5e_tx_wqe_info *wqe_info;
eba2db2b
SM
367 } db;
368
369 /* read only */
370 struct mlx5_wq_cyc wq;
371 u32 dma_fifo_mask;
372 void __iomem *uar_map;
373 struct netdev_queue *txq;
374 u32 sqn;
375 u16 max_inline;
376 u8 min_inline_mode;
377 u16 edge;
378 struct device *pdev;
eba2db2b
SM
379 __be32 mkey_be;
380 unsigned long state;
7c39afb3
FD
381 struct hwtstamp_config *tstamp;
382 struct mlx5_clock *clock;
eba2db2b
SM
383
384 /* control path */
385 struct mlx5_wq_ctrl wq_ctrl;
386 struct mlx5e_channel *channel;
acc6c595 387 int txq_ix;
eba2db2b 388 u32 rate_limit;
31391048
SM
389} ____cacheline_aligned_in_smp;
390
391struct mlx5e_xdpsq {
392 /* data path */
393
394 /* dirtied @rx completion */
395 u16 cc;
396 u16 pc;
397
398 struct mlx5e_cq cq;
399
400 /* write@xmit, read@completion */
401 struct {
402 struct mlx5e_dma_info *di;
403 bool doorbell;
404 } db;
405
406 /* read only */
407 struct mlx5_wq_cyc wq;
408 void __iomem *uar_map;
409 u32 sqn;
410 struct device *pdev;
411 __be32 mkey_be;
412 u8 min_inline_mode;
413 unsigned long state;
414
415 /* control path */
416 struct mlx5_wq_ctrl wq_ctrl;
417 struct mlx5e_channel *channel;
418} ____cacheline_aligned_in_smp;
419
420struct mlx5e_icosq {
421 /* data path */
422
31391048
SM
423 /* dirtied @xmit */
424 u16 pc ____cacheline_aligned_in_smp;
31391048
SM
425
426 struct mlx5e_cq cq;
427
428 /* write@xmit, read@completion */
429 struct {
430 struct mlx5e_sq_wqe_info *ico_wqe;
431 } db;
432
433 /* read only */
434 struct mlx5_wq_cyc wq;
435 void __iomem *uar_map;
436 u32 sqn;
437 u16 edge;
31391048
SM
438 __be32 mkey_be;
439 unsigned long state;
440
441 /* control path */
442 struct mlx5_wq_ctrl wq_ctrl;
443 struct mlx5e_channel *channel;
eba2db2b
SM
444} ____cacheline_aligned_in_smp;
445
864b2d71
SM
446static inline bool
447mlx5e_wqc_has_room_for(struct mlx5_wq_cyc *wq, u16 cc, u16 pc, u16 n)
eba2db2b 448{
864b2d71 449 return (((wq->sz_m1 & (cc - pc)) >= n) || (cc == pc));
eba2db2b 450}
6cd392a0 451
461017cb
TT
452struct mlx5e_dma_info {
453 struct page *page;
454 dma_addr_t addr;
455};
456
accd5883
TT
457struct mlx5e_wqe_frag_info {
458 struct mlx5e_dma_info di;
459 u32 offset;
460};
461
eba2db2b
SM
462struct mlx5e_umr_dma_info {
463 __be64 *mtt;
464 dma_addr_t mtt_addr;
465 struct mlx5e_dma_info dma_info[MLX5_MPWRQ_PAGES_PER_WQE];
466 struct mlx5e_umr_wqe wqe;
467};
468
469struct mlx5e_mpw_info {
470 struct mlx5e_umr_dma_info umr;
471 u16 consumed_strides;
472 u16 skbs_frags[MLX5_MPWRQ_PAGES_PER_WQE];
473};
474
cb3c7fd4
GR
475struct mlx5e_rx_am_stats {
476 int ppms; /* packets per msec */
c3164d2f 477 int bpms; /* bytes per msec */
cb3c7fd4
GR
478 int epms; /* events per msec */
479};
480
481struct mlx5e_rx_am_sample {
53acd76c
TG
482 ktime_t time;
483 u32 pkt_ctr;
484 u32 byte_ctr;
485 u16 event_ctr;
cb3c7fd4
GR
486};
487
488struct mlx5e_rx_am { /* Adaptive Moderation */
489 u8 state;
490 struct mlx5e_rx_am_stats prev_stats;
491 struct mlx5e_rx_am_sample start_sample;
492 struct work_struct work;
493 u8 profile_ix;
494 u8 mode;
495 u8 tune_state;
496 u8 steps_right;
497 u8 steps_left;
498 u8 tired;
499};
500
4415a031
TT
501/* a single cache unit is capable to serve one napi call (for non-striding rq)
502 * or a MPWQE (for striding rq).
503 */
504#define MLX5E_CACHE_UNIT (MLX5_MPWRQ_PAGES_PER_WQE > NAPI_POLL_WEIGHT ? \
505 MLX5_MPWRQ_PAGES_PER_WQE : NAPI_POLL_WEIGHT)
29c2849e 506#define MLX5E_CACHE_SIZE (4 * roundup_pow_of_two(MLX5E_CACHE_UNIT))
4415a031
TT
507struct mlx5e_page_cache {
508 u32 head;
509 u32 tail;
510 struct mlx5e_dma_info page_cache[MLX5E_CACHE_SIZE];
511};
512
eba2db2b
SM
513struct mlx5e_rq;
514typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq*, struct mlx5_cqe64*);
7cc6d77b 515typedef bool (*mlx5e_fp_post_rx_wqes)(struct mlx5e_rq *rq);
eba2db2b
SM
516typedef void (*mlx5e_fp_dealloc_wqe)(struct mlx5e_rq*, u16);
517
f62b8bb8
AV
518struct mlx5e_rq {
519 /* data path */
520 struct mlx5_wq_ll wq;
1bfecfca 521
21c59685 522 union {
accd5883
TT
523 struct {
524 struct mlx5e_wqe_frag_info *frag_info;
525 u32 frag_sz; /* max possible skb frag_sz */
b45d8b50
TT
526 union {
527 bool page_reuse;
528 bool xdp_xmit;
529 };
accd5883 530 } wqe;
21c59685
SM
531 struct {
532 struct mlx5e_mpw_info *info;
533 void *mtt_no_align;
b45d8b50 534 u16 num_strides;
89e89f7a 535 u8 log_stride_sz;
a071cb9f 536 bool umr_in_progress;
21c59685
SM
537 } mpwqe;
538 };
1bfecfca 539 struct {
b45d8b50 540 u16 headroom;
1bfecfca 541 u8 page_order;
b5503b99 542 u8 map_dir; /* dma map direction */
1bfecfca 543 } buff;
f62b8bb8 544
7cc6d77b 545 struct mlx5e_channel *channel;
f62b8bb8
AV
546 struct device *pdev;
547 struct net_device *netdev;
548 struct mlx5e_rq_stats stats;
549 struct mlx5e_cq cq;
4415a031 550 struct mlx5e_page_cache page_cache;
7c39afb3
FD
551 struct hwtstamp_config *tstamp;
552 struct mlx5_clock *clock;
4415a031 553
2f48af12 554 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
7cc6d77b 555 mlx5e_fp_post_rx_wqes post_wqes;
6cd392a0 556 mlx5e_fp_dealloc_wqe dealloc_wqe;
f62b8bb8
AV
557
558 unsigned long state;
559 int ix;
560
cb3c7fd4 561 struct mlx5e_rx_am am; /* Adaptive Moderation */
31871f87
SM
562
563 /* XDP */
86994156 564 struct bpf_prog *xdp_prog;
31391048 565 struct mlx5e_xdpsq xdpsq;
cb3c7fd4 566
f62b8bb8
AV
567 /* control */
568 struct mlx5_wq_ctrl wq_ctrl;
b45d8b50 569 __be32 mkey_be;
461017cb 570 u8 wq_type;
f62b8bb8 571 u32 rqn;
a43b25da 572 struct mlx5_core_dev *mdev;
ec8b9981 573 struct mlx5_core_mkey umr_mkey;
f62b8bb8
AV
574} ____cacheline_aligned_in_smp;
575
f62b8bb8
AV
576struct mlx5e_channel {
577 /* data path */
578 struct mlx5e_rq rq;
31391048
SM
579 struct mlx5e_txqsq sq[MLX5E_MAX_NUM_TC];
580 struct mlx5e_icosq icosq; /* internal control operations */
b5503b99 581 bool xdp;
f62b8bb8
AV
582 struct napi_struct napi;
583 struct device *pdev;
584 struct net_device *netdev;
585 __be32 mkey_be;
586 u8 num_tc;
f62b8bb8 587
a8c2eb15
TT
588 /* data path - accessed per napi poll */
589 struct irq_desc *irq_desc;
f62b8bb8
AV
590
591 /* control */
592 struct mlx5e_priv *priv;
a43b25da 593 struct mlx5_core_dev *mdev;
7c39afb3 594 struct hwtstamp_config *tstamp;
f62b8bb8 595 int ix;
231243c8 596 int cpu;
f62b8bb8
AV
597};
598
ff9c852f
SM
599struct mlx5e_channels {
600 struct mlx5e_channel **c;
601 unsigned int num;
6a9764ef 602 struct mlx5e_params params;
ff9c852f
SM
603};
604
f62b8bb8 605enum mlx5e_traffic_types {
5a6f8aef
AS
606 MLX5E_TT_IPV4_TCP,
607 MLX5E_TT_IPV6_TCP,
608 MLX5E_TT_IPV4_UDP,
609 MLX5E_TT_IPV6_UDP,
a741749f
AS
610 MLX5E_TT_IPV4_IPSEC_AH,
611 MLX5E_TT_IPV6_IPSEC_AH,
612 MLX5E_TT_IPV4_IPSEC_ESP,
613 MLX5E_TT_IPV6_IPSEC_ESP,
5a6f8aef
AS
614 MLX5E_TT_IPV4,
615 MLX5E_TT_IPV6,
616 MLX5E_TT_ANY,
617 MLX5E_NUM_TT,
1da36696 618 MLX5E_NUM_INDIR_TIRS = MLX5E_TT_ANY,
f62b8bb8
AV
619};
620
7b3722fa
GP
621enum mlx5e_tunnel_types {
622 MLX5E_TT_IPV4_GRE,
623 MLX5E_TT_IPV6_GRE,
624 MLX5E_NUM_TUNNEL_TT,
625};
626
acff797c 627enum {
e0f46eb9 628 MLX5E_STATE_ASYNC_EVENTS_ENABLED,
acff797c
MG
629 MLX5E_STATE_OPENED,
630 MLX5E_STATE_DESTROYING,
631};
632
633struct mlx5e_vxlan_db {
634 spinlock_t lock; /* protect vxlan table */
635 struct radix_tree_root tree;
636};
637
33cfaaa8 638struct mlx5e_l2_rule {
f62b8bb8 639 u8 addr[ETH_ALEN + 2];
74491de9 640 struct mlx5_flow_handle *rule;
f62b8bb8
AV
641};
642
acff797c
MG
643struct mlx5e_flow_table {
644 int num_groups;
645 struct mlx5_flow_table *t;
646 struct mlx5_flow_group **g;
647};
648
33cfaaa8 649#define MLX5E_L2_ADDR_HASH_SIZE BIT(BITS_PER_BYTE)
f62b8bb8 650
acff797c
MG
651struct mlx5e_tc_table {
652 struct mlx5_flow_table *t;
653
654 struct rhashtable_params ht_params;
655 struct rhashtable ht;
11c9c548
OG
656
657 DECLARE_HASHTABLE(mod_hdr_tbl, 8);
f62b8bb8
AV
658};
659
acff797c
MG
660struct mlx5e_vlan_table {
661 struct mlx5e_flow_table ft;
03eda954 662 DECLARE_BITMAP(active_cvlans, VLAN_N_VID);
7d92d580 663 DECLARE_BITMAP(active_svlans, VLAN_N_VID);
2b52a283 664 struct mlx5_flow_handle *active_cvlans_rule[VLAN_N_VID];
7d92d580 665 struct mlx5_flow_handle *active_svlans_rule[VLAN_N_VID];
74491de9 666 struct mlx5_flow_handle *untagged_rule;
8a271746
MHY
667 struct mlx5_flow_handle *any_cvlan_rule;
668 struct mlx5_flow_handle *any_svlan_rule;
2b52a283 669 bool cvlan_filter_disabled;
f62b8bb8
AV
670};
671
33cfaaa8
MG
672struct mlx5e_l2_table {
673 struct mlx5e_flow_table ft;
674 struct hlist_head netdev_uc[MLX5E_L2_ADDR_HASH_SIZE];
675 struct hlist_head netdev_mc[MLX5E_L2_ADDR_HASH_SIZE];
676 struct mlx5e_l2_rule broadcast;
677 struct mlx5e_l2_rule allmulti;
678 struct mlx5e_l2_rule promisc;
679 bool broadcast_enabled;
680 bool allmulti_enabled;
681 bool promisc_enabled;
682};
683
684/* L3/L4 traffic type classifier */
685struct mlx5e_ttc_table {
686 struct mlx5e_flow_table ft;
74491de9 687 struct mlx5_flow_handle *rules[MLX5E_NUM_TT];
7b3722fa 688 struct mlx5_flow_handle *tunnel_rules[MLX5E_NUM_TUNNEL_TT];
33cfaaa8
MG
689};
690
18c908e4
MG
691#define ARFS_HASH_SHIFT BITS_PER_BYTE
692#define ARFS_HASH_SIZE BIT(BITS_PER_BYTE)
1cabe6b0
MG
693struct arfs_table {
694 struct mlx5e_flow_table ft;
74491de9 695 struct mlx5_flow_handle *default_rule;
18c908e4 696 struct hlist_head rules_hash[ARFS_HASH_SIZE];
1cabe6b0
MG
697};
698
699enum arfs_type {
700 ARFS_IPV4_TCP,
701 ARFS_IPV6_TCP,
702 ARFS_IPV4_UDP,
703 ARFS_IPV6_UDP,
704 ARFS_NUM_TYPES,
705};
706
707struct mlx5e_arfs_tables {
708 struct arfs_table arfs_tables[ARFS_NUM_TYPES];
18c908e4
MG
709 /* Protect aRFS rules list */
710 spinlock_t arfs_lock;
711 struct list_head rules;
712 int last_filter_id;
713 struct workqueue_struct *wq;
1cabe6b0
MG
714};
715
716/* NIC prio FTS */
717enum {
718 MLX5E_VLAN_FT_LEVEL = 0,
719 MLX5E_L2_FT_LEVEL,
720 MLX5E_TTC_FT_LEVEL,
7b3722fa 721 MLX5E_INNER_TTC_FT_LEVEL,
1cabe6b0
MG
722 MLX5E_ARFS_FT_LEVEL
723};
724
6dc6071c
MG
725struct mlx5e_ethtool_table {
726 struct mlx5_flow_table *ft;
727 int num_rules;
728};
729
1174fce8 730#define ETHTOOL_NUM_L3_L4_FTS 7
6dc6071c
MG
731#define ETHTOOL_NUM_L2_FTS 4
732
733struct mlx5e_ethtool_steering {
1174fce8 734 struct mlx5e_ethtool_table l3_l4_ft[ETHTOOL_NUM_L3_L4_FTS];
6dc6071c
MG
735 struct mlx5e_ethtool_table l2_ft[ETHTOOL_NUM_L2_FTS];
736 struct list_head rules;
737 int tot_num_rules;
738};
739
acff797c
MG
740struct mlx5e_flow_steering {
741 struct mlx5_flow_namespace *ns;
6dc6071c 742 struct mlx5e_ethtool_steering ethtool;
acff797c
MG
743 struct mlx5e_tc_table tc;
744 struct mlx5e_vlan_table vlan;
33cfaaa8
MG
745 struct mlx5e_l2_table l2;
746 struct mlx5e_ttc_table ttc;
7b3722fa 747 struct mlx5e_ttc_table inner_ttc;
1cabe6b0 748 struct mlx5e_arfs_tables arfs;
f62b8bb8
AV
749};
750
398f3351 751struct mlx5e_rqt {
1da36696 752 u32 rqtn;
398f3351
HHZ
753 bool enabled;
754};
755
756struct mlx5e_tir {
757 u32 tirn;
758 struct mlx5e_rqt rqt;
759 struct list_head list;
1da36696
TT
760};
761
acff797c
MG
762enum {
763 MLX5E_TC_PRIO = 0,
764 MLX5E_NIC_PRIO
765};
766
f62b8bb8
AV
767struct mlx5e_priv {
768 /* priv data path fields - start */
acc6c595
SM
769 struct mlx5e_txqsq *txq2sq[MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC];
770 int channel_tc2txq[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
2a5e7a13
HN
771#ifdef CONFIG_MLX5_CORE_EN_DCB
772 struct mlx5e_dcbx_dp dcbx_dp;
773#endif
f62b8bb8
AV
774 /* priv data path fields - end */
775
79c48764 776 u32 msglevel;
f62b8bb8
AV
777 unsigned long state;
778 struct mutex state_lock; /* Protects Interface state */
50cfa25a 779 struct mlx5e_rq drop_rq;
f62b8bb8 780
ff9c852f 781 struct mlx5e_channels channels;
f62b8bb8 782 u32 tisn[MLX5E_MAX_NUM_TC];
398f3351 783 struct mlx5e_rqt indir_rqt;
724b2aa1 784 struct mlx5e_tir indir_tir[MLX5E_NUM_INDIR_TIRS];
7b3722fa 785 struct mlx5e_tir inner_indir_tir[MLX5E_NUM_INDIR_TIRS];
724b2aa1 786 struct mlx5e_tir direct_tir[MLX5E_MAX_NUM_CHANNELS];
507f0c81 787 u32 tx_rates[MLX5E_MAX_NUM_SQS];
c139dbfd 788 int hard_mtu;
f62b8bb8 789
acff797c 790 struct mlx5e_flow_steering fs;
b3f63c3d 791 struct mlx5e_vxlan_db vxlan;
f62b8bb8 792
7bb29755 793 struct workqueue_struct *wq;
f62b8bb8
AV
794 struct work_struct update_carrier_work;
795 struct work_struct set_rx_mode_work;
3947ca18 796 struct work_struct tx_timeout_work;
f62b8bb8
AV
797 struct delayed_work update_stats_work;
798
799 struct mlx5_core_dev *mdev;
800 struct net_device *netdev;
801 struct mlx5e_stats stats;
7c39afb3 802 struct hwtstamp_config tstamp;
593cf338 803 u16 q_counter;
3a6a931d
HN
804#ifdef CONFIG_MLX5_CORE_EN_DCB
805 struct mlx5e_dcbx dcbx;
806#endif
807
6bfd390b 808 const struct mlx5e_profile *profile;
127ea380 809 void *ppriv;
547eede0
IT
810#ifdef CONFIG_MLX5_EN_IPSEC
811 struct mlx5e_ipsec *ipsec;
812#endif
f62b8bb8
AV
813};
814
a43b25da
SM
815struct mlx5e_profile {
816 void (*init)(struct mlx5_core_dev *mdev,
817 struct net_device *netdev,
818 const struct mlx5e_profile *profile, void *ppriv);
819 void (*cleanup)(struct mlx5e_priv *priv);
820 int (*init_rx)(struct mlx5e_priv *priv);
821 void (*cleanup_rx)(struct mlx5e_priv *priv);
822 int (*init_tx)(struct mlx5e_priv *priv);
823 void (*cleanup_tx)(struct mlx5e_priv *priv);
824 void (*enable)(struct mlx5e_priv *priv);
825 void (*disable)(struct mlx5e_priv *priv);
826 void (*update_stats)(struct mlx5e_priv *priv);
7ca42c80 827 void (*update_carrier)(struct mlx5e_priv *priv);
a43b25da 828 int (*max_nch)(struct mlx5_core_dev *mdev);
20fd0c19
SM
829 struct {
830 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
831 mlx5e_fp_handle_rx_cqe handle_rx_cqe_mpwqe;
832 } rx_handlers;
2a5e7a13
HN
833 void (*netdev_registered_init)(struct mlx5e_priv *priv);
834 void (*netdev_registered_remove)(struct mlx5e_priv *priv);
a43b25da
SM
835 int max_tc;
836};
837
665bc539
GP
838void mlx5e_build_ptys2ethtool_map(void);
839
f62b8bb8
AV
840u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
841 void *accel_priv, select_queue_fallback_t fallback);
842netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
f62b8bb8
AV
843
844void mlx5e_completion_event(struct mlx5_core_cq *mcq);
845void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
846int mlx5e_napi_poll(struct napi_struct *napi, int budget);
8ec736e5 847bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
44fb6fbb 848int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
1c4bf940 849bool mlx5e_poll_xdpsq_cq(struct mlx5e_cq *cq);
31391048
SM
850void mlx5e_free_txqsq_descs(struct mlx5e_txqsq *sq);
851void mlx5e_free_xdpsq_descs(struct mlx5e_xdpsq *sq);
461017cb 852
4415a031
TT
853void mlx5e_page_release(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info,
854 bool recycle);
2f48af12 855void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
461017cb 856void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
f62b8bb8 857bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
7cc6d77b 858bool mlx5e_post_rx_mpwqes(struct mlx5e_rq *rq);
6cd392a0
DJ
859void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix);
860void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix);
7e426671 861void mlx5e_free_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi);
f62b8bb8 862
cb3c7fd4
GR
863void mlx5e_rx_am(struct mlx5e_rq *rq);
864void mlx5e_rx_am_work(struct work_struct *work);
865struct mlx5e_cq_moder mlx5e_am_get_def_profile(u8 rx_cq_period_mode);
866
3834a5e6 867void mlx5e_update_stats(struct mlx5e_priv *priv, bool full);
f62b8bb8 868
acff797c
MG
869int mlx5e_create_flow_steering(struct mlx5e_priv *priv);
870void mlx5e_destroy_flow_steering(struct mlx5e_priv *priv);
33cfaaa8 871void mlx5e_init_l2_addr(struct mlx5e_priv *priv);
1cabe6b0 872void mlx5e_destroy_flow_table(struct mlx5e_flow_table *ft);
d605d668
KH
873int mlx5e_self_test_num(struct mlx5e_priv *priv);
874void mlx5e_self_test(struct net_device *ndev, struct ethtool_test *etest,
875 u64 *buf);
f913a72a
MG
876int mlx5e_ethtool_get_flow(struct mlx5e_priv *priv, struct ethtool_rxnfc *info,
877 int location);
878int mlx5e_ethtool_get_all_flows(struct mlx5e_priv *priv,
879 struct ethtool_rxnfc *info, u32 *rule_locs);
6dc6071c
MG
880int mlx5e_ethtool_flow_replace(struct mlx5e_priv *priv,
881 struct ethtool_rx_flow_spec *fs);
882int mlx5e_ethtool_flow_remove(struct mlx5e_priv *priv,
883 int location);
884void mlx5e_ethtool_init_steering(struct mlx5e_priv *priv);
885void mlx5e_ethtool_cleanup_steering(struct mlx5e_priv *priv);
f62b8bb8
AV
886void mlx5e_set_rx_mode_work(struct work_struct *work);
887
1170fbd8
FD
888int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr);
889int mlx5e_hwstamp_get(struct mlx5e_priv *priv, struct ifreq *ifr);
be7e87f9 890int mlx5e_modify_rx_cqe_compression_locked(struct mlx5e_priv *priv, bool val);
ef9814de 891
f62b8bb8
AV
892int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
893 u16 vid);
894int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
895 u16 vid);
2b52a283
GP
896void mlx5e_enable_cvlan_filter(struct mlx5e_priv *priv);
897void mlx5e_disable_cvlan_filter(struct mlx5e_priv *priv);
7c39afb3 898void mlx5e_timestamp_set(struct mlx5e_priv *priv);
f62b8bb8 899
a5f97fee
SM
900struct mlx5e_redirect_rqt_param {
901 bool is_rss;
902 union {
903 u32 rqn; /* Direct RQN (Non-RSS) */
904 struct {
905 u8 hfunc;
906 struct mlx5e_channels *channels;
907 } rss; /* RSS data */
908 };
909};
910
911int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz,
912 struct mlx5e_redirect_rqt_param rrp);
6a9764ef
SM
913void mlx5e_build_indir_tir_ctx_hash(struct mlx5e_params *params,
914 enum mlx5e_traffic_types tt,
7b3722fa 915 void *tirc, bool inner);
2d75b2bc 916
f62b8bb8
AV
917int mlx5e_open_locked(struct net_device *netdev);
918int mlx5e_close_locked(struct net_device *netdev);
55c2503d
SM
919
920int mlx5e_open_channels(struct mlx5e_priv *priv,
921 struct mlx5e_channels *chs);
922void mlx5e_close_channels(struct mlx5e_channels *chs);
2e20a151
SM
923
924/* Function pointer to be used to modify WH settings while
925 * switching channels
926 */
927typedef int (*mlx5e_fp_hw_modify)(struct mlx5e_priv *priv);
55c2503d 928void mlx5e_switch_priv_channels(struct mlx5e_priv *priv,
2e20a151
SM
929 struct mlx5e_channels *new_chs,
930 mlx5e_fp_hw_modify hw_modify);
603f4a45
SM
931void mlx5e_activate_priv_channels(struct mlx5e_priv *priv);
932void mlx5e_deactivate_priv_channels(struct mlx5e_priv *priv);
55c2503d 933
d4b6c488 934void mlx5e_build_default_indir_rqt(u32 *indirection_rqt, int len,
85082dba 935 int num_channels);
b797a684 936int mlx5e_get_max_linkspeed(struct mlx5_core_dev *mdev, u32 *speed);
f62b8bb8 937
0088cbbc
TG
938void mlx5e_set_tx_cq_mode_params(struct mlx5e_params *params,
939 u8 cq_period_mode);
9908aa29
TT
940void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params,
941 u8 cq_period_mode);
696a97cf
EE
942void mlx5e_init_rq_type_params(struct mlx5_core_dev *mdev,
943 struct mlx5e_params *params,
944 u8 rq_type);
9908aa29 945
7b3722fa
GP
946static inline bool mlx5e_tunnel_inner_ft_supported(struct mlx5_core_dev *mdev)
947{
948 return (MLX5_CAP_ETH(mdev, tunnel_stateless_gre) &&
949 MLX5_CAP_FLOWTABLE_NIC_RX(mdev, ft_field_support.inner_ip_version));
950}
951
864b2d71
SM
952static inline
953struct mlx5e_tx_wqe *mlx5e_post_nop(struct mlx5_wq_cyc *wq, u32 sqn, u16 *pc)
f62b8bb8 954{
864b2d71
SM
955 u16 pi = *pc & wq->sz_m1;
956 struct mlx5e_tx_wqe *wqe = mlx5_wq_cyc_get_wqe(wq, pi);
957 struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl;
958
959 memset(cseg, 0, sizeof(*cseg));
960
961 cseg->opmod_idx_opcode = cpu_to_be32((*pc << 8) | MLX5_OPCODE_NOP);
962 cseg->qpn_ds = cpu_to_be32((sqn << 8) | 0x01);
963
964 (*pc)++;
965
966 return wqe;
967}
968
969static inline
970void mlx5e_notify_hw(struct mlx5_wq_cyc *wq, u16 pc,
971 void __iomem *uar_map,
972 struct mlx5_wqe_ctrl_seg *ctrl)
973{
974 ctrl->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
f62b8bb8
AV
975 /* ensure wqe is visible to device before updating doorbell record */
976 dma_wmb();
977
864b2d71 978 *wq->db = cpu_to_be32(pc);
f62b8bb8
AV
979
980 /* ensure doorbell record is visible to device before ringing the
981 * doorbell
982 */
983 wmb();
f62b8bb8 984
864b2d71 985 mlx5_write64((__be32 *)ctrl, uar_map, NULL);
f62b8bb8
AV
986}
987
988static inline void mlx5e_cq_arm(struct mlx5e_cq *cq)
989{
990 struct mlx5_core_cq *mcq;
991
992 mcq = &cq->mcq;
5fe9dec0 993 mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, cq->wq.cc);
f62b8bb8
AV
994}
995
7e426671
TT
996static inline u32 mlx5e_get_wqe_mtt_offset(struct mlx5e_rq *rq, u16 wqe_ix)
997{
ec8b9981 998 return wqe_ix * ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8);
7e426671
TT
999}
1000
f62b8bb8 1001extern const struct ethtool_ops mlx5e_ethtool_ops;
08fb1dac
SM
1002#ifdef CONFIG_MLX5_CORE_EN_DCB
1003extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
1004int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
e207b7e9 1005void mlx5e_dcbnl_initialize(struct mlx5e_priv *priv);
2a5e7a13
HN
1006void mlx5e_dcbnl_init_app(struct mlx5e_priv *priv);
1007void mlx5e_dcbnl_delete_app(struct mlx5e_priv *priv);
08fb1dac
SM
1008#endif
1009
1cabe6b0
MG
1010#ifndef CONFIG_RFS_ACCEL
1011static inline int mlx5e_arfs_create_tables(struct mlx5e_priv *priv)
1012{
1013 return 0;
1014}
1015
1016static inline void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv) {}
45bf454a
MG
1017
1018static inline int mlx5e_arfs_enable(struct mlx5e_priv *priv)
1019{
9eb78923 1020 return -EOPNOTSUPP;
45bf454a
MG
1021}
1022
1023static inline int mlx5e_arfs_disable(struct mlx5e_priv *priv)
1024{
9eb78923 1025 return -EOPNOTSUPP;
45bf454a 1026}
1cabe6b0
MG
1027#else
1028int mlx5e_arfs_create_tables(struct mlx5e_priv *priv);
1029void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv);
45bf454a
MG
1030int mlx5e_arfs_enable(struct mlx5e_priv *priv);
1031int mlx5e_arfs_disable(struct mlx5e_priv *priv);
18c908e4
MG
1032int mlx5e_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb,
1033 u16 rxq_index, u32 flow_id);
1cabe6b0
MG
1034#endif
1035
58d52291 1036u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev);
724b2aa1
HHZ
1037int mlx5e_create_tir(struct mlx5_core_dev *mdev,
1038 struct mlx5e_tir *tir, u32 *in, int inlen);
1039void mlx5e_destroy_tir(struct mlx5_core_dev *mdev,
1040 struct mlx5e_tir *tir);
b50d292b
HHZ
1041int mlx5e_create_mdev_resources(struct mlx5_core_dev *mdev);
1042void mlx5e_destroy_mdev_resources(struct mlx5_core_dev *mdev);
b676f653 1043int mlx5e_refresh_tirs(struct mlx5e_priv *priv, bool enable_uc_lb);
1afff42c 1044
bc81b9d3 1045/* common netdev helpers */
8f493ffd
SM
1046int mlx5e_create_indirect_rqt(struct mlx5e_priv *priv);
1047
1048int mlx5e_create_indirect_tirs(struct mlx5e_priv *priv);
1049void mlx5e_destroy_indirect_tirs(struct mlx5e_priv *priv);
1050
cb67b832 1051int mlx5e_create_direct_rqts(struct mlx5e_priv *priv);
8f493ffd 1052void mlx5e_destroy_direct_rqts(struct mlx5e_priv *priv);
cb67b832
HHZ
1053int mlx5e_create_direct_tirs(struct mlx5e_priv *priv);
1054void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv);
8f493ffd
SM
1055void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt);
1056
50854114 1057int mlx5e_create_ttc_table(struct mlx5e_priv *priv);
bc81b9d3
SM
1058void mlx5e_destroy_ttc_table(struct mlx5e_priv *priv);
1059
458821c7
FD
1060int mlx5e_create_inner_ttc_table(struct mlx5e_priv *priv);
1061void mlx5e_destroy_inner_ttc_table(struct mlx5e_priv *priv);
1062
5426a0b2
SM
1063int mlx5e_create_tis(struct mlx5_core_dev *mdev, int tc,
1064 u32 underlay_qpn, u32 *tisn);
1065void mlx5e_destroy_tis(struct mlx5_core_dev *mdev, u32 tisn);
1066
cb67b832
HHZ
1067int mlx5e_create_tises(struct mlx5e_priv *priv);
1068void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv);
1069int mlx5e_close(struct net_device *netdev);
1070int mlx5e_open(struct net_device *netdev);
1071void mlx5e_update_stats_work(struct work_struct *work);
2b029556 1072u32 mlx5e_choose_lro_timeout(struct mlx5_core_dev *mdev, u32 wanted_timeout);
cb67b832 1073
076b0936
ES
1074/* ethtool helpers */
1075void mlx5e_ethtool_get_drvinfo(struct mlx5e_priv *priv,
1076 struct ethtool_drvinfo *drvinfo);
1077void mlx5e_ethtool_get_strings(struct mlx5e_priv *priv,
1078 uint32_t stringset, uint8_t *data);
1079int mlx5e_ethtool_get_sset_count(struct mlx5e_priv *priv, int sset);
1080void mlx5e_ethtool_get_ethtool_stats(struct mlx5e_priv *priv,
1081 struct ethtool_stats *stats, u64 *data);
1082void mlx5e_ethtool_get_ringparam(struct mlx5e_priv *priv,
1083 struct ethtool_ringparam *param);
1084int mlx5e_ethtool_set_ringparam(struct mlx5e_priv *priv,
1085 struct ethtool_ringparam *param);
1086void mlx5e_ethtool_get_channels(struct mlx5e_priv *priv,
1087 struct ethtool_channels *ch);
1088int mlx5e_ethtool_set_channels(struct mlx5e_priv *priv,
1089 struct ethtool_channels *ch);
1090int mlx5e_ethtool_get_coalesce(struct mlx5e_priv *priv,
1091 struct ethtool_coalesce *coal);
1092int mlx5e_ethtool_set_coalesce(struct mlx5e_priv *priv,
1093 struct ethtool_coalesce *coal);
3844b07e
FD
1094int mlx5e_ethtool_get_ts_info(struct mlx5e_priv *priv,
1095 struct ethtool_ts_info *info);
3ffaabec
OG
1096int mlx5e_ethtool_flash_device(struct mlx5e_priv *priv,
1097 struct ethtool_flash *flash);
076b0936 1098
d6c862ba
JP
1099int mlx5e_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
1100 void *cb_priv);
717503b9 1101
2c3b5bee
SM
1102/* mlx5e generic netdev management API */
1103struct net_device*
1104mlx5e_create_netdev(struct mlx5_core_dev *mdev, const struct mlx5e_profile *profile,
1105 void *ppriv);
1106int mlx5e_attach_netdev(struct mlx5e_priv *priv);
1107void mlx5e_detach_netdev(struct mlx5e_priv *priv);
1108void mlx5e_destroy_netdev(struct mlx5e_priv *priv);
8f493ffd
SM
1109void mlx5e_build_nic_params(struct mlx5_core_dev *mdev,
1110 struct mlx5e_params *params,
1111 u16 max_channels);
fbcb127e 1112u8 mlx5e_params_calculate_tx_min_inline(struct mlx5_core_dev *mdev);
1afff42c 1113#endif /* __MLX5_EN_H__ */