]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/ethernet/mellanox/mlx5/core/en.h
Merge branch 'more-dsa-probing'
[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>
f62b8bb8 47#include "wq.h"
f62b8bb8 48#include "mlx5_core.h"
9218b44d 49#include "en_stats.h"
f62b8bb8 50
1cabe6b0
MG
51#define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v)
52
f62b8bb8
AV
53#define MLX5E_MAX_NUM_TC 8
54
e842b100 55#define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x6
f62b8bb8
AV
56#define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa
57#define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd
58
e842b100 59#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE 0x1
f62b8bb8
AV
60#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa
61#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE 0xd
62
461017cb
TT
63#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW 0x1
64#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE_MPW 0x4
65#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW 0x6
66
67#define MLX5_MPWRQ_LOG_NUM_STRIDES 11 /* >= 9, HW restriction */
68#define MLX5_MPWRQ_LOG_STRIDE_SIZE 6 /* >= 6, HW restriction */
69#define MLX5_MPWRQ_NUM_STRIDES BIT(MLX5_MPWRQ_LOG_NUM_STRIDES)
70#define MLX5_MPWRQ_STRIDE_SIZE BIT(MLX5_MPWRQ_LOG_STRIDE_SIZE)
71#define MLX5_MPWRQ_LOG_WQE_SZ (MLX5_MPWRQ_LOG_NUM_STRIDES +\
72 MLX5_MPWRQ_LOG_STRIDE_SIZE)
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)
bc77b240
TT
78#define MLX5_CHANNEL_MAX_NUM_MTTS (ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8) * \
79 BIT(MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW))
80#define MLX5_UMR_ALIGN (2048)
461017cb
TT
81#define MLX5_MPWRQ_SMALL_PACKET_THRESHOLD (128)
82
d9a40271 83#define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024)
f62b8bb8
AV
84#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10
85#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20
86#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10
87#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20
88#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80
461017cb 89#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW 0x2
f62b8bb8 90
936896e9
AS
91#define MLX5E_LOG_INDIR_RQT_SIZE 0x7
92#define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE)
93#define MLX5E_MAX_NUM_CHANNELS (MLX5E_INDIR_RQT_SIZE >> 1)
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
08fb1dac
SM
149#ifdef CONFIG_MLX5_CORE_EN_DCB
150#define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
151#define MLX5E_MIN_BW_ALLOC 1 /* Min percentage of BW allocation */
152#endif
153
f62b8bb8
AV
154struct mlx5e_params {
155 u8 log_sq_size;
461017cb 156 u8 rq_wq_type;
f62b8bb8
AV
157 u8 log_rq_size;
158 u16 num_channels;
f62b8bb8
AV
159 u8 num_tc;
160 u16 rx_cq_moderation_usec;
161 u16 rx_cq_moderation_pkts;
162 u16 tx_cq_moderation_usec;
163 u16 tx_cq_moderation_pkts;
164 u16 min_rx_wqes;
f62b8bb8
AV
165 bool lro_en;
166 u32 lro_wqe_sz;
58d52291 167 u16 tx_max_inline;
2d75b2bc
AS
168 u8 rss_hfunc;
169 u8 toeplitz_hash_key[40];
170 u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE];
36350114 171 bool vlan_strip_disable;
08fb1dac
SM
172#ifdef CONFIG_MLX5_CORE_EN_DCB
173 struct ieee_ets ets;
174#endif
f62b8bb8
AV
175};
176
ef9814de
EBE
177struct mlx5e_tstamp {
178 rwlock_t lock;
179 struct cyclecounter cycles;
180 struct timecounter clock;
181 struct hwtstamp_config hwtstamp_config;
182 u32 nominal_c_mult;
183 unsigned long overflow_period;
184 struct delayed_work overflow_work;
185 struct mlx5_core_dev *mdev;
3d8c38af
EBE
186 struct ptp_clock *ptp;
187 struct ptp_clock_info ptp_info;
ef9814de
EBE
188};
189
f62b8bb8
AV
190enum {
191 MLX5E_RQ_STATE_POST_WQES_ENABLE,
bc77b240 192 MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS,
f62b8bb8
AV
193};
194
f62b8bb8
AV
195struct mlx5e_cq {
196 /* data path - accessed per cqe */
197 struct mlx5_cqwq wq;
f62b8bb8
AV
198
199 /* data path - accessed per napi poll */
200 struct napi_struct *napi;
201 struct mlx5_core_cq mcq;
202 struct mlx5e_channel *channel;
50cfa25a 203 struct mlx5e_priv *priv;
f62b8bb8
AV
204
205 /* control */
206 struct mlx5_wq_ctrl wq_ctrl;
207} ____cacheline_aligned_in_smp;
208
2f48af12
TT
209struct mlx5e_rq;
210typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq *rq,
211 struct mlx5_cqe64 *cqe);
212typedef int (*mlx5e_fp_alloc_wqe)(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe,
213 u16 ix);
214
461017cb
TT
215struct mlx5e_dma_info {
216 struct page *page;
217 dma_addr_t addr;
218};
219
f62b8bb8
AV
220struct mlx5e_rq {
221 /* data path */
222 struct mlx5_wq_ll wq;
223 u32 wqe_sz;
224 struct sk_buff **skb;
461017cb 225 struct mlx5e_mpw_info *wqe_info;
bc77b240
TT
226 __be32 mkey_be;
227 __be32 umr_mkey_be;
f62b8bb8
AV
228
229 struct device *pdev;
230 struct net_device *netdev;
ef9814de 231 struct mlx5e_tstamp *tstamp;
f62b8bb8
AV
232 struct mlx5e_rq_stats stats;
233 struct mlx5e_cq cq;
2f48af12
TT
234 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
235 mlx5e_fp_alloc_wqe alloc_wqe;
f62b8bb8
AV
236
237 unsigned long state;
238 int ix;
239
240 /* control */
241 struct mlx5_wq_ctrl wq_ctrl;
461017cb 242 u8 wq_type;
f62b8bb8
AV
243 u32 rqn;
244 struct mlx5e_channel *channel;
50cfa25a 245 struct mlx5e_priv *priv;
f62b8bb8
AV
246} ____cacheline_aligned_in_smp;
247
bc77b240
TT
248struct mlx5e_umr_dma_info {
249 __be64 *mtt;
250 __be64 *mtt_no_align;
251 dma_addr_t mtt_addr;
252 struct mlx5e_dma_info *dma_info;
253};
254
255struct mlx5e_mpw_info {
256 union {
257 struct mlx5e_dma_info dma_info;
258 struct mlx5e_umr_dma_info umr;
259 };
260 u16 consumed_strides;
261 u16 skbs_frags[MLX5_MPWRQ_PAGES_PER_WQE];
262
263 void (*dma_pre_sync)(struct device *pdev,
264 struct mlx5e_mpw_info *wi,
265 u32 wqe_offset, u32 len);
266 void (*add_skb_frag)(struct device *pdev,
267 struct sk_buff *skb,
268 struct mlx5e_mpw_info *wi,
269 u32 page_idx, u32 frag_offset, u32 len);
270 void (*copy_skb_header)(struct device *pdev,
271 struct sk_buff *skb,
272 struct mlx5e_mpw_info *wi,
273 u32 page_idx, u32 offset,
274 u32 headlen);
275 void (*free_wqe)(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi);
276};
277
34802a42 278struct mlx5e_tx_wqe_info {
f62b8bb8
AV
279 u32 num_bytes;
280 u8 num_wqebbs;
281 u8 num_dma;
282};
283
d4e28cbd
AS
284enum mlx5e_dma_map_type {
285 MLX5E_DMA_MAP_SINGLE,
286 MLX5E_DMA_MAP_PAGE
287};
288
f62b8bb8 289struct mlx5e_sq_dma {
d4e28cbd
AS
290 dma_addr_t addr;
291 u32 size;
292 enum mlx5e_dma_map_type type;
f62b8bb8
AV
293};
294
295enum {
296 MLX5E_SQ_STATE_WAKE_TXQ_ENABLE,
0ba42241 297 MLX5E_SQ_STATE_BF_ENABLE,
f62b8bb8
AV
298};
299
d3c9bc27
TT
300struct mlx5e_ico_wqe_info {
301 u8 opcode;
302 u8 num_wqebbs;
303};
304
f62b8bb8
AV
305struct mlx5e_sq {
306 /* data path */
307
308 /* dirtied @completion */
309 u16 cc;
310 u32 dma_fifo_cc;
311
312 /* dirtied @xmit */
313 u16 pc ____cacheline_aligned_in_smp;
314 u32 dma_fifo_pc;
88a85f99
AS
315 u16 bf_offset;
316 u16 prev_cc;
317 u8 bf_budget;
f62b8bb8
AV
318 struct mlx5e_sq_stats stats;
319
320 struct mlx5e_cq cq;
321
322 /* pointers to per packet info: write@xmit, read@completion */
323 struct sk_buff **skb;
324 struct mlx5e_sq_dma *dma_fifo;
34802a42 325 struct mlx5e_tx_wqe_info *wqe_info;
f62b8bb8
AV
326
327 /* read only */
328 struct mlx5_wq_cyc wq;
329 u32 dma_fifo_mask;
330 void __iomem *uar_map;
331 struct netdev_queue *txq;
332 u32 sqn;
88a85f99 333 u16 bf_buf_size;
12be4b21
SM
334 u16 max_inline;
335 u16 edge;
f62b8bb8 336 struct device *pdev;
ef9814de 337 struct mlx5e_tstamp *tstamp;
f62b8bb8
AV
338 __be32 mkey_be;
339 unsigned long state;
340
341 /* control path */
342 struct mlx5_wq_ctrl wq_ctrl;
343 struct mlx5_uar uar;
344 struct mlx5e_channel *channel;
345 int tc;
d3c9bc27 346 struct mlx5e_ico_wqe_info *ico_wqe_info;
f62b8bb8
AV
347} ____cacheline_aligned_in_smp;
348
349static inline bool mlx5e_sq_has_room_for(struct mlx5e_sq *sq, u16 n)
350{
351 return (((sq->wq.sz_m1 & (sq->cc - sq->pc)) >= n) ||
352 (sq->cc == sq->pc));
353}
354
355enum channel_flags {
356 MLX5E_CHANNEL_NAPI_SCHED = 1,
357};
358
359struct mlx5e_channel {
360 /* data path */
361 struct mlx5e_rq rq;
362 struct mlx5e_sq sq[MLX5E_MAX_NUM_TC];
d3c9bc27 363 struct mlx5e_sq icosq; /* internal control operations */
f62b8bb8
AV
364 struct napi_struct napi;
365 struct device *pdev;
366 struct net_device *netdev;
367 __be32 mkey_be;
368 u8 num_tc;
369 unsigned long flags;
370
371 /* control */
372 struct mlx5e_priv *priv;
373 int ix;
374 int cpu;
375};
376
377enum mlx5e_traffic_types {
5a6f8aef
AS
378 MLX5E_TT_IPV4_TCP,
379 MLX5E_TT_IPV6_TCP,
380 MLX5E_TT_IPV4_UDP,
381 MLX5E_TT_IPV6_UDP,
a741749f
AS
382 MLX5E_TT_IPV4_IPSEC_AH,
383 MLX5E_TT_IPV6_IPSEC_AH,
384 MLX5E_TT_IPV4_IPSEC_ESP,
385 MLX5E_TT_IPV6_IPSEC_ESP,
5a6f8aef
AS
386 MLX5E_TT_IPV4,
387 MLX5E_TT_IPV6,
388 MLX5E_TT_ANY,
389 MLX5E_NUM_TT,
1da36696 390 MLX5E_NUM_INDIR_TIRS = MLX5E_TT_ANY,
f62b8bb8
AV
391};
392
acff797c
MG
393enum {
394 MLX5E_STATE_ASYNC_EVENTS_ENABLE,
395 MLX5E_STATE_OPENED,
396 MLX5E_STATE_DESTROYING,
397};
398
399struct mlx5e_vxlan_db {
400 spinlock_t lock; /* protect vxlan table */
401 struct radix_tree_root tree;
402};
403
33cfaaa8 404struct mlx5e_l2_rule {
f62b8bb8 405 u8 addr[ETH_ALEN + 2];
33cfaaa8 406 struct mlx5_flow_rule *rule;
f62b8bb8
AV
407};
408
acff797c
MG
409struct mlx5e_flow_table {
410 int num_groups;
411 struct mlx5_flow_table *t;
412 struct mlx5_flow_group **g;
413};
414
33cfaaa8 415#define MLX5E_L2_ADDR_HASH_SIZE BIT(BITS_PER_BYTE)
f62b8bb8 416
acff797c
MG
417struct mlx5e_tc_table {
418 struct mlx5_flow_table *t;
419
420 struct rhashtable_params ht_params;
421 struct rhashtable ht;
f62b8bb8
AV
422};
423
acff797c
MG
424struct mlx5e_vlan_table {
425 struct mlx5e_flow_table ft;
aad9e6e4 426 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
86d722ad
MG
427 struct mlx5_flow_rule *active_vlans_rule[VLAN_N_VID];
428 struct mlx5_flow_rule *untagged_rule;
429 struct mlx5_flow_rule *any_vlan_rule;
f62b8bb8
AV
430 bool filter_disabled;
431};
432
33cfaaa8
MG
433struct mlx5e_l2_table {
434 struct mlx5e_flow_table ft;
435 struct hlist_head netdev_uc[MLX5E_L2_ADDR_HASH_SIZE];
436 struct hlist_head netdev_mc[MLX5E_L2_ADDR_HASH_SIZE];
437 struct mlx5e_l2_rule broadcast;
438 struct mlx5e_l2_rule allmulti;
439 struct mlx5e_l2_rule promisc;
440 bool broadcast_enabled;
441 bool allmulti_enabled;
442 bool promisc_enabled;
443};
444
445/* L3/L4 traffic type classifier */
446struct mlx5e_ttc_table {
447 struct mlx5e_flow_table ft;
448 struct mlx5_flow_rule *rules[MLX5E_NUM_TT];
449};
450
18c908e4
MG
451#define ARFS_HASH_SHIFT BITS_PER_BYTE
452#define ARFS_HASH_SIZE BIT(BITS_PER_BYTE)
1cabe6b0
MG
453struct arfs_table {
454 struct mlx5e_flow_table ft;
455 struct mlx5_flow_rule *default_rule;
18c908e4 456 struct hlist_head rules_hash[ARFS_HASH_SIZE];
1cabe6b0
MG
457};
458
459enum arfs_type {
460 ARFS_IPV4_TCP,
461 ARFS_IPV6_TCP,
462 ARFS_IPV4_UDP,
463 ARFS_IPV6_UDP,
464 ARFS_NUM_TYPES,
465};
466
467struct mlx5e_arfs_tables {
468 struct arfs_table arfs_tables[ARFS_NUM_TYPES];
18c908e4
MG
469 /* Protect aRFS rules list */
470 spinlock_t arfs_lock;
471 struct list_head rules;
472 int last_filter_id;
473 struct workqueue_struct *wq;
1cabe6b0
MG
474};
475
476/* NIC prio FTS */
477enum {
478 MLX5E_VLAN_FT_LEVEL = 0,
479 MLX5E_L2_FT_LEVEL,
480 MLX5E_TTC_FT_LEVEL,
481 MLX5E_ARFS_FT_LEVEL
482};
483
acff797c
MG
484struct mlx5e_flow_steering {
485 struct mlx5_flow_namespace *ns;
486 struct mlx5e_tc_table tc;
487 struct mlx5e_vlan_table vlan;
33cfaaa8
MG
488 struct mlx5e_l2_table l2;
489 struct mlx5e_ttc_table ttc;
1cabe6b0 490 struct mlx5e_arfs_tables arfs;
f62b8bb8
AV
491};
492
1da36696
TT
493struct mlx5e_direct_tir {
494 u32 tirn;
495 u32 rqtn;
496};
497
acff797c
MG
498enum {
499 MLX5E_TC_PRIO = 0,
500 MLX5E_NIC_PRIO
501};
502
f62b8bb8
AV
503struct mlx5e_priv {
504 /* priv data path fields - start */
03289b88 505 struct mlx5e_sq **txq_to_sq_map;
5283af89 506 int channeltc_to_txq_map[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
f62b8bb8
AV
507 /* priv data path fields - end */
508
509 unsigned long state;
510 struct mutex state_lock; /* Protects Interface state */
511 struct mlx5_uar cq_uar;
512 u32 pdn;
3191e05f 513 u32 tdn;
a606b0f6 514 struct mlx5_core_mkey mkey;
bc77b240 515 struct mlx5_core_mkey umr_mkey;
50cfa25a 516 struct mlx5e_rq drop_rq;
f62b8bb8
AV
517
518 struct mlx5e_channel **channel;
519 u32 tisn[MLX5E_MAX_NUM_TC];
1da36696
TT
520 u32 indir_rqtn;
521 u32 indir_tirn[MLX5E_NUM_INDIR_TIRS];
522 struct mlx5e_direct_tir direct_tir[MLX5E_MAX_NUM_CHANNELS];
f62b8bb8 523
acff797c 524 struct mlx5e_flow_steering fs;
b3f63c3d 525 struct mlx5e_vxlan_db vxlan;
f62b8bb8
AV
526
527 struct mlx5e_params params;
7bb29755 528 struct workqueue_struct *wq;
f62b8bb8
AV
529 struct work_struct update_carrier_work;
530 struct work_struct set_rx_mode_work;
531 struct delayed_work update_stats_work;
532
533 struct mlx5_core_dev *mdev;
534 struct net_device *netdev;
535 struct mlx5e_stats stats;
ef9814de 536 struct mlx5e_tstamp tstamp;
593cf338 537 u16 q_counter;
f62b8bb8
AV
538};
539
f62b8bb8
AV
540enum mlx5e_link_mode {
541 MLX5E_1000BASE_CX_SGMII = 0,
542 MLX5E_1000BASE_KX = 1,
543 MLX5E_10GBASE_CX4 = 2,
544 MLX5E_10GBASE_KX4 = 3,
545 MLX5E_10GBASE_KR = 4,
546 MLX5E_20GBASE_KR2 = 5,
547 MLX5E_40GBASE_CR4 = 6,
548 MLX5E_40GBASE_KR4 = 7,
549 MLX5E_56GBASE_R4 = 8,
550 MLX5E_10GBASE_CR = 12,
551 MLX5E_10GBASE_SR = 13,
552 MLX5E_10GBASE_ER = 14,
553 MLX5E_40GBASE_SR4 = 15,
554 MLX5E_40GBASE_LR4 = 16,
555 MLX5E_100GBASE_CR4 = 20,
556 MLX5E_100GBASE_SR4 = 21,
557 MLX5E_100GBASE_KR4 = 22,
558 MLX5E_100GBASE_LR4 = 23,
559 MLX5E_100BASE_TX = 24,
6e4c2189 560 MLX5E_1000BASE_T = 25,
f62b8bb8
AV
561 MLX5E_10GBASE_T = 26,
562 MLX5E_25GBASE_CR = 27,
563 MLX5E_25GBASE_KR = 28,
564 MLX5E_25GBASE_SR = 29,
565 MLX5E_50GBASE_CR2 = 30,
566 MLX5E_50GBASE_KR2 = 31,
567 MLX5E_LINK_MODES_NUMBER,
568};
569
570#define MLX5E_PROT_MASK(link_mode) (1 << link_mode)
571
12be4b21 572void mlx5e_send_nop(struct mlx5e_sq *sq, bool notify_hw);
f62b8bb8
AV
573u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
574 void *accel_priv, select_queue_fallback_t fallback);
575netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
f62b8bb8
AV
576
577void mlx5e_completion_event(struct mlx5_core_cq *mcq);
578void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
579int mlx5e_napi_poll(struct napi_struct *napi, int budget);
8ec736e5 580bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
44fb6fbb 581int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
461017cb 582
2f48af12 583void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
461017cb 584void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
f62b8bb8 585bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
2f48af12 586int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
461017cb 587int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
bc77b240
TT
588void mlx5e_post_rx_fragmented_mpwqe(struct mlx5e_rq *rq);
589void mlx5e_complete_rx_linear_mpwqe(struct mlx5e_rq *rq,
590 struct mlx5_cqe64 *cqe,
591 u16 byte_cnt,
592 struct mlx5e_mpw_info *wi,
593 struct sk_buff *skb);
594void mlx5e_complete_rx_fragmented_mpwqe(struct mlx5e_rq *rq,
595 struct mlx5_cqe64 *cqe,
596 u16 byte_cnt,
597 struct mlx5e_mpw_info *wi,
598 struct sk_buff *skb);
599void mlx5e_free_rx_linear_mpwqe(struct mlx5e_rq *rq,
600 struct mlx5e_mpw_info *wi);
601void mlx5e_free_rx_fragmented_mpwqe(struct mlx5e_rq *rq,
602 struct mlx5e_mpw_info *wi);
f62b8bb8
AV
603struct mlx5_cqe64 *mlx5e_get_cqe(struct mlx5e_cq *cq);
604
605void mlx5e_update_stats(struct mlx5e_priv *priv);
606
acff797c
MG
607int mlx5e_create_flow_steering(struct mlx5e_priv *priv);
608void mlx5e_destroy_flow_steering(struct mlx5e_priv *priv);
33cfaaa8 609void mlx5e_init_l2_addr(struct mlx5e_priv *priv);
1cabe6b0 610void mlx5e_destroy_flow_table(struct mlx5e_flow_table *ft);
f62b8bb8
AV
611void mlx5e_set_rx_mode_work(struct work_struct *work);
612
ef9814de
EBE
613void mlx5e_fill_hwstamp(struct mlx5e_tstamp *clock, u64 timestamp,
614 struct skb_shared_hwtstamps *hwts);
615void mlx5e_timestamp_init(struct mlx5e_priv *priv);
616void mlx5e_timestamp_cleanup(struct mlx5e_priv *priv);
617int mlx5e_hwstamp_set(struct net_device *dev, struct ifreq *ifr);
618int mlx5e_hwstamp_get(struct net_device *dev, struct ifreq *ifr);
619
f62b8bb8
AV
620int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
621 u16 vid);
622int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
623 u16 vid);
624void mlx5e_enable_vlan_filter(struct mlx5e_priv *priv);
625void mlx5e_disable_vlan_filter(struct mlx5e_priv *priv);
f62b8bb8 626
36350114
GP
627int mlx5e_modify_rqs_vsd(struct mlx5e_priv *priv, bool vsd);
628
1da36696 629int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz, int ix);
bdfc028d 630void mlx5e_build_tir_ctx_hash(void *tirc, struct mlx5e_priv *priv);
2d75b2bc 631
f62b8bb8
AV
632int mlx5e_open_locked(struct net_device *netdev);
633int mlx5e_close_locked(struct net_device *netdev);
d8c9660d
TT
634void mlx5e_build_default_indir_rqt(struct mlx5_core_dev *mdev,
635 u32 *indirection_rqt, int len,
85082dba 636 int num_channels);
f62b8bb8
AV
637
638static inline void mlx5e_tx_notify_hw(struct mlx5e_sq *sq,
bc77b240 639 struct mlx5_wqe_ctrl_seg *ctrl, int bf_sz)
f62b8bb8 640{
88a85f99
AS
641 u16 ofst = MLX5_BF_OFFSET + sq->bf_offset;
642
f62b8bb8
AV
643 /* ensure wqe is visible to device before updating doorbell record */
644 dma_wmb();
645
646 *sq->wq.db = cpu_to_be32(sq->pc);
647
648 /* ensure doorbell record is visible to device before ringing the
649 * doorbell
650 */
651 wmb();
0ba42241 652 if (bf_sz)
bc77b240 653 __iowrite64_copy(sq->uar_map + ofst, ctrl, bf_sz);
0ba42241 654 else
bc77b240 655 mlx5_write64((__be32 *)ctrl, sq->uar_map + ofst, NULL);
0ba42241
ML
656 /* flush the write-combining mapped buffer */
657 wmb();
f62b8bb8
AV
658
659 sq->bf_offset ^= sq->bf_buf_size;
660}
661
662static inline void mlx5e_cq_arm(struct mlx5e_cq *cq)
663{
664 struct mlx5_core_cq *mcq;
665
666 mcq = &cq->mcq;
667 mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, NULL, cq->wq.cc);
668}
669
3435ab59
AS
670static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
671{
672 return min_t(int, mdev->priv.eq_table.num_comp_vectors,
673 MLX5E_MAX_NUM_CHANNELS);
674}
675
bc77b240
TT
676static inline int mlx5e_get_mtt_octw(int npages)
677{
678 return ALIGN(npages, 8) / 2;
679}
680
f62b8bb8 681extern const struct ethtool_ops mlx5e_ethtool_ops;
08fb1dac
SM
682#ifdef CONFIG_MLX5_CORE_EN_DCB
683extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
684int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
685#endif
686
1cabe6b0
MG
687#ifndef CONFIG_RFS_ACCEL
688static inline int mlx5e_arfs_create_tables(struct mlx5e_priv *priv)
689{
690 return 0;
691}
692
693static inline void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv) {}
45bf454a
MG
694
695static inline int mlx5e_arfs_enable(struct mlx5e_priv *priv)
696{
697 return -ENOTSUPP;
698}
699
700static inline int mlx5e_arfs_disable(struct mlx5e_priv *priv)
701{
702 return -ENOTSUPP;
703}
1cabe6b0
MG
704#else
705int mlx5e_arfs_create_tables(struct mlx5e_priv *priv);
706void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv);
45bf454a
MG
707int mlx5e_arfs_enable(struct mlx5e_priv *priv);
708int mlx5e_arfs_disable(struct mlx5e_priv *priv);
18c908e4
MG
709int mlx5e_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb,
710 u16 rxq_index, u32 flow_id);
1cabe6b0
MG
711#endif
712
58d52291 713u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev);
1afff42c
MF
714
715#endif /* __MLX5_EN_H__ */