Merge tag 'for-5.3/dm-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/devic...
[sfrench/cifs-2.6.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/crash_dump.h>
41 #include <linux/mlx5/driver.h>
42 #include <linux/mlx5/qp.h>
43 #include <linux/mlx5/cq.h>
44 #include <linux/mlx5/port.h>
45 #include <linux/mlx5/vport.h>
46 #include <linux/mlx5/transobj.h>
47 #include <linux/mlx5/fs.h>
48 #include <linux/rhashtable.h>
49 #include <net/switchdev.h>
50 #include <net/xdp.h>
51 #include <linux/dim.h>
52 #include <linux/bits.h>
53 #include "wq.h"
54 #include "mlx5_core.h"
55 #include "en_stats.h"
56 #include "en/fs.h"
57
58 extern const struct net_device_ops mlx5e_netdev_ops;
59 struct page_pool;
60
61 #define MLX5E_METADATA_ETHER_TYPE (0x8CE4)
62 #define MLX5E_METADATA_ETHER_LEN 8
63
64 #define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v)
65
66 #define MLX5E_ETH_HARD_MTU (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN)
67
68 #define MLX5E_HW2SW_MTU(params, hwmtu) ((hwmtu) - ((params)->hard_mtu))
69 #define MLX5E_SW2HW_MTU(params, swmtu) ((swmtu) + ((params)->hard_mtu))
70
71 #define MLX5E_MAX_PRIORITY      8
72 #define MLX5E_MAX_DSCP          64
73 #define MLX5E_MAX_NUM_TC        8
74
75 #define MLX5_RX_HEADROOM NET_SKB_PAD
76 #define MLX5_SKB_FRAG_SZ(len)   (SKB_DATA_ALIGN(len) +  \
77                                  SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
78
79 #define MLX5E_RX_MAX_HEAD (256)
80
81 #define MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev) \
82         (6 + MLX5_CAP_GEN(mdev, cache_line_128byte)) /* HW restriction */
83 #define MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, req) \
84         max_t(u32, MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev), req)
85 #define MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev) \
86         MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, order_base_2(MLX5E_RX_MAX_HEAD))
87
88 #define MLX5_MPWRQ_LOG_WQE_SZ                   18
89 #define MLX5_MPWRQ_WQE_PAGE_ORDER  (MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT > 0 ? \
90                                     MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT : 0)
91 #define MLX5_MPWRQ_PAGES_PER_WQE                BIT(MLX5_MPWRQ_WQE_PAGE_ORDER)
92
93 #define MLX5_MTT_OCTW(npages) (ALIGN(npages, 8) / 2)
94 #define MLX5E_REQUIRED_WQE_MTTS         (ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8))
95 #define MLX5E_LOG_ALIGNED_MPWQE_PPW     (ilog2(MLX5E_REQUIRED_WQE_MTTS))
96 #define MLX5E_REQUIRED_MTTS(wqes)       (wqes * MLX5E_REQUIRED_WQE_MTTS)
97 #define MLX5E_MAX_RQ_NUM_MTTS   \
98         ((1 << 16) * 2) /* So that MLX5_MTT_OCTW(num_mtts) fits into u16 */
99 #define MLX5E_ORDER2_MAX_PACKET_MTU (order_base_2(10 * 1024))
100 #define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW    \
101                 (ilog2(MLX5E_MAX_RQ_NUM_MTTS / MLX5E_REQUIRED_WQE_MTTS))
102 #define MLX5E_LOG_MAX_RQ_NUM_PACKETS_MPW \
103         (MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW + \
104          (MLX5_MPWRQ_LOG_WQE_SZ - MLX5E_ORDER2_MAX_PACKET_MTU))
105
106 #define MLX5E_MIN_SKB_FRAG_SZ           (MLX5_SKB_FRAG_SZ(MLX5_RX_HEADROOM))
107 #define MLX5E_LOG_MAX_RX_WQE_BULK       \
108         (ilog2(PAGE_SIZE / roundup_pow_of_two(MLX5E_MIN_SKB_FRAG_SZ)))
109
110 #define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE                0x6
111 #define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE                0xa
112 #define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE                0xd
113
114 #define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE (1 + MLX5E_LOG_MAX_RX_WQE_BULK)
115 #define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE                0xa
116 #define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE min_t(u8, 0xd, \
117                                                MLX5E_LOG_MAX_RQ_NUM_PACKETS_MPW)
118
119 #define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW            0x2
120
121 #define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ                 (64 * 1024)
122 #define MLX5E_DEFAULT_LRO_TIMEOUT                       32
123 #define MLX5E_LRO_TIMEOUT_ARR_SIZE                      4
124
125 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC      0x10
126 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE 0x3
127 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS      0x20
128 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC      0x10
129 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC_FROM_CQE 0x10
130 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS      0x20
131 #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES                0x80
132 #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW            0x2
133
134 #define MLX5E_LOG_INDIR_RQT_SIZE       0x7
135 #define MLX5E_INDIR_RQT_SIZE           BIT(MLX5E_LOG_INDIR_RQT_SIZE)
136 #define MLX5E_MIN_NUM_CHANNELS         0x1
137 #define MLX5E_MAX_NUM_CHANNELS         (MLX5E_INDIR_RQT_SIZE >> 1)
138 #define MLX5E_MAX_NUM_SQS              (MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC)
139 #define MLX5E_TX_CQ_POLL_BUDGET        128
140 #define MLX5E_TX_XSK_POLL_BUDGET       64
141 #define MLX5E_SQ_RECOVER_MIN_INTERVAL  500 /* msecs */
142
143 #define MLX5E_UMR_WQE_INLINE_SZ \
144         (sizeof(struct mlx5e_umr_wqe) + \
145          ALIGN(MLX5_MPWRQ_PAGES_PER_WQE * sizeof(struct mlx5_mtt), \
146                MLX5_UMR_MTT_ALIGNMENT))
147 #define MLX5E_UMR_WQEBBS \
148         (DIV_ROUND_UP(MLX5E_UMR_WQE_INLINE_SZ, MLX5_SEND_WQE_BB))
149
150 #define MLX5E_MSG_LEVEL                 NETIF_MSG_LINK
151
152 #define mlx5e_dbg(mlevel, priv, format, ...)                    \
153 do {                                                            \
154         if (NETIF_MSG_##mlevel & (priv)->msglevel)              \
155                 netdev_warn(priv->netdev, format,               \
156                             ##__VA_ARGS__);                     \
157 } while (0)
158
159 enum mlx5e_rq_group {
160         MLX5E_RQ_GROUP_REGULAR,
161         MLX5E_RQ_GROUP_XSK,
162         MLX5E_NUM_RQ_GROUPS /* Keep last. */
163 };
164
165 static inline u16 mlx5_min_rx_wqes(int wq_type, u32 wq_size)
166 {
167         switch (wq_type) {
168         case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
169                 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW,
170                              wq_size / 2);
171         default:
172                 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES,
173                              wq_size / 2);
174         }
175 }
176
177 /* Use this function to get max num channels (rxqs/txqs) only to create netdev */
178 static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
179 {
180         return is_kdump_kernel() ?
181                 MLX5E_MIN_NUM_CHANNELS :
182                 min_t(int, mlx5_comp_vectors_count(mdev), MLX5E_MAX_NUM_CHANNELS);
183 }
184
185 /* Use this function to get max num channels after netdev was created */
186 static inline int mlx5e_get_netdev_max_channels(struct net_device *netdev)
187 {
188         return min_t(unsigned int,
189                      netdev->num_rx_queues / MLX5E_NUM_RQ_GROUPS,
190                      netdev->num_tx_queues);
191 }
192
193 struct mlx5e_tx_wqe {
194         struct mlx5_wqe_ctrl_seg ctrl;
195         struct mlx5_wqe_eth_seg  eth;
196         struct mlx5_wqe_data_seg data[0];
197 };
198
199 struct mlx5e_rx_wqe_ll {
200         struct mlx5_wqe_srq_next_seg  next;
201         struct mlx5_wqe_data_seg      data[0];
202 };
203
204 struct mlx5e_rx_wqe_cyc {
205         struct mlx5_wqe_data_seg      data[0];
206 };
207
208 struct mlx5e_umr_wqe {
209         struct mlx5_wqe_ctrl_seg       ctrl;
210         struct mlx5_wqe_umr_ctrl_seg   uctrl;
211         struct mlx5_mkey_seg           mkc;
212         union {
213                 struct mlx5_mtt        inline_mtts[0];
214                 u8                     tls_static_params_ctx[0];
215         };
216 };
217
218 extern const char mlx5e_self_tests[][ETH_GSTRING_LEN];
219
220 enum mlx5e_priv_flag {
221         MLX5E_PFLAG_RX_CQE_BASED_MODER,
222         MLX5E_PFLAG_TX_CQE_BASED_MODER,
223         MLX5E_PFLAG_RX_CQE_COMPRESS,
224         MLX5E_PFLAG_RX_STRIDING_RQ,
225         MLX5E_PFLAG_RX_NO_CSUM_COMPLETE,
226         MLX5E_PFLAG_XDP_TX_MPWQE,
227         MLX5E_NUM_PFLAGS, /* Keep last */
228 };
229
230 #define MLX5E_SET_PFLAG(params, pflag, enable)                  \
231         do {                                                    \
232                 if (enable)                                     \
233                         (params)->pflags |= BIT(pflag);         \
234                 else                                            \
235                         (params)->pflags &= ~(BIT(pflag));      \
236         } while (0)
237
238 #define MLX5E_GET_PFLAG(params, pflag) (!!((params)->pflags & (BIT(pflag))))
239
240 #ifdef CONFIG_MLX5_CORE_EN_DCB
241 #define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
242 #endif
243
244 struct mlx5e_params {
245         u8  log_sq_size;
246         u8  rq_wq_type;
247         u8  log_rq_mtu_frames;
248         u16 num_channels;
249         u8  num_tc;
250         bool rx_cqe_compress_def;
251         bool tunneled_offload_en;
252         struct dim_cq_moder rx_cq_moderation;
253         struct dim_cq_moder tx_cq_moderation;
254         bool lro_en;
255         u8  tx_min_inline_mode;
256         bool vlan_strip_disable;
257         bool scatter_fcs_en;
258         bool rx_dim_enabled;
259         bool tx_dim_enabled;
260         u32 lro_timeout;
261         u32 pflags;
262         struct bpf_prog *xdp_prog;
263         struct mlx5e_xsk *xsk;
264         unsigned int sw_mtu;
265         int hard_mtu;
266 };
267
268 #ifdef CONFIG_MLX5_CORE_EN_DCB
269 struct mlx5e_cee_config {
270         /* bw pct for priority group */
271         u8                         pg_bw_pct[CEE_DCBX_MAX_PGS];
272         u8                         prio_to_pg_map[CEE_DCBX_MAX_PRIO];
273         bool                       pfc_setting[CEE_DCBX_MAX_PRIO];
274         bool                       pfc_enable;
275 };
276
277 enum {
278         MLX5_DCB_CHG_RESET,
279         MLX5_DCB_NO_CHG,
280         MLX5_DCB_CHG_NO_RESET,
281 };
282
283 struct mlx5e_dcbx {
284         enum mlx5_dcbx_oper_mode   mode;
285         struct mlx5e_cee_config    cee_cfg; /* pending configuration */
286         u8                         dscp_app_cnt;
287
288         /* The only setting that cannot be read from FW */
289         u8                         tc_tsa[IEEE_8021QAZ_MAX_TCS];
290         u8                         cap;
291
292         /* Buffer configuration */
293         bool                       manual_buffer;
294         u32                        cable_len;
295         u32                        xoff;
296 };
297
298 struct mlx5e_dcbx_dp {
299         u8                         dscp2prio[MLX5E_MAX_DSCP];
300         u8                         trust_state;
301 };
302 #endif
303
304 enum {
305         MLX5E_RQ_STATE_ENABLED,
306         MLX5E_RQ_STATE_AM,
307         MLX5E_RQ_STATE_NO_CSUM_COMPLETE,
308 };
309
310 struct mlx5e_cq {
311         /* data path - accessed per cqe */
312         struct mlx5_cqwq           wq;
313
314         /* data path - accessed per napi poll */
315         u16                        event_ctr;
316         struct napi_struct        *napi;
317         struct mlx5_core_cq        mcq;
318         struct mlx5e_channel      *channel;
319
320         /* control */
321         struct mlx5_core_dev      *mdev;
322         struct mlx5_wq_ctrl        wq_ctrl;
323 } ____cacheline_aligned_in_smp;
324
325 struct mlx5e_cq_decomp {
326         /* cqe decompression */
327         struct mlx5_cqe64          title;
328         struct mlx5_mini_cqe8      mini_arr[MLX5_MINI_CQE_ARRAY_SIZE];
329         u8                         mini_arr_idx;
330         u16                        left;
331         u16                        wqe_counter;
332 } ____cacheline_aligned_in_smp;
333
334 struct mlx5e_tx_wqe_info {
335         struct sk_buff *skb;
336         u32 num_bytes;
337         u8  num_wqebbs;
338         u8  num_dma;
339 #ifdef CONFIG_MLX5_EN_TLS
340         skb_frag_t *resync_dump_frag;
341 #endif
342 };
343
344 enum mlx5e_dma_map_type {
345         MLX5E_DMA_MAP_SINGLE,
346         MLX5E_DMA_MAP_PAGE
347 };
348
349 struct mlx5e_sq_dma {
350         dma_addr_t              addr;
351         u32                     size;
352         enum mlx5e_dma_map_type type;
353 };
354
355 enum {
356         MLX5E_SQ_STATE_ENABLED,
357         MLX5E_SQ_STATE_RECOVERING,
358         MLX5E_SQ_STATE_IPSEC,
359         MLX5E_SQ_STATE_AM,
360         MLX5E_SQ_STATE_TLS,
361 };
362
363 struct mlx5e_sq_wqe_info {
364         u8  opcode;
365
366         /* Auxiliary data for different opcodes. */
367         union {
368                 struct {
369                         struct mlx5e_rq *rq;
370                 } umr;
371         };
372 };
373
374 struct mlx5e_txqsq {
375         /* data path */
376
377         /* dirtied @completion */
378         u16                        cc;
379         u32                        dma_fifo_cc;
380         struct dim                 dim; /* Adaptive Moderation */
381
382         /* dirtied @xmit */
383         u16                        pc ____cacheline_aligned_in_smp;
384         u32                        dma_fifo_pc;
385
386         struct mlx5e_cq            cq;
387
388         /* read only */
389         struct mlx5_wq_cyc         wq;
390         u32                        dma_fifo_mask;
391         struct mlx5e_sq_stats     *stats;
392         struct {
393                 struct mlx5e_sq_dma       *dma_fifo;
394                 struct mlx5e_tx_wqe_info  *wqe_info;
395         } db;
396         void __iomem              *uar_map;
397         struct netdev_queue       *txq;
398         u32                        sqn;
399         u16                        stop_room;
400         u8                         min_inline_mode;
401         struct device             *pdev;
402         __be32                     mkey_be;
403         unsigned long              state;
404         struct hwtstamp_config    *tstamp;
405         struct mlx5_clock         *clock;
406
407         /* control path */
408         struct mlx5_wq_ctrl        wq_ctrl;
409         struct mlx5e_channel      *channel;
410         int                        ch_ix;
411         int                        txq_ix;
412         u32                        rate_limit;
413         struct work_struct         recover_work;
414 } ____cacheline_aligned_in_smp;
415
416 struct mlx5e_dma_info {
417         dma_addr_t addr;
418         union {
419                 struct page *page;
420                 struct {
421                         u64 handle;
422                         void *data;
423                 } xsk;
424         };
425 };
426
427 /* XDP packets can be transmitted in different ways. On completion, we need to
428  * distinguish between them to clean up things in a proper way.
429  */
430 enum mlx5e_xdp_xmit_mode {
431         /* An xdp_frame was transmitted due to either XDP_REDIRECT from another
432          * device or XDP_TX from an XSK RQ. The frame has to be unmapped and
433          * returned.
434          */
435         MLX5E_XDP_XMIT_MODE_FRAME,
436
437         /* The xdp_frame was created in place as a result of XDP_TX from a
438          * regular RQ. No DMA remapping happened, and the page belongs to us.
439          */
440         MLX5E_XDP_XMIT_MODE_PAGE,
441
442         /* No xdp_frame was created at all, the transmit happened from a UMEM
443          * page. The UMEM Completion Ring producer pointer has to be increased.
444          */
445         MLX5E_XDP_XMIT_MODE_XSK,
446 };
447
448 struct mlx5e_xdp_info {
449         enum mlx5e_xdp_xmit_mode mode;
450         union {
451                 struct {
452                         struct xdp_frame *xdpf;
453                         dma_addr_t dma_addr;
454                 } frame;
455                 struct {
456                         struct mlx5e_rq *rq;
457                         struct mlx5e_dma_info di;
458                 } page;
459         };
460 };
461
462 struct mlx5e_xdp_xmit_data {
463         dma_addr_t  dma_addr;
464         void       *data;
465         u32         len;
466 };
467
468 struct mlx5e_xdp_info_fifo {
469         struct mlx5e_xdp_info *xi;
470         u32 *cc;
471         u32 *pc;
472         u32 mask;
473 };
474
475 struct mlx5e_xdp_wqe_info {
476         u8 num_wqebbs;
477         u8 num_pkts;
478 };
479
480 struct mlx5e_xdp_mpwqe {
481         /* Current MPWQE session */
482         struct mlx5e_tx_wqe *wqe;
483         u8                   ds_count;
484         u8                   pkt_count;
485         u8                   max_ds_count;
486         u8                   complete;
487         u8                   inline_on;
488 };
489
490 struct mlx5e_xdpsq;
491 typedef int (*mlx5e_fp_xmit_xdp_frame_check)(struct mlx5e_xdpsq *);
492 typedef bool (*mlx5e_fp_xmit_xdp_frame)(struct mlx5e_xdpsq *,
493                                         struct mlx5e_xdp_xmit_data *,
494                                         struct mlx5e_xdp_info *,
495                                         int);
496
497 struct mlx5e_xdpsq {
498         /* data path */
499
500         /* dirtied @completion */
501         u32                        xdpi_fifo_cc;
502         u16                        cc;
503
504         /* dirtied @xmit */
505         u32                        xdpi_fifo_pc ____cacheline_aligned_in_smp;
506         u16                        pc;
507         struct mlx5_wqe_ctrl_seg   *doorbell_cseg;
508         struct mlx5e_xdp_mpwqe     mpwqe;
509
510         struct mlx5e_cq            cq;
511
512         /* read only */
513         struct xdp_umem           *umem;
514         struct mlx5_wq_cyc         wq;
515         struct mlx5e_xdpsq_stats  *stats;
516         mlx5e_fp_xmit_xdp_frame_check xmit_xdp_frame_check;
517         mlx5e_fp_xmit_xdp_frame    xmit_xdp_frame;
518         struct {
519                 struct mlx5e_xdp_wqe_info *wqe_info;
520                 struct mlx5e_xdp_info_fifo xdpi_fifo;
521         } db;
522         void __iomem              *uar_map;
523         u32                        sqn;
524         struct device             *pdev;
525         __be32                     mkey_be;
526         u8                         min_inline_mode;
527         unsigned long              state;
528         unsigned int               hw_mtu;
529
530         /* control path */
531         struct mlx5_wq_ctrl        wq_ctrl;
532         struct mlx5e_channel      *channel;
533 } ____cacheline_aligned_in_smp;
534
535 struct mlx5e_icosq {
536         /* data path */
537         u16                        cc;
538         u16                        pc;
539
540         struct mlx5_wqe_ctrl_seg  *doorbell_cseg;
541         struct mlx5e_cq            cq;
542
543         /* write@xmit, read@completion */
544         struct {
545                 struct mlx5e_sq_wqe_info *ico_wqe;
546         } db;
547
548         /* read only */
549         struct mlx5_wq_cyc         wq;
550         void __iomem              *uar_map;
551         u32                        sqn;
552         unsigned long              state;
553
554         /* control path */
555         struct mlx5_wq_ctrl        wq_ctrl;
556         struct mlx5e_channel      *channel;
557 } ____cacheline_aligned_in_smp;
558
559 struct mlx5e_wqe_frag_info {
560         struct mlx5e_dma_info *di;
561         u32 offset;
562         bool last_in_page;
563 };
564
565 struct mlx5e_umr_dma_info {
566         struct mlx5e_dma_info  dma_info[MLX5_MPWRQ_PAGES_PER_WQE];
567 };
568
569 struct mlx5e_mpw_info {
570         struct mlx5e_umr_dma_info umr;
571         u16 consumed_strides;
572         DECLARE_BITMAP(xdp_xmit_bitmap, MLX5_MPWRQ_PAGES_PER_WQE);
573 };
574
575 #define MLX5E_MAX_RX_FRAGS 4
576
577 /* a single cache unit is capable to serve one napi call (for non-striding rq)
578  * or a MPWQE (for striding rq).
579  */
580 #define MLX5E_CACHE_UNIT        (MLX5_MPWRQ_PAGES_PER_WQE > NAPI_POLL_WEIGHT ? \
581                                  MLX5_MPWRQ_PAGES_PER_WQE : NAPI_POLL_WEIGHT)
582 #define MLX5E_CACHE_SIZE        (4 * roundup_pow_of_two(MLX5E_CACHE_UNIT))
583 struct mlx5e_page_cache {
584         u32 head;
585         u32 tail;
586         struct mlx5e_dma_info page_cache[MLX5E_CACHE_SIZE];
587 };
588
589 struct mlx5e_rq;
590 typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq*, struct mlx5_cqe64*);
591 typedef struct sk_buff *
592 (*mlx5e_fp_skb_from_cqe_mpwrq)(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
593                                u16 cqe_bcnt, u32 head_offset, u32 page_idx);
594 typedef struct sk_buff *
595 (*mlx5e_fp_skb_from_cqe)(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
596                          struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
597 typedef bool (*mlx5e_fp_post_rx_wqes)(struct mlx5e_rq *rq);
598 typedef void (*mlx5e_fp_dealloc_wqe)(struct mlx5e_rq*, u16);
599
600 enum mlx5e_rq_flag {
601         MLX5E_RQ_FLAG_XDP_XMIT,
602         MLX5E_RQ_FLAG_XDP_REDIRECT,
603 };
604
605 struct mlx5e_rq_frag_info {
606         int frag_size;
607         int frag_stride;
608 };
609
610 struct mlx5e_rq_frags_info {
611         struct mlx5e_rq_frag_info arr[MLX5E_MAX_RX_FRAGS];
612         u8 num_frags;
613         u8 log_num_frags;
614         u8 wqe_bulk;
615 };
616
617 struct mlx5e_rq {
618         /* data path */
619         union {
620                 struct {
621                         struct mlx5_wq_cyc          wq;
622                         struct mlx5e_wqe_frag_info *frags;
623                         struct mlx5e_dma_info      *di;
624                         struct mlx5e_rq_frags_info  info;
625                         mlx5e_fp_skb_from_cqe       skb_from_cqe;
626                 } wqe;
627                 struct {
628                         struct mlx5_wq_ll      wq;
629                         struct mlx5e_umr_wqe   umr_wqe;
630                         struct mlx5e_mpw_info *info;
631                         mlx5e_fp_skb_from_cqe_mpwrq skb_from_cqe_mpwrq;
632                         u16                    num_strides;
633                         u16                    actual_wq_head;
634                         u8                     log_stride_sz;
635                         u8                     umr_in_progress;
636                         u8                     umr_last_bulk;
637                         u8                     umr_completed;
638                 } mpwqe;
639         };
640         struct {
641                 u16            umem_headroom;
642                 u16            headroom;
643                 u8             map_dir;   /* dma map direction */
644         } buff;
645
646         struct mlx5e_channel  *channel;
647         struct device         *pdev;
648         struct net_device     *netdev;
649         struct mlx5e_rq_stats *stats;
650         struct mlx5e_cq        cq;
651         struct mlx5e_cq_decomp cqd;
652         struct mlx5e_page_cache page_cache;
653         struct hwtstamp_config *tstamp;
654         struct mlx5_clock      *clock;
655
656         mlx5e_fp_handle_rx_cqe handle_rx_cqe;
657         mlx5e_fp_post_rx_wqes  post_wqes;
658         mlx5e_fp_dealloc_wqe   dealloc_wqe;
659
660         unsigned long          state;
661         int                    ix;
662         unsigned int           hw_mtu;
663
664         struct dim         dim; /* Dynamic Interrupt Moderation */
665
666         /* XDP */
667         struct bpf_prog       *xdp_prog;
668         struct mlx5e_xdpsq    *xdpsq;
669         DECLARE_BITMAP(flags, 8);
670         struct page_pool      *page_pool;
671
672         /* AF_XDP zero-copy */
673         struct zero_copy_allocator zca;
674         struct xdp_umem       *umem;
675
676         /* control */
677         struct mlx5_wq_ctrl    wq_ctrl;
678         __be32                 mkey_be;
679         u8                     wq_type;
680         u32                    rqn;
681         struct mlx5_core_dev  *mdev;
682         struct mlx5_core_mkey  umr_mkey;
683
684         /* XDP read-mostly */
685         struct xdp_rxq_info    xdp_rxq;
686 } ____cacheline_aligned_in_smp;
687
688 enum mlx5e_channel_state {
689         MLX5E_CHANNEL_STATE_XSK,
690         MLX5E_CHANNEL_NUM_STATES
691 };
692
693 struct mlx5e_channel {
694         /* data path */
695         struct mlx5e_rq            rq;
696         struct mlx5e_xdpsq         rq_xdpsq;
697         struct mlx5e_txqsq         sq[MLX5E_MAX_NUM_TC];
698         struct mlx5e_icosq         icosq;   /* internal control operations */
699         bool                       xdp;
700         struct napi_struct         napi;
701         struct device             *pdev;
702         struct net_device         *netdev;
703         __be32                     mkey_be;
704         u8                         num_tc;
705
706         /* XDP_REDIRECT */
707         struct mlx5e_xdpsq         xdpsq;
708
709         /* AF_XDP zero-copy */
710         struct mlx5e_rq            xskrq;
711         struct mlx5e_xdpsq         xsksq;
712         struct mlx5e_icosq         xskicosq;
713         /* xskicosq can be accessed from any CPU - the spinlock protects it. */
714         spinlock_t                 xskicosq_lock;
715
716         /* data path - accessed per napi poll */
717         struct irq_desc *irq_desc;
718         struct mlx5e_ch_stats     *stats;
719
720         /* control */
721         struct mlx5e_priv         *priv;
722         struct mlx5_core_dev      *mdev;
723         struct hwtstamp_config    *tstamp;
724         DECLARE_BITMAP(state, MLX5E_CHANNEL_NUM_STATES);
725         int                        ix;
726         int                        cpu;
727         cpumask_var_t              xps_cpumask;
728 };
729
730 struct mlx5e_channels {
731         struct mlx5e_channel **c;
732         unsigned int           num;
733         struct mlx5e_params    params;
734 };
735
736 struct mlx5e_channel_stats {
737         struct mlx5e_ch_stats ch;
738         struct mlx5e_sq_stats sq[MLX5E_MAX_NUM_TC];
739         struct mlx5e_rq_stats rq;
740         struct mlx5e_rq_stats xskrq;
741         struct mlx5e_xdpsq_stats rq_xdpsq;
742         struct mlx5e_xdpsq_stats xdpsq;
743         struct mlx5e_xdpsq_stats xsksq;
744 } ____cacheline_aligned_in_smp;
745
746 enum {
747         MLX5E_STATE_OPENED,
748         MLX5E_STATE_DESTROYING,
749         MLX5E_STATE_XDP_TX_ENABLED,
750         MLX5E_STATE_XDP_OPEN,
751 };
752
753 struct mlx5e_rqt {
754         u32              rqtn;
755         bool             enabled;
756 };
757
758 struct mlx5e_tir {
759         u32               tirn;
760         struct mlx5e_rqt  rqt;
761         struct list_head  list;
762 };
763
764 enum {
765         MLX5E_TC_PRIO = 0,
766         MLX5E_NIC_PRIO
767 };
768
769 struct mlx5e_rss_params {
770         u32     indirection_rqt[MLX5E_INDIR_RQT_SIZE];
771         u32     rx_hash_fields[MLX5E_NUM_INDIR_TIRS];
772         u8      toeplitz_hash_key[40];
773         u8      hfunc;
774 };
775
776 struct mlx5e_modify_sq_param {
777         int curr_state;
778         int next_state;
779         int rl_update;
780         int rl_index;
781 };
782
783 struct mlx5e_xsk {
784         /* UMEMs are stored separately from channels, because we don't want to
785          * lose them when channels are recreated. The kernel also stores UMEMs,
786          * but it doesn't distinguish between zero-copy and non-zero-copy UMEMs,
787          * so rely on our mechanism.
788          */
789         struct xdp_umem **umems;
790         u16 refcnt;
791         bool ever_used;
792 };
793
794 struct mlx5e_priv {
795         /* priv data path fields - start */
796         struct mlx5e_txqsq *txq2sq[MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC];
797         int channel_tc2txq[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
798 #ifdef CONFIG_MLX5_CORE_EN_DCB
799         struct mlx5e_dcbx_dp       dcbx_dp;
800 #endif
801         /* priv data path fields - end */
802
803         u32                        msglevel;
804         unsigned long              state;
805         struct mutex               state_lock; /* Protects Interface state */
806         struct mlx5e_rq            drop_rq;
807
808         struct mlx5e_channels      channels;
809         u32                        tisn[MLX5E_MAX_NUM_TC];
810         struct mlx5e_rqt           indir_rqt;
811         struct mlx5e_tir           indir_tir[MLX5E_NUM_INDIR_TIRS];
812         struct mlx5e_tir           inner_indir_tir[MLX5E_NUM_INDIR_TIRS];
813         struct mlx5e_tir           direct_tir[MLX5E_MAX_NUM_CHANNELS];
814         struct mlx5e_tir           xsk_tir[MLX5E_MAX_NUM_CHANNELS];
815         struct mlx5e_rss_params    rss_params;
816         u32                        tx_rates[MLX5E_MAX_NUM_SQS];
817
818         struct mlx5e_flow_steering fs;
819
820         struct workqueue_struct    *wq;
821         struct work_struct         update_carrier_work;
822         struct work_struct         set_rx_mode_work;
823         struct work_struct         tx_timeout_work;
824         struct work_struct         update_stats_work;
825         struct work_struct         monitor_counters_work;
826         struct mlx5_nb             monitor_counters_nb;
827
828         struct mlx5_core_dev      *mdev;
829         struct net_device         *netdev;
830         struct mlx5e_stats         stats;
831         struct mlx5e_channel_stats channel_stats[MLX5E_MAX_NUM_CHANNELS];
832         u8                         max_opened_tc;
833         struct hwtstamp_config     tstamp;
834         u16                        q_counter;
835         u16                        drop_rq_q_counter;
836         struct notifier_block      events_nb;
837
838 #ifdef CONFIG_MLX5_CORE_EN_DCB
839         struct mlx5e_dcbx          dcbx;
840 #endif
841
842         const struct mlx5e_profile *profile;
843         void                      *ppriv;
844 #ifdef CONFIG_MLX5_EN_IPSEC
845         struct mlx5e_ipsec        *ipsec;
846 #endif
847 #ifdef CONFIG_MLX5_EN_TLS
848         struct mlx5e_tls          *tls;
849 #endif
850         struct devlink_health_reporter *tx_reporter;
851         struct mlx5e_xsk           xsk;
852 };
853
854 struct mlx5e_profile {
855         int     (*init)(struct mlx5_core_dev *mdev,
856                         struct net_device *netdev,
857                         const struct mlx5e_profile *profile, void *ppriv);
858         void    (*cleanup)(struct mlx5e_priv *priv);
859         int     (*init_rx)(struct mlx5e_priv *priv);
860         void    (*cleanup_rx)(struct mlx5e_priv *priv);
861         int     (*init_tx)(struct mlx5e_priv *priv);
862         void    (*cleanup_tx)(struct mlx5e_priv *priv);
863         void    (*enable)(struct mlx5e_priv *priv);
864         void    (*disable)(struct mlx5e_priv *priv);
865         int     (*update_rx)(struct mlx5e_priv *priv);
866         void    (*update_stats)(struct mlx5e_priv *priv);
867         void    (*update_carrier)(struct mlx5e_priv *priv);
868         struct {
869                 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
870                 mlx5e_fp_handle_rx_cqe handle_rx_cqe_mpwqe;
871         } rx_handlers;
872         int     max_tc;
873 };
874
875 void mlx5e_build_ptys2ethtool_map(void);
876
877 u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
878                        struct net_device *sb_dev);
879 netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
880 netdev_tx_t mlx5e_sq_xmit(struct mlx5e_txqsq *sq, struct sk_buff *skb,
881                           struct mlx5e_tx_wqe *wqe, u16 pi, bool xmit_more);
882
883 void mlx5e_trigger_irq(struct mlx5e_icosq *sq);
884 void mlx5e_completion_event(struct mlx5_core_cq *mcq, struct mlx5_eqe *eqe);
885 void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
886 int mlx5e_napi_poll(struct napi_struct *napi, int budget);
887 bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
888 int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
889 void mlx5e_free_txqsq_descs(struct mlx5e_txqsq *sq);
890
891 bool mlx5e_check_fragmented_striding_rq_cap(struct mlx5_core_dev *mdev);
892 bool mlx5e_striding_rq_possible(struct mlx5_core_dev *mdev,
893                                 struct mlx5e_params *params);
894
895 void mlx5e_page_dma_unmap(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info);
896 void mlx5e_page_release_dynamic(struct mlx5e_rq *rq,
897                                 struct mlx5e_dma_info *dma_info,
898                                 bool recycle);
899 void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
900 void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
901 bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
902 void mlx5e_poll_ico_cq(struct mlx5e_cq *cq);
903 bool mlx5e_post_rx_mpwqes(struct mlx5e_rq *rq);
904 void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix);
905 void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix);
906 struct sk_buff *
907 mlx5e_skb_from_cqe_mpwrq_linear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
908                                 u16 cqe_bcnt, u32 head_offset, u32 page_idx);
909 struct sk_buff *
910 mlx5e_skb_from_cqe_mpwrq_nonlinear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
911                                    u16 cqe_bcnt, u32 head_offset, u32 page_idx);
912 struct sk_buff *
913 mlx5e_skb_from_cqe_linear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
914                           struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
915 struct sk_buff *
916 mlx5e_skb_from_cqe_nonlinear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
917                              struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
918
919 void mlx5e_update_stats(struct mlx5e_priv *priv);
920 void mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats);
921 void mlx5e_fold_sw_stats64(struct mlx5e_priv *priv, struct rtnl_link_stats64 *s);
922
923 void mlx5e_init_l2_addr(struct mlx5e_priv *priv);
924 int mlx5e_self_test_num(struct mlx5e_priv *priv);
925 void mlx5e_self_test(struct net_device *ndev, struct ethtool_test *etest,
926                      u64 *buf);
927 void mlx5e_set_rx_mode_work(struct work_struct *work);
928
929 int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr);
930 int mlx5e_hwstamp_get(struct mlx5e_priv *priv, struct ifreq *ifr);
931 int mlx5e_modify_rx_cqe_compression_locked(struct mlx5e_priv *priv, bool val);
932
933 int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
934                           u16 vid);
935 int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
936                            u16 vid);
937 void mlx5e_timestamp_init(struct mlx5e_priv *priv);
938
939 struct mlx5e_redirect_rqt_param {
940         bool is_rss;
941         union {
942                 u32 rqn; /* Direct RQN (Non-RSS) */
943                 struct {
944                         u8 hfunc;
945                         struct mlx5e_channels *channels;
946                 } rss; /* RSS data */
947         };
948 };
949
950 int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz,
951                        struct mlx5e_redirect_rqt_param rrp);
952 void mlx5e_build_indir_tir_ctx_hash(struct mlx5e_rss_params *rss_params,
953                                     const struct mlx5e_tirc_config *ttconfig,
954                                     void *tirc, bool inner);
955 void mlx5e_modify_tirs_hash(struct mlx5e_priv *priv, void *in, int inlen);
956 struct mlx5e_tirc_config mlx5e_tirc_get_default_config(enum mlx5e_traffic_types tt);
957
958 struct mlx5e_xsk_param;
959
960 struct mlx5e_rq_param;
961 int mlx5e_open_rq(struct mlx5e_channel *c, struct mlx5e_params *params,
962                   struct mlx5e_rq_param *param, struct mlx5e_xsk_param *xsk,
963                   struct xdp_umem *umem, struct mlx5e_rq *rq);
964 int mlx5e_wait_for_min_rx_wqes(struct mlx5e_rq *rq, int wait_time);
965 void mlx5e_deactivate_rq(struct mlx5e_rq *rq);
966 void mlx5e_close_rq(struct mlx5e_rq *rq);
967
968 struct mlx5e_sq_param;
969 int mlx5e_open_icosq(struct mlx5e_channel *c, struct mlx5e_params *params,
970                      struct mlx5e_sq_param *param, struct mlx5e_icosq *sq);
971 void mlx5e_close_icosq(struct mlx5e_icosq *sq);
972 int mlx5e_open_xdpsq(struct mlx5e_channel *c, struct mlx5e_params *params,
973                      struct mlx5e_sq_param *param, struct xdp_umem *umem,
974                      struct mlx5e_xdpsq *sq, bool is_redirect);
975 void mlx5e_close_xdpsq(struct mlx5e_xdpsq *sq);
976
977 struct mlx5e_cq_param;
978 int mlx5e_open_cq(struct mlx5e_channel *c, struct dim_cq_moder moder,
979                   struct mlx5e_cq_param *param, struct mlx5e_cq *cq);
980 void mlx5e_close_cq(struct mlx5e_cq *cq);
981
982 int mlx5e_open_locked(struct net_device *netdev);
983 int mlx5e_close_locked(struct net_device *netdev);
984
985 int mlx5e_open_channels(struct mlx5e_priv *priv,
986                         struct mlx5e_channels *chs);
987 void mlx5e_close_channels(struct mlx5e_channels *chs);
988
989 /* Function pointer to be used to modify WH settings while
990  * switching channels
991  */
992 typedef int (*mlx5e_fp_hw_modify)(struct mlx5e_priv *priv);
993 int mlx5e_safe_reopen_channels(struct mlx5e_priv *priv);
994 int mlx5e_safe_switch_channels(struct mlx5e_priv *priv,
995                                struct mlx5e_channels *new_chs,
996                                mlx5e_fp_hw_modify hw_modify);
997 void mlx5e_activate_priv_channels(struct mlx5e_priv *priv);
998 void mlx5e_deactivate_priv_channels(struct mlx5e_priv *priv);
999
1000 void mlx5e_build_default_indir_rqt(u32 *indirection_rqt, int len,
1001                                    int num_channels);
1002 void mlx5e_set_tx_cq_mode_params(struct mlx5e_params *params,
1003                                  u8 cq_period_mode);
1004 void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params,
1005                                  u8 cq_period_mode);
1006 void mlx5e_set_rq_type(struct mlx5_core_dev *mdev, struct mlx5e_params *params);
1007 void mlx5e_init_rq_type_params(struct mlx5_core_dev *mdev,
1008                                struct mlx5e_params *params);
1009
1010 int mlx5e_modify_sq(struct mlx5_core_dev *mdev, u32 sqn,
1011                     struct mlx5e_modify_sq_param *p);
1012 void mlx5e_activate_txqsq(struct mlx5e_txqsq *sq);
1013 void mlx5e_tx_disable_queue(struct netdev_queue *txq);
1014
1015 static inline bool mlx5e_tunnel_inner_ft_supported(struct mlx5_core_dev *mdev)
1016 {
1017         return (MLX5_CAP_ETH(mdev, tunnel_stateless_gre) &&
1018                 MLX5_CAP_FLOWTABLE_NIC_RX(mdev, ft_field_support.inner_ip_version));
1019 }
1020
1021 static inline bool mlx5_tx_swp_supported(struct mlx5_core_dev *mdev)
1022 {
1023         return MLX5_CAP_ETH(mdev, swp) &&
1024                 MLX5_CAP_ETH(mdev, swp_csum) && MLX5_CAP_ETH(mdev, swp_lso);
1025 }
1026
1027 extern const struct ethtool_ops mlx5e_ethtool_ops;
1028 #ifdef CONFIG_MLX5_CORE_EN_DCB
1029 extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
1030 int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
1031 void mlx5e_dcbnl_initialize(struct mlx5e_priv *priv);
1032 void mlx5e_dcbnl_init_app(struct mlx5e_priv *priv);
1033 void mlx5e_dcbnl_delete_app(struct mlx5e_priv *priv);
1034 #endif
1035
1036 int mlx5e_create_tir(struct mlx5_core_dev *mdev,
1037                      struct mlx5e_tir *tir, u32 *in, int inlen);
1038 void mlx5e_destroy_tir(struct mlx5_core_dev *mdev,
1039                        struct mlx5e_tir *tir);
1040 int mlx5e_create_mdev_resources(struct mlx5_core_dev *mdev);
1041 void mlx5e_destroy_mdev_resources(struct mlx5_core_dev *mdev);
1042 int mlx5e_refresh_tirs(struct mlx5e_priv *priv, bool enable_uc_lb);
1043
1044 /* common netdev helpers */
1045 void mlx5e_create_q_counters(struct mlx5e_priv *priv);
1046 void mlx5e_destroy_q_counters(struct mlx5e_priv *priv);
1047 int mlx5e_open_drop_rq(struct mlx5e_priv *priv,
1048                        struct mlx5e_rq *drop_rq);
1049 void mlx5e_close_drop_rq(struct mlx5e_rq *drop_rq);
1050
1051 int mlx5e_create_indirect_rqt(struct mlx5e_priv *priv);
1052
1053 int mlx5e_create_indirect_tirs(struct mlx5e_priv *priv, bool inner_ttc);
1054 void mlx5e_destroy_indirect_tirs(struct mlx5e_priv *priv, bool inner_ttc);
1055
1056 int mlx5e_create_direct_rqts(struct mlx5e_priv *priv, struct mlx5e_tir *tirs);
1057 void mlx5e_destroy_direct_rqts(struct mlx5e_priv *priv, struct mlx5e_tir *tirs);
1058 int mlx5e_create_direct_tirs(struct mlx5e_priv *priv, struct mlx5e_tir *tirs);
1059 void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv, struct mlx5e_tir *tirs);
1060 void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt);
1061
1062 int mlx5e_create_tis(struct mlx5_core_dev *mdev, void *in, u32 *tisn);
1063 void mlx5e_destroy_tis(struct mlx5_core_dev *mdev, u32 tisn);
1064
1065 int mlx5e_create_tises(struct mlx5e_priv *priv);
1066 int mlx5e_update_nic_rx(struct mlx5e_priv *priv);
1067 void mlx5e_update_carrier(struct mlx5e_priv *priv);
1068 int mlx5e_close(struct net_device *netdev);
1069 int mlx5e_open(struct net_device *netdev);
1070 void mlx5e_update_ndo_stats(struct mlx5e_priv *priv);
1071
1072 void mlx5e_queue_update_stats(struct mlx5e_priv *priv);
1073 int mlx5e_bits_invert(unsigned long a, int size);
1074
1075 typedef int (*change_hw_mtu_cb)(struct mlx5e_priv *priv);
1076 int mlx5e_set_dev_port_mtu(struct mlx5e_priv *priv);
1077 int mlx5e_change_mtu(struct net_device *netdev, int new_mtu,
1078                      change_hw_mtu_cb set_mtu_cb);
1079
1080 /* ethtool helpers */
1081 void mlx5e_ethtool_get_drvinfo(struct mlx5e_priv *priv,
1082                                struct ethtool_drvinfo *drvinfo);
1083 void mlx5e_ethtool_get_strings(struct mlx5e_priv *priv,
1084                                uint32_t stringset, uint8_t *data);
1085 int mlx5e_ethtool_get_sset_count(struct mlx5e_priv *priv, int sset);
1086 void mlx5e_ethtool_get_ethtool_stats(struct mlx5e_priv *priv,
1087                                      struct ethtool_stats *stats, u64 *data);
1088 void mlx5e_ethtool_get_ringparam(struct mlx5e_priv *priv,
1089                                  struct ethtool_ringparam *param);
1090 int mlx5e_ethtool_set_ringparam(struct mlx5e_priv *priv,
1091                                 struct ethtool_ringparam *param);
1092 void mlx5e_ethtool_get_channels(struct mlx5e_priv *priv,
1093                                 struct ethtool_channels *ch);
1094 int mlx5e_ethtool_set_channels(struct mlx5e_priv *priv,
1095                                struct ethtool_channels *ch);
1096 int mlx5e_ethtool_get_coalesce(struct mlx5e_priv *priv,
1097                                struct ethtool_coalesce *coal);
1098 int mlx5e_ethtool_set_coalesce(struct mlx5e_priv *priv,
1099                                struct ethtool_coalesce *coal);
1100 int mlx5e_ethtool_get_link_ksettings(struct mlx5e_priv *priv,
1101                                      struct ethtool_link_ksettings *link_ksettings);
1102 int mlx5e_ethtool_set_link_ksettings(struct mlx5e_priv *priv,
1103                                      const struct ethtool_link_ksettings *link_ksettings);
1104 u32 mlx5e_ethtool_get_rxfh_key_size(struct mlx5e_priv *priv);
1105 u32 mlx5e_ethtool_get_rxfh_indir_size(struct mlx5e_priv *priv);
1106 int mlx5e_ethtool_get_ts_info(struct mlx5e_priv *priv,
1107                               struct ethtool_ts_info *info);
1108 void mlx5e_ethtool_get_pauseparam(struct mlx5e_priv *priv,
1109                                   struct ethtool_pauseparam *pauseparam);
1110 int mlx5e_ethtool_set_pauseparam(struct mlx5e_priv *priv,
1111                                  struct ethtool_pauseparam *pauseparam);
1112
1113 /* mlx5e generic netdev management API */
1114 int mlx5e_netdev_init(struct net_device *netdev,
1115                       struct mlx5e_priv *priv,
1116                       struct mlx5_core_dev *mdev,
1117                       const struct mlx5e_profile *profile,
1118                       void *ppriv);
1119 void mlx5e_netdev_cleanup(struct net_device *netdev, struct mlx5e_priv *priv);
1120 struct net_device*
1121 mlx5e_create_netdev(struct mlx5_core_dev *mdev, const struct mlx5e_profile *profile,
1122                     int nch, void *ppriv);
1123 int mlx5e_attach_netdev(struct mlx5e_priv *priv);
1124 void mlx5e_detach_netdev(struct mlx5e_priv *priv);
1125 void mlx5e_destroy_netdev(struct mlx5e_priv *priv);
1126 void mlx5e_set_netdev_mtu_boundaries(struct mlx5e_priv *priv);
1127 void mlx5e_build_nic_params(struct mlx5_core_dev *mdev,
1128                             struct mlx5e_xsk *xsk,
1129                             struct mlx5e_rss_params *rss_params,
1130                             struct mlx5e_params *params,
1131                             u16 max_channels, u16 mtu);
1132 void mlx5e_build_rq_params(struct mlx5_core_dev *mdev,
1133                            struct mlx5e_params *params);
1134 void mlx5e_build_rss_params(struct mlx5e_rss_params *rss_params,
1135                             u16 num_channels);
1136 u8 mlx5e_params_calculate_tx_min_inline(struct mlx5_core_dev *mdev);
1137 void mlx5e_rx_dim_work(struct work_struct *work);
1138 void mlx5e_tx_dim_work(struct work_struct *work);
1139
1140 void mlx5e_add_vxlan_port(struct net_device *netdev, struct udp_tunnel_info *ti);
1141 void mlx5e_del_vxlan_port(struct net_device *netdev, struct udp_tunnel_info *ti);
1142 netdev_features_t mlx5e_features_check(struct sk_buff *skb,
1143                                        struct net_device *netdev,
1144                                        netdev_features_t features);
1145 int mlx5e_set_features(struct net_device *netdev, netdev_features_t features);
1146 #ifdef CONFIG_MLX5_ESWITCH
1147 int mlx5e_set_vf_mac(struct net_device *dev, int vf, u8 *mac);
1148 int mlx5e_set_vf_rate(struct net_device *dev, int vf, int min_tx_rate, int max_tx_rate);
1149 int mlx5e_get_vf_config(struct net_device *dev, int vf, struct ifla_vf_info *ivi);
1150 int mlx5e_get_vf_stats(struct net_device *dev, int vf, struct ifla_vf_stats *vf_stats);
1151 #endif
1152 #endif /* __MLX5_EN_H__ */