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 (256)
87 #define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024)
88 #define MLX5E_DEFAULT_LRO_TIMEOUT 32
89 #define MLX5E_LRO_TIMEOUT_ARR_SIZE 4
91 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10
92 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE 0x3
93 #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20
94 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10
95 #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20
96 #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80
97 #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW 0x2
99 #define MLX5E_LOG_INDIR_RQT_SIZE 0x7
100 #define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE)
101 #define MLX5E_MAX_NUM_CHANNELS (MLX5E_INDIR_RQT_SIZE >> 1)
102 #define MLX5E_MAX_NUM_SQS (MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC)
103 #define MLX5E_TX_CQ_POLL_BUDGET 128
104 #define MLX5E_UPDATE_STATS_INTERVAL 200 /* msecs */
105 #define MLX5E_SQ_BF_BUDGET 16
107 #define MLX5E_ICOSQ_MAX_WQEBBS \
108 (DIV_ROUND_UP(sizeof(struct mlx5e_umr_wqe), MLX5_SEND_WQE_BB))
110 #define MLX5E_XDP_MIN_INLINE (ETH_HLEN + VLAN_HLEN)
111 #define MLX5E_XDP_IHS_DS_COUNT \
112 DIV_ROUND_UP(MLX5E_XDP_MIN_INLINE - 2, MLX5_SEND_WQE_DS)
113 #define MLX5E_XDP_TX_DS_COUNT \
114 (MLX5E_XDP_IHS_DS_COUNT + \
115 (sizeof(struct mlx5e_tx_wqe) / MLX5_SEND_WQE_DS) + 1 /* SG DS */)
116 #define MLX5E_XDP_TX_WQEBBS \
117 DIV_ROUND_UP(MLX5E_XDP_TX_DS_COUNT, MLX5_SEND_WQEBB_NUM_DS)
119 #define MLX5E_NUM_MAIN_GROUPS 9
121 static inline u16
mlx5_min_rx_wqes(int wq_type
, u32 wq_size
)
124 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ
:
125 return min_t(u16
, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW
,
128 return min_t(u16
, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES
,
133 static inline int mlx5_min_log_rq_size(int wq_type
)
136 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ
:
137 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW
;
139 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE
;
143 static inline int mlx5_max_log_rq_size(int wq_type
)
146 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ
:
147 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW
;
149 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE
;
154 MLX5E_INLINE_MODE_L2
,
155 MLX5E_INLINE_MODE_VPORT_CONTEXT
,
156 MLX5_INLINE_MODE_NOT_REQUIRED
,
159 struct mlx5e_tx_wqe
{
160 struct mlx5_wqe_ctrl_seg ctrl
;
161 struct mlx5_wqe_eth_seg eth
;
164 struct mlx5e_rx_wqe
{
165 struct mlx5_wqe_srq_next_seg next
;
166 struct mlx5_wqe_data_seg data
;
169 struct mlx5e_umr_wqe
{
170 struct mlx5_wqe_ctrl_seg ctrl
;
171 struct mlx5_wqe_umr_ctrl_seg uctrl
;
172 struct mlx5_mkey_seg mkc
;
173 struct mlx5_wqe_data_seg data
;
176 static const char mlx5e_priv_flags
[][ETH_GSTRING_LEN
] = {
180 enum mlx5e_priv_flag
{
181 MLX5E_PFLAG_RX_CQE_BASED_MODER
= (1 << 0),
184 #define MLX5E_SET_PRIV_FLAG(priv, pflag, enable) \
187 priv->pflags |= pflag; \
189 priv->pflags &= ~pflag; \
192 #ifdef CONFIG_MLX5_CORE_EN_DCB
193 #define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
196 struct mlx5e_cq_moder
{
201 struct mlx5e_params
{
204 u8 mpwqe_log_stride_sz
;
205 u8 mpwqe_log_num_strides
;
209 u8 rx_cq_period_mode
;
210 bool rx_cqe_compress_admin
;
211 bool rx_cqe_compress
;
212 struct mlx5e_cq_moder rx_cq_moderation
;
213 struct mlx5e_cq_moder tx_cq_moderation
;
218 u8 tx_min_inline_mode
;
220 u8 toeplitz_hash_key
[40];
221 u32 indirection_rqt
[MLX5E_INDIR_RQT_SIZE
];
222 bool vlan_strip_disable
;
223 #ifdef CONFIG_MLX5_CORE_EN_DCB
230 struct mlx5e_tstamp
{
232 struct cyclecounter cycles
;
233 struct timecounter clock
;
234 struct hwtstamp_config hwtstamp_config
;
236 unsigned long overflow_period
;
237 struct delayed_work overflow_work
;
238 struct mlx5_core_dev
*mdev
;
239 struct ptp_clock
*ptp
;
240 struct ptp_clock_info ptp_info
;
244 MLX5E_RQ_STATE_ENABLED
,
245 MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS
,
250 /* data path - accessed per cqe */
253 /* data path - accessed per napi poll */
255 struct napi_struct
*napi
;
256 struct mlx5_core_cq mcq
;
257 struct mlx5e_channel
*channel
;
258 struct mlx5e_priv
*priv
;
260 /* cqe decompression */
261 struct mlx5_cqe64 title
;
262 struct mlx5_mini_cqe8 mini_arr
[MLX5_MINI_CQE_ARRAY_SIZE
];
265 u16 decmprs_wqe_counter
;
268 struct mlx5_wq_ctrl wq_ctrl
;
269 } ____cacheline_aligned_in_smp
;
272 typedef void (*mlx5e_fp_handle_rx_cqe
)(struct mlx5e_rq
*rq
,
273 struct mlx5_cqe64
*cqe
);
274 typedef int (*mlx5e_fp_alloc_wqe
)(struct mlx5e_rq
*rq
, struct mlx5e_rx_wqe
*wqe
,
277 typedef void (*mlx5e_fp_dealloc_wqe
)(struct mlx5e_rq
*rq
, u16 ix
);
279 struct mlx5e_dma_info
{
284 struct mlx5e_rx_am_stats
{
285 int ppms
; /* packets per msec */
286 int bpms
; /* bytes per msec */
287 int epms
; /* events per msec */
290 struct mlx5e_rx_am_sample
{
297 struct mlx5e_rx_am
{ /* Adaptive Moderation */
299 struct mlx5e_rx_am_stats prev_stats
;
300 struct mlx5e_rx_am_sample start_sample
;
301 struct work_struct work
;
310 /* a single cache unit is capable to serve one napi call (for non-striding rq)
311 * or a MPWQE (for striding rq).
313 #define MLX5E_CACHE_UNIT (MLX5_MPWRQ_PAGES_PER_WQE > NAPI_POLL_WEIGHT ? \
314 MLX5_MPWRQ_PAGES_PER_WQE : NAPI_POLL_WEIGHT)
315 #define MLX5E_CACHE_SIZE (2 * roundup_pow_of_two(MLX5E_CACHE_UNIT))
316 struct mlx5e_page_cache
{
319 struct mlx5e_dma_info page_cache
[MLX5E_CACHE_SIZE
];
324 struct mlx5_wq_ll wq
;
327 struct mlx5e_dma_info
*dma_info
;
329 struct mlx5e_mpw_info
*info
;
336 u32 wqe_sz
; /* wqe data buffer size */
337 u8 map_dir
; /* dma map direction */
342 struct net_device
*netdev
;
343 struct mlx5e_tstamp
*tstamp
;
344 struct mlx5e_rq_stats stats
;
346 struct mlx5e_page_cache page_cache
;
348 mlx5e_fp_handle_rx_cqe handle_rx_cqe
;
349 mlx5e_fp_alloc_wqe alloc_wqe
;
350 mlx5e_fp_dealloc_wqe dealloc_wqe
;
355 struct mlx5e_rx_am am
; /* Adaptive Moderation */
356 struct bpf_prog
*xdp_prog
;
359 struct mlx5_wq_ctrl wq_ctrl
;
362 u32 mpwqe_num_strides
;
364 struct mlx5e_channel
*channel
;
365 struct mlx5e_priv
*priv
;
366 } ____cacheline_aligned_in_smp
;
368 struct mlx5e_umr_dma_info
{
371 struct mlx5e_dma_info dma_info
[MLX5_MPWRQ_PAGES_PER_WQE
];
372 struct mlx5e_umr_wqe wqe
;
375 struct mlx5e_mpw_info
{
376 struct mlx5e_umr_dma_info umr
;
377 u16 consumed_strides
;
378 u16 skbs_frags
[MLX5_MPWRQ_PAGES_PER_WQE
];
381 struct mlx5e_tx_wqe_info
{
387 enum mlx5e_dma_map_type
{
388 MLX5E_DMA_MAP_SINGLE
,
392 struct mlx5e_sq_dma
{
395 enum mlx5e_dma_map_type type
;
399 MLX5E_SQ_STATE_ENABLED
,
400 MLX5E_SQ_STATE_BF_ENABLE
,
403 struct mlx5e_sq_wqe_info
{
417 /* dirtied @completion */
422 u16 pc ____cacheline_aligned_in_smp
;
427 struct mlx5e_sq_stats stats
;
431 /* pointers to per tx element info: write@xmit, read@completion */
434 struct sk_buff
**skb
;
435 struct mlx5e_sq_dma
*dma_fifo
;
436 struct mlx5e_tx_wqe_info
*wqe_info
;
438 struct mlx5e_sq_wqe_info
*ico_wqe
;
440 struct mlx5e_sq_wqe_info
*wqe_info
;
441 struct mlx5e_dma_info
*di
;
447 struct mlx5_wq_cyc wq
;
449 void __iomem
*uar_map
;
450 struct netdev_queue
*txq
;
457 struct mlx5e_tstamp
*tstamp
;
462 struct mlx5_wq_ctrl wq_ctrl
;
464 struct mlx5e_channel
*channel
;
468 } ____cacheline_aligned_in_smp
;
470 static inline bool mlx5e_sq_has_room_for(struct mlx5e_sq
*sq
, u16 n
)
472 return (((sq
->wq
.sz_m1
& (sq
->cc
- sq
->pc
)) >= n
) ||
477 MLX5E_CHANNEL_NAPI_SCHED
= 1,
480 struct mlx5e_channel
{
483 struct mlx5e_sq xdp_sq
;
484 struct mlx5e_sq sq
[MLX5E_MAX_NUM_TC
];
485 struct mlx5e_sq icosq
; /* internal control operations */
487 struct napi_struct napi
;
489 struct net_device
*netdev
;
495 struct mlx5e_priv
*priv
;
500 enum mlx5e_traffic_types
{
505 MLX5E_TT_IPV4_IPSEC_AH
,
506 MLX5E_TT_IPV6_IPSEC_AH
,
507 MLX5E_TT_IPV4_IPSEC_ESP
,
508 MLX5E_TT_IPV6_IPSEC_ESP
,
513 MLX5E_NUM_INDIR_TIRS
= MLX5E_TT_ANY
,
517 MLX5E_STATE_ASYNC_EVENTS_ENABLED
,
519 MLX5E_STATE_DESTROYING
,
522 struct mlx5e_vxlan_db
{
523 spinlock_t lock
; /* protect vxlan table */
524 struct radix_tree_root tree
;
527 struct mlx5e_l2_rule
{
528 u8 addr
[ETH_ALEN
+ 2];
529 struct mlx5_flow_rule
*rule
;
532 struct mlx5e_flow_table
{
534 struct mlx5_flow_table
*t
;
535 struct mlx5_flow_group
**g
;
538 #define MLX5E_L2_ADDR_HASH_SIZE BIT(BITS_PER_BYTE)
540 struct mlx5e_tc_table
{
541 struct mlx5_flow_table
*t
;
543 struct rhashtable_params ht_params
;
544 struct rhashtable ht
;
547 struct mlx5e_vlan_table
{
548 struct mlx5e_flow_table ft
;
549 unsigned long active_vlans
[BITS_TO_LONGS(VLAN_N_VID
)];
550 struct mlx5_flow_rule
*active_vlans_rule
[VLAN_N_VID
];
551 struct mlx5_flow_rule
*untagged_rule
;
552 struct mlx5_flow_rule
*any_vlan_rule
;
553 bool filter_disabled
;
556 struct mlx5e_l2_table
{
557 struct mlx5e_flow_table ft
;
558 struct hlist_head netdev_uc
[MLX5E_L2_ADDR_HASH_SIZE
];
559 struct hlist_head netdev_mc
[MLX5E_L2_ADDR_HASH_SIZE
];
560 struct mlx5e_l2_rule broadcast
;
561 struct mlx5e_l2_rule allmulti
;
562 struct mlx5e_l2_rule promisc
;
563 bool broadcast_enabled
;
564 bool allmulti_enabled
;
565 bool promisc_enabled
;
568 /* L3/L4 traffic type classifier */
569 struct mlx5e_ttc_table
{
570 struct mlx5e_flow_table ft
;
571 struct mlx5_flow_rule
*rules
[MLX5E_NUM_TT
];
574 #define ARFS_HASH_SHIFT BITS_PER_BYTE
575 #define ARFS_HASH_SIZE BIT(BITS_PER_BYTE)
577 struct mlx5e_flow_table ft
;
578 struct mlx5_flow_rule
*default_rule
;
579 struct hlist_head rules_hash
[ARFS_HASH_SIZE
];
590 struct mlx5e_arfs_tables
{
591 struct arfs_table arfs_tables
[ARFS_NUM_TYPES
];
592 /* Protect aRFS rules list */
593 spinlock_t arfs_lock
;
594 struct list_head rules
;
596 struct workqueue_struct
*wq
;
601 MLX5E_VLAN_FT_LEVEL
= 0,
607 struct mlx5e_ethtool_table
{
608 struct mlx5_flow_table
*ft
;
612 #define ETHTOOL_NUM_L3_L4_FTS 7
613 #define ETHTOOL_NUM_L2_FTS 4
615 struct mlx5e_ethtool_steering
{
616 struct mlx5e_ethtool_table l3_l4_ft
[ETHTOOL_NUM_L3_L4_FTS
];
617 struct mlx5e_ethtool_table l2_ft
[ETHTOOL_NUM_L2_FTS
];
618 struct list_head rules
;
622 struct mlx5e_flow_steering
{
623 struct mlx5_flow_namespace
*ns
;
624 struct mlx5e_ethtool_steering ethtool
;
625 struct mlx5e_tc_table tc
;
626 struct mlx5e_vlan_table vlan
;
627 struct mlx5e_l2_table l2
;
628 struct mlx5e_ttc_table ttc
;
629 struct mlx5e_arfs_tables arfs
;
639 struct mlx5e_rqt rqt
;
640 struct list_head list
;
648 struct mlx5e_profile
{
649 void (*init
)(struct mlx5_core_dev
*mdev
,
650 struct net_device
*netdev
,
651 const struct mlx5e_profile
*profile
, void *ppriv
);
652 void (*cleanup
)(struct mlx5e_priv
*priv
);
653 int (*init_rx
)(struct mlx5e_priv
*priv
);
654 void (*cleanup_rx
)(struct mlx5e_priv
*priv
);
655 int (*init_tx
)(struct mlx5e_priv
*priv
);
656 void (*cleanup_tx
)(struct mlx5e_priv
*priv
);
657 void (*enable
)(struct mlx5e_priv
*priv
);
658 void (*disable
)(struct mlx5e_priv
*priv
);
659 void (*update_stats
)(struct mlx5e_priv
*priv
);
660 int (*max_nch
)(struct mlx5_core_dev
*mdev
);
665 /* priv data path fields - start */
666 struct mlx5e_sq
**txq_to_sq_map
;
667 int channeltc_to_txq_map
[MLX5E_MAX_NUM_CHANNELS
][MLX5E_MAX_NUM_TC
];
668 struct bpf_prog
*xdp_prog
;
669 /* priv data path fields - end */
672 struct mutex state_lock
; /* Protects Interface state */
673 struct mlx5_core_mkey umr_mkey
;
674 struct mlx5e_rq drop_rq
;
676 struct mlx5e_channel
**channel
;
677 u32 tisn
[MLX5E_MAX_NUM_TC
];
678 struct mlx5e_rqt indir_rqt
;
679 struct mlx5e_tir indir_tir
[MLX5E_NUM_INDIR_TIRS
];
680 struct mlx5e_tir direct_tir
[MLX5E_MAX_NUM_CHANNELS
];
681 u32 tx_rates
[MLX5E_MAX_NUM_SQS
];
683 struct mlx5e_flow_steering fs
;
684 struct mlx5e_vxlan_db vxlan
;
686 struct mlx5e_params params
;
687 struct workqueue_struct
*wq
;
688 struct work_struct update_carrier_work
;
689 struct work_struct set_rx_mode_work
;
690 struct work_struct tx_timeout_work
;
691 struct delayed_work update_stats_work
;
694 struct mlx5_core_dev
*mdev
;
695 struct net_device
*netdev
;
696 struct mlx5e_stats stats
;
697 struct mlx5e_tstamp tstamp
;
699 const struct mlx5e_profile
*profile
;
703 void mlx5e_build_ptys2ethtool_map(void);
705 void mlx5e_send_nop(struct mlx5e_sq
*sq
, bool notify_hw
);
706 u16
mlx5e_select_queue(struct net_device
*dev
, struct sk_buff
*skb
,
707 void *accel_priv
, select_queue_fallback_t fallback
);
708 netdev_tx_t
mlx5e_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
710 void mlx5e_completion_event(struct mlx5_core_cq
*mcq
);
711 void mlx5e_cq_error_event(struct mlx5_core_cq
*mcq
, enum mlx5_event event
);
712 int mlx5e_napi_poll(struct napi_struct
*napi
, int budget
);
713 bool mlx5e_poll_tx_cq(struct mlx5e_cq
*cq
, int napi_budget
);
714 int mlx5e_poll_rx_cq(struct mlx5e_cq
*cq
, int budget
);
715 void mlx5e_free_sq_descs(struct mlx5e_sq
*sq
);
717 void mlx5e_page_release(struct mlx5e_rq
*rq
, struct mlx5e_dma_info
*dma_info
,
719 void mlx5e_handle_rx_cqe(struct mlx5e_rq
*rq
, struct mlx5_cqe64
*cqe
);
720 void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq
*rq
, struct mlx5_cqe64
*cqe
);
721 bool mlx5e_post_rx_wqes(struct mlx5e_rq
*rq
);
722 int mlx5e_alloc_rx_wqe(struct mlx5e_rq
*rq
, struct mlx5e_rx_wqe
*wqe
, u16 ix
);
723 int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq
*rq
, struct mlx5e_rx_wqe
*wqe
, u16 ix
);
724 void mlx5e_dealloc_rx_wqe(struct mlx5e_rq
*rq
, u16 ix
);
725 void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq
*rq
, u16 ix
);
726 void mlx5e_post_rx_mpwqe(struct mlx5e_rq
*rq
);
727 void mlx5e_free_rx_mpwqe(struct mlx5e_rq
*rq
, struct mlx5e_mpw_info
*wi
);
728 struct mlx5_cqe64
*mlx5e_get_cqe(struct mlx5e_cq
*cq
);
730 void mlx5e_rx_am(struct mlx5e_rq
*rq
);
731 void mlx5e_rx_am_work(struct work_struct
*work
);
732 struct mlx5e_cq_moder
mlx5e_am_get_def_profile(u8 rx_cq_period_mode
);
734 void mlx5e_update_stats(struct mlx5e_priv
*priv
);
736 int mlx5e_create_flow_steering(struct mlx5e_priv
*priv
);
737 void mlx5e_destroy_flow_steering(struct mlx5e_priv
*priv
);
738 void mlx5e_init_l2_addr(struct mlx5e_priv
*priv
);
739 void mlx5e_destroy_flow_table(struct mlx5e_flow_table
*ft
);
740 int mlx5e_ethtool_get_flow(struct mlx5e_priv
*priv
, struct ethtool_rxnfc
*info
,
742 int mlx5e_ethtool_get_all_flows(struct mlx5e_priv
*priv
,
743 struct ethtool_rxnfc
*info
, u32
*rule_locs
);
744 int mlx5e_ethtool_flow_replace(struct mlx5e_priv
*priv
,
745 struct ethtool_rx_flow_spec
*fs
);
746 int mlx5e_ethtool_flow_remove(struct mlx5e_priv
*priv
,
748 void mlx5e_ethtool_init_steering(struct mlx5e_priv
*priv
);
749 void mlx5e_ethtool_cleanup_steering(struct mlx5e_priv
*priv
);
750 void mlx5e_set_rx_mode_work(struct work_struct
*work
);
752 void mlx5e_fill_hwstamp(struct mlx5e_tstamp
*clock
, u64 timestamp
,
753 struct skb_shared_hwtstamps
*hwts
);
754 void mlx5e_timestamp_init(struct mlx5e_priv
*priv
);
755 void mlx5e_timestamp_cleanup(struct mlx5e_priv
*priv
);
756 int mlx5e_hwstamp_set(struct net_device
*dev
, struct ifreq
*ifr
);
757 int mlx5e_hwstamp_get(struct net_device
*dev
, struct ifreq
*ifr
);
758 void mlx5e_modify_rx_cqe_compression(struct mlx5e_priv
*priv
, bool val
);
760 int mlx5e_vlan_rx_add_vid(struct net_device
*dev
, __always_unused __be16 proto
,
762 int mlx5e_vlan_rx_kill_vid(struct net_device
*dev
, __always_unused __be16 proto
,
764 void mlx5e_enable_vlan_filter(struct mlx5e_priv
*priv
);
765 void mlx5e_disable_vlan_filter(struct mlx5e_priv
*priv
);
767 int mlx5e_modify_rqs_vsd(struct mlx5e_priv
*priv
, bool vsd
);
769 int mlx5e_redirect_rqt(struct mlx5e_priv
*priv
, u32 rqtn
, int sz
, int ix
);
770 void mlx5e_build_indir_tir_ctx_hash(struct mlx5e_priv
*priv
, void *tirc
,
771 enum mlx5e_traffic_types tt
);
773 int mlx5e_open_locked(struct net_device
*netdev
);
774 int mlx5e_close_locked(struct net_device
*netdev
);
775 void mlx5e_build_default_indir_rqt(struct mlx5_core_dev
*mdev
,
776 u32
*indirection_rqt
, int len
,
778 int mlx5e_get_max_linkspeed(struct mlx5_core_dev
*mdev
, u32
*speed
);
780 void mlx5e_set_rx_cq_mode_params(struct mlx5e_params
*params
,
783 static inline void mlx5e_tx_notify_hw(struct mlx5e_sq
*sq
,
784 struct mlx5_wqe_ctrl_seg
*ctrl
, int bf_sz
)
786 u16 ofst
= MLX5_BF_OFFSET
+ sq
->bf_offset
;
788 /* ensure wqe is visible to device before updating doorbell record */
791 *sq
->wq
.db
= cpu_to_be32(sq
->pc
);
793 /* ensure doorbell record is visible to device before ringing the
798 __iowrite64_copy(sq
->uar_map
+ ofst
, ctrl
, bf_sz
);
800 mlx5_write64((__be32
*)ctrl
, sq
->uar_map
+ ofst
, NULL
);
801 /* flush the write-combining mapped buffer */
804 sq
->bf_offset
^= sq
->bf_buf_size
;
807 static inline void mlx5e_cq_arm(struct mlx5e_cq
*cq
)
809 struct mlx5_core_cq
*mcq
;
812 mlx5_cq_arm(mcq
, MLX5_CQ_DB_REQ_NOT
, mcq
->uar
->map
, NULL
, cq
->wq
.cc
);
815 static inline u32
mlx5e_get_wqe_mtt_offset(struct mlx5e_rq
*rq
, u16 wqe_ix
)
817 return rq
->mpwqe
.mtt_offset
+
818 wqe_ix
* ALIGN(MLX5_MPWRQ_PAGES_PER_WQE
, 8);
821 static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev
*mdev
)
823 return min_t(int, mdev
->priv
.eq_table
.num_comp_vectors
,
824 MLX5E_MAX_NUM_CHANNELS
);
827 extern const struct ethtool_ops mlx5e_ethtool_ops
;
828 #ifdef CONFIG_MLX5_CORE_EN_DCB
829 extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops
;
830 int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv
*priv
, struct ieee_ets
*ets
);
833 #ifndef CONFIG_RFS_ACCEL
834 static inline int mlx5e_arfs_create_tables(struct mlx5e_priv
*priv
)
839 static inline void mlx5e_arfs_destroy_tables(struct mlx5e_priv
*priv
) {}
841 static inline int mlx5e_arfs_enable(struct mlx5e_priv
*priv
)
846 static inline int mlx5e_arfs_disable(struct mlx5e_priv
*priv
)
851 int mlx5e_arfs_create_tables(struct mlx5e_priv
*priv
);
852 void mlx5e_arfs_destroy_tables(struct mlx5e_priv
*priv
);
853 int mlx5e_arfs_enable(struct mlx5e_priv
*priv
);
854 int mlx5e_arfs_disable(struct mlx5e_priv
*priv
);
855 int mlx5e_rx_flow_steer(struct net_device
*dev
, const struct sk_buff
*skb
,
856 u16 rxq_index
, u32 flow_id
);
859 u16
mlx5e_get_max_inline_cap(struct mlx5_core_dev
*mdev
);
860 int mlx5e_create_tir(struct mlx5_core_dev
*mdev
,
861 struct mlx5e_tir
*tir
, u32
*in
, int inlen
);
862 void mlx5e_destroy_tir(struct mlx5_core_dev
*mdev
,
863 struct mlx5e_tir
*tir
);
864 int mlx5e_create_mdev_resources(struct mlx5_core_dev
*mdev
);
865 void mlx5e_destroy_mdev_resources(struct mlx5_core_dev
*mdev
);
866 int mlx5e_refresh_tirs_self_loopback_enable(struct mlx5_core_dev
*mdev
);
868 struct mlx5_eswitch_rep
;
869 int mlx5e_vport_rep_load(struct mlx5_eswitch
*esw
,
870 struct mlx5_eswitch_rep
*rep
);
871 void mlx5e_vport_rep_unload(struct mlx5_eswitch
*esw
,
872 struct mlx5_eswitch_rep
*rep
);
873 int mlx5e_nic_rep_load(struct mlx5_eswitch
*esw
, struct mlx5_eswitch_rep
*rep
);
874 void mlx5e_nic_rep_unload(struct mlx5_eswitch
*esw
,
875 struct mlx5_eswitch_rep
*rep
);
876 int mlx5e_add_sqs_fwd_rules(struct mlx5e_priv
*priv
);
877 void mlx5e_remove_sqs_fwd_rules(struct mlx5e_priv
*priv
);
878 int mlx5e_attr_get(struct net_device
*dev
, struct switchdev_attr
*attr
);
879 void mlx5e_handle_rx_cqe_rep(struct mlx5e_rq
*rq
, struct mlx5_cqe64
*cqe
);
881 int mlx5e_create_direct_rqts(struct mlx5e_priv
*priv
);
882 void mlx5e_destroy_rqt(struct mlx5e_priv
*priv
, struct mlx5e_rqt
*rqt
);
883 int mlx5e_create_direct_tirs(struct mlx5e_priv
*priv
);
884 void mlx5e_destroy_direct_tirs(struct mlx5e_priv
*priv
);
885 int mlx5e_create_tises(struct mlx5e_priv
*priv
);
886 void mlx5e_cleanup_nic_tx(struct mlx5e_priv
*priv
);
887 int mlx5e_close(struct net_device
*netdev
);
888 int mlx5e_open(struct net_device
*netdev
);
889 void mlx5e_update_stats_work(struct work_struct
*work
);
890 struct net_device
*mlx5e_create_netdev(struct mlx5_core_dev
*mdev
,
891 const struct mlx5e_profile
*profile
,
893 void mlx5e_destroy_netdev(struct mlx5_core_dev
*mdev
, struct mlx5e_priv
*priv
);
894 int mlx5e_attach_netdev(struct mlx5_core_dev
*mdev
, struct net_device
*netdev
);
895 void mlx5e_detach_netdev(struct mlx5_core_dev
*mdev
, struct net_device
*netdev
);
896 struct rtnl_link_stats64
*
897 mlx5e_get_stats(struct net_device
*dev
, struct rtnl_link_stats64
*stats
);
898 u32
mlx5e_choose_lro_timeout(struct mlx5_core_dev
*mdev
, u32 wanted_timeout
);
900 #endif /* __MLX5_EN_H__ */