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