xref: /freebsd/sys/dev/mlx5/mlx5_en/en.h (revision 85732ac8)
1 /*-
2  * Copyright (c) 2015 Mellanox Technologies. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS `AS IS' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  * $FreeBSD$
26  */
27 
28 #ifndef _MLX5_EN_H_
29 #define	_MLX5_EN_H_
30 
31 #include <linux/kmod.h>
32 #include <linux/page.h>
33 #include <linux/slab.h>
34 #include <linux/if_vlan.h>
35 #include <linux/if_ether.h>
36 #include <linux/vmalloc.h>
37 #include <linux/moduleparam.h>
38 #include <linux/delay.h>
39 #include <linux/netdevice.h>
40 #include <linux/etherdevice.h>
41 
42 #include <netinet/in_systm.h>
43 #include <netinet/in.h>
44 #include <netinet/if_ether.h>
45 #include <netinet/ip.h>
46 #include <netinet/ip6.h>
47 #include <netinet/tcp.h>
48 #include <netinet/tcp_lro.h>
49 #include <netinet/udp.h>
50 #include <net/ethernet.h>
51 #include <sys/buf_ring.h>
52 #include <sys/kthread.h>
53 
54 #include "opt_rss.h"
55 
56 #ifdef	RSS
57 #include <net/rss_config.h>
58 #include <netinet/in_rss.h>
59 #endif
60 
61 #include <machine/bus.h>
62 
63 #include <dev/mlx5/driver.h>
64 #include <dev/mlx5/qp.h>
65 #include <dev/mlx5/cq.h>
66 #include <dev/mlx5/port.h>
67 #include <dev/mlx5/vport.h>
68 #include <dev/mlx5/diagnostics.h>
69 
70 #include <dev/mlx5/mlx5_core/wq.h>
71 #include <dev/mlx5/mlx5_core/transobj.h>
72 #include <dev/mlx5/mlx5_core/mlx5_core.h>
73 
74 #define	IEEE_8021QAZ_MAX_TCS	8
75 
76 #define	MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE                0x7
77 #define	MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE                0xa
78 #define	MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE                0xe
79 
80 #define	MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE                0x7
81 #define	MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE                0xa
82 #define	MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE                0xe
83 
84 #define	MLX5E_MAX_RX_SEGS 7
85 
86 #ifndef MLX5E_MAX_RX_BYTES
87 #define	MLX5E_MAX_RX_BYTES MCLBYTES
88 #endif
89 
90 #if (MLX5E_MAX_RX_SEGS == 1)
91 /* FreeBSD HW LRO is limited by 16KB - the size of max mbuf */
92 #define	MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ                 MJUM16BYTES
93 #else
94 #define	MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ \
95     MIN(65535, MLX5E_MAX_RX_SEGS * MLX5E_MAX_RX_BYTES)
96 #endif
97 #define	MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC      0x10
98 #define	MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE	0x3
99 #define	MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS      0x20
100 #define	MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC      0x10
101 #define	MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS      0x20
102 #define	MLX5E_PARAMS_DEFAULT_MIN_RX_WQES                0x80
103 #define	MLX5E_PARAMS_DEFAULT_RX_HASH_LOG_TBL_SZ         0x7
104 #define	MLX5E_CACHELINE_SIZE CACHE_LINE_SIZE
105 #define	MLX5E_HW2SW_MTU(hwmtu) \
106     ((hwmtu) - (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN + ETHER_CRC_LEN))
107 #define	MLX5E_SW2HW_MTU(swmtu) \
108     ((swmtu) + (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN + ETHER_CRC_LEN))
109 #define	MLX5E_SW2MB_MTU(swmtu) \
110     (MLX5E_SW2HW_MTU(swmtu) + MLX5E_NET_IP_ALIGN)
111 #define	MLX5E_MTU_MIN		72	/* Min MTU allowed by the kernel */
112 #define	MLX5E_MTU_MAX		MIN(ETHERMTU_JUMBO, MJUM16BYTES)	/* Max MTU of Ethernet
113 									 * jumbo frames */
114 
115 #define	MLX5E_BUDGET_MAX	8192	/* RX and TX */
116 #define	MLX5E_RX_BUDGET_MAX	256
117 #define	MLX5E_SQ_BF_BUDGET	16
118 #define	MLX5E_SQ_TX_QUEUE_SIZE	4096	/* SQ drbr queue size */
119 
120 #define	MLX5E_MAX_TX_NUM_TC	8	/* units */
121 #define	MLX5E_MAX_TX_HEADER	128	/* bytes */
122 #define	MLX5E_MAX_TX_PAYLOAD_SIZE	65536	/* bytes */
123 #define	MLX5E_MAX_TX_MBUF_SIZE	65536	/* bytes */
124 #define	MLX5E_MAX_TX_MBUF_FRAGS	\
125     ((MLX5_SEND_WQE_MAX_WQEBBS * MLX5_SEND_WQEBB_NUM_DS) - \
126     (MLX5E_MAX_TX_HEADER / MLX5_SEND_WQE_DS) - \
127     1 /* the maximum value of the DS counter is 0x3F and not 0x40 */)	/* units */
128 #define	MLX5E_MAX_TX_INLINE \
129   (MLX5E_MAX_TX_HEADER - sizeof(struct mlx5e_tx_wqe) + \
130   sizeof(((struct mlx5e_tx_wqe *)0)->eth.inline_hdr_start))	/* bytes */
131 
132 #define	MLX5E_100MB (100000)
133 #define	MLX5E_1GB   (1000000)
134 
135 MALLOC_DECLARE(M_MLX5EN);
136 
137 struct mlx5_core_dev;
138 struct mlx5e_cq;
139 
140 typedef void (mlx5e_cq_comp_t)(struct mlx5_core_cq *);
141 
142 #define	MLX5E_STATS_COUNT(a,b,c,d) a
143 #define	MLX5E_STATS_VAR(a,b,c,d) b;
144 #define	MLX5E_STATS_DESC(a,b,c,d) c, d,
145 
146 #define	MLX5E_VPORT_STATS(m)						\
147   /* HW counters */							\
148   m(+1, u64 rx_packets, "rx_packets", "Received packets")		\
149   m(+1, u64 rx_bytes, "rx_bytes", "Received bytes")			\
150   m(+1, u64 tx_packets, "tx_packets", "Transmitted packets")		\
151   m(+1, u64 tx_bytes, "tx_bytes", "Transmitted bytes")			\
152   m(+1, u64 rx_error_packets, "rx_error_packets", "Received error packets") \
153   m(+1, u64 rx_error_bytes, "rx_error_bytes", "Received error bytes")	\
154   m(+1, u64 tx_error_packets, "tx_error_packets", "Transmitted error packets") \
155   m(+1, u64 tx_error_bytes, "tx_error_bytes", "Transmitted error bytes") \
156   m(+1, u64 rx_unicast_packets, "rx_unicast_packets", "Received unicast packets") \
157   m(+1, u64 rx_unicast_bytes, "rx_unicast_bytes", "Received unicast bytes") \
158   m(+1, u64 tx_unicast_packets, "tx_unicast_packets", "Transmitted unicast packets") \
159   m(+1, u64 tx_unicast_bytes, "tx_unicast_bytes", "Transmitted unicast bytes") \
160   m(+1, u64 rx_multicast_packets, "rx_multicast_packets", "Received multicast packets") \
161   m(+1, u64 rx_multicast_bytes, "rx_multicast_bytes", "Received multicast bytes") \
162   m(+1, u64 tx_multicast_packets, "tx_multicast_packets", "Transmitted multicast packets") \
163   m(+1, u64 tx_multicast_bytes, "tx_multicast_bytes", "Transmitted multicast bytes") \
164   m(+1, u64 rx_broadcast_packets, "rx_broadcast_packets", "Received broadcast packets") \
165   m(+1, u64 rx_broadcast_bytes, "rx_broadcast_bytes", "Received broadcast bytes") \
166   m(+1, u64 tx_broadcast_packets, "tx_broadcast_packets", "Transmitted broadcast packets") \
167   m(+1, u64 tx_broadcast_bytes, "tx_broadcast_bytes", "Transmitted broadcast bytes") \
168   m(+1, u64 rx_out_of_buffer, "rx_out_of_buffer", "Receive out of buffer, no recv wqes events") \
169   /* SW counters */							\
170   m(+1, u64 tso_packets, "tso_packets", "Transmitted TSO packets")	\
171   m(+1, u64 tso_bytes, "tso_bytes", "Transmitted TSO bytes")		\
172   m(+1, u64 lro_packets, "lro_packets", "Received LRO packets")		\
173   m(+1, u64 lro_bytes, "lro_bytes", "Received LRO bytes")		\
174   m(+1, u64 sw_lro_queued, "sw_lro_queued", "Packets queued for SW LRO")	\
175   m(+1, u64 sw_lro_flushed, "sw_lro_flushed", "Packets flushed from SW LRO")	\
176   m(+1, u64 rx_csum_good, "rx_csum_good", "Received checksum valid packets") \
177   m(+1, u64 rx_csum_none, "rx_csum_none", "Received no checksum packets") \
178   m(+1, u64 tx_csum_offload, "tx_csum_offload", "Transmit checksum offload packets") \
179   m(+1, u64 tx_queue_dropped, "tx_queue_dropped", "Transmit queue dropped") \
180   m(+1, u64 tx_defragged, "tx_defragged", "Transmit queue defragged") \
181   m(+1, u64 rx_wqe_err, "rx_wqe_err", "Receive WQE errors") \
182   m(+1, u64 tx_jumbo_packets, "tx_jumbo_packets", "TX packets greater than 1518 octets")
183 
184 #define	MLX5E_VPORT_STATS_NUM (0 MLX5E_VPORT_STATS(MLX5E_STATS_COUNT))
185 
186 struct mlx5e_vport_stats {
187 	struct	sysctl_ctx_list ctx;
188 	u64	arg [0];
189 	MLX5E_VPORT_STATS(MLX5E_STATS_VAR)
190 	u32	rx_out_of_buffer_prev;
191 };
192 
193 #define	MLX5E_PPORT_IEEE802_3_STATS(m)					\
194   m(+1, u64 frames_tx, "frames_tx", "Frames transmitted")		\
195   m(+1, u64 frames_rx, "frames_rx", "Frames received")			\
196   m(+1, u64 check_seq_err, "check_seq_err", "Sequence errors")		\
197   m(+1, u64 alignment_err, "alignment_err", "Alignment errors")	\
198   m(+1, u64 octets_tx, "octets_tx", "Bytes transmitted")		\
199   m(+1, u64 octets_received, "octets_received", "Bytes received")	\
200   m(+1, u64 multicast_xmitted, "multicast_xmitted", "Multicast transmitted") \
201   m(+1, u64 broadcast_xmitted, "broadcast_xmitted", "Broadcast transmitted") \
202   m(+1, u64 multicast_rx, "multicast_rx", "Multicast received")	\
203   m(+1, u64 broadcast_rx, "broadcast_rx", "Broadcast received")	\
204   m(+1, u64 in_range_len_errors, "in_range_len_errors", "In range length errors") \
205   m(+1, u64 out_of_range_len, "out_of_range_len", "Out of range length errors") \
206   m(+1, u64 too_long_errors, "too_long_errors", "Too long errors")	\
207   m(+1, u64 symbol_err, "symbol_err", "Symbol errors")			\
208   m(+1, u64 mac_control_tx, "mac_control_tx", "MAC control transmitted") \
209   m(+1, u64 mac_control_rx, "mac_control_rx", "MAC control received")	\
210   m(+1, u64 unsupported_op_rx, "unsupported_op_rx", "Unsupported operation received") \
211   m(+1, u64 pause_ctrl_rx, "pause_ctrl_rx", "Pause control received")	\
212   m(+1, u64 pause_ctrl_tx, "pause_ctrl_tx", "Pause control transmitted")
213 
214 #define	MLX5E_PPORT_RFC2819_STATS(m)					\
215   m(+1, u64 drop_events, "drop_events", "Dropped events")		\
216   m(+1, u64 octets, "octets", "Octets")					\
217   m(+1, u64 pkts, "pkts", "Packets")					\
218   m(+1, u64 broadcast_pkts, "broadcast_pkts", "Broadcast packets")	\
219   m(+1, u64 multicast_pkts, "multicast_pkts", "Multicast packets")	\
220   m(+1, u64 crc_align_errors, "crc_align_errors", "CRC alignment errors") \
221   m(+1, u64 undersize_pkts, "undersize_pkts", "Undersized packets")	\
222   m(+1, u64 oversize_pkts, "oversize_pkts", "Oversized packets")	\
223   m(+1, u64 fragments, "fragments", "Fragments")			\
224   m(+1, u64 jabbers, "jabbers", "Jabbers")				\
225   m(+1, u64 collisions, "collisions", "Collisions")
226 
227 #define	MLX5E_PPORT_RFC2819_STATS_DEBUG(m)				\
228   m(+1, u64 p64octets, "p64octets", "Bytes")				\
229   m(+1, u64 p65to127octets, "p65to127octets", "Bytes")			\
230   m(+1, u64 p128to255octets, "p128to255octets", "Bytes")		\
231   m(+1, u64 p256to511octets, "p256to511octets", "Bytes")		\
232   m(+1, u64 p512to1023octets, "p512to1023octets", "Bytes")		\
233   m(+1, u64 p1024to1518octets, "p1024to1518octets", "Bytes")		\
234   m(+1, u64 p1519to2047octets, "p1519to2047octets", "Bytes")		\
235   m(+1, u64 p2048to4095octets, "p2048to4095octets", "Bytes")		\
236   m(+1, u64 p4096to8191octets, "p4096to8191octets", "Bytes")		\
237   m(+1, u64 p8192to10239octets, "p8192to10239octets", "Bytes")
238 
239 #define	MLX5E_PPORT_RFC2863_STATS_DEBUG(m)				\
240   m(+1, u64 in_octets, "in_octets", "In octets")			\
241   m(+1, u64 in_ucast_pkts, "in_ucast_pkts", "In unicast packets")	\
242   m(+1, u64 in_discards, "in_discards", "In discards")			\
243   m(+1, u64 in_errors, "in_errors", "In errors")			\
244   m(+1, u64 in_unknown_protos, "in_unknown_protos", "In unknown protocols") \
245   m(+1, u64 out_octets, "out_octets", "Out octets")			\
246   m(+1, u64 out_ucast_pkts, "out_ucast_pkts", "Out unicast packets")	\
247   m(+1, u64 out_discards, "out_discards", "Out discards")		\
248   m(+1, u64 out_errors, "out_errors", "Out errors")			\
249   m(+1, u64 in_multicast_pkts, "in_multicast_pkts", "In multicast packets") \
250   m(+1, u64 in_broadcast_pkts, "in_broadcast_pkts", "In broadcast packets") \
251   m(+1, u64 out_multicast_pkts, "out_multicast_pkts", "Out multicast packets") \
252   m(+1, u64 out_broadcast_pkts, "out_broadcast_pkts", "Out broadcast packets")
253 
254 #define	MLX5E_PPORT_PHYSICAL_LAYER_STATS_DEBUG(m)                                    		\
255   m(+1, u64 time_since_last_clear, "time_since_last_clear",				\
256 			"Time since the last counters clear event (msec)")		\
257   m(+1, u64 symbol_errors, "symbol_errors", "Symbol errors")				\
258   m(+1, u64 sync_headers_errors, "sync_headers_errors", "Sync header error counter")	\
259   m(+1, u64 bip_errors_lane0, "edpl_bip_errors_lane0",					\
260 			"Indicates the number of PRBS errors on lane 0")		\
261   m(+1, u64 bip_errors_lane1, "edpl_bip_errors_lane1",					\
262 			"Indicates the number of PRBS errors on lane 1")		\
263   m(+1, u64 bip_errors_lane2, "edpl_bip_errors_lane2",					\
264 			"Indicates the number of PRBS errors on lane 2")		\
265   m(+1, u64 bip_errors_lane3, "edpl_bip_errors_lane3",					\
266 			"Indicates the number of PRBS errors on lane 3")		\
267   m(+1, u64 fc_corrected_blocks_lane0, "fc_corrected_blocks_lane0",			\
268 			"FEC correctable block counter lane 0")				\
269   m(+1, u64 fc_corrected_blocks_lane1, "fc_corrected_blocks_lane1",			\
270 			"FEC correctable block counter lane 1")				\
271   m(+1, u64 fc_corrected_blocks_lane2, "fc_corrected_blocks_lane2",			\
272 			"FEC correctable block counter lane 2")				\
273   m(+1, u64 fc_corrected_blocks_lane3, "fc_corrected_blocks_lane3",			\
274 			"FEC correctable block counter lane 3")				\
275   m(+1, u64 rs_corrected_blocks, "rs_corrected_blocks",					\
276 			"FEC correcable block counter")					\
277   m(+1, u64 rs_uncorrectable_blocks, "rs_uncorrectable_blocks",				\
278 			"FEC uncorrecable block counter")				\
279   m(+1, u64 rs_no_errors_blocks, "rs_no_errors_blocks",					\
280 			"The number of RS-FEC blocks received that had no errors")	\
281   m(+1, u64 rs_single_error_blocks, "rs_single_error_blocks",				\
282 			"The number of corrected RS-FEC blocks received that had"	\
283 			"exactly 1 error symbol")					\
284   m(+1, u64 rs_corrected_symbols_total, "rs_corrected_symbols_total",			\
285 			"Port FEC corrected symbol counter")				\
286   m(+1, u64 rs_corrected_symbols_lane0, "rs_corrected_symbols_lane0",			\
287 			"FEC corrected symbol counter lane 0")				\
288   m(+1, u64 rs_corrected_symbols_lane1, "rs_corrected_symbols_lane1",			\
289 			"FEC corrected symbol counter lane 1")				\
290   m(+1, u64 rs_corrected_symbols_lane2, "rs_corrected_symbols_lane2",			\
291 			"FEC corrected symbol counter lane 2")				\
292   m(+1, u64 rs_corrected_symbols_lane3, "rs_corrected_symbols_lane3",			\
293 			"FEC corrected symbol counter lane 3")
294 
295 /* Per priority statistics for PFC */
296 #define	MLX5E_PPORT_PER_PRIO_STATS_SUB(m,n,p)			\
297   m(n, p, +1, u64, rx_octets, "rx_octets", "Received octets")		\
298   m(n, p, +1, u64, reserved_0, "reserved_0", "Reserved")		\
299   m(n, p, +1, u64, reserved_1, "reserved_1", "Reserved")		\
300   m(n, p, +1, u64, reserved_2, "reserved_2", "Reserved")		\
301   m(n, p, +1, u64, rx_frames, "rx_frames", "Received frames")		\
302   m(n, p, +1, u64, tx_octets, "tx_octets", "Transmitted octets")	\
303   m(n, p, +1, u64, reserved_3, "reserved_3", "Reserved")		\
304   m(n, p, +1, u64, reserved_4, "reserved_4", "Reserved")		\
305   m(n, p, +1, u64, reserved_5, "reserved_5", "Reserved")		\
306   m(n, p, +1, u64, tx_frames, "tx_frames", "Transmitted frames")	\
307   m(n, p, +1, u64, rx_pause, "rx_pause", "Received pause frames")	\
308   m(n, p, +1, u64, rx_pause_duration, "rx_pause_duration",		\
309 	"Received pause duration")					\
310   m(n, p, +1, u64, tx_pause, "tx_pause", "Transmitted pause frames")	\
311   m(n, p, +1, u64, tx_pause_duration, "tx_pause_duration",		\
312 	"Transmitted pause duration")					\
313   m(n, p, +1, u64, rx_pause_transition, "rx_pause_transition",		\
314 	"Received pause transitions")					\
315   m(n, p, +1, u64, rx_discards, "rx_discards", "Discarded received frames") \
316   m(n, p, +1, u64, device_stall_minor_watermark,			\
317 	"device_stall_minor_watermark", "Device stall minor watermark")	\
318   m(n, p, +1, u64, device_stall_critical_watermark,			\
319 	"device_stall_critical_watermark", "Device stall critical watermark")
320 
321 #define	MLX5E_PPORT_PER_PRIO_STATS_PREFIX(m,p,c,t,f,s,d) \
322   m(c, t pri_##p##_##f, "prio" #p "_" s, "Priority " #p " - " d)
323 
324 #define	MLX5E_PPORT_PER_PRIO_STATS_NUM_PRIO 8
325 
326 #define	MLX5E_PPORT_PER_PRIO_STATS(m) \
327   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,0) \
328   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,1) \
329   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,2) \
330   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,3) \
331   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,4) \
332   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,5) \
333   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,6) \
334   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,7)
335 
336 /*
337  * Make sure to update mlx5e_update_pport_counters()
338  * when adding a new MLX5E_PPORT_STATS block
339  */
340 #define	MLX5E_PPORT_STATS(m)			\
341   MLX5E_PPORT_PER_PRIO_STATS(m)		\
342   MLX5E_PPORT_IEEE802_3_STATS(m)		\
343   MLX5E_PPORT_RFC2819_STATS(m)
344 
345 #define	MLX5E_PORT_STATS_DEBUG(m)		\
346   MLX5E_PPORT_RFC2819_STATS_DEBUG(m)		\
347   MLX5E_PPORT_RFC2863_STATS_DEBUG(m)		\
348   MLX5E_PPORT_PHYSICAL_LAYER_STATS_DEBUG(m)
349 
350 #define	MLX5E_PPORT_IEEE802_3_STATS_NUM \
351   (0 MLX5E_PPORT_IEEE802_3_STATS(MLX5E_STATS_COUNT))
352 #define	MLX5E_PPORT_RFC2819_STATS_NUM \
353   (0 MLX5E_PPORT_RFC2819_STATS(MLX5E_STATS_COUNT))
354 #define	MLX5E_PPORT_STATS_NUM \
355   (0 MLX5E_PPORT_STATS(MLX5E_STATS_COUNT))
356 
357 #define	MLX5E_PPORT_PER_PRIO_STATS_NUM \
358   (0 MLX5E_PPORT_PER_PRIO_STATS(MLX5E_STATS_COUNT))
359 #define	MLX5E_PPORT_RFC2819_STATS_DEBUG_NUM \
360   (0 MLX5E_PPORT_RFC2819_STATS_DEBUG(MLX5E_STATS_COUNT))
361 #define	MLX5E_PPORT_RFC2863_STATS_DEBUG_NUM \
362   (0 MLX5E_PPORT_RFC2863_STATS_DEBUG(MLX5E_STATS_COUNT))
363 #define	MLX5E_PPORT_PHYSICAL_LAYER_STATS_DEBUG_NUM \
364   (0 MLX5E_PPORT_PHYSICAL_LAYER_STATS_DEBUG(MLX5E_STATS_COUNT))
365 #define	MLX5E_PORT_STATS_DEBUG_NUM \
366   (0 MLX5E_PORT_STATS_DEBUG(MLX5E_STATS_COUNT))
367 
368 struct mlx5e_pport_stats {
369 	struct	sysctl_ctx_list ctx;
370 	u64	arg [0];
371 	MLX5E_PPORT_STATS(MLX5E_STATS_VAR)
372 };
373 
374 struct mlx5e_port_stats_debug {
375 	struct	sysctl_ctx_list ctx;
376 	u64	arg [0];
377 	MLX5E_PORT_STATS_DEBUG(MLX5E_STATS_VAR)
378 };
379 
380 #define	MLX5E_RQ_STATS(m)					\
381   m(+1, u64 packets, "packets", "Received packets")		\
382   m(+1, u64 bytes, "bytes", "Received bytes")			\
383   m(+1, u64 csum_none, "csum_none", "Received packets")		\
384   m(+1, u64 lro_packets, "lro_packets", "Received LRO packets")	\
385   m(+1, u64 lro_bytes, "lro_bytes", "Received LRO bytes")	\
386   m(+1, u64 sw_lro_queued, "sw_lro_queued", "Packets queued for SW LRO")	\
387   m(+1, u64 sw_lro_flushed, "sw_lro_flushed", "Packets flushed from SW LRO")	\
388   m(+1, u64 wqe_err, "wqe_err", "Received packets")
389 
390 #define	MLX5E_RQ_STATS_NUM (0 MLX5E_RQ_STATS(MLX5E_STATS_COUNT))
391 
392 struct mlx5e_rq_stats {
393 	struct	sysctl_ctx_list ctx;
394 	u64	arg [0];
395 	MLX5E_RQ_STATS(MLX5E_STATS_VAR)
396 };
397 
398 #define	MLX5E_SQ_STATS(m)						\
399   m(+1, u64 packets, "packets", "Transmitted packets")			\
400   m(+1, u64 bytes, "bytes", "Transmitted bytes")			\
401   m(+1, u64 tso_packets, "tso_packets", "Transmitted packets")		\
402   m(+1, u64 tso_bytes, "tso_bytes", "Transmitted bytes")		\
403   m(+1, u64 csum_offload_none, "csum_offload_none", "Transmitted packets")	\
404   m(+1, u64 defragged, "defragged", "Transmitted packets")		\
405   m(+1, u64 dropped, "dropped", "Transmitted packets")			\
406   m(+1, u64 nop, "nop", "Transmitted packets")
407 
408 #define	MLX5E_SQ_STATS_NUM (0 MLX5E_SQ_STATS(MLX5E_STATS_COUNT))
409 
410 struct mlx5e_sq_stats {
411 	struct	sysctl_ctx_list ctx;
412 	u64	arg [0];
413 	MLX5E_SQ_STATS(MLX5E_STATS_VAR)
414 };
415 
416 struct mlx5e_stats {
417 	struct mlx5e_vport_stats vport;
418 	struct mlx5e_pport_stats pport;
419 	struct mlx5e_port_stats_debug port_stats_debug;
420 };
421 
422 struct mlx5e_rq_param {
423 	u32	rqc [MLX5_ST_SZ_DW(rqc)];
424 	struct mlx5_wq_param wq;
425 };
426 
427 struct mlx5e_sq_param {
428 	u32	sqc [MLX5_ST_SZ_DW(sqc)];
429 	struct mlx5_wq_param wq;
430 };
431 
432 struct mlx5e_cq_param {
433 	u32	cqc [MLX5_ST_SZ_DW(cqc)];
434 	struct mlx5_wq_param wq;
435 };
436 
437 struct mlx5e_params {
438 	u8	log_sq_size;
439 	u8	log_rq_size;
440 	u16	num_channels;
441 	u8	default_vlan_prio;
442 	u8	num_tc;
443 	u8	rx_cq_moderation_mode;
444 	u8	tx_cq_moderation_mode;
445 	u16	rx_cq_moderation_usec;
446 	u16	rx_cq_moderation_pkts;
447 	u16	tx_cq_moderation_usec;
448 	u16	tx_cq_moderation_pkts;
449 	u16	min_rx_wqes;
450 	bool	hw_lro_en;
451 	bool	cqe_zipping_en;
452 	u32	lro_wqe_sz;
453 	u16	rx_hash_log_tbl_sz;
454 	u32	tx_pauseframe_control __aligned(4);
455 	u32	rx_pauseframe_control __aligned(4);
456 	u32	tx_priority_flow_control __aligned(4);
457 	u32	rx_priority_flow_control __aligned(4);
458 	u16	tx_max_inline;
459 	u8	tx_min_inline_mode;
460 	u8	channels_rsss;
461 };
462 
463 #define	MLX5E_PARAMS(m)							\
464   m(+1, u64 tx_queue_size_max, "tx_queue_size_max", "Max send queue size") \
465   m(+1, u64 rx_queue_size_max, "rx_queue_size_max", "Max receive queue size") \
466   m(+1, u64 tx_queue_size, "tx_queue_size", "Default send queue size")	\
467   m(+1, u64 rx_queue_size, "rx_queue_size", "Default receive queue size") \
468   m(+1, u64 channels, "channels", "Default number of channels")		\
469   m(+1, u64 channels_rsss, "channels_rsss", "Default channels receive side scaling stride") \
470   m(+1, u64 coalesce_usecs_max, "coalesce_usecs_max", "Maximum usecs for joining packets") \
471   m(+1, u64 coalesce_pkts_max, "coalesce_pkts_max", "Maximum packets to join") \
472   m(+1, u64 rx_coalesce_usecs, "rx_coalesce_usecs", "Limit in usec for joining rx packets") \
473   m(+1, u64 rx_coalesce_pkts, "rx_coalesce_pkts", "Maximum number of rx packets to join") \
474   m(+1, u64 rx_coalesce_mode, "rx_coalesce_mode", "0: EQE mode 1: CQE mode") \
475   m(+1, u64 tx_coalesce_usecs, "tx_coalesce_usecs", "Limit in usec for joining tx packets") \
476   m(+1, u64 tx_coalesce_pkts, "tx_coalesce_pkts", "Maximum number of tx packets to join") \
477   m(+1, u64 tx_coalesce_mode, "tx_coalesce_mode", "0: EQE mode 1: CQE mode") \
478   m(+1, u64 tx_completion_fact, "tx_completion_fact", "1..MAX: Completion event ratio") \
479   m(+1, u64 tx_completion_fact_max, "tx_completion_fact_max", "Maximum completion event ratio") \
480   m(+1, u64 hw_lro, "hw_lro", "set to enable hw_lro") \
481   m(+1, u64 cqe_zipping, "cqe_zipping", "0 : CQE zipping disabled") \
482   m(+1, u64 modify_tx_dma, "modify_tx_dma", "0: Enable TX 1: Disable TX") \
483   m(+1, u64 modify_rx_dma, "modify_rx_dma", "0: Enable RX 1: Disable RX") \
484   m(+1, u64 diag_pci_enable, "diag_pci_enable", "0: Disabled 1: Enabled") \
485   m(+1, u64 diag_general_enable, "diag_general_enable", "0: Disabled 1: Enabled") \
486   m(+1, u64 hw_mtu, "hw_mtu", "Current hardware MTU value") \
487   m(+1, u64 mc_local_lb, "mc_local_lb", "0: Local multicast loopback enabled 1: Disabled") \
488   m(+1, u64 uc_local_lb, "uc_local_lb", "0: Local unicast loopback enabled 1: Disabled")
489 
490 
491 #define	MLX5E_PARAMS_NUM (0 MLX5E_PARAMS(MLX5E_STATS_COUNT))
492 
493 struct mlx5e_params_ethtool {
494 	u64	arg [0];
495 	MLX5E_PARAMS(MLX5E_STATS_VAR)
496 	u64	max_bw_value[IEEE_8021QAZ_MAX_TCS];
497 	u8	max_bw_share[IEEE_8021QAZ_MAX_TCS];
498 	u8	prio_tc[IEEE_8021QAZ_MAX_TCS];
499 	u8	dscp2prio[MLX5_MAX_SUPPORTED_DSCP];
500 	u8	trust_state;
501 };
502 
503 /* EEPROM Standards for plug in modules */
504 #ifndef MLX5E_ETH_MODULE_SFF_8472
505 #define	MLX5E_ETH_MODULE_SFF_8472	0x1
506 #define	MLX5E_ETH_MODULE_SFF_8472_LEN	128
507 #endif
508 
509 #ifndef MLX5E_ETH_MODULE_SFF_8636
510 #define	MLX5E_ETH_MODULE_SFF_8636	0x2
511 #define	MLX5E_ETH_MODULE_SFF_8636_LEN	256
512 #endif
513 
514 #ifndef MLX5E_ETH_MODULE_SFF_8436
515 #define	MLX5E_ETH_MODULE_SFF_8436	0x3
516 #define	MLX5E_ETH_MODULE_SFF_8436_LEN	256
517 #endif
518 
519 /* EEPROM I2C Addresses */
520 #define	MLX5E_I2C_ADDR_LOW		0x50
521 #define	MLX5E_I2C_ADDR_HIGH		0x51
522 
523 #define	MLX5E_EEPROM_LOW_PAGE		0x0
524 #define	MLX5E_EEPROM_HIGH_PAGE		0x3
525 
526 #define	MLX5E_EEPROM_HIGH_PAGE_OFFSET	128
527 #define	MLX5E_EEPROM_PAGE_LENGTH	256
528 
529 #define	MLX5E_EEPROM_INFO_BYTES		0x3
530 
531 struct mlx5e_cq {
532 	/* data path - accessed per cqe */
533 	struct mlx5_cqwq wq;
534 
535 	/* data path - accessed per HW polling */
536 	struct mlx5_core_cq mcq;
537 
538 	/* control */
539 	struct mlx5e_priv *priv;
540 	struct mlx5_wq_ctrl wq_ctrl;
541 } __aligned(MLX5E_CACHELINE_SIZE);
542 
543 struct mlx5e_rq_mbuf {
544 	bus_dmamap_t	dma_map;
545 	caddr_t		data;
546 	struct mbuf	*mbuf;
547 };
548 
549 struct mlx5e_rq {
550 	/* data path */
551 	struct mlx5_wq_ll wq;
552 	struct mtx mtx;
553 	bus_dma_tag_t dma_tag;
554 	u32	wqe_sz;
555 	u32	nsegs;
556 	struct mlx5e_rq_mbuf *mbuf;
557 	struct ifnet *ifp;
558 	struct mlx5e_rq_stats stats;
559 	struct mlx5e_cq cq;
560 	struct lro_ctrl lro;
561 	volatile int enabled;
562 	int	ix;
563 
564 	/* control */
565 	struct mlx5_wq_ctrl wq_ctrl;
566 	u32	rqn;
567 	struct mlx5e_channel *channel;
568 	struct callout watchdog;
569 } __aligned(MLX5E_CACHELINE_SIZE);
570 
571 struct mlx5e_sq_mbuf {
572 	bus_dmamap_t dma_map;
573 	struct mbuf *mbuf;
574 	u32	num_bytes;
575 	u32	num_wqebbs;
576 };
577 
578 enum {
579 	MLX5E_SQ_READY,
580 	MLX5E_SQ_FULL
581 };
582 
583 struct mlx5e_snd_tag {
584 	struct m_snd_tag m_snd_tag;	/* send tag */
585 	u32	type;	/* tag type */
586 };
587 
588 struct mlx5e_sq {
589 	/* data path */
590 	struct	mtx lock;
591 	bus_dma_tag_t dma_tag;
592 	struct	mtx comp_lock;
593 
594 	/* dirtied @completion */
595 	u16	cc;
596 
597 	/* dirtied @xmit */
598 	u16	pc __aligned(MLX5E_CACHELINE_SIZE);
599 	u16	bf_offset;
600 	u16	cev_counter;		/* completion event counter */
601 	u16	cev_factor;		/* completion event factor */
602 	u16	cev_next_state;		/* next completion event state */
603 #define	MLX5E_CEV_STATE_INITIAL 0	/* timer not started */
604 #define	MLX5E_CEV_STATE_SEND_NOPS 1	/* send NOPs */
605 #define	MLX5E_CEV_STATE_HOLD_NOPS 2	/* don't send NOPs yet */
606 	u16	running;		/* set if SQ is running */
607 	struct callout cev_callout;
608 	union {
609 		u32	d32[2];
610 		u64	d64;
611 	} doorbell;
612 	struct	mlx5e_sq_stats stats;
613 
614 	struct	mlx5e_cq cq;
615 
616 	/* pointers to per packet info: write@xmit, read@completion */
617 	struct	mlx5e_sq_mbuf *mbuf;
618 	struct	buf_ring *br;
619 
620 	/* read only */
621 	struct	mlx5_wq_cyc wq;
622 	struct	mlx5_uar uar;
623 	struct	ifnet *ifp;
624 	u32	sqn;
625 	u32	bf_buf_size;
626 	u32	mkey_be;
627 	u16	max_inline;
628 	u8	min_inline_mode;
629 	u8	min_insert_caps;
630 #define	MLX5E_INSERT_VLAN 1
631 #define	MLX5E_INSERT_NON_VLAN 2
632 
633 	/* control path */
634 	struct	mlx5_wq_ctrl wq_ctrl;
635 	struct	mlx5e_priv *priv;
636 	int	tc;
637 } __aligned(MLX5E_CACHELINE_SIZE);
638 
639 static inline bool
640 mlx5e_sq_has_room_for(struct mlx5e_sq *sq, u16 n)
641 {
642 	u16 cc = sq->cc;
643 	u16 pc = sq->pc;
644 
645 	return ((sq->wq.sz_m1 & (cc - pc)) >= n || cc == pc);
646 }
647 
648 static inline u32
649 mlx5e_sq_queue_level(struct mlx5e_sq *sq)
650 {
651 	u16 cc;
652 	u16 pc;
653 
654 	if (sq == NULL)
655 		return (0);
656 
657 	cc = sq->cc;
658 	pc = sq->pc;
659 
660 	return (((sq->wq.sz_m1 & (pc - cc)) *
661 	    IF_SND_QUEUE_LEVEL_MAX) / sq->wq.sz_m1);
662 }
663 
664 struct mlx5e_channel {
665 	/* data path */
666 	struct mlx5e_rq rq;
667 	struct mlx5e_snd_tag tag;
668 	struct mlx5e_sq sq[MLX5E_MAX_TX_NUM_TC];
669 	u32	mkey_be;
670 	u8	num_tc;
671 
672 	/* control */
673 	struct mlx5e_priv *priv;
674 	int	ix;
675 	int	cpu;
676 } __aligned(MLX5E_CACHELINE_SIZE);
677 
678 enum mlx5e_traffic_types {
679 	MLX5E_TT_IPV4_TCP,
680 	MLX5E_TT_IPV6_TCP,
681 	MLX5E_TT_IPV4_UDP,
682 	MLX5E_TT_IPV6_UDP,
683 	MLX5E_TT_IPV4_IPSEC_AH,
684 	MLX5E_TT_IPV6_IPSEC_AH,
685 	MLX5E_TT_IPV4_IPSEC_ESP,
686 	MLX5E_TT_IPV6_IPSEC_ESP,
687 	MLX5E_TT_IPV4,
688 	MLX5E_TT_IPV6,
689 	MLX5E_TT_ANY,
690 	MLX5E_NUM_TT,
691 };
692 
693 enum {
694 	MLX5E_RQT_SPREADING = 0,
695 	MLX5E_RQT_DEFAULT_RQ = 1,
696 	MLX5E_NUM_RQT = 2,
697 };
698 
699 struct mlx5_flow_rule;
700 
701 struct mlx5e_eth_addr_info {
702 	u8	addr [ETH_ALEN + 2];
703 	u32	tt_vec;
704 	/* flow table rule per traffic type */
705 	struct mlx5_flow_rule	*ft_rule[MLX5E_NUM_TT];
706 };
707 
708 #define	MLX5E_ETH_ADDR_HASH_SIZE (1 << BITS_PER_BYTE)
709 
710 struct mlx5e_eth_addr_hash_node;
711 
712 struct mlx5e_eth_addr_hash_head {
713 	struct mlx5e_eth_addr_hash_node *lh_first;
714 };
715 
716 struct mlx5e_eth_addr_db {
717 	struct mlx5e_eth_addr_hash_head if_uc[MLX5E_ETH_ADDR_HASH_SIZE];
718 	struct mlx5e_eth_addr_hash_head if_mc[MLX5E_ETH_ADDR_HASH_SIZE];
719 	struct mlx5e_eth_addr_info broadcast;
720 	struct mlx5e_eth_addr_info allmulti;
721 	struct mlx5e_eth_addr_info promisc;
722 	bool	broadcast_enabled;
723 	bool	allmulti_enabled;
724 	bool	promisc_enabled;
725 };
726 
727 enum {
728 	MLX5E_STATE_ASYNC_EVENTS_ENABLE,
729 	MLX5E_STATE_OPENED,
730 };
731 
732 enum {
733 	MLX5_BW_NO_LIMIT   = 0,
734 	MLX5_100_MBPS_UNIT = 3,
735 	MLX5_GBPS_UNIT     = 4,
736 };
737 
738 struct mlx5e_vlan_db {
739 	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
740 	struct mlx5_flow_rule	*active_vlans_ft_rule[VLAN_N_VID];
741 	struct mlx5_flow_rule	*untagged_ft_rule;
742 	struct mlx5_flow_rule	*any_cvlan_ft_rule;
743 	struct mlx5_flow_rule	*any_svlan_ft_rule;
744 	bool	filter_disabled;
745 };
746 
747 struct mlx5e_flow_table {
748 	int num_groups;
749 	struct mlx5_flow_table *t;
750 	struct mlx5_flow_group **g;
751 };
752 
753 struct mlx5e_flow_tables {
754 	struct mlx5_flow_namespace *ns;
755 	struct mlx5e_flow_table vlan;
756 	struct mlx5e_flow_table main;
757 	struct mlx5e_flow_table inner_rss;
758 };
759 
760 #ifdef RATELIMIT
761 #include "en_rl.h"
762 #endif
763 
764 #define	MLX5E_TSTMP_PREC 10
765 
766 struct mlx5e_clbr_point {
767 	uint64_t base_curr;
768 	uint64_t base_prev;
769 	uint64_t clbr_hw_prev;
770 	uint64_t clbr_hw_curr;
771 	u_int clbr_gen;
772 };
773 
774 struct mlx5e_priv {
775 	struct mlx5_core_dev *mdev;     /* must be first */
776 
777 	/* priv data path fields - start */
778 	int	order_base_2_num_channels;
779 	int	queue_mapping_channel_mask;
780 	int	num_tc;
781 	int	default_vlan_prio;
782 	/* priv data path fields - end */
783 
784 	unsigned long state;
785 	int	gone;
786 #define	PRIV_LOCK(priv) sx_xlock(&(priv)->state_lock)
787 #define	PRIV_UNLOCK(priv) sx_xunlock(&(priv)->state_lock)
788 #define	PRIV_LOCKED(priv) sx_xlocked(&(priv)->state_lock)
789 	struct sx state_lock;		/* Protects Interface state */
790 	struct mlx5_uar cq_uar;
791 	u32	pdn;
792 	u32	tdn;
793 	struct mlx5_core_mr mr;
794 	volatile unsigned int channel_refs;
795 
796 	u32	tisn[MLX5E_MAX_TX_NUM_TC];
797 	u32	rqtn;
798 	u32	tirn[MLX5E_NUM_TT];
799 
800 	struct mlx5e_flow_tables fts;
801 	struct mlx5e_eth_addr_db eth_addr;
802 	struct mlx5e_vlan_db vlan;
803 
804 	struct mlx5e_params params;
805 	struct mlx5e_params_ethtool params_ethtool;
806 	union mlx5_core_pci_diagnostics params_pci;
807 	union mlx5_core_general_diagnostics params_general;
808 	struct mtx async_events_mtx;	/* sync hw events */
809 	struct work_struct update_stats_work;
810 	struct work_struct update_carrier_work;
811 	struct work_struct set_rx_mode_work;
812 	MLX5_DECLARE_DOORBELL_LOCK(doorbell_lock)
813 
814 	struct ifnet *ifp;
815 	struct sysctl_ctx_list sysctl_ctx;
816 	struct sysctl_oid *sysctl_ifnet;
817 	struct sysctl_oid *sysctl_hw;
818 	int	sysctl_debug;
819 	struct mlx5e_stats stats;
820 	int	counter_set_id;
821 
822 	struct workqueue_struct *wq;
823 
824 	eventhandler_tag vlan_detach;
825 	eventhandler_tag vlan_attach;
826 	struct ifmedia media;
827 	int	media_status_last;
828 	int	media_active_last;
829 
830 	struct callout watchdog;
831 #ifdef RATELIMIT
832 	struct mlx5e_rl_priv_data rl;
833 #endif
834 
835 	struct callout tstmp_clbr;
836 	int	clbr_done;
837 	int	clbr_curr;
838 	struct mlx5e_clbr_point clbr_points[2];
839 	u_int	clbr_gen;
840 
841 	struct mlx5e_channel channel[];
842 };
843 
844 #define	MLX5E_NET_IP_ALIGN 2
845 
846 struct mlx5e_tx_wqe {
847 	struct mlx5_wqe_ctrl_seg ctrl;
848 	struct mlx5_wqe_eth_seg eth;
849 };
850 
851 struct mlx5e_rx_wqe {
852 	struct mlx5_wqe_srq_next_seg next;
853 	struct mlx5_wqe_data_seg data[];
854 };
855 
856 /* the size of the structure above must be power of two */
857 CTASSERT(powerof2(sizeof(struct mlx5e_rx_wqe)));
858 
859 struct mlx5e_eeprom {
860 	int	lock_bit;
861 	int	i2c_addr;
862 	int	page_num;
863 	int	device_addr;
864 	int	module_num;
865 	int	len;
866 	int	type;
867 	int	page_valid;
868 	u32	*data;
869 };
870 
871 #define	MLX5E_FLD_MAX(typ, fld) ((1ULL << __mlx5_bit_sz(typ, fld)) - 1ULL)
872 
873 int	mlx5e_xmit(struct ifnet *, struct mbuf *);
874 
875 int	mlx5e_open_locked(struct ifnet *);
876 int	mlx5e_close_locked(struct ifnet *);
877 
878 void	mlx5e_cq_error_event(struct mlx5_core_cq *mcq, int event);
879 void	mlx5e_rx_cq_comp(struct mlx5_core_cq *);
880 void	mlx5e_tx_cq_comp(struct mlx5_core_cq *);
881 struct mlx5_cqe64 *mlx5e_get_cqe(struct mlx5e_cq *cq);
882 
883 int	mlx5e_open_flow_table(struct mlx5e_priv *priv);
884 void	mlx5e_close_flow_table(struct mlx5e_priv *priv);
885 void	mlx5e_set_rx_mode_core(struct mlx5e_priv *priv);
886 void	mlx5e_set_rx_mode_work(struct work_struct *work);
887 
888 void	mlx5e_vlan_rx_add_vid(void *, struct ifnet *, u16);
889 void	mlx5e_vlan_rx_kill_vid(void *, struct ifnet *, u16);
890 void	mlx5e_enable_vlan_filter(struct mlx5e_priv *priv);
891 void	mlx5e_disable_vlan_filter(struct mlx5e_priv *priv);
892 int	mlx5e_add_all_vlan_rules(struct mlx5e_priv *priv);
893 void	mlx5e_del_all_vlan_rules(struct mlx5e_priv *priv);
894 
895 static inline void
896 mlx5e_tx_notify_hw(struct mlx5e_sq *sq, u32 *wqe, int bf_sz)
897 {
898 	u16 ofst = MLX5_BF_OFFSET + sq->bf_offset;
899 
900 	/* ensure wqe is visible to device before updating doorbell record */
901 	wmb();
902 
903 	*sq->wq.db = cpu_to_be32(sq->pc);
904 
905 	/*
906 	 * Ensure the doorbell record is visible to device before ringing
907 	 * the doorbell:
908 	 */
909 	wmb();
910 
911 	if (bf_sz) {
912 		__iowrite64_copy(sq->uar.bf_map + ofst, wqe, bf_sz);
913 
914 		/* flush the write-combining mapped buffer */
915 		wmb();
916 
917 	} else {
918 		mlx5_write64(wqe, sq->uar.map + ofst,
919 		    MLX5_GET_DOORBELL_LOCK(&sq->priv->doorbell_lock));
920 	}
921 
922 	sq->bf_offset ^= sq->bf_buf_size;
923 }
924 
925 static inline void
926 mlx5e_cq_arm(struct mlx5e_cq *cq, spinlock_t *dblock)
927 {
928 	struct mlx5_core_cq *mcq;
929 
930 	mcq = &cq->mcq;
931 	mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, dblock, cq->wq.cc);
932 }
933 
934 static inline void
935 mlx5e_ref_channel(struct mlx5e_priv *priv)
936 {
937 
938 	KASSERT(priv->channel_refs < INT_MAX,
939 	    ("Channel refs will overflow"));
940 	atomic_fetchadd_int(&priv->channel_refs, 1);
941 }
942 
943 static inline void
944 mlx5e_unref_channel(struct mlx5e_priv *priv)
945 {
946 
947 	KASSERT(priv->channel_refs > 0,
948 	    ("Channel refs is not greater than zero"));
949 	atomic_fetchadd_int(&priv->channel_refs, -1);
950 }
951 
952 extern const struct ethtool_ops mlx5e_ethtool_ops;
953 void	mlx5e_create_ethtool(struct mlx5e_priv *);
954 void	mlx5e_create_stats(struct sysctl_ctx_list *,
955     struct sysctl_oid_list *, const char *,
956     const char **, unsigned, u64 *);
957 void	mlx5e_send_nop(struct mlx5e_sq *, u32);
958 void	mlx5e_sq_cev_timeout(void *);
959 int	mlx5e_refresh_channel_params(struct mlx5e_priv *);
960 int	mlx5e_open_cq(struct mlx5e_priv *, struct mlx5e_cq_param *,
961     struct mlx5e_cq *, mlx5e_cq_comp_t *, int eq_ix);
962 void	mlx5e_close_cq(struct mlx5e_cq *);
963 void	mlx5e_free_sq_db(struct mlx5e_sq *);
964 int	mlx5e_alloc_sq_db(struct mlx5e_sq *);
965 int	mlx5e_enable_sq(struct mlx5e_sq *, struct mlx5e_sq_param *, int tis_num);
966 int	mlx5e_modify_sq(struct mlx5e_sq *, int curr_state, int next_state);
967 void	mlx5e_disable_sq(struct mlx5e_sq *);
968 void	mlx5e_drain_sq(struct mlx5e_sq *);
969 void	mlx5e_modify_tx_dma(struct mlx5e_priv *priv, uint8_t value);
970 void	mlx5e_modify_rx_dma(struct mlx5e_priv *priv, uint8_t value);
971 void	mlx5e_resume_sq(struct mlx5e_sq *sq);
972 void	mlx5e_update_sq_inline(struct mlx5e_sq *sq);
973 void	mlx5e_refresh_sq_inline(struct mlx5e_priv *priv);
974 
975 #endif					/* _MLX5_EN_H_ */
976