2 * Copyright (c) 2015-2016, Mellanox Technologies. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
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>
49 #include "mlx5_core.h"
52 #define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v)
54 #define MLX5E_MAX_NUM_TC 8
56 #define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x6
57 #define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa
58 #define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd
60 #define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE 0x1
61 #define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa
62 #define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE 0xd
64 #define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW 0x1
65 #define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE_MPW 0x3
66 #define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW 0x6
68 #define MLX5_RX_HEADROOM NET_SKB_PAD
70 #define MLX5_MPWRQ_LOG_STRIDE_SIZE 6 /* >= 6, HW restriction */
71 #define MLX5_MPWRQ_LOG_STRIDE_SIZE_CQE_COMPRESS 8 /* >= 6, HW restriction */
72 #define MLX5_MPWRQ_LOG_WQE_SZ 18
73 #define MLX5_MPWRQ_WQE_PAGE_ORDER (MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT > 0 ? \
74 MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT : 0)
75 #define MLX5_MPWRQ_PAGES_PER_WQE BIT(MLX5_MPWRQ_WQE_PAGE_ORDER)
76 #define MLX5_MPWRQ_STRIDES_PER_PAGE (MLX5_MPWRQ_NUM_STRIDES >> \
77 MLX5_MPWRQ_WQE_PAGE_ORDER)
79 #define MLX5_MTT_OCTW(npages) (ALIGN(npages, 8) / 2)
80 #define MLX5E_REQUIRED_MTTS(rqs, wqes)\
81 (rqs * wqes * ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8))
82 #define MLX5E_VALID_NUM_MTTS(num_mtts) (MLX5_MTT_OCTW(num_mtts) <= U16_MAX)
84 #define MLX5_UMR_ALIGN (2048)
85 #define MLX5_MPWRQ_SMALL_PACKET_THRESHOLD (128)
87 #define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024)
88 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10
89 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE 0x3
90 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20
91 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10
92 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20
93 #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80
94 #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW 0x2
96 #define MLX5E_LOG_INDIR_RQT_SIZE 0x7
97 #define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE)
98 #define MLX5E_MAX_NUM_CHANNELS (MLX5E_INDIR_RQT_SIZE >> 1)
99 #define MLX5E_MAX_NUM_SQS (MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC)
100 #define MLX5E_TX_CQ_POLL_BUDGET 128
101 #define MLX5E_UPDATE_STATS_INTERVAL 200 /* msecs */
102 #define MLX5E_SQ_BF_BUDGET 16
104 #define MLX5E_ICOSQ_MAX_WQEBBS \
105 (DIV_ROUND_UP(sizeof(struct mlx5e_umr_wqe), MLX5_SEND_WQE_BB))
107 #define MLX5E_XDP_MIN_INLINE (ETH_HLEN + VLAN_HLEN)
108 #define MLX5E_XDP_IHS_DS_COUNT \
109 DIV_ROUND_UP(MLX5E_XDP_MIN_INLINE - 2, MLX5_SEND_WQE_DS)
110 #define MLX5E_XDP_TX_DS_COUNT \
111 (MLX5E_XDP_IHS_DS_COUNT + \
112 (sizeof(struct mlx5e_tx_wqe) / MLX5_SEND_WQE_DS) + 1 /* SG DS */)
113 #define MLX5E_XDP_TX_WQEBBS \
114 DIV_ROUND_UP(MLX5E_XDP_TX_DS_COUNT, MLX5_SEND_WQEBB_NUM_DS)
116 #define MLX5E_NUM_MAIN_GROUPS 9
118 static inline u16 mlx5_min_rx_wqes(int wq_type, u32 wq_size)
121 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
122 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW,
125 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES,
130 static inline int mlx5_min_log_rq_size(int wq_type)
133 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
134 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW;
136 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE;
140 static inline int mlx5_max_log_rq_size(int wq_type)
143 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
144 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW;
146 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE;
151 MLX5E_INLINE_MODE_L2,
152 MLX5E_INLINE_MODE_VPORT_CONTEXT,
153 MLX5_INLINE_MODE_NOT_REQUIRED,
156 struct mlx5e_tx_wqe {
157 struct mlx5_wqe_ctrl_seg ctrl;
158 struct mlx5_wqe_eth_seg eth;
161 struct mlx5e_rx_wqe {
162 struct mlx5_wqe_srq_next_seg next;
163 struct mlx5_wqe_data_seg data;
166 struct mlx5e_umr_wqe {
167 struct mlx5_wqe_ctrl_seg ctrl;
168 struct mlx5_wqe_umr_ctrl_seg uctrl;
169 struct mlx5_mkey_seg mkc;
170 struct mlx5_wqe_data_seg data;
173 static const char mlx5e_priv_flags[][ETH_GSTRING_LEN] = {
177 enum mlx5e_priv_flag {
178 MLX5E_PFLAG_RX_CQE_BASED_MODER = (1 << 0),
181 #define MLX5E_SET_PRIV_FLAG(priv, pflag, enable) \
184 priv->pflags |= pflag; \
186 priv->pflags &= ~pflag; \
189 #ifdef CONFIG_MLX5_CORE_EN_DCB
190 #define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
193 struct mlx5e_cq_moder {
198 struct mlx5e_params {
201 u8 mpwqe_log_stride_sz;
202 u8 mpwqe_log_num_strides;
206 u8 rx_cq_period_mode;
207 bool rx_cqe_compress_admin;
208 bool rx_cqe_compress;
209 struct mlx5e_cq_moder rx_cq_moderation;
210 struct mlx5e_cq_moder tx_cq_moderation;
215 u8 tx_min_inline_mode;
217 u8 toeplitz_hash_key[40];
218 u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE];
219 bool vlan_strip_disable;
220 #ifdef CONFIG_MLX5_CORE_EN_DCB
226 struct mlx5e_tstamp {
228 struct cyclecounter cycles;
229 struct timecounter clock;
230 struct hwtstamp_config hwtstamp_config;
232 unsigned long overflow_period;
233 struct delayed_work overflow_work;
234 struct mlx5_core_dev *mdev;
235 struct ptp_clock *ptp;
236 struct ptp_clock_info ptp_info;
240 MLX5E_RQ_STATE_FLUSH,
241 MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS,
246 /* data path - accessed per cqe */
249 /* data path - accessed per napi poll */
251 struct napi_struct *napi;
252 struct mlx5_core_cq mcq;
253 struct mlx5e_channel *channel;
254 struct mlx5e_priv *priv;
256 /* cqe decompression */
257 struct mlx5_cqe64 title;
258 struct mlx5_mini_cqe8 mini_arr[MLX5_MINI_CQE_ARRAY_SIZE];
261 u16 decmprs_wqe_counter;
264 struct mlx5_wq_ctrl wq_ctrl;
265 } ____cacheline_aligned_in_smp;
268 typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq *rq,
269 struct mlx5_cqe64 *cqe);
270 typedef int (*mlx5e_fp_alloc_wqe)(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe,
273 typedef void (*mlx5e_fp_dealloc_wqe)(struct mlx5e_rq *rq, u16 ix);
275 struct mlx5e_dma_info {
280 struct mlx5e_rx_am_stats {
281 int ppms; /* packets per msec */
282 int epms; /* events per msec */
285 struct mlx5e_rx_am_sample {
287 unsigned int pkt_ctr;
291 struct mlx5e_rx_am { /* Adaptive Moderation */
293 struct mlx5e_rx_am_stats prev_stats;
294 struct mlx5e_rx_am_sample start_sample;
295 struct work_struct work;
304 /* a single cache unit is capable to serve one napi call (for non-striding rq)
305 * or a MPWQE (for striding rq).
307 #define MLX5E_CACHE_UNIT (MLX5_MPWRQ_PAGES_PER_WQE > NAPI_POLL_WEIGHT ? \
308 MLX5_MPWRQ_PAGES_PER_WQE : NAPI_POLL_WEIGHT)
309 #define MLX5E_CACHE_SIZE (2 * roundup_pow_of_two(MLX5E_CACHE_UNIT))
310 struct mlx5e_page_cache {
313 struct mlx5e_dma_info page_cache[MLX5E_CACHE_SIZE];
318 struct mlx5_wq_ll wq;
321 struct mlx5e_dma_info *dma_info;
323 struct mlx5e_mpw_info *info;
330 u32 wqe_sz; /* wqe data buffer size */
331 u8 map_dir; /* dma map direction */
336 struct net_device *netdev;
337 struct mlx5e_tstamp *tstamp;
338 struct mlx5e_rq_stats stats;
340 struct mlx5e_page_cache page_cache;
342 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
343 mlx5e_fp_alloc_wqe alloc_wqe;
344 mlx5e_fp_dealloc_wqe dealloc_wqe;
349 struct mlx5e_rx_am am; /* Adaptive Moderation */
350 struct bpf_prog *xdp_prog;
353 struct mlx5_wq_ctrl wq_ctrl;
356 u32 mpwqe_num_strides;
358 struct mlx5e_channel *channel;
359 struct mlx5e_priv *priv;
360 } ____cacheline_aligned_in_smp;
362 struct mlx5e_umr_dma_info {
365 struct mlx5e_dma_info dma_info[MLX5_MPWRQ_PAGES_PER_WQE];
366 struct mlx5e_umr_wqe wqe;
369 struct mlx5e_mpw_info {
370 struct mlx5e_umr_dma_info umr;
371 u16 consumed_strides;
372 u16 skbs_frags[MLX5_MPWRQ_PAGES_PER_WQE];
375 struct mlx5e_tx_wqe_info {
381 enum mlx5e_dma_map_type {
382 MLX5E_DMA_MAP_SINGLE,
386 struct mlx5e_sq_dma {
389 enum mlx5e_dma_map_type type;
393 MLX5E_SQ_STATE_FLUSH,
394 MLX5E_SQ_STATE_BF_ENABLE,
397 struct mlx5e_sq_wqe_info {
411 /* dirtied @completion */
416 u16 pc ____cacheline_aligned_in_smp;
421 struct mlx5e_sq_stats stats;
425 /* pointers to per tx element info: write@xmit, read@completion */
428 struct sk_buff **skb;
429 struct mlx5e_sq_dma *dma_fifo;
430 struct mlx5e_tx_wqe_info *wqe_info;
432 struct mlx5e_sq_wqe_info *ico_wqe;
434 struct mlx5e_sq_wqe_info *wqe_info;
435 struct mlx5e_dma_info *di;
441 struct mlx5_wq_cyc wq;
443 void __iomem *uar_map;
444 struct netdev_queue *txq;
451 struct mlx5e_tstamp *tstamp;
456 struct mlx5_wq_ctrl wq_ctrl;
458 struct mlx5e_channel *channel;
462 } ____cacheline_aligned_in_smp;
464 static inline bool mlx5e_sq_has_room_for(struct mlx5e_sq *sq, u16 n)
466 return (((sq->wq.sz_m1 & (sq->cc - sq->pc)) >= n) ||
471 MLX5E_CHANNEL_NAPI_SCHED = 1,
474 struct mlx5e_channel {
477 struct mlx5e_sq xdp_sq;
478 struct mlx5e_sq sq[MLX5E_MAX_NUM_TC];
479 struct mlx5e_sq icosq; /* internal control operations */
481 struct napi_struct napi;
483 struct net_device *netdev;
489 struct mlx5e_priv *priv;
494 enum mlx5e_traffic_types {
499 MLX5E_TT_IPV4_IPSEC_AH,
500 MLX5E_TT_IPV6_IPSEC_AH,
501 MLX5E_TT_IPV4_IPSEC_ESP,
502 MLX5E_TT_IPV6_IPSEC_ESP,
507 MLX5E_NUM_INDIR_TIRS = MLX5E_TT_ANY,
511 MLX5E_STATE_ASYNC_EVENTS_ENABLED,
513 MLX5E_STATE_DESTROYING,
516 struct mlx5e_vxlan_db {
517 spinlock_t lock; /* protect vxlan table */
518 struct radix_tree_root tree;
521 struct mlx5e_l2_rule {
522 u8 addr[ETH_ALEN + 2];
523 struct mlx5_flow_rule *rule;
526 struct mlx5e_flow_table {
528 struct mlx5_flow_table *t;
529 struct mlx5_flow_group **g;
532 #define MLX5E_L2_ADDR_HASH_SIZE BIT(BITS_PER_BYTE)
534 struct mlx5e_tc_table {
535 struct mlx5_flow_table *t;
537 struct rhashtable_params ht_params;
538 struct rhashtable ht;
541 struct mlx5e_vlan_table {
542 struct mlx5e_flow_table ft;
543 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
544 struct mlx5_flow_rule *active_vlans_rule[VLAN_N_VID];
545 struct mlx5_flow_rule *untagged_rule;
546 struct mlx5_flow_rule *any_vlan_rule;
547 bool filter_disabled;
550 struct mlx5e_l2_table {
551 struct mlx5e_flow_table ft;
552 struct hlist_head netdev_uc[MLX5E_L2_ADDR_HASH_SIZE];
553 struct hlist_head netdev_mc[MLX5E_L2_ADDR_HASH_SIZE];
554 struct mlx5e_l2_rule broadcast;
555 struct mlx5e_l2_rule allmulti;
556 struct mlx5e_l2_rule promisc;
557 bool broadcast_enabled;
558 bool allmulti_enabled;
559 bool promisc_enabled;
562 /* L3/L4 traffic type classifier */
563 struct mlx5e_ttc_table {
564 struct mlx5e_flow_table ft;
565 struct mlx5_flow_rule *rules[MLX5E_NUM_TT];
568 #define ARFS_HASH_SHIFT BITS_PER_BYTE
569 #define ARFS_HASH_SIZE BIT(BITS_PER_BYTE)
571 struct mlx5e_flow_table ft;
572 struct mlx5_flow_rule *default_rule;
573 struct hlist_head rules_hash[ARFS_HASH_SIZE];
584 struct mlx5e_arfs_tables {
585 struct arfs_table arfs_tables[ARFS_NUM_TYPES];
586 /* Protect aRFS rules list */
587 spinlock_t arfs_lock;
588 struct list_head rules;
590 struct workqueue_struct *wq;
595 MLX5E_VLAN_FT_LEVEL = 0,
601 struct mlx5e_ethtool_table {
602 struct mlx5_flow_table *ft;
606 #define ETHTOOL_NUM_L3_L4_FTS 7
607 #define ETHTOOL_NUM_L2_FTS 4
609 struct mlx5e_ethtool_steering {
610 struct mlx5e_ethtool_table l3_l4_ft[ETHTOOL_NUM_L3_L4_FTS];
611 struct mlx5e_ethtool_table l2_ft[ETHTOOL_NUM_L2_FTS];
612 struct list_head rules;
616 struct mlx5e_flow_steering {
617 struct mlx5_flow_namespace *ns;
618 struct mlx5e_ethtool_steering ethtool;
619 struct mlx5e_tc_table tc;
620 struct mlx5e_vlan_table vlan;
621 struct mlx5e_l2_table l2;
622 struct mlx5e_ttc_table ttc;
623 struct mlx5e_arfs_tables arfs;
633 struct mlx5e_rqt rqt;
634 struct list_head list;
642 struct mlx5e_profile {
643 void (*init)(struct mlx5_core_dev *mdev,
644 struct net_device *netdev,
645 const struct mlx5e_profile *profile, void *ppriv);
646 void (*cleanup)(struct mlx5e_priv *priv);
647 int (*init_rx)(struct mlx5e_priv *priv);
648 void (*cleanup_rx)(struct mlx5e_priv *priv);
649 int (*init_tx)(struct mlx5e_priv *priv);
650 void (*cleanup_tx)(struct mlx5e_priv *priv);
651 void (*enable)(struct mlx5e_priv *priv);
652 void (*disable)(struct mlx5e_priv *priv);
653 void (*update_stats)(struct mlx5e_priv *priv);
654 int (*max_nch)(struct mlx5_core_dev *mdev);
659 /* priv data path fields - start */
660 struct mlx5e_sq **txq_to_sq_map;
661 int channeltc_to_txq_map[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
662 struct bpf_prog *xdp_prog;
663 /* priv data path fields - end */
666 struct mutex state_lock; /* Protects Interface state */
667 struct mlx5_core_mkey umr_mkey;
668 struct mlx5e_rq drop_rq;
670 struct mlx5e_channel **channel;
671 u32 tisn[MLX5E_MAX_NUM_TC];
672 struct mlx5e_rqt indir_rqt;
673 struct mlx5e_tir indir_tir[MLX5E_NUM_INDIR_TIRS];
674 struct mlx5e_tir direct_tir[MLX5E_MAX_NUM_CHANNELS];
675 u32 tx_rates[MLX5E_MAX_NUM_SQS];
677 struct mlx5e_flow_steering fs;
678 struct mlx5e_vxlan_db vxlan;
680 struct mlx5e_params params;
681 struct workqueue_struct *wq;
682 struct work_struct update_carrier_work;
683 struct work_struct set_rx_mode_work;
684 struct work_struct tx_timeout_work;
685 struct delayed_work update_stats_work;
688 struct mlx5_core_dev *mdev;
689 struct net_device *netdev;
690 struct mlx5e_stats stats;
691 struct mlx5e_tstamp tstamp;
693 const struct mlx5e_profile *profile;
697 void mlx5e_build_ptys2ethtool_map(void);
699 void mlx5e_send_nop(struct mlx5e_sq *sq, bool notify_hw);
700 u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
701 void *accel_priv, select_queue_fallback_t fallback);
702 netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
704 void mlx5e_completion_event(struct mlx5_core_cq *mcq);
705 void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
706 int mlx5e_napi_poll(struct napi_struct *napi, int budget);
707 bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
708 int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
709 void mlx5e_free_sq_descs(struct mlx5e_sq *sq);
711 void mlx5e_page_release(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info,
713 void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
714 void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
715 bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
716 int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
717 int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
718 void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix);
719 void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix);
720 void mlx5e_post_rx_mpwqe(struct mlx5e_rq *rq);
721 void mlx5e_free_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi);
722 struct mlx5_cqe64 *mlx5e_get_cqe(struct mlx5e_cq *cq);
724 void mlx5e_rx_am(struct mlx5e_rq *rq);
725 void mlx5e_rx_am_work(struct work_struct *work);
726 struct mlx5e_cq_moder mlx5e_am_get_def_profile(u8 rx_cq_period_mode);
728 void mlx5e_update_stats(struct mlx5e_priv *priv);
730 int mlx5e_create_flow_steering(struct mlx5e_priv *priv);
731 void mlx5e_destroy_flow_steering(struct mlx5e_priv *priv);
732 void mlx5e_init_l2_addr(struct mlx5e_priv *priv);
733 void mlx5e_destroy_flow_table(struct mlx5e_flow_table *ft);
734 int mlx5e_ethtool_get_flow(struct mlx5e_priv *priv, struct ethtool_rxnfc *info,
736 int mlx5e_ethtool_get_all_flows(struct mlx5e_priv *priv,
737 struct ethtool_rxnfc *info, u32 *rule_locs);
738 int mlx5e_ethtool_flow_replace(struct mlx5e_priv *priv,
739 struct ethtool_rx_flow_spec *fs);
740 int mlx5e_ethtool_flow_remove(struct mlx5e_priv *priv,
742 void mlx5e_ethtool_init_steering(struct mlx5e_priv *priv);
743 void mlx5e_ethtool_cleanup_steering(struct mlx5e_priv *priv);
744 void mlx5e_set_rx_mode_work(struct work_struct *work);
746 void mlx5e_fill_hwstamp(struct mlx5e_tstamp *clock, u64 timestamp,
747 struct skb_shared_hwtstamps *hwts);
748 void mlx5e_timestamp_init(struct mlx5e_priv *priv);
749 void mlx5e_timestamp_cleanup(struct mlx5e_priv *priv);
750 int mlx5e_hwstamp_set(struct net_device *dev, struct ifreq *ifr);
751 int mlx5e_hwstamp_get(struct net_device *dev, struct ifreq *ifr);
752 void mlx5e_modify_rx_cqe_compression(struct mlx5e_priv *priv, bool val);
754 int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
756 int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
758 void mlx5e_enable_vlan_filter(struct mlx5e_priv *priv);
759 void mlx5e_disable_vlan_filter(struct mlx5e_priv *priv);
761 int mlx5e_modify_rqs_vsd(struct mlx5e_priv *priv, bool vsd);
763 int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz, int ix);
764 void mlx5e_build_tir_ctx_hash(void *tirc, struct mlx5e_priv *priv);
766 int mlx5e_open_locked(struct net_device *netdev);
767 int mlx5e_close_locked(struct net_device *netdev);
768 void mlx5e_build_default_indir_rqt(struct mlx5_core_dev *mdev,
769 u32 *indirection_rqt, int len,
771 int mlx5e_get_max_linkspeed(struct mlx5_core_dev *mdev, u32 *speed);
773 void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params,
776 static inline void mlx5e_tx_notify_hw(struct mlx5e_sq *sq,
777 struct mlx5_wqe_ctrl_seg *ctrl, int bf_sz)
779 u16 ofst = MLX5_BF_OFFSET + sq->bf_offset;
781 /* ensure wqe is visible to device before updating doorbell record */
784 *sq->wq.db = cpu_to_be32(sq->pc);
786 /* ensure doorbell record is visible to device before ringing the
791 __iowrite64_copy(sq->uar_map + ofst, ctrl, bf_sz);
793 mlx5_write64((__be32 *)ctrl, sq->uar_map + ofst, NULL);
794 /* flush the write-combining mapped buffer */
797 sq->bf_offset ^= sq->bf_buf_size;
800 static inline void mlx5e_cq_arm(struct mlx5e_cq *cq)
802 struct mlx5_core_cq *mcq;
805 mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, NULL, cq->wq.cc);
808 static inline u32 mlx5e_get_wqe_mtt_offset(struct mlx5e_rq *rq, u16 wqe_ix)
810 return rq->mpwqe.mtt_offset +
811 wqe_ix * ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8);
814 static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
816 return min_t(int, mdev->priv.eq_table.num_comp_vectors,
817 MLX5E_MAX_NUM_CHANNELS);
820 extern const struct ethtool_ops mlx5e_ethtool_ops;
821 #ifdef CONFIG_MLX5_CORE_EN_DCB
822 extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
823 int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
826 #ifndef CONFIG_RFS_ACCEL
827 static inline int mlx5e_arfs_create_tables(struct mlx5e_priv *priv)
832 static inline void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv) {}
834 static inline int mlx5e_arfs_enable(struct mlx5e_priv *priv)
839 static inline int mlx5e_arfs_disable(struct mlx5e_priv *priv)
844 int mlx5e_arfs_create_tables(struct mlx5e_priv *priv);
845 void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv);
846 int mlx5e_arfs_enable(struct mlx5e_priv *priv);
847 int mlx5e_arfs_disable(struct mlx5e_priv *priv);
848 int mlx5e_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb,
849 u16 rxq_index, u32 flow_id);
852 u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev);
853 int mlx5e_create_tir(struct mlx5_core_dev *mdev,
854 struct mlx5e_tir *tir, u32 *in, int inlen);
855 void mlx5e_destroy_tir(struct mlx5_core_dev *mdev,
856 struct mlx5e_tir *tir);
857 int mlx5e_create_mdev_resources(struct mlx5_core_dev *mdev);
858 void mlx5e_destroy_mdev_resources(struct mlx5_core_dev *mdev);
859 int mlx5e_refresh_tirs_self_loopback_enable(struct mlx5_core_dev *mdev);
861 struct mlx5_eswitch_rep;
862 int mlx5e_vport_rep_load(struct mlx5_eswitch *esw,
863 struct mlx5_eswitch_rep *rep);
864 void mlx5e_vport_rep_unload(struct mlx5_eswitch *esw,
865 struct mlx5_eswitch_rep *rep);
866 int mlx5e_nic_rep_load(struct mlx5_eswitch *esw, struct mlx5_eswitch_rep *rep);
867 void mlx5e_nic_rep_unload(struct mlx5_eswitch *esw,
868 struct mlx5_eswitch_rep *rep);
869 int mlx5e_add_sqs_fwd_rules(struct mlx5e_priv *priv);
870 void mlx5e_remove_sqs_fwd_rules(struct mlx5e_priv *priv);
871 int mlx5e_attr_get(struct net_device *dev, struct switchdev_attr *attr);
873 int mlx5e_create_direct_rqts(struct mlx5e_priv *priv);
874 void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt);
875 int mlx5e_create_direct_tirs(struct mlx5e_priv *priv);
876 void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv);
877 int mlx5e_create_tises(struct mlx5e_priv *priv);
878 void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv);
879 int mlx5e_close(struct net_device *netdev);
880 int mlx5e_open(struct net_device *netdev);
881 void mlx5e_update_stats_work(struct work_struct *work);
882 struct net_device *mlx5e_create_netdev(struct mlx5_core_dev *mdev,
883 const struct mlx5e_profile *profile,
885 void mlx5e_destroy_netdev(struct mlx5_core_dev *mdev, struct mlx5e_priv *priv);
886 int mlx5e_attach_netdev(struct mlx5_core_dev *mdev, struct net_device *netdev);
887 void mlx5e_detach_netdev(struct mlx5_core_dev *mdev, struct net_device *netdev);
888 struct rtnl_link_stats64 *
889 mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats);
891 #endif /* __MLX5_EN_H__ */