]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/net/ethernet/mellanox/mlx5/core/en.h
8539ea9a67ca18ed1e13e60b6ab332f21f6f4b1f
[linux.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/net_dim.h>
52 #include "wq.h"
53 #include "mlx5_core.h"
54 #include "en_stats.h"
55 #include "en/fs.h"
56
57 extern const struct net_device_ops mlx5e_netdev_ops;
58 struct page_pool;
59
60 #define MLX5E_METADATA_ETHER_TYPE (0x8CE4)
61 #define MLX5E_METADATA_ETHER_LEN 8
62
63 #define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v)
64
65 #define MLX5E_ETH_HARD_MTU (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN)
66
67 #define MLX5E_HW2SW_MTU(params, hwmtu) ((hwmtu) - ((params)->hard_mtu))
68 #define MLX5E_SW2HW_MTU(params, swmtu) ((swmtu) + ((params)->hard_mtu))
69
70 #define MLX5E_MAX_PRIORITY      8
71 #define MLX5E_MAX_DSCP          64
72 #define MLX5E_MAX_NUM_TC        8
73
74 #define MLX5_RX_HEADROOM NET_SKB_PAD
75 #define MLX5_SKB_FRAG_SZ(len)   (SKB_DATA_ALIGN(len) +  \
76                                  SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
77
78 #define MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev) \
79         (6 + MLX5_CAP_GEN(mdev, cache_line_128byte)) /* HW restriction */
80 #define MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, req) \
81         max_t(u32, MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev), req)
82 #define MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev)       MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, 6)
83 #define MLX5_MPWRQ_CQE_CMPRS_LOG_STRIDE_SZ(mdev) MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, 8)
84 #define MLX5E_MPWQE_STRIDE_SZ(mdev, cqe_cmprs) \
85         (cqe_cmprs ? MLX5_MPWRQ_CQE_CMPRS_LOG_STRIDE_SZ(mdev) : \
86         MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev))
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_RX_MAX_HEAD (256)
122
123 #define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ                 (64 * 1024)
124 #define MLX5E_DEFAULT_LRO_TIMEOUT                       32
125 #define MLX5E_LRO_TIMEOUT_ARR_SIZE                      4
126
127 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC      0x10
128 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE 0x3
129 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS      0x20
130 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC      0x10
131 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC_FROM_CQE 0x10
132 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS      0x20
133 #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES                0x80
134 #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW            0x2
135
136 #define MLX5E_LOG_INDIR_RQT_SIZE       0x7
137 #define MLX5E_INDIR_RQT_SIZE           BIT(MLX5E_LOG_INDIR_RQT_SIZE)
138 #define MLX5E_MIN_NUM_CHANNELS         0x1
139 #define MLX5E_MAX_NUM_CHANNELS         (MLX5E_INDIR_RQT_SIZE >> 1)
140 #define MLX5E_MAX_NUM_SQS              (MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC)
141 #define MLX5E_TX_CQ_POLL_BUDGET        128
142 #define MLX5E_SQ_RECOVER_MIN_INTERVAL  500 /* msecs */
143
144 #define MLX5E_UMR_WQE_INLINE_SZ \
145         (sizeof(struct mlx5e_umr_wqe) + \
146          ALIGN(MLX5_MPWRQ_PAGES_PER_WQE * sizeof(struct mlx5_mtt), \
147                MLX5_UMR_MTT_ALIGNMENT))
148 #define MLX5E_UMR_WQEBBS \
149         (DIV_ROUND_UP(MLX5E_UMR_WQE_INLINE_SZ, MLX5_SEND_WQE_BB))
150
151 #define MLX5E_MSG_LEVEL                 NETIF_MSG_LINK
152
153 #define mlx5e_dbg(mlevel, priv, format, ...)                    \
154 do {                                                            \
155         if (NETIF_MSG_##mlevel & (priv)->msglevel)              \
156                 netdev_warn(priv->netdev, format,               \
157                             ##__VA_ARGS__);                     \
158 } while (0)
159
160
161 static inline u16 mlx5_min_rx_wqes(int wq_type, u32 wq_size)
162 {
163         switch (wq_type) {
164         case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
165                 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW,
166                              wq_size / 2);
167         default:
168                 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES,
169                              wq_size / 2);
170         }
171 }
172
173 /* Use this function to get max num channels (rxqs/txqs) only to create netdev */
174 static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
175 {
176         return is_kdump_kernel() ?
177                 MLX5E_MIN_NUM_CHANNELS :
178                 min_t(int, mdev->priv.eq_table.num_comp_vectors,
179                       MLX5E_MAX_NUM_CHANNELS);
180 }
181
182 /* Use this function to get max num channels after netdev was created */
183 static inline int mlx5e_get_netdev_max_channels(struct net_device *netdev)
184 {
185         return min_t(unsigned int, netdev->num_rx_queues,
186                      netdev->num_tx_queues);
187 }
188
189 struct mlx5e_tx_wqe {
190         struct mlx5_wqe_ctrl_seg ctrl;
191         struct mlx5_wqe_eth_seg  eth;
192         struct mlx5_wqe_data_seg data[0];
193 };
194
195 struct mlx5e_rx_wqe_ll {
196         struct mlx5_wqe_srq_next_seg  next;
197         struct mlx5_wqe_data_seg      data[0];
198 };
199
200 struct mlx5e_rx_wqe_cyc {
201         struct mlx5_wqe_data_seg      data[0];
202 };
203
204 struct mlx5e_umr_wqe {
205         struct mlx5_wqe_ctrl_seg       ctrl;
206         struct mlx5_wqe_umr_ctrl_seg   uctrl;
207         struct mlx5_mkey_seg           mkc;
208         struct mlx5_mtt                inline_mtts[0];
209 };
210
211 extern const char mlx5e_self_tests[][ETH_GSTRING_LEN];
212
213 enum mlx5e_priv_flag {
214         MLX5E_PFLAG_RX_CQE_BASED_MODER = (1 << 0),
215         MLX5E_PFLAG_TX_CQE_BASED_MODER = (1 << 1),
216         MLX5E_PFLAG_RX_CQE_COMPRESS = (1 << 2),
217         MLX5E_PFLAG_RX_STRIDING_RQ = (1 << 3),
218         MLX5E_PFLAG_RX_NO_CSUM_COMPLETE = (1 << 4),
219 };
220
221 #define MLX5E_SET_PFLAG(params, pflag, enable)                  \
222         do {                                                    \
223                 if (enable)                                     \
224                         (params)->pflags |= (pflag);            \
225                 else                                            \
226                         (params)->pflags &= ~(pflag);           \
227         } while (0)
228
229 #define MLX5E_GET_PFLAG(params, pflag) (!!((params)->pflags & (pflag)))
230
231 #ifdef CONFIG_MLX5_CORE_EN_DCB
232 #define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
233 #endif
234
235 struct mlx5e_params {
236         u8  log_sq_size;
237         u8  rq_wq_type;
238         u8  log_rq_mtu_frames;
239         u16 num_channels;
240         u8  num_tc;
241         bool rx_cqe_compress_def;
242         struct net_dim_cq_moder rx_cq_moderation;
243         struct net_dim_cq_moder tx_cq_moderation;
244         bool lro_en;
245         u32 lro_wqe_sz;
246         u8  tx_min_inline_mode;
247         u8  rss_hfunc;
248         u8  toeplitz_hash_key[40];
249         u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE];
250         bool vlan_strip_disable;
251         bool scatter_fcs_en;
252         bool rx_dim_enabled;
253         bool tx_dim_enabled;
254         u32 lro_timeout;
255         u32 pflags;
256         struct bpf_prog *xdp_prog;
257         unsigned int sw_mtu;
258         int hard_mtu;
259 };
260
261 #ifdef CONFIG_MLX5_CORE_EN_DCB
262 struct mlx5e_cee_config {
263         /* bw pct for priority group */
264         u8                         pg_bw_pct[CEE_DCBX_MAX_PGS];
265         u8                         prio_to_pg_map[CEE_DCBX_MAX_PRIO];
266         bool                       pfc_setting[CEE_DCBX_MAX_PRIO];
267         bool                       pfc_enable;
268 };
269
270 enum {
271         MLX5_DCB_CHG_RESET,
272         MLX5_DCB_NO_CHG,
273         MLX5_DCB_CHG_NO_RESET,
274 };
275
276 struct mlx5e_dcbx {
277         enum mlx5_dcbx_oper_mode   mode;
278         struct mlx5e_cee_config    cee_cfg; /* pending configuration */
279         u8                         dscp_app_cnt;
280
281         /* The only setting that cannot be read from FW */
282         u8                         tc_tsa[IEEE_8021QAZ_MAX_TCS];
283         u8                         cap;
284
285         /* Buffer configuration */
286         bool                       manual_buffer;
287         u32                        cable_len;
288         u32                        xoff;
289 };
290
291 struct mlx5e_dcbx_dp {
292         u8                         dscp2prio[MLX5E_MAX_DSCP];
293         u8                         trust_state;
294 };
295 #endif
296
297 enum {
298         MLX5E_RQ_STATE_ENABLED,
299         MLX5E_RQ_STATE_AM,
300         MLX5E_RQ_STATE_NO_CSUM_COMPLETE,
301 };
302
303 struct mlx5e_cq {
304         /* data path - accessed per cqe */
305         struct mlx5_cqwq           wq;
306
307         /* data path - accessed per napi poll */
308         u16                        event_ctr;
309         struct napi_struct        *napi;
310         struct mlx5_core_cq        mcq;
311         struct mlx5e_channel      *channel;
312
313         /* cqe decompression */
314         struct mlx5_cqe64          title;
315         struct mlx5_mini_cqe8      mini_arr[MLX5_MINI_CQE_ARRAY_SIZE];
316         u8                         mini_arr_idx;
317         u16                        decmprs_left;
318         u16                        decmprs_wqe_counter;
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_tx_wqe_info {
326         struct sk_buff *skb;
327         u32 num_bytes;
328         u8  num_wqebbs;
329         u8  num_dma;
330 };
331
332 enum mlx5e_dma_map_type {
333         MLX5E_DMA_MAP_SINGLE,
334         MLX5E_DMA_MAP_PAGE
335 };
336
337 struct mlx5e_sq_dma {
338         dma_addr_t              addr;
339         u32                     size;
340         enum mlx5e_dma_map_type type;
341 };
342
343 enum {
344         MLX5E_SQ_STATE_ENABLED,
345         MLX5E_SQ_STATE_RECOVERING,
346         MLX5E_SQ_STATE_IPSEC,
347         MLX5E_SQ_STATE_AM,
348         MLX5E_SQ_STATE_TLS,
349         MLX5E_SQ_STATE_REDIRECT,
350 };
351
352 struct mlx5e_sq_wqe_info {
353         u8  opcode;
354 };
355
356 struct mlx5e_txqsq {
357         /* data path */
358
359         /* dirtied @completion */
360         u16                        cc;
361         u32                        dma_fifo_cc;
362         struct net_dim             dim; /* Adaptive Moderation */
363
364         /* dirtied @xmit */
365         u16                        pc ____cacheline_aligned_in_smp;
366         u32                        dma_fifo_pc;
367
368         struct mlx5e_cq            cq;
369
370         /* read only */
371         struct mlx5_wq_cyc         wq;
372         u32                        dma_fifo_mask;
373         struct mlx5e_sq_stats     *stats;
374         struct {
375                 struct mlx5e_sq_dma       *dma_fifo;
376                 struct mlx5e_tx_wqe_info  *wqe_info;
377         } db;
378         void __iomem              *uar_map;
379         struct netdev_queue       *txq;
380         u32                        sqn;
381         u8                         min_inline_mode;
382         struct device             *pdev;
383         __be32                     mkey_be;
384         unsigned long              state;
385         struct hwtstamp_config    *tstamp;
386         struct mlx5_clock         *clock;
387
388         /* control path */
389         struct mlx5_wq_ctrl        wq_ctrl;
390         struct mlx5e_channel      *channel;
391         int                        txq_ix;
392         u32                        rate_limit;
393         struct mlx5e_txqsq_recover {
394                 struct work_struct         recover_work;
395                 u64                        last_recover;
396         } recover;
397 } ____cacheline_aligned_in_smp;
398
399 struct mlx5e_dma_info {
400         struct page     *page;
401         dma_addr_t      addr;
402 };
403
404 struct mlx5e_xdp_info {
405         struct xdp_frame      *xdpf;
406         dma_addr_t            dma_addr;
407         struct mlx5e_dma_info di;
408 };
409
410 struct mlx5e_xdpsq {
411         /* data path */
412
413         /* dirtied @completion */
414         u16                        cc;
415         bool                       redirect_flush;
416
417         /* dirtied @xmit */
418         u16                        pc ____cacheline_aligned_in_smp;
419         bool                       doorbell;
420
421         struct mlx5e_cq            cq;
422
423         /* read only */
424         struct mlx5_wq_cyc         wq;
425         struct mlx5e_xdpsq_stats  *stats;
426         struct {
427                 struct mlx5e_xdp_info     *xdpi;
428         } db;
429         void __iomem              *uar_map;
430         u32                        sqn;
431         struct device             *pdev;
432         __be32                     mkey_be;
433         u8                         min_inline_mode;
434         unsigned long              state;
435         unsigned int               hw_mtu;
436
437         /* control path */
438         struct mlx5_wq_ctrl        wq_ctrl;
439         struct mlx5e_channel      *channel;
440 } ____cacheline_aligned_in_smp;
441
442 struct mlx5e_icosq {
443         /* data path */
444
445         /* dirtied @xmit */
446         u16                        pc ____cacheline_aligned_in_smp;
447
448         struct mlx5e_cq            cq;
449
450         /* write@xmit, read@completion */
451         struct {
452                 struct mlx5e_sq_wqe_info *ico_wqe;
453         } db;
454
455         /* read only */
456         struct mlx5_wq_cyc         wq;
457         void __iomem              *uar_map;
458         u32                        sqn;
459         unsigned long              state;
460
461         /* control path */
462         struct mlx5_wq_ctrl        wq_ctrl;
463         struct mlx5e_channel      *channel;
464 } ____cacheline_aligned_in_smp;
465
466 static inline bool
467 mlx5e_wqc_has_room_for(struct mlx5_wq_cyc *wq, u16 cc, u16 pc, u16 n)
468 {
469         return (mlx5_wq_cyc_ctr2ix(wq, cc - pc) >= n) || (cc == pc);
470 }
471
472 struct mlx5e_wqe_frag_info {
473         struct mlx5e_dma_info *di;
474         u32 offset;
475         bool last_in_page;
476 };
477
478 struct mlx5e_umr_dma_info {
479         struct mlx5e_dma_info  dma_info[MLX5_MPWRQ_PAGES_PER_WQE];
480 };
481
482 struct mlx5e_mpw_info {
483         struct mlx5e_umr_dma_info umr;
484         u16 consumed_strides;
485         DECLARE_BITMAP(xdp_xmit_bitmap, MLX5_MPWRQ_PAGES_PER_WQE);
486 };
487
488 #define MLX5E_MAX_RX_FRAGS 4
489
490 /* a single cache unit is capable to serve one napi call (for non-striding rq)
491  * or a MPWQE (for striding rq).
492  */
493 #define MLX5E_CACHE_UNIT        (MLX5_MPWRQ_PAGES_PER_WQE > NAPI_POLL_WEIGHT ? \
494                                  MLX5_MPWRQ_PAGES_PER_WQE : NAPI_POLL_WEIGHT)
495 #define MLX5E_CACHE_SIZE        (4 * roundup_pow_of_two(MLX5E_CACHE_UNIT))
496 struct mlx5e_page_cache {
497         u32 head;
498         u32 tail;
499         struct mlx5e_dma_info page_cache[MLX5E_CACHE_SIZE];
500 };
501
502 struct mlx5e_rq;
503 typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq*, struct mlx5_cqe64*);
504 typedef struct sk_buff *
505 (*mlx5e_fp_skb_from_cqe_mpwrq)(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
506                                u16 cqe_bcnt, u32 head_offset, u32 page_idx);
507 typedef struct sk_buff *
508 (*mlx5e_fp_skb_from_cqe)(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
509                          struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
510 typedef bool (*mlx5e_fp_post_rx_wqes)(struct mlx5e_rq *rq);
511 typedef void (*mlx5e_fp_dealloc_wqe)(struct mlx5e_rq*, u16);
512
513 enum mlx5e_rq_flag {
514         MLX5E_RQ_FLAG_XDP_XMIT = BIT(0),
515 };
516
517 struct mlx5e_rq_frag_info {
518         int frag_size;
519         int frag_stride;
520 };
521
522 struct mlx5e_rq_frags_info {
523         struct mlx5e_rq_frag_info arr[MLX5E_MAX_RX_FRAGS];
524         u8 num_frags;
525         u8 log_num_frags;
526         u8 wqe_bulk;
527 };
528
529 struct mlx5e_rq {
530         /* data path */
531         union {
532                 struct {
533                         struct mlx5_wq_cyc          wq;
534                         struct mlx5e_wqe_frag_info *frags;
535                         struct mlx5e_dma_info      *di;
536                         struct mlx5e_rq_frags_info  info;
537                         mlx5e_fp_skb_from_cqe       skb_from_cqe;
538                 } wqe;
539                 struct {
540                         struct mlx5_wq_ll      wq;
541                         struct mlx5e_umr_wqe   umr_wqe;
542                         struct mlx5e_mpw_info *info;
543                         mlx5e_fp_skb_from_cqe_mpwrq skb_from_cqe_mpwrq;
544                         u16                    num_strides;
545                         u8                     log_stride_sz;
546                         bool                   umr_in_progress;
547                 } mpwqe;
548         };
549         struct {
550                 u16            headroom;
551                 u8             map_dir;   /* dma map direction */
552         } buff;
553
554         struct mlx5e_channel  *channel;
555         struct device         *pdev;
556         struct net_device     *netdev;
557         struct mlx5e_rq_stats *stats;
558         struct mlx5e_cq        cq;
559         struct mlx5e_page_cache page_cache;
560         struct hwtstamp_config *tstamp;
561         struct mlx5_clock      *clock;
562
563         mlx5e_fp_handle_rx_cqe handle_rx_cqe;
564         mlx5e_fp_post_rx_wqes  post_wqes;
565         mlx5e_fp_dealloc_wqe   dealloc_wqe;
566
567         unsigned long          state;
568         int                    ix;
569         unsigned int           hw_mtu;
570
571         struct net_dim         dim; /* Dynamic Interrupt Moderation */
572
573         /* XDP */
574         struct bpf_prog       *xdp_prog;
575         struct mlx5e_xdpsq     xdpsq;
576         DECLARE_BITMAP(flags, 8);
577         struct page_pool      *page_pool;
578
579         /* control */
580         struct mlx5_wq_ctrl    wq_ctrl;
581         __be32                 mkey_be;
582         u8                     wq_type;
583         u32                    rqn;
584         struct mlx5_core_dev  *mdev;
585         struct mlx5_core_mkey  umr_mkey;
586
587         /* XDP read-mostly */
588         struct xdp_rxq_info    xdp_rxq;
589 } ____cacheline_aligned_in_smp;
590
591 struct mlx5e_channel {
592         /* data path */
593         struct mlx5e_rq            rq;
594         struct mlx5e_txqsq         sq[MLX5E_MAX_NUM_TC];
595         struct mlx5e_icosq         icosq;   /* internal control operations */
596         bool                       xdp;
597         struct napi_struct         napi;
598         struct device             *pdev;
599         struct net_device         *netdev;
600         __be32                     mkey_be;
601         u8                         num_tc;
602
603         /* XDP_REDIRECT */
604         struct mlx5e_xdpsq         xdpsq;
605
606         /* data path - accessed per napi poll */
607         struct irq_desc *irq_desc;
608         struct mlx5e_ch_stats     *stats;
609
610         /* control */
611         struct mlx5e_priv         *priv;
612         struct mlx5_core_dev      *mdev;
613         struct hwtstamp_config    *tstamp;
614         int                        ix;
615         int                        cpu;
616 };
617
618 struct mlx5e_channels {
619         struct mlx5e_channel **c;
620         unsigned int           num;
621         struct mlx5e_params    params;
622 };
623
624 struct mlx5e_channel_stats {
625         struct mlx5e_ch_stats ch;
626         struct mlx5e_sq_stats sq[MLX5E_MAX_NUM_TC];
627         struct mlx5e_rq_stats rq;
628         struct mlx5e_xdpsq_stats rq_xdpsq;
629         struct mlx5e_xdpsq_stats xdpsq;
630 } ____cacheline_aligned_in_smp;
631
632 enum {
633         MLX5E_STATE_ASYNC_EVENTS_ENABLED,
634         MLX5E_STATE_OPENED,
635         MLX5E_STATE_DESTROYING,
636 };
637
638 struct mlx5e_rqt {
639         u32              rqtn;
640         bool             enabled;
641 };
642
643 struct mlx5e_tir {
644         u32               tirn;
645         struct mlx5e_rqt  rqt;
646         struct list_head  list;
647 };
648
649 enum {
650         MLX5E_TC_PRIO = 0,
651         MLX5E_NIC_PRIO
652 };
653
654 struct mlx5e_priv {
655         /* priv data path fields - start */
656         struct mlx5e_txqsq *txq2sq[MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC];
657         int channel_tc2txq[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
658 #ifdef CONFIG_MLX5_CORE_EN_DCB
659         struct mlx5e_dcbx_dp       dcbx_dp;
660 #endif
661         /* priv data path fields - end */
662
663         u32                        msglevel;
664         unsigned long              state;
665         struct mutex               state_lock; /* Protects Interface state */
666         struct mlx5e_rq            drop_rq;
667
668         struct mlx5e_channels      channels;
669         u32                        tisn[MLX5E_MAX_NUM_TC];
670         struct mlx5e_rqt           indir_rqt;
671         struct mlx5e_tir           indir_tir[MLX5E_NUM_INDIR_TIRS];
672         struct mlx5e_tir           inner_indir_tir[MLX5E_NUM_INDIR_TIRS];
673         struct mlx5e_tir           direct_tir[MLX5E_MAX_NUM_CHANNELS];
674         u32                        tx_rates[MLX5E_MAX_NUM_SQS];
675
676         struct mlx5e_flow_steering fs;
677
678         struct workqueue_struct    *wq;
679         struct work_struct         update_carrier_work;
680         struct work_struct         set_rx_mode_work;
681         struct work_struct         tx_timeout_work;
682         struct work_struct         update_stats_work;
683
684         struct mlx5_core_dev      *mdev;
685         struct net_device         *netdev;
686         struct mlx5e_stats         stats;
687         struct mlx5e_channel_stats channel_stats[MLX5E_MAX_NUM_CHANNELS];
688         u8                         max_opened_tc;
689         struct hwtstamp_config     tstamp;
690         u16                        q_counter;
691         u16                        drop_rq_q_counter;
692 #ifdef CONFIG_MLX5_CORE_EN_DCB
693         struct mlx5e_dcbx          dcbx;
694 #endif
695
696         const struct mlx5e_profile *profile;
697         void                      *ppriv;
698 #ifdef CONFIG_MLX5_EN_IPSEC
699         struct mlx5e_ipsec        *ipsec;
700 #endif
701 #ifdef CONFIG_MLX5_EN_TLS
702         struct mlx5e_tls          *tls;
703 #endif
704 };
705
706 struct mlx5e_profile {
707         int     (*init)(struct mlx5_core_dev *mdev,
708                         struct net_device *netdev,
709                         const struct mlx5e_profile *profile, void *ppriv);
710         void    (*cleanup)(struct mlx5e_priv *priv);
711         int     (*init_rx)(struct mlx5e_priv *priv);
712         void    (*cleanup_rx)(struct mlx5e_priv *priv);
713         int     (*init_tx)(struct mlx5e_priv *priv);
714         void    (*cleanup_tx)(struct mlx5e_priv *priv);
715         void    (*enable)(struct mlx5e_priv *priv);
716         void    (*disable)(struct mlx5e_priv *priv);
717         void    (*update_stats)(struct mlx5e_priv *priv);
718         void    (*update_carrier)(struct mlx5e_priv *priv);
719         struct {
720                 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
721                 mlx5e_fp_handle_rx_cqe handle_rx_cqe_mpwqe;
722         } rx_handlers;
723         int     max_tc;
724 };
725
726 void mlx5e_build_ptys2ethtool_map(void);
727
728 u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
729                        struct net_device *sb_dev,
730                        select_queue_fallback_t fallback);
731 netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
732 netdev_tx_t mlx5e_sq_xmit(struct mlx5e_txqsq *sq, struct sk_buff *skb,
733                           struct mlx5e_tx_wqe *wqe, u16 pi);
734
735 void mlx5e_completion_event(struct mlx5_core_cq *mcq);
736 void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
737 int mlx5e_napi_poll(struct napi_struct *napi, int budget);
738 bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
739 int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
740 void mlx5e_free_txqsq_descs(struct mlx5e_txqsq *sq);
741
742 bool mlx5e_check_fragmented_striding_rq_cap(struct mlx5_core_dev *mdev);
743 bool mlx5e_striding_rq_possible(struct mlx5_core_dev *mdev,
744                                 struct mlx5e_params *params);
745
746 void mlx5e_page_dma_unmap(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info);
747 void mlx5e_page_release(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info,
748                         bool recycle);
749 void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
750 void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
751 bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
752 bool mlx5e_post_rx_mpwqes(struct mlx5e_rq *rq);
753 void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix);
754 void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix);
755 struct sk_buff *
756 mlx5e_skb_from_cqe_mpwrq_linear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
757                                 u16 cqe_bcnt, u32 head_offset, u32 page_idx);
758 struct sk_buff *
759 mlx5e_skb_from_cqe_mpwrq_nonlinear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi,
760                                    u16 cqe_bcnt, u32 head_offset, u32 page_idx);
761 struct sk_buff *
762 mlx5e_skb_from_cqe_linear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
763                           struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
764 struct sk_buff *
765 mlx5e_skb_from_cqe_nonlinear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe,
766                              struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt);
767
768 void mlx5e_update_stats(struct mlx5e_priv *priv);
769
770 void mlx5e_init_l2_addr(struct mlx5e_priv *priv);
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 void mlx5e_set_rx_mode_work(struct work_struct *work);
775
776 int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr);
777 int mlx5e_hwstamp_get(struct mlx5e_priv *priv, struct ifreq *ifr);
778 int mlx5e_modify_rx_cqe_compression_locked(struct mlx5e_priv *priv, bool val);
779
780 int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
781                           u16 vid);
782 int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
783                            u16 vid);
784 void mlx5e_timestamp_init(struct mlx5e_priv *priv);
785
786 struct mlx5e_redirect_rqt_param {
787         bool is_rss;
788         union {
789                 u32 rqn; /* Direct RQN (Non-RSS) */
790                 struct {
791                         u8 hfunc;
792                         struct mlx5e_channels *channels;
793                 } rss; /* RSS data */
794         };
795 };
796
797 int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz,
798                        struct mlx5e_redirect_rqt_param rrp);
799 void mlx5e_build_indir_tir_ctx_hash(struct mlx5e_params *params,
800                                     const struct mlx5e_tirc_config *ttconfig,
801                                     void *tirc, bool inner);
802 void mlx5e_modify_tirs_hash(struct mlx5e_priv *priv, void *in, int inlen);
803 struct mlx5e_tirc_config mlx5e_tirc_get_default_config(enum mlx5e_traffic_types tt);
804
805 int mlx5e_open_locked(struct net_device *netdev);
806 int mlx5e_close_locked(struct net_device *netdev);
807
808 int mlx5e_open_channels(struct mlx5e_priv *priv,
809                         struct mlx5e_channels *chs);
810 void mlx5e_close_channels(struct mlx5e_channels *chs);
811
812 /* Function pointer to be used to modify WH settings while
813  * switching channels
814  */
815 typedef int (*mlx5e_fp_hw_modify)(struct mlx5e_priv *priv);
816 void mlx5e_switch_priv_channels(struct mlx5e_priv *priv,
817                                 struct mlx5e_channels *new_chs,
818                                 mlx5e_fp_hw_modify hw_modify);
819 void mlx5e_activate_priv_channels(struct mlx5e_priv *priv);
820 void mlx5e_deactivate_priv_channels(struct mlx5e_priv *priv);
821
822 void mlx5e_build_default_indir_rqt(u32 *indirection_rqt, int len,
823                                    int num_channels);
824 void mlx5e_set_tx_cq_mode_params(struct mlx5e_params *params,
825                                  u8 cq_period_mode);
826 void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params,
827                                  u8 cq_period_mode);
828 void mlx5e_set_rq_type(struct mlx5_core_dev *mdev, struct mlx5e_params *params);
829 void mlx5e_init_rq_type_params(struct mlx5_core_dev *mdev,
830                                struct mlx5e_params *params);
831
832 static inline bool mlx5e_tunnel_inner_ft_supported(struct mlx5_core_dev *mdev)
833 {
834         return (MLX5_CAP_ETH(mdev, tunnel_stateless_gre) &&
835                 MLX5_CAP_FLOWTABLE_NIC_RX(mdev, ft_field_support.inner_ip_version));
836 }
837
838 static inline void mlx5e_sq_fetch_wqe(struct mlx5e_txqsq *sq,
839                                       struct mlx5e_tx_wqe **wqe,
840                                       u16 *pi)
841 {
842         struct mlx5_wq_cyc *wq = &sq->wq;
843
844         *pi  = mlx5_wq_cyc_ctr2ix(wq, sq->pc);
845         *wqe = mlx5_wq_cyc_get_wqe(wq, *pi);
846         memset(*wqe, 0, sizeof(**wqe));
847 }
848
849 static inline
850 struct mlx5e_tx_wqe *mlx5e_post_nop(struct mlx5_wq_cyc *wq, u32 sqn, u16 *pc)
851 {
852         u16                         pi   = mlx5_wq_cyc_ctr2ix(wq, *pc);
853         struct mlx5e_tx_wqe        *wqe  = mlx5_wq_cyc_get_wqe(wq, pi);
854         struct mlx5_wqe_ctrl_seg   *cseg = &wqe->ctrl;
855
856         memset(cseg, 0, sizeof(*cseg));
857
858         cseg->opmod_idx_opcode = cpu_to_be32((*pc << 8) | MLX5_OPCODE_NOP);
859         cseg->qpn_ds           = cpu_to_be32((sqn << 8) | 0x01);
860
861         (*pc)++;
862
863         return wqe;
864 }
865
866 static inline
867 void mlx5e_notify_hw(struct mlx5_wq_cyc *wq, u16 pc,
868                      void __iomem *uar_map,
869                      struct mlx5_wqe_ctrl_seg *ctrl)
870 {
871         ctrl->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE;
872         /* ensure wqe is visible to device before updating doorbell record */
873         dma_wmb();
874
875         *wq->db = cpu_to_be32(pc);
876
877         /* ensure doorbell record is visible to device before ringing the
878          * doorbell
879          */
880         wmb();
881
882         mlx5_write64((__be32 *)ctrl, uar_map, NULL);
883 }
884
885 static inline void mlx5e_cq_arm(struct mlx5e_cq *cq)
886 {
887         struct mlx5_core_cq *mcq;
888
889         mcq = &cq->mcq;
890         mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, cq->wq.cc);
891 }
892
893 extern const struct ethtool_ops mlx5e_ethtool_ops;
894 #ifdef CONFIG_MLX5_CORE_EN_DCB
895 extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
896 int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
897 void mlx5e_dcbnl_initialize(struct mlx5e_priv *priv);
898 void mlx5e_dcbnl_init_app(struct mlx5e_priv *priv);
899 void mlx5e_dcbnl_delete_app(struct mlx5e_priv *priv);
900 #endif
901
902 int mlx5e_create_tir(struct mlx5_core_dev *mdev,
903                      struct mlx5e_tir *tir, u32 *in, int inlen);
904 void mlx5e_destroy_tir(struct mlx5_core_dev *mdev,
905                        struct mlx5e_tir *tir);
906 int mlx5e_create_mdev_resources(struct mlx5_core_dev *mdev);
907 void mlx5e_destroy_mdev_resources(struct mlx5_core_dev *mdev);
908 int mlx5e_refresh_tirs(struct mlx5e_priv *priv, bool enable_uc_lb);
909
910 /* common netdev helpers */
911 void mlx5e_create_q_counters(struct mlx5e_priv *priv);
912 void mlx5e_destroy_q_counters(struct mlx5e_priv *priv);
913 int mlx5e_open_drop_rq(struct mlx5e_priv *priv,
914                        struct mlx5e_rq *drop_rq);
915 void mlx5e_close_drop_rq(struct mlx5e_rq *drop_rq);
916
917 int mlx5e_create_indirect_rqt(struct mlx5e_priv *priv);
918
919 int mlx5e_create_indirect_tirs(struct mlx5e_priv *priv, bool inner_ttc);
920 void mlx5e_destroy_indirect_tirs(struct mlx5e_priv *priv, bool inner_ttc);
921
922 int mlx5e_create_direct_rqts(struct mlx5e_priv *priv);
923 void mlx5e_destroy_direct_rqts(struct mlx5e_priv *priv);
924 int mlx5e_create_direct_tirs(struct mlx5e_priv *priv);
925 void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv);
926 void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt);
927
928 int mlx5e_create_tis(struct mlx5_core_dev *mdev, int tc,
929                      u32 underlay_qpn, u32 *tisn);
930 void mlx5e_destroy_tis(struct mlx5_core_dev *mdev, u32 tisn);
931
932 int mlx5e_create_tises(struct mlx5e_priv *priv);
933 void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv);
934 int mlx5e_close(struct net_device *netdev);
935 int mlx5e_open(struct net_device *netdev);
936
937 void mlx5e_queue_update_stats(struct mlx5e_priv *priv);
938 int mlx5e_bits_invert(unsigned long a, int size);
939
940 typedef int (*change_hw_mtu_cb)(struct mlx5e_priv *priv);
941 int mlx5e_change_mtu(struct net_device *netdev, int new_mtu,
942                      change_hw_mtu_cb set_mtu_cb);
943
944 /* ethtool helpers */
945 void mlx5e_ethtool_get_drvinfo(struct mlx5e_priv *priv,
946                                struct ethtool_drvinfo *drvinfo);
947 void mlx5e_ethtool_get_strings(struct mlx5e_priv *priv,
948                                uint32_t stringset, uint8_t *data);
949 int mlx5e_ethtool_get_sset_count(struct mlx5e_priv *priv, int sset);
950 void mlx5e_ethtool_get_ethtool_stats(struct mlx5e_priv *priv,
951                                      struct ethtool_stats *stats, u64 *data);
952 void mlx5e_ethtool_get_ringparam(struct mlx5e_priv *priv,
953                                  struct ethtool_ringparam *param);
954 int mlx5e_ethtool_set_ringparam(struct mlx5e_priv *priv,
955                                 struct ethtool_ringparam *param);
956 void mlx5e_ethtool_get_channels(struct mlx5e_priv *priv,
957                                 struct ethtool_channels *ch);
958 int mlx5e_ethtool_set_channels(struct mlx5e_priv *priv,
959                                struct ethtool_channels *ch);
960 int mlx5e_ethtool_get_coalesce(struct mlx5e_priv *priv,
961                                struct ethtool_coalesce *coal);
962 int mlx5e_ethtool_set_coalesce(struct mlx5e_priv *priv,
963                                struct ethtool_coalesce *coal);
964 u32 mlx5e_ethtool_get_rxfh_key_size(struct mlx5e_priv *priv);
965 u32 mlx5e_ethtool_get_rxfh_indir_size(struct mlx5e_priv *priv);
966 int mlx5e_ethtool_get_ts_info(struct mlx5e_priv *priv,
967                               struct ethtool_ts_info *info);
968 int mlx5e_ethtool_flash_device(struct mlx5e_priv *priv,
969                                struct ethtool_flash *flash);
970
971 /* mlx5e generic netdev management API */
972 int mlx5e_netdev_init(struct net_device *netdev,
973                       struct mlx5e_priv *priv,
974                       struct mlx5_core_dev *mdev,
975                       const struct mlx5e_profile *profile,
976                       void *ppriv);
977 void mlx5e_netdev_cleanup(struct net_device *netdev, struct mlx5e_priv *priv);
978 struct net_device*
979 mlx5e_create_netdev(struct mlx5_core_dev *mdev, const struct mlx5e_profile *profile,
980                     int nch, void *ppriv);
981 int mlx5e_attach_netdev(struct mlx5e_priv *priv);
982 void mlx5e_detach_netdev(struct mlx5e_priv *priv);
983 void mlx5e_destroy_netdev(struct mlx5e_priv *priv);
984 void mlx5e_build_nic_params(struct mlx5_core_dev *mdev,
985                             struct mlx5e_params *params,
986                             u16 max_channels, u16 mtu);
987 void mlx5e_build_rq_params(struct mlx5_core_dev *mdev,
988                            struct mlx5e_params *params);
989 void mlx5e_build_rss_params(struct mlx5e_params *params);
990 u8 mlx5e_params_calculate_tx_min_inline(struct mlx5_core_dev *mdev);
991 void mlx5e_rx_dim_work(struct work_struct *work);
992 void mlx5e_tx_dim_work(struct work_struct *work);
993 #endif /* __MLX5_EN_H__ */