]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/ethernet/mellanox/mlx5/core/en.h
net/mlx5: Group similer rules under the same fte
[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>
f62b8bb8
AV
40#include <linux/mlx5/driver.h>
41#include <linux/mlx5/qp.h>
42#include <linux/mlx5/cq.h>
ada68c31 43#include <linux/mlx5/port.h>
d18a9470 44#include <linux/mlx5/vport.h>
8d7f9ecb 45#include <linux/mlx5/transobj.h>
e8f887ac 46#include <linux/rhashtable.h>
cb67b832 47#include <net/switchdev.h>
f62b8bb8 48#include "wq.h"
f62b8bb8 49#include "mlx5_core.h"
9218b44d 50#include "en_stats.h"
f62b8bb8 51
1cabe6b0
MG
52#define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v)
53
f62b8bb8
AV
54#define MLX5E_MAX_NUM_TC 8
55
e842b100 56#define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x6
f62b8bb8
AV
57#define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa
58#define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd
59
e842b100 60#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE 0x1
f62b8bb8
AV
61#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa
62#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE 0xd
63
461017cb 64#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW 0x1
7e426671 65#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE_MPW 0x3
461017cb
TT
66#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW 0x6
67
1bfecfca
SM
68#define MLX5_RX_HEADROOM NET_SKB_PAD
69
461017cb 70#define MLX5_MPWRQ_LOG_STRIDE_SIZE 6 /* >= 6, HW restriction */
d9d9f156 71#define MLX5_MPWRQ_LOG_STRIDE_SIZE_CQE_COMPRESS 8 /* >= 6, HW restriction */
7e426671 72#define MLX5_MPWRQ_LOG_WQE_SZ 18
461017cb
TT
73#define MLX5_MPWRQ_WQE_PAGE_ORDER (MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT > 0 ? \
74 MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT : 0)
75#define MLX5_MPWRQ_PAGES_PER_WQE BIT(MLX5_MPWRQ_WQE_PAGE_ORDER)
76#define MLX5_MPWRQ_STRIDES_PER_PAGE (MLX5_MPWRQ_NUM_STRIDES >> \
77 MLX5_MPWRQ_WQE_PAGE_ORDER)
fe4c988b
SM
78
79#define MLX5_MTT_OCTW(npages) (ALIGN(npages, 8) / 2)
80#define MLX5E_REQUIRED_MTTS(rqs, wqes)\
81 (rqs * wqes * ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8))
82#define MLX5E_VALID_NUM_MTTS(num_mtts) (MLX5_MTT_OCTW(num_mtts) <= U16_MAX)
83
bc77b240 84#define MLX5_UMR_ALIGN (2048)
461017cb
TT
85#define MLX5_MPWRQ_SMALL_PACKET_THRESHOLD (128)
86
d9a40271 87#define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024)
f62b8bb8 88#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10
9908aa29 89#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE 0x3
f62b8bb8
AV
90#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20
91#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10
92#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20
93#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80
461017cb 94#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW 0x2
f62b8bb8 95
936896e9
AS
96#define MLX5E_LOG_INDIR_RQT_SIZE 0x7
97#define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE)
98#define MLX5E_MAX_NUM_CHANNELS (MLX5E_INDIR_RQT_SIZE >> 1)
507f0c81 99#define MLX5E_MAX_NUM_SQS (MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC)
f62b8bb8
AV
100#define MLX5E_TX_CQ_POLL_BUDGET 128
101#define MLX5E_UPDATE_STATS_INTERVAL 200 /* msecs */
88a85f99 102#define MLX5E_SQ_BF_BUDGET 16
f62b8bb8 103
f10b7cc7
SM
104#define MLX5E_ICOSQ_MAX_WQEBBS \
105 (DIV_ROUND_UP(sizeof(struct mlx5e_umr_wqe), MLX5_SEND_WQE_BB))
106
b5503b99
SM
107#define MLX5E_XDP_MIN_INLINE (ETH_HLEN + VLAN_HLEN)
108#define MLX5E_XDP_IHS_DS_COUNT \
109 DIV_ROUND_UP(MLX5E_XDP_MIN_INLINE - 2, MLX5_SEND_WQE_DS)
110#define MLX5E_XDP_TX_DS_COUNT \
111 (MLX5E_XDP_IHS_DS_COUNT + \
112 (sizeof(struct mlx5e_tx_wqe) / MLX5_SEND_WQE_DS) + 1 /* SG DS */)
113#define MLX5E_XDP_TX_WQEBBS \
114 DIV_ROUND_UP(MLX5E_XDP_TX_DS_COUNT, MLX5_SEND_WQEBB_NUM_DS)
115
86d722ad 116#define MLX5E_NUM_MAIN_GROUPS 9
2f48af12 117
461017cb
TT
118static inline u16 mlx5_min_rx_wqes(int wq_type, u32 wq_size)
119{
120 switch (wq_type) {
121 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
122 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW,
123 wq_size / 2);
124 default:
125 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES,
126 wq_size / 2);
127 }
128}
129
130static inline int mlx5_min_log_rq_size(int wq_type)
131{
132 switch (wq_type) {
133 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
134 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW;
135 default:
136 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE;
137 }
138}
139
140static inline int mlx5_max_log_rq_size(int wq_type)
141{
142 switch (wq_type) {
143 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
144 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW;
145 default:
146 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE;
147 }
148}
149
cff92d7c
HHZ
150enum {
151 MLX5E_INLINE_MODE_L2,
152 MLX5E_INLINE_MODE_VPORT_CONTEXT,
153 MLX5_INLINE_MODE_NOT_REQUIRED,
154};
155
2f48af12
TT
156struct mlx5e_tx_wqe {
157 struct mlx5_wqe_ctrl_seg ctrl;
158 struct mlx5_wqe_eth_seg eth;
159};
160
161struct mlx5e_rx_wqe {
162 struct mlx5_wqe_srq_next_seg next;
163 struct mlx5_wqe_data_seg data;
164};
86d722ad 165
bc77b240
TT
166struct mlx5e_umr_wqe {
167 struct mlx5_wqe_ctrl_seg ctrl;
168 struct mlx5_wqe_umr_ctrl_seg uctrl;
169 struct mlx5_mkey_seg mkc;
170 struct mlx5_wqe_data_seg data;
171};
172
4e59e288 173static const char mlx5e_priv_flags[][ETH_GSTRING_LEN] = {
9908aa29 174 "rx_cqe_moder",
4e59e288
GP
175};
176
177enum mlx5e_priv_flag {
9908aa29 178 MLX5E_PFLAG_RX_CQE_BASED_MODER = (1 << 0),
4e59e288
GP
179};
180
181#define MLX5E_SET_PRIV_FLAG(priv, pflag, enable) \
182 do { \
183 if (enable) \
184 priv->pflags |= pflag; \
185 else \
186 priv->pflags &= ~pflag; \
187 } while (0)
188
08fb1dac
SM
189#ifdef CONFIG_MLX5_CORE_EN_DCB
190#define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
08fb1dac
SM
191#endif
192
9908aa29
TT
193struct mlx5e_cq_moder {
194 u16 usec;
195 u16 pkts;
196};
197
f62b8bb8
AV
198struct mlx5e_params {
199 u8 log_sq_size;
461017cb 200 u8 rq_wq_type;
d9d9f156
TT
201 u8 mpwqe_log_stride_sz;
202 u8 mpwqe_log_num_strides;
f62b8bb8
AV
203 u8 log_rq_size;
204 u16 num_channels;
f62b8bb8 205 u8 num_tc;
9908aa29 206 u8 rx_cq_period_mode;
7219ab34
TT
207 bool rx_cqe_compress_admin;
208 bool rx_cqe_compress;
9908aa29
TT
209 struct mlx5e_cq_moder rx_cq_moderation;
210 struct mlx5e_cq_moder tx_cq_moderation;
f62b8bb8 211 u16 min_rx_wqes;
f62b8bb8
AV
212 bool lro_en;
213 u32 lro_wqe_sz;
58d52291 214 u16 tx_max_inline;
cff92d7c 215 u8 tx_min_inline_mode;
2d75b2bc
AS
216 u8 rss_hfunc;
217 u8 toeplitz_hash_key[40];
218 u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE];
36350114 219 bool vlan_strip_disable;
08fb1dac
SM
220#ifdef CONFIG_MLX5_CORE_EN_DCB
221 struct ieee_ets ets;
222#endif
cb3c7fd4 223 bool rx_am_enabled;
f62b8bb8
AV
224};
225
ef9814de
EBE
226struct mlx5e_tstamp {
227 rwlock_t lock;
228 struct cyclecounter cycles;
229 struct timecounter clock;
230 struct hwtstamp_config hwtstamp_config;
231 u32 nominal_c_mult;
232 unsigned long overflow_period;
233 struct delayed_work overflow_work;
234 struct mlx5_core_dev *mdev;
3d8c38af
EBE
235 struct ptp_clock *ptp;
236 struct ptp_clock_info ptp_info;
ef9814de
EBE
237};
238
f62b8bb8 239enum {
f2fde18c 240 MLX5E_RQ_STATE_FLUSH,
bc77b240 241 MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS,
cb3c7fd4 242 MLX5E_RQ_STATE_AM,
f62b8bb8
AV
243};
244
f62b8bb8
AV
245struct mlx5e_cq {
246 /* data path - accessed per cqe */
247 struct mlx5_cqwq wq;
f62b8bb8
AV
248
249 /* data path - accessed per napi poll */
cb3c7fd4 250 u16 event_ctr;
f62b8bb8
AV
251 struct napi_struct *napi;
252 struct mlx5_core_cq mcq;
253 struct mlx5e_channel *channel;
50cfa25a 254 struct mlx5e_priv *priv;
f62b8bb8 255
7219ab34
TT
256 /* cqe decompression */
257 struct mlx5_cqe64 title;
258 struct mlx5_mini_cqe8 mini_arr[MLX5_MINI_CQE_ARRAY_SIZE];
259 u8 mini_arr_idx;
260 u16 decmprs_left;
261 u16 decmprs_wqe_counter;
262
f62b8bb8
AV
263 /* control */
264 struct mlx5_wq_ctrl wq_ctrl;
265} ____cacheline_aligned_in_smp;
266
2f48af12
TT
267struct mlx5e_rq;
268typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq *rq,
269 struct mlx5_cqe64 *cqe);
270typedef int (*mlx5e_fp_alloc_wqe)(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe,
271 u16 ix);
272
6cd392a0
DJ
273typedef void (*mlx5e_fp_dealloc_wqe)(struct mlx5e_rq *rq, u16 ix);
274
461017cb
TT
275struct mlx5e_dma_info {
276 struct page *page;
277 dma_addr_t addr;
278};
279
cb3c7fd4
GR
280struct mlx5e_rx_am_stats {
281 int ppms; /* packets per msec */
282 int epms; /* events per msec */
283};
284
285struct mlx5e_rx_am_sample {
286 ktime_t time;
287 unsigned int pkt_ctr;
288 u16 event_ctr;
289};
290
291struct mlx5e_rx_am { /* Adaptive Moderation */
292 u8 state;
293 struct mlx5e_rx_am_stats prev_stats;
294 struct mlx5e_rx_am_sample start_sample;
295 struct work_struct work;
296 u8 profile_ix;
297 u8 mode;
298 u8 tune_state;
299 u8 steps_right;
300 u8 steps_left;
301 u8 tired;
302};
303
4415a031
TT
304/* a single cache unit is capable to serve one napi call (for non-striding rq)
305 * or a MPWQE (for striding rq).
306 */
307#define MLX5E_CACHE_UNIT (MLX5_MPWRQ_PAGES_PER_WQE > NAPI_POLL_WEIGHT ? \
308 MLX5_MPWRQ_PAGES_PER_WQE : NAPI_POLL_WEIGHT)
309#define MLX5E_CACHE_SIZE (2 * roundup_pow_of_two(MLX5E_CACHE_UNIT))
310struct mlx5e_page_cache {
311 u32 head;
312 u32 tail;
313 struct mlx5e_dma_info page_cache[MLX5E_CACHE_SIZE];
314};
315
f62b8bb8
AV
316struct mlx5e_rq {
317 /* data path */
318 struct mlx5_wq_ll wq;
1bfecfca 319
21c59685
SM
320 union {
321 struct mlx5e_dma_info *dma_info;
322 struct {
323 struct mlx5e_mpw_info *info;
324 void *mtt_no_align;
325 u32 mtt_offset;
326 } mpwqe;
327 };
1bfecfca
SM
328 struct {
329 u8 page_order;
330 u32 wqe_sz; /* wqe data buffer size */
b5503b99 331 u8 map_dir; /* dma map direction */
1bfecfca 332 } buff;
bc77b240 333 __be32 mkey_be;
f62b8bb8
AV
334
335 struct device *pdev;
336 struct net_device *netdev;
ef9814de 337 struct mlx5e_tstamp *tstamp;
f62b8bb8
AV
338 struct mlx5e_rq_stats stats;
339 struct mlx5e_cq cq;
4415a031
TT
340 struct mlx5e_page_cache page_cache;
341
2f48af12
TT
342 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
343 mlx5e_fp_alloc_wqe alloc_wqe;
6cd392a0 344 mlx5e_fp_dealloc_wqe dealloc_wqe;
f62b8bb8
AV
345
346 unsigned long state;
347 int ix;
348
cb3c7fd4 349 struct mlx5e_rx_am am; /* Adaptive Moderation */
86994156 350 struct bpf_prog *xdp_prog;
cb3c7fd4 351
f62b8bb8
AV
352 /* control */
353 struct mlx5_wq_ctrl wq_ctrl;
461017cb 354 u8 wq_type;
d9d9f156
TT
355 u32 mpwqe_stride_sz;
356 u32 mpwqe_num_strides;
f62b8bb8
AV
357 u32 rqn;
358 struct mlx5e_channel *channel;
50cfa25a 359 struct mlx5e_priv *priv;
f62b8bb8
AV
360} ____cacheline_aligned_in_smp;
361
bc77b240
TT
362struct mlx5e_umr_dma_info {
363 __be64 *mtt;
bc77b240 364 dma_addr_t mtt_addr;
7e426671
TT
365 struct mlx5e_dma_info dma_info[MLX5_MPWRQ_PAGES_PER_WQE];
366 struct mlx5e_umr_wqe wqe;
bc77b240
TT
367};
368
369struct mlx5e_mpw_info {
7e426671 370 struct mlx5e_umr_dma_info umr;
bc77b240
TT
371 u16 consumed_strides;
372 u16 skbs_frags[MLX5_MPWRQ_PAGES_PER_WQE];
bc77b240
TT
373};
374
34802a42 375struct mlx5e_tx_wqe_info {
f62b8bb8
AV
376 u32 num_bytes;
377 u8 num_wqebbs;
378 u8 num_dma;
379};
380
d4e28cbd
AS
381enum mlx5e_dma_map_type {
382 MLX5E_DMA_MAP_SINGLE,
383 MLX5E_DMA_MAP_PAGE
384};
385
f62b8bb8 386struct mlx5e_sq_dma {
d4e28cbd
AS
387 dma_addr_t addr;
388 u32 size;
389 enum mlx5e_dma_map_type type;
f62b8bb8
AV
390};
391
392enum {
6e8dd6d6 393 MLX5E_SQ_STATE_FLUSH,
0ba42241 394 MLX5E_SQ_STATE_BF_ENABLE,
f62b8bb8
AV
395};
396
b5503b99 397struct mlx5e_sq_wqe_info {
d3c9bc27
TT
398 u8 opcode;
399 u8 num_wqebbs;
400};
401
f10b7cc7
SM
402enum mlx5e_sq_type {
403 MLX5E_SQ_TXQ,
b5503b99
SM
404 MLX5E_SQ_ICO,
405 MLX5E_SQ_XDP
f10b7cc7
SM
406};
407
f62b8bb8
AV
408struct mlx5e_sq {
409 /* data path */
410
411 /* dirtied @completion */
412 u16 cc;
413 u32 dma_fifo_cc;
414
415 /* dirtied @xmit */
416 u16 pc ____cacheline_aligned_in_smp;
417 u32 dma_fifo_pc;
88a85f99
AS
418 u16 bf_offset;
419 u16 prev_cc;
420 u8 bf_budget;
f62b8bb8
AV
421 struct mlx5e_sq_stats stats;
422
423 struct mlx5e_cq cq;
424
f10b7cc7
SM
425 /* pointers to per tx element info: write@xmit, read@completion */
426 union {
427 struct {
428 struct sk_buff **skb;
429 struct mlx5e_sq_dma *dma_fifo;
430 struct mlx5e_tx_wqe_info *wqe_info;
431 } txq;
b5503b99
SM
432 struct mlx5e_sq_wqe_info *ico_wqe;
433 struct {
434 struct mlx5e_sq_wqe_info *wqe_info;
435 struct mlx5e_dma_info *di;
35b510e2 436 bool doorbell;
b5503b99 437 } xdp;
f10b7cc7 438 } db;
f62b8bb8
AV
439
440 /* read only */
441 struct mlx5_wq_cyc wq;
442 u32 dma_fifo_mask;
443 void __iomem *uar_map;
444 struct netdev_queue *txq;
445 u32 sqn;
88a85f99 446 u16 bf_buf_size;
12be4b21 447 u16 max_inline;
ae76715d 448 u8 min_inline_mode;
12be4b21 449 u16 edge;
f62b8bb8 450 struct device *pdev;
ef9814de 451 struct mlx5e_tstamp *tstamp;
f62b8bb8
AV
452 __be32 mkey_be;
453 unsigned long state;
454
455 /* control path */
456 struct mlx5_wq_ctrl wq_ctrl;
457 struct mlx5_uar uar;
458 struct mlx5e_channel *channel;
459 int tc;
507f0c81 460 u32 rate_limit;
f10b7cc7 461 u8 type;
f62b8bb8
AV
462} ____cacheline_aligned_in_smp;
463
464static inline bool mlx5e_sq_has_room_for(struct mlx5e_sq *sq, u16 n)
465{
466 return (((sq->wq.sz_m1 & (sq->cc - sq->pc)) >= n) ||
467 (sq->cc == sq->pc));
468}
469
470enum channel_flags {
471 MLX5E_CHANNEL_NAPI_SCHED = 1,
472};
473
474struct mlx5e_channel {
475 /* data path */
476 struct mlx5e_rq rq;
b5503b99 477 struct mlx5e_sq xdp_sq;
f62b8bb8 478 struct mlx5e_sq sq[MLX5E_MAX_NUM_TC];
d3c9bc27 479 struct mlx5e_sq icosq; /* internal control operations */
b5503b99 480 bool xdp;
f62b8bb8
AV
481 struct napi_struct napi;
482 struct device *pdev;
483 struct net_device *netdev;
484 __be32 mkey_be;
485 u8 num_tc;
486 unsigned long flags;
487
488 /* control */
489 struct mlx5e_priv *priv;
490 int ix;
491 int cpu;
492};
493
494enum mlx5e_traffic_types {
5a6f8aef
AS
495 MLX5E_TT_IPV4_TCP,
496 MLX5E_TT_IPV6_TCP,
497 MLX5E_TT_IPV4_UDP,
498 MLX5E_TT_IPV6_UDP,
a741749f
AS
499 MLX5E_TT_IPV4_IPSEC_AH,
500 MLX5E_TT_IPV6_IPSEC_AH,
501 MLX5E_TT_IPV4_IPSEC_ESP,
502 MLX5E_TT_IPV6_IPSEC_ESP,
5a6f8aef
AS
503 MLX5E_TT_IPV4,
504 MLX5E_TT_IPV6,
505 MLX5E_TT_ANY,
506 MLX5E_NUM_TT,
1da36696 507 MLX5E_NUM_INDIR_TIRS = MLX5E_TT_ANY,
f62b8bb8
AV
508};
509
acff797c 510enum {
e0f46eb9 511 MLX5E_STATE_ASYNC_EVENTS_ENABLED,
acff797c
MG
512 MLX5E_STATE_OPENED,
513 MLX5E_STATE_DESTROYING,
514};
515
516struct mlx5e_vxlan_db {
517 spinlock_t lock; /* protect vxlan table */
518 struct radix_tree_root tree;
519};
520
33cfaaa8 521struct mlx5e_l2_rule {
f62b8bb8 522 u8 addr[ETH_ALEN + 2];
33cfaaa8 523 struct mlx5_flow_rule *rule;
f62b8bb8
AV
524};
525
acff797c
MG
526struct mlx5e_flow_table {
527 int num_groups;
528 struct mlx5_flow_table *t;
529 struct mlx5_flow_group **g;
530};
531
33cfaaa8 532#define MLX5E_L2_ADDR_HASH_SIZE BIT(BITS_PER_BYTE)
f62b8bb8 533
acff797c
MG
534struct mlx5e_tc_table {
535 struct mlx5_flow_table *t;
536
537 struct rhashtable_params ht_params;
538 struct rhashtable ht;
f62b8bb8
AV
539};
540
acff797c
MG
541struct mlx5e_vlan_table {
542 struct mlx5e_flow_table ft;
aad9e6e4 543 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
86d722ad
MG
544 struct mlx5_flow_rule *active_vlans_rule[VLAN_N_VID];
545 struct mlx5_flow_rule *untagged_rule;
546 struct mlx5_flow_rule *any_vlan_rule;
f62b8bb8
AV
547 bool filter_disabled;
548};
549
33cfaaa8
MG
550struct mlx5e_l2_table {
551 struct mlx5e_flow_table ft;
552 struct hlist_head netdev_uc[MLX5E_L2_ADDR_HASH_SIZE];
553 struct hlist_head netdev_mc[MLX5E_L2_ADDR_HASH_SIZE];
554 struct mlx5e_l2_rule broadcast;
555 struct mlx5e_l2_rule allmulti;
556 struct mlx5e_l2_rule promisc;
557 bool broadcast_enabled;
558 bool allmulti_enabled;
559 bool promisc_enabled;
560};
561
562/* L3/L4 traffic type classifier */
563struct mlx5e_ttc_table {
564 struct mlx5e_flow_table ft;
565 struct mlx5_flow_rule *rules[MLX5E_NUM_TT];
566};
567
18c908e4
MG
568#define ARFS_HASH_SHIFT BITS_PER_BYTE
569#define ARFS_HASH_SIZE BIT(BITS_PER_BYTE)
1cabe6b0
MG
570struct arfs_table {
571 struct mlx5e_flow_table ft;
572 struct mlx5_flow_rule *default_rule;
18c908e4 573 struct hlist_head rules_hash[ARFS_HASH_SIZE];
1cabe6b0
MG
574};
575
576enum arfs_type {
577 ARFS_IPV4_TCP,
578 ARFS_IPV6_TCP,
579 ARFS_IPV4_UDP,
580 ARFS_IPV6_UDP,
581 ARFS_NUM_TYPES,
582};
583
584struct mlx5e_arfs_tables {
585 struct arfs_table arfs_tables[ARFS_NUM_TYPES];
18c908e4
MG
586 /* Protect aRFS rules list */
587 spinlock_t arfs_lock;
588 struct list_head rules;
589 int last_filter_id;
590 struct workqueue_struct *wq;
1cabe6b0
MG
591};
592
593/* NIC prio FTS */
594enum {
595 MLX5E_VLAN_FT_LEVEL = 0,
596 MLX5E_L2_FT_LEVEL,
597 MLX5E_TTC_FT_LEVEL,
598 MLX5E_ARFS_FT_LEVEL
599};
600
6dc6071c
MG
601struct mlx5e_ethtool_table {
602 struct mlx5_flow_table *ft;
603 int num_rules;
604};
605
1174fce8 606#define ETHTOOL_NUM_L3_L4_FTS 7
6dc6071c
MG
607#define ETHTOOL_NUM_L2_FTS 4
608
609struct mlx5e_ethtool_steering {
1174fce8 610 struct mlx5e_ethtool_table l3_l4_ft[ETHTOOL_NUM_L3_L4_FTS];
6dc6071c
MG
611 struct mlx5e_ethtool_table l2_ft[ETHTOOL_NUM_L2_FTS];
612 struct list_head rules;
613 int tot_num_rules;
614};
615
acff797c
MG
616struct mlx5e_flow_steering {
617 struct mlx5_flow_namespace *ns;
6dc6071c 618 struct mlx5e_ethtool_steering ethtool;
acff797c
MG
619 struct mlx5e_tc_table tc;
620 struct mlx5e_vlan_table vlan;
33cfaaa8
MG
621 struct mlx5e_l2_table l2;
622 struct mlx5e_ttc_table ttc;
1cabe6b0 623 struct mlx5e_arfs_tables arfs;
f62b8bb8
AV
624};
625
398f3351 626struct mlx5e_rqt {
1da36696 627 u32 rqtn;
398f3351
HHZ
628 bool enabled;
629};
630
631struct mlx5e_tir {
632 u32 tirn;
633 struct mlx5e_rqt rqt;
634 struct list_head list;
1da36696
TT
635};
636
acff797c
MG
637enum {
638 MLX5E_TC_PRIO = 0,
639 MLX5E_NIC_PRIO
640};
641
6bfd390b
HHZ
642struct mlx5e_profile {
643 void (*init)(struct mlx5_core_dev *mdev,
644 struct net_device *netdev,
127ea380 645 const struct mlx5e_profile *profile, void *ppriv);
6bfd390b
HHZ
646 void (*cleanup)(struct mlx5e_priv *priv);
647 int (*init_rx)(struct mlx5e_priv *priv);
648 void (*cleanup_rx)(struct mlx5e_priv *priv);
649 int (*init_tx)(struct mlx5e_priv *priv);
650 void (*cleanup_tx)(struct mlx5e_priv *priv);
651 void (*enable)(struct mlx5e_priv *priv);
652 void (*disable)(struct mlx5e_priv *priv);
653 void (*update_stats)(struct mlx5e_priv *priv);
654 int (*max_nch)(struct mlx5_core_dev *mdev);
655 int max_tc;
656};
657
f62b8bb8
AV
658struct mlx5e_priv {
659 /* priv data path fields - start */
03289b88 660 struct mlx5e_sq **txq_to_sq_map;
5283af89 661 int channeltc_to_txq_map[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
86994156 662 struct bpf_prog *xdp_prog;
f62b8bb8
AV
663 /* priv data path fields - end */
664
665 unsigned long state;
666 struct mutex state_lock; /* Protects Interface state */
bc77b240 667 struct mlx5_core_mkey umr_mkey;
50cfa25a 668 struct mlx5e_rq drop_rq;
f62b8bb8
AV
669
670 struct mlx5e_channel **channel;
671 u32 tisn[MLX5E_MAX_NUM_TC];
398f3351 672 struct mlx5e_rqt indir_rqt;
724b2aa1
HHZ
673 struct mlx5e_tir indir_tir[MLX5E_NUM_INDIR_TIRS];
674 struct mlx5e_tir direct_tir[MLX5E_MAX_NUM_CHANNELS];
507f0c81 675 u32 tx_rates[MLX5E_MAX_NUM_SQS];
f62b8bb8 676
acff797c 677 struct mlx5e_flow_steering fs;
b3f63c3d 678 struct mlx5e_vxlan_db vxlan;
f62b8bb8
AV
679
680 struct mlx5e_params params;
7bb29755 681 struct workqueue_struct *wq;
f62b8bb8
AV
682 struct work_struct update_carrier_work;
683 struct work_struct set_rx_mode_work;
3947ca18 684 struct work_struct tx_timeout_work;
f62b8bb8
AV
685 struct delayed_work update_stats_work;
686
4e59e288 687 u32 pflags;
f62b8bb8
AV
688 struct mlx5_core_dev *mdev;
689 struct net_device *netdev;
690 struct mlx5e_stats stats;
ef9814de 691 struct mlx5e_tstamp tstamp;
593cf338 692 u16 q_counter;
6bfd390b 693 const struct mlx5e_profile *profile;
127ea380 694 void *ppriv;
f62b8bb8
AV
695};
696
665bc539
GP
697void mlx5e_build_ptys2ethtool_map(void);
698
12be4b21 699void mlx5e_send_nop(struct mlx5e_sq *sq, bool notify_hw);
f62b8bb8
AV
700u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
701 void *accel_priv, select_queue_fallback_t fallback);
702netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
f62b8bb8
AV
703
704void mlx5e_completion_event(struct mlx5_core_cq *mcq);
705void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
706int mlx5e_napi_poll(struct napi_struct *napi, int budget);
8ec736e5 707bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
44fb6fbb 708int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
b5503b99 709void mlx5e_free_sq_descs(struct mlx5e_sq *sq);
461017cb 710
4415a031
TT
711void mlx5e_page_release(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info,
712 bool recycle);
2f48af12 713void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
461017cb 714void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
f62b8bb8 715bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
2f48af12 716int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
7e426671 717int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
6cd392a0
DJ
718void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix);
719void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix);
7e426671
TT
720void mlx5e_post_rx_mpwqe(struct mlx5e_rq *rq);
721void mlx5e_free_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi);
f62b8bb8
AV
722struct mlx5_cqe64 *mlx5e_get_cqe(struct mlx5e_cq *cq);
723
cb3c7fd4
GR
724void mlx5e_rx_am(struct mlx5e_rq *rq);
725void mlx5e_rx_am_work(struct work_struct *work);
726struct mlx5e_cq_moder mlx5e_am_get_def_profile(u8 rx_cq_period_mode);
727
f62b8bb8
AV
728void mlx5e_update_stats(struct mlx5e_priv *priv);
729
acff797c
MG
730int mlx5e_create_flow_steering(struct mlx5e_priv *priv);
731void mlx5e_destroy_flow_steering(struct mlx5e_priv *priv);
33cfaaa8 732void mlx5e_init_l2_addr(struct mlx5e_priv *priv);
1cabe6b0 733void mlx5e_destroy_flow_table(struct mlx5e_flow_table *ft);
f913a72a
MG
734int mlx5e_ethtool_get_flow(struct mlx5e_priv *priv, struct ethtool_rxnfc *info,
735 int location);
736int mlx5e_ethtool_get_all_flows(struct mlx5e_priv *priv,
737 struct ethtool_rxnfc *info, u32 *rule_locs);
6dc6071c
MG
738int mlx5e_ethtool_flow_replace(struct mlx5e_priv *priv,
739 struct ethtool_rx_flow_spec *fs);
740int mlx5e_ethtool_flow_remove(struct mlx5e_priv *priv,
741 int location);
742void mlx5e_ethtool_init_steering(struct mlx5e_priv *priv);
743void mlx5e_ethtool_cleanup_steering(struct mlx5e_priv *priv);
f62b8bb8
AV
744void mlx5e_set_rx_mode_work(struct work_struct *work);
745
ef9814de
EBE
746void mlx5e_fill_hwstamp(struct mlx5e_tstamp *clock, u64 timestamp,
747 struct skb_shared_hwtstamps *hwts);
748void mlx5e_timestamp_init(struct mlx5e_priv *priv);
749void mlx5e_timestamp_cleanup(struct mlx5e_priv *priv);
750int mlx5e_hwstamp_set(struct net_device *dev, struct ifreq *ifr);
751int mlx5e_hwstamp_get(struct net_device *dev, struct ifreq *ifr);
7219ab34 752void mlx5e_modify_rx_cqe_compression(struct mlx5e_priv *priv, bool val);
ef9814de 753
f62b8bb8
AV
754int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
755 u16 vid);
756int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
757 u16 vid);
758void mlx5e_enable_vlan_filter(struct mlx5e_priv *priv);
759void mlx5e_disable_vlan_filter(struct mlx5e_priv *priv);
f62b8bb8 760
36350114
GP
761int mlx5e_modify_rqs_vsd(struct mlx5e_priv *priv, bool vsd);
762
1da36696 763int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz, int ix);
bdfc028d 764void mlx5e_build_tir_ctx_hash(void *tirc, struct mlx5e_priv *priv);
2d75b2bc 765
f62b8bb8
AV
766int mlx5e_open_locked(struct net_device *netdev);
767int mlx5e_close_locked(struct net_device *netdev);
d8c9660d
TT
768void mlx5e_build_default_indir_rqt(struct mlx5_core_dev *mdev,
769 u32 *indirection_rqt, int len,
85082dba 770 int num_channels);
b797a684 771int mlx5e_get_max_linkspeed(struct mlx5_core_dev *mdev, u32 *speed);
f62b8bb8 772
9908aa29
TT
773void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params,
774 u8 cq_period_mode);
775
f62b8bb8 776static inline void mlx5e_tx_notify_hw(struct mlx5e_sq *sq,
bc77b240 777 struct mlx5_wqe_ctrl_seg *ctrl, int bf_sz)
f62b8bb8 778{
88a85f99
AS
779 u16 ofst = MLX5_BF_OFFSET + sq->bf_offset;
780
f62b8bb8
AV
781 /* ensure wqe is visible to device before updating doorbell record */
782 dma_wmb();
783
784 *sq->wq.db = cpu_to_be32(sq->pc);
785
786 /* ensure doorbell record is visible to device before ringing the
787 * doorbell
788 */
789 wmb();
0ba42241 790 if (bf_sz)
bc77b240 791 __iowrite64_copy(sq->uar_map + ofst, ctrl, bf_sz);
0ba42241 792 else
bc77b240 793 mlx5_write64((__be32 *)ctrl, sq->uar_map + ofst, NULL);
0ba42241
ML
794 /* flush the write-combining mapped buffer */
795 wmb();
f62b8bb8
AV
796
797 sq->bf_offset ^= sq->bf_buf_size;
798}
799
800static inline void mlx5e_cq_arm(struct mlx5e_cq *cq)
801{
802 struct mlx5_core_cq *mcq;
803
804 mcq = &cq->mcq;
805 mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, NULL, cq->wq.cc);
806}
807
7e426671
TT
808static inline u32 mlx5e_get_wqe_mtt_offset(struct mlx5e_rq *rq, u16 wqe_ix)
809{
21c59685 810 return rq->mpwqe.mtt_offset +
7e426671
TT
811 wqe_ix * ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8);
812}
813
3435ab59
AS
814static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
815{
816 return min_t(int, mdev->priv.eq_table.num_comp_vectors,
817 MLX5E_MAX_NUM_CHANNELS);
818}
819
f62b8bb8 820extern const struct ethtool_ops mlx5e_ethtool_ops;
08fb1dac
SM
821#ifdef CONFIG_MLX5_CORE_EN_DCB
822extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
823int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
824#endif
825
1cabe6b0
MG
826#ifndef CONFIG_RFS_ACCEL
827static inline int mlx5e_arfs_create_tables(struct mlx5e_priv *priv)
828{
829 return 0;
830}
831
832static inline void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv) {}
45bf454a
MG
833
834static inline int mlx5e_arfs_enable(struct mlx5e_priv *priv)
835{
836 return -ENOTSUPP;
837}
838
839static inline int mlx5e_arfs_disable(struct mlx5e_priv *priv)
840{
841 return -ENOTSUPP;
842}
1cabe6b0
MG
843#else
844int mlx5e_arfs_create_tables(struct mlx5e_priv *priv);
845void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv);
45bf454a
MG
846int mlx5e_arfs_enable(struct mlx5e_priv *priv);
847int mlx5e_arfs_disable(struct mlx5e_priv *priv);
18c908e4
MG
848int mlx5e_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb,
849 u16 rxq_index, u32 flow_id);
1cabe6b0
MG
850#endif
851
58d52291 852u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev);
724b2aa1
HHZ
853int mlx5e_create_tir(struct mlx5_core_dev *mdev,
854 struct mlx5e_tir *tir, u32 *in, int inlen);
855void mlx5e_destroy_tir(struct mlx5_core_dev *mdev,
856 struct mlx5e_tir *tir);
b50d292b
HHZ
857int mlx5e_create_mdev_resources(struct mlx5_core_dev *mdev);
858void mlx5e_destroy_mdev_resources(struct mlx5_core_dev *mdev);
724b2aa1 859int mlx5e_refresh_tirs_self_loopback_enable(struct mlx5_core_dev *mdev);
1afff42c 860
cb67b832
HHZ
861struct mlx5_eswitch_rep;
862int mlx5e_vport_rep_load(struct mlx5_eswitch *esw,
863 struct mlx5_eswitch_rep *rep);
864void mlx5e_vport_rep_unload(struct mlx5_eswitch *esw,
865 struct mlx5_eswitch_rep *rep);
866int mlx5e_nic_rep_load(struct mlx5_eswitch *esw, struct mlx5_eswitch_rep *rep);
867void mlx5e_nic_rep_unload(struct mlx5_eswitch *esw,
868 struct mlx5_eswitch_rep *rep);
869int mlx5e_add_sqs_fwd_rules(struct mlx5e_priv *priv);
870void mlx5e_remove_sqs_fwd_rules(struct mlx5e_priv *priv);
871int mlx5e_attr_get(struct net_device *dev, struct switchdev_attr *attr);
f5f82476 872void mlx5e_handle_rx_cqe_rep(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
cb67b832
HHZ
873
874int mlx5e_create_direct_rqts(struct mlx5e_priv *priv);
875void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt);
876int mlx5e_create_direct_tirs(struct mlx5e_priv *priv);
877void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv);
878int mlx5e_create_tises(struct mlx5e_priv *priv);
879void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv);
880int mlx5e_close(struct net_device *netdev);
881int mlx5e_open(struct net_device *netdev);
882void mlx5e_update_stats_work(struct work_struct *work);
26e59d80
MHY
883struct net_device *mlx5e_create_netdev(struct mlx5_core_dev *mdev,
884 const struct mlx5e_profile *profile,
885 void *ppriv);
cb67b832 886void mlx5e_destroy_netdev(struct mlx5_core_dev *mdev, struct mlx5e_priv *priv);
26e59d80
MHY
887int mlx5e_attach_netdev(struct mlx5_core_dev *mdev, struct net_device *netdev);
888void mlx5e_detach_netdev(struct mlx5_core_dev *mdev, struct net_device *netdev);
cb67b832
HHZ
889struct rtnl_link_stats64 *
890mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats);
891
1afff42c 892#endif /* __MLX5_EN_H__ */