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