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