xref: /freebsd/sys/dev/mlx5/mlx5_en/en.h (revision c697fb7f)
1 /*-
2  * Copyright (c) 2015-2019 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 #include <linux/ktime.h>
42 #include <linux/net_dim.h>
43 
44 #include <netinet/in_systm.h>
45 #include <netinet/in.h>
46 #include <netinet/if_ether.h>
47 #include <netinet/ip.h>
48 #include <netinet/ip6.h>
49 #include <netinet/tcp.h>
50 #include <netinet/tcp_lro.h>
51 #include <netinet/udp.h>
52 #include <net/ethernet.h>
53 #include <net/pfil.h>
54 #include <sys/buf_ring.h>
55 #include <sys/kthread.h>
56 #include <sys/counter.h>
57 
58 #include "opt_rss.h"
59 
60 #ifdef	RSS
61 #include <net/rss_config.h>
62 #include <netinet/in_rss.h>
63 #endif
64 
65 #include <machine/bus.h>
66 
67 #include <dev/mlx5/driver.h>
68 #include <dev/mlx5/qp.h>
69 #include <dev/mlx5/cq.h>
70 #include <dev/mlx5/port.h>
71 #include <dev/mlx5/vport.h>
72 #include <dev/mlx5/diagnostics.h>
73 
74 #include <dev/mlx5/mlx5_core/wq.h>
75 #include <dev/mlx5/mlx5_core/transobj.h>
76 #include <dev/mlx5/mlx5_core/mlx5_core.h>
77 
78 #define	MLX5E_MAX_PRIORITY 8
79 
80 #define	MLX5E_MAX_FEC_10X_25X 4
81 #define	MLX5E_MAX_FEC_50X 4
82 
83 /* IEEE 802.1Qaz standard supported values */
84 #define	IEEE_8021QAZ_MAX_TCS	8
85 
86 #define	MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE                0x7
87 #define	MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE                0xa
88 #define	MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE                0xe
89 
90 #define	MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE                0x7
91 #define	MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE                0xa
92 #define	MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE                0xe
93 
94 #define	MLX5E_MAX_BUSDMA_RX_SEGS 15
95 
96 #ifndef MLX5E_MAX_RX_BYTES
97 #define	MLX5E_MAX_RX_BYTES MCLBYTES
98 #endif
99 
100 #define	MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ \
101     MIN(65535, 7 * MLX5E_MAX_RX_BYTES)
102 
103 #define	MLX5E_DIM_DEFAULT_PROFILE 3
104 #define	MLX5E_DIM_MAX_RX_CQ_MODERATION_PKTS_WITH_LRO	16
105 #define	MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC      0x10
106 #define	MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE	0x3
107 #define	MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS      0x20
108 #define	MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC      0x10
109 #define	MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS      0x20
110 #define	MLX5E_PARAMS_DEFAULT_MIN_RX_WQES                0x80
111 #define	MLX5E_PARAMS_DEFAULT_RX_HASH_LOG_TBL_SZ         0x7
112 #define	MLX5E_CACHELINE_SIZE CACHE_LINE_SIZE
113 #define	MLX5E_HW2SW_MTU(hwmtu) \
114     ((hwmtu) - (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN + ETHER_CRC_LEN))
115 #define	MLX5E_SW2HW_MTU(swmtu) \
116     ((swmtu) + (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN + ETHER_CRC_LEN))
117 #define	MLX5E_SW2MB_MTU(swmtu) \
118     (MLX5E_SW2HW_MTU(swmtu) + MLX5E_NET_IP_ALIGN)
119 #define	MLX5E_MTU_MIN		72	/* Min MTU allowed by the kernel */
120 #define	MLX5E_MTU_MAX		MIN(ETHERMTU_JUMBO, MJUM16BYTES)	/* Max MTU of Ethernet
121 									 * jumbo frames */
122 
123 #define	MLX5E_BUDGET_MAX	8192	/* RX and TX */
124 #define	MLX5E_RX_BUDGET_MAX	256
125 #define	MLX5E_SQ_BF_BUDGET	16
126 #define	MLX5E_SQ_TX_QUEUE_SIZE	4096	/* SQ drbr queue size */
127 
128 #define	MLX5E_MAX_TX_NUM_TC	8	/* units */
129 #define	MLX5E_MAX_TX_HEADER	128	/* bytes */
130 #define	MLX5E_MAX_TX_PAYLOAD_SIZE	65536	/* bytes */
131 #define	MLX5E_MAX_TX_MBUF_SIZE	65536	/* bytes */
132 #define	MLX5E_MAX_TX_MBUF_FRAGS	\
133     ((MLX5_SEND_WQE_MAX_WQEBBS * MLX5_SEND_WQEBB_NUM_DS) - \
134     (MLX5E_MAX_TX_HEADER / MLX5_SEND_WQE_DS) - \
135     1 /* the maximum value of the DS counter is 0x3F and not 0x40 */)	/* units */
136 #define	MLX5E_MAX_TX_INLINE \
137   (MLX5E_MAX_TX_HEADER - sizeof(struct mlx5e_tx_wqe) + \
138   sizeof(((struct mlx5e_tx_wqe *)0)->eth.inline_hdr_start))	/* bytes */
139 
140 #define	MLX5E_100MB (100000)
141 #define	MLX5E_1GB   (1000000)
142 
143 #define	MLX5E_ZERO(ptr, field)	      \
144 	memset(&(ptr)->field, 0, \
145 	    sizeof(*(ptr)) - __offsetof(__typeof(*(ptr)), field))
146 
147 MALLOC_DECLARE(M_MLX5EN);
148 
149 struct mlx5_core_dev;
150 struct mlx5e_cq;
151 
152 typedef void (mlx5e_cq_comp_t)(struct mlx5_core_cq *);
153 
154 #define	mlx5_en_err(_dev, format, ...)				\
155 	if_printf(_dev, "ERR: ""%s:%d:(pid %d): " format, \
156 	    __func__, __LINE__, curthread->td_proc->p_pid,	\
157 	    ##__VA_ARGS__)
158 
159 #define	mlx5_en_warn(_dev, format, ...)				\
160 	if_printf(_dev, "WARN: ""%s:%d:(pid %d): " format, \
161 	    __func__, __LINE__, curthread->td_proc->p_pid,	\
162 	    ##__VA_ARGS__)
163 
164 #define	mlx5_en_info(_dev, format, ...)				\
165 	if_printf(_dev, "INFO: ""%s:%d:(pid %d): " format, \
166 	    __func__, __LINE__, curthread->td_proc->p_pid,	\
167 	    ##__VA_ARGS__)
168 
169 #define	MLX5E_STATS_COUNT(a, ...) a
170 #define	MLX5E_STATS_VAR(a, b, c, ...) b c;
171 #define	MLX5E_STATS_COUNTER(a, b, c, ...) counter_##b##_t c;
172 #define	MLX5E_STATS_DESC(a, b, c, d, e, ...) d, e,
173 
174 #define	MLX5E_VPORT_STATS(m)						\
175   /* HW counters */							\
176   m(+1, u64, rx_packets, "rx_packets", "Received packets")		\
177   m(+1, u64, rx_bytes, "rx_bytes", "Received bytes")			\
178   m(+1, u64, tx_packets, "tx_packets", "Transmitted packets")		\
179   m(+1, u64, tx_bytes, "tx_bytes", "Transmitted bytes")			\
180   m(+1, u64, rx_error_packets, "rx_error_packets", "Received error packets") \
181   m(+1, u64, rx_error_bytes, "rx_error_bytes", "Received error bytes")	\
182   m(+1, u64, tx_error_packets, "tx_error_packets", "Transmitted error packets") \
183   m(+1, u64, tx_error_bytes, "tx_error_bytes", "Transmitted error bytes") \
184   m(+1, u64, rx_unicast_packets, "rx_unicast_packets", "Received unicast packets") \
185   m(+1, u64, rx_unicast_bytes, "rx_unicast_bytes", "Received unicast bytes") \
186   m(+1, u64, tx_unicast_packets, "tx_unicast_packets", "Transmitted unicast packets") \
187   m(+1, u64, tx_unicast_bytes, "tx_unicast_bytes", "Transmitted unicast bytes") \
188   m(+1, u64, rx_multicast_packets, "rx_multicast_packets", "Received multicast packets") \
189   m(+1, u64, rx_multicast_bytes, "rx_multicast_bytes", "Received multicast bytes") \
190   m(+1, u64, tx_multicast_packets, "tx_multicast_packets", "Transmitted multicast packets") \
191   m(+1, u64, tx_multicast_bytes, "tx_multicast_bytes", "Transmitted multicast bytes") \
192   m(+1, u64, rx_broadcast_packets, "rx_broadcast_packets", "Received broadcast packets") \
193   m(+1, u64, rx_broadcast_bytes, "rx_broadcast_bytes", "Received broadcast bytes") \
194   m(+1, u64, tx_broadcast_packets, "tx_broadcast_packets", "Transmitted broadcast packets") \
195   m(+1, u64, tx_broadcast_bytes, "tx_broadcast_bytes", "Transmitted broadcast bytes") \
196   m(+1, u64, rx_out_of_buffer, "rx_out_of_buffer", "Receive out of buffer, no recv wqes events") \
197   /* SW counters */							\
198   m(+1, u64, tso_packets, "tso_packets", "Transmitted TSO packets")	\
199   m(+1, u64, tso_bytes, "tso_bytes", "Transmitted TSO bytes")		\
200   m(+1, u64, lro_packets, "lro_packets", "Received LRO packets")		\
201   m(+1, u64, lro_bytes, "lro_bytes", "Received LRO bytes")		\
202   m(+1, u64, sw_lro_queued, "sw_lro_queued", "Packets queued for SW LRO")	\
203   m(+1, u64, sw_lro_flushed, "sw_lro_flushed", "Packets flushed from SW LRO")	\
204   m(+1, u64, rx_csum_good, "rx_csum_good", "Received checksum valid packets") \
205   m(+1, u64, rx_csum_none, "rx_csum_none", "Received no checksum packets") \
206   m(+1, u64, tx_csum_offload, "tx_csum_offload", "Transmit checksum offload packets") \
207   m(+1, u64, tx_queue_dropped, "tx_queue_dropped", "Transmit queue dropped") \
208   m(+1, u64, tx_defragged, "tx_defragged", "Transmit queue defragged") \
209   m(+1, u64, rx_wqe_err, "rx_wqe_err", "Receive WQE errors") \
210   m(+1, u64, tx_jumbo_packets, "tx_jumbo_packets", "TX packets greater than 1518 octets") \
211   m(+1, u64, rx_steer_missed_packets, "rx_steer_missed_packets", "RX packets dropped by steering rule(s)")
212 
213 #define	MLX5E_VPORT_STATS_NUM (0 MLX5E_VPORT_STATS(MLX5E_STATS_COUNT))
214 
215 struct mlx5e_vport_stats {
216 	struct	sysctl_ctx_list ctx;
217 	u64	arg [0];
218 	MLX5E_VPORT_STATS(MLX5E_STATS_VAR)
219 };
220 
221 #define	MLX5E_PPORT_IEEE802_3_STATS(m)					\
222   m(+1, u64, frames_tx, "frames_tx", "Frames transmitted")		\
223   m(+1, u64, frames_rx, "frames_rx", "Frames received")			\
224   m(+1, u64, check_seq_err, "check_seq_err", "Sequence errors")		\
225   m(+1, u64, alignment_err, "alignment_err", "Alignment errors")	\
226   m(+1, u64, octets_tx, "octets_tx", "Bytes transmitted")		\
227   m(+1, u64, octets_received, "octets_received", "Bytes received")	\
228   m(+1, u64, multicast_xmitted, "multicast_xmitted", "Multicast transmitted") \
229   m(+1, u64, broadcast_xmitted, "broadcast_xmitted", "Broadcast transmitted") \
230   m(+1, u64, multicast_rx, "multicast_rx", "Multicast received")	\
231   m(+1, u64, broadcast_rx, "broadcast_rx", "Broadcast received")	\
232   m(+1, u64, in_range_len_errors, "in_range_len_errors", "In range length errors") \
233   m(+1, u64, out_of_range_len, "out_of_range_len", "Out of range length errors") \
234   m(+1, u64, too_long_errors, "too_long_errors", "Too long errors")	\
235   m(+1, u64, symbol_err, "symbol_err", "Symbol errors")			\
236   m(+1, u64, mac_control_tx, "mac_control_tx", "MAC control transmitted") \
237   m(+1, u64, mac_control_rx, "mac_control_rx", "MAC control received")	\
238   m(+1, u64, unsupported_op_rx, "unsupported_op_rx", "Unsupported operation received") \
239   m(+1, u64, pause_ctrl_rx, "pause_ctrl_rx", "Pause control received")	\
240   m(+1, u64, pause_ctrl_tx, "pause_ctrl_tx", "Pause control transmitted")
241 
242 #define	MLX5E_PPORT_RFC2819_STATS(m)					\
243   m(+1, u64, drop_events, "drop_events", "Dropped events")		\
244   m(+1, u64, octets, "octets", "Octets")					\
245   m(+1, u64, pkts, "pkts", "Packets")					\
246   m(+1, u64, broadcast_pkts, "broadcast_pkts", "Broadcast packets")	\
247   m(+1, u64, multicast_pkts, "multicast_pkts", "Multicast packets")	\
248   m(+1, u64, crc_align_errors, "crc_align_errors", "CRC alignment errors") \
249   m(+1, u64, undersize_pkts, "undersize_pkts", "Undersized packets")	\
250   m(+1, u64, oversize_pkts, "oversize_pkts", "Oversized packets")	\
251   m(+1, u64, fragments, "fragments", "Fragments")			\
252   m(+1, u64, jabbers, "jabbers", "Jabbers")				\
253   m(+1, u64, collisions, "collisions", "Collisions")
254 
255 #define	MLX5E_PPORT_RFC2819_STATS_DEBUG(m)				\
256   m(+1, u64, p64octets, "p64octets", "Bytes")				\
257   m(+1, u64, p65to127octets, "p65to127octets", "Bytes")			\
258   m(+1, u64, p128to255octets, "p128to255octets", "Bytes")		\
259   m(+1, u64, p256to511octets, "p256to511octets", "Bytes")		\
260   m(+1, u64, p512to1023octets, "p512to1023octets", "Bytes")		\
261   m(+1, u64, p1024to1518octets, "p1024to1518octets", "Bytes")		\
262   m(+1, u64, p1519to2047octets, "p1519to2047octets", "Bytes")		\
263   m(+1, u64, p2048to4095octets, "p2048to4095octets", "Bytes")		\
264   m(+1, u64, p4096to8191octets, "p4096to8191octets", "Bytes")		\
265   m(+1, u64, p8192to10239octets, "p8192to10239octets", "Bytes")
266 
267 #define	MLX5E_PPORT_RFC2863_STATS_DEBUG(m)				\
268   m(+1, u64, in_octets, "in_octets", "In octets")			\
269   m(+1, u64, in_ucast_pkts, "in_ucast_pkts", "In unicast packets")	\
270   m(+1, u64, in_discards, "in_discards", "In discards")			\
271   m(+1, u64, in_errors, "in_errors", "In errors")			\
272   m(+1, u64, in_unknown_protos, "in_unknown_protos", "In unknown protocols") \
273   m(+1, u64, out_octets, "out_octets", "Out octets")			\
274   m(+1, u64, out_ucast_pkts, "out_ucast_pkts", "Out unicast packets")	\
275   m(+1, u64, out_discards, "out_discards", "Out discards")		\
276   m(+1, u64, out_errors, "out_errors", "Out errors")			\
277   m(+1, u64, in_multicast_pkts, "in_multicast_pkts", "In multicast packets") \
278   m(+1, u64, in_broadcast_pkts, "in_broadcast_pkts", "In broadcast packets") \
279   m(+1, u64, out_multicast_pkts, "out_multicast_pkts", "Out multicast packets") \
280   m(+1, u64, out_broadcast_pkts, "out_broadcast_pkts", "Out broadcast packets")
281 
282 #define	MLX5E_PPORT_ETHERNET_EXTENDED_STATS_DEBUG(m)				\
283   m(+1, u64, port_transmit_wait, "port_transmit_wait", "Port transmit wait") \
284   m(+1, u64, ecn_marked, "ecn_marked", "ECN marked")			\
285   m(+1, u64, no_buffer_discard_mc, "no_buffer_discard_mc", "No buffer discard mc") \
286   m(+1, u64, rx_ebp, "rx_ebp", "RX EBP")					\
287   m(+1, u64, tx_ebp, "tx_ebp", "TX EBP")					\
288   m(+1, u64, rx_buffer_almost_full, "rx_buffer_almost_full", "RX buffer almost full") \
289   m(+1, u64, rx_buffer_full, "rx_buffer_full", "RX buffer full")	\
290   m(+1, u64, rx_icrc_encapsulated, "rx_icrc_encapsulated", "RX ICRC encapsulated") \
291   m(+1, u64, ex_reserved_0, "ex_reserved_0", "Reserved") \
292   m(+1, u64, ex_reserved_1, "ex_reserved_1", "Reserved") \
293   m(+1, u64, tx_stat_p64octets, "tx_stat_p64octets", "Bytes")			\
294   m(+1, u64, tx_stat_p65to127octets, "tx_stat_p65to127octets", "Bytes")		\
295   m(+1, u64, tx_stat_p128to255octets, "tx_stat_p128to255octets", "Bytes")	\
296   m(+1, u64, tx_stat_p256to511octets, "tx_stat_p256to511octets", "Bytes")	\
297   m(+1, u64, tx_stat_p512to1023octets, "tx_stat_p512to1023octets", "Bytes")	\
298   m(+1, u64, tx_stat_p1024to1518octets, "tx_stat_p1024to1518octets", "Bytes")	\
299   m(+1, u64, tx_stat_p1519to2047octets, "tx_stat_p1519to2047octets", "Bytes")	\
300   m(+1, u64, tx_stat_p2048to4095octets, "tx_stat_p2048to4095octets", "Bytes")	\
301   m(+1, u64, tx_stat_p4096to8191octets, "tx_stat_p4096to8191octets", "Bytes")	\
302   m(+1, u64, tx_stat_p8192to10239octets, "tx_stat_p8192to10239octets", "Bytes")
303 
304 #define	MLX5E_PPORT_STATISTICAL_DEBUG(m)				\
305   m(+1, u64, phy_time_since_last_clear, "phy_time_since_last_clear",	\
306     "Time since last clear in milliseconds")				\
307   m(+1, u64, phy_received_bits, "phy_received_bits",			\
308     "Total amount of traffic received in bits before error correction")	\
309   m(+1, u64, phy_symbol_errors, "phy_symbol_errors",			\
310     "Total number of symbol errors before error correction")		\
311   m(+1, u64, phy_corrected_bits, "phy_corrected_bits",			\
312     "Total number of corrected bits ")					\
313   m(+1, u64, phy_corrected_bits_lane0, "phy_corrected_bits_lane0",	\
314     "Total number of corrected bits for lane 0")			\
315   m(+1, u64, phy_corrected_bits_lane1, "phy_corrected_bits_lane1",	\
316     "Total number of corrected bits for lane 1")			\
317   m(+1, u64, phy_corrected_bits_lane2, "phy_corrected_bits_lane2",	\
318     "Total number of corrected bits for lane 2")			\
319   m(+1, u64, phy_corrected_bits_lane3, "phy_corrected_bits_lane3",	\
320     "Total number of corrected bits for lane 3")
321 
322 #define	MLX5E_PPORT_PHYSICAL_LAYER_STATS_DEBUG(m)			\
323   m(+1, u64, time_since_last_clear, "time_since_last_clear",		\
324     "Time since the last counters clear event (msec)")			\
325   m(+1, u64, symbol_errors, "symbol_errors", "Symbol errors")		\
326   m(+1, u64, sync_headers_errors, "sync_headers_errors",		\
327     "Sync header error counter")					\
328   m(+1, u64, bip_errors_lane0, "edpl_bip_errors_lane0",			\
329     "Indicates the number of PRBS errors on lane 0")			\
330   m(+1, u64, bip_errors_lane1, "edpl_bip_errors_lane1",			\
331     "Indicates the number of PRBS errors on lane 1")			\
332   m(+1, u64, bip_errors_lane2, "edpl_bip_errors_lane2",			\
333     "Indicates the number of PRBS errors on lane 2")			\
334   m(+1, u64, bip_errors_lane3, "edpl_bip_errors_lane3",			\
335     "Indicates the number of PRBS errors on lane 3")			\
336   m(+1, u64, fc_corrected_blocks_lane0, "fc_corrected_blocks_lane0",	\
337     "FEC correctable block counter lane 0")				\
338   m(+1, u64, fc_corrected_blocks_lane1, "fc_corrected_blocks_lane1",	\
339     "FEC correctable block counter lane 1")				\
340   m(+1, u64, fc_corrected_blocks_lane2, "fc_corrected_blocks_lane2",	\
341     "FEC correctable block counter lane 2")				\
342   m(+1, u64, fc_corrected_blocks_lane3, "fc_corrected_blocks_lane3",	\
343     "FEC correctable block counter lane 3")				\
344   m(+1, u64, rs_corrected_blocks, "rs_corrected_blocks",		\
345     "FEC correcable block counter")					\
346   m(+1, u64, rs_uncorrectable_blocks, "rs_uncorrectable_blocks",	\
347     "FEC uncorrecable block counter")					\
348   m(+1, u64, rs_no_errors_blocks, "rs_no_errors_blocks",		\
349     "The number of RS-FEC blocks received that had no errors")		\
350   m(+1, u64, rs_single_error_blocks, "rs_single_error_blocks",		\
351     "The number of corrected RS-FEC blocks received that had"		\
352     "exactly 1 error symbol")						\
353   m(+1, u64, rs_corrected_symbols_total, "rs_corrected_symbols_total",	\
354     "Port FEC corrected symbol counter")				\
355   m(+1, u64, rs_corrected_symbols_lane0, "rs_corrected_symbols_lane0",	\
356     "FEC corrected symbol counter lane 0")				\
357   m(+1, u64, rs_corrected_symbols_lane1, "rs_corrected_symbols_lane1",	\
358     "FEC corrected symbol counter lane 1")				\
359   m(+1, u64, rs_corrected_symbols_lane2, "rs_corrected_symbols_lane2",	\
360     "FEC corrected symbol counter lane 2")				\
361   m(+1, u64, rs_corrected_symbols_lane3, "rs_corrected_symbols_lane3",	\
362     "FEC corrected symbol counter lane 3")
363 
364 /* Per priority statistics for PFC */
365 #define	MLX5E_PPORT_PER_PRIO_STATS_SUB(m,n,p)			\
366   m(n, p, +1, u64, rx_octets, "rx_octets", "Received octets")		\
367   m(n, p, +1, u64, rx_uc_frames, "rx_uc_frames", "Received unicast frames") \
368   m(n, p, +1, u64, rx_mc_frames, "rx_mc_frames", "Received multicast frames") \
369   m(n, p, +1, u64, rx_bc_frames, "rx_bc_frames", "Received broadcast frames") \
370   m(n, p, +1, u64, rx_frames, "rx_frames", "Received frames")		\
371   m(n, p, +1, u64, tx_octets, "tx_octets", "Transmitted octets")	\
372   m(n, p, +1, u64, tx_uc_frames, "tx_uc_frames", "Transmitted unicast frames") \
373   m(n, p, +1, u64, tx_mc_frames, "tx_mc_frames", "Transmitted multicast frames") \
374   m(n, p, +1, u64, tx_bc_frames, "tx_bc_frames", "Transmitted broadcast frames") \
375   m(n, p, +1, u64, tx_frames, "tx_frames", "Transmitted frames")	\
376   m(n, p, +1, u64, rx_pause, "rx_pause", "Received pause frames")	\
377   m(n, p, +1, u64, rx_pause_duration, "rx_pause_duration",		\
378 	"Received pause duration")					\
379   m(n, p, +1, u64, tx_pause, "tx_pause", "Transmitted pause frames")	\
380   m(n, p, +1, u64, tx_pause_duration, "tx_pause_duration",		\
381 	"Transmitted pause duration")					\
382   m(n, p, +1, u64, rx_pause_transition, "rx_pause_transition",		\
383 	"Received pause transitions")					\
384   m(n, p, +1, u64, rx_discards, "rx_discards", "Discarded received frames") \
385   m(n, p, +1, u64, device_stall_minor_watermark,			\
386 	"device_stall_minor_watermark", "Device stall minor watermark")	\
387   m(n, p, +1, u64, device_stall_critical_watermark,			\
388 	"device_stall_critical_watermark", "Device stall critical watermark")
389 
390 #define	MLX5E_PPORT_PER_PRIO_STATS_PREFIX(m,p,c,t,f,s,d) \
391   m(c, t, pri_##p##_##f, "prio" #p "_" s, "Priority " #p " - " d)
392 
393 #define	MLX5E_PPORT_PER_PRIO_STATS_NUM_PRIO 8
394 
395 #define	MLX5E_PPORT_PER_PRIO_STATS(m) \
396   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,0) \
397   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,1) \
398   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,2) \
399   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,3) \
400   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,4) \
401   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,5) \
402   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,6) \
403   MLX5E_PPORT_PER_PRIO_STATS_SUB(MLX5E_PPORT_PER_PRIO_STATS_PREFIX,m,7)
404 
405 #define	MLX5E_PCIE_PERFORMANCE_COUNTERS_64(m)				\
406   m(+1, u64, life_time_counter_high, "life_time_counter",		\
407     "Life time counter.", pcie_perf_counters)				\
408   m(+1, u64, tx_overflow_buffer_pkt, "tx_overflow_buffer_pkt",		\
409     "The number of packets dropped due to lack of PCIe buffers "	\
410     "in receive path from NIC port toward the hosts.",			\
411     pcie_perf_counters)							\
412   m(+1, u64, tx_overflow_buffer_marked_pkt,				\
413     "tx_overflow_buffer_marked_pkt",					\
414     "The number of packets marked due to lack of PCIe buffers "		\
415     "in receive path from NIC port toward the hosts.",			\
416     pcie_perf_counters)
417 
418 #define	MLX5E_PCIE_PERFORMANCE_COUNTERS_32(m)				\
419   m(+1, u64, rx_errors, "rx_errors",					\
420     "Number of transitions to recovery due to Framing "			\
421     "errors and CRC errors.", pcie_perf_counters)			\
422   m(+1, u64, tx_errors, "tx_errors", "Number of transitions "		\
423     "to recovery due to EIEOS and TS errors.", pcie_perf_counters)	\
424   m(+1, u64, l0_to_recovery_eieos, "l0_to_recovery_eieos", "Number of "	\
425     "transitions to recovery due to getting EIEOS.", pcie_perf_counters)\
426   m(+1, u64, l0_to_recovery_ts, "l0_to_recovery_ts", "Number of "	\
427     "transitions to recovery due to getting TS.", pcie_perf_counters)	\
428   m(+1, u64, l0_to_recovery_framing, "l0_to_recovery_framing", "Number "\
429     "of transitions to recovery due to identifying framing "		\
430     "errors at gen3/4.", pcie_perf_counters)				\
431   m(+1, u64, l0_to_recovery_retrain, "l0_to_recovery_retrain",		\
432     "Number of transitions to recovery due to link retrain request "	\
433     "from data link.", pcie_perf_counters)				\
434   m(+1, u64, crc_error_dllp, "crc_error_dllp", "Number of transitions "	\
435     "to recovery due to identifying CRC DLLP errors.",			\
436     pcie_perf_counters)							\
437   m(+1, u64, crc_error_tlp, "crc_error_tlp", "Number of transitions to "\
438     "recovery due to identifying CRC TLP errors.", pcie_perf_counters)	\
439   m(+1, u64, outbound_stalled_reads, "outbound_stalled_reads",		\
440     "The percentage of time within the last second that the NIC had "	\
441     "outbound non-posted read requests but could not perform the "	\
442     "operation due to insufficient non-posted credits.",		\
443     pcie_perf_counters)							\
444   m(+1, u64, outbound_stalled_writes, "outbound_stalled_writes",	\
445     "The percentage of time within the last second that the NIC had "	\
446     "outbound posted writes requests but could not perform the "	\
447     "operation due to insufficient posted credits.",			\
448     pcie_perf_counters)							\
449   m(+1, u64, outbound_stalled_reads_events,				\
450     "outbound_stalled_reads_events", "The number of events where "	\
451     "outbound_stalled_reads was above a threshold.",			\
452     pcie_perf_counters)							\
453   m(+1, u64, outbound_stalled_writes_events,				\
454     "outbound_stalled_writes_events",					\
455     "The number of events where outbound_stalled_writes was above "	\
456     "a threshold.", pcie_perf_counters)
457 
458 #define	MLX5E_PCIE_TIMERS_AND_STATES_COUNTERS_32(m)			\
459   m(+1, u64, time_to_boot_image_start, "time_to_boot_image_start",	\
460     "Time from start until FW boot image starts running in usec.",	\
461     pcie_timers_states)							\
462   m(+1, u64, time_to_link_image, "time_to_link_image",			\
463     "Time from start until FW pci_link image starts running in usec.",	\
464     pcie_timers_states)							\
465   m(+1, u64, calibration_time, "calibration_time",			\
466     "Time it took FW to do calibration in usec.",			\
467     pcie_timers_states)							\
468   m(+1, u64, time_to_first_perst, "time_to_first_perst",		\
469     "Time form start until FW handle first perst. in usec.",		\
470     pcie_timers_states)							\
471   m(+1, u64, time_to_detect_state, "time_to_detect_state",		\
472     "Time from start until first transition to LTSSM.Detect_Q in usec",	\
473     pcie_timers_states)							\
474   m(+1, u64, time_to_l0, "time_to_l0",					\
475     "Time from start until first transition to LTSSM.L0 in usec",	\
476     pcie_timers_states)							\
477   m(+1, u64, time_to_crs_en, "time_to_crs_en",				\
478     "Time from start until crs is enabled in usec",			\
479     pcie_timers_states)							\
480   m(+1, u64, time_to_plastic_image_start, "time_to_plastic_image_start",\
481     "Time form start until FW plastic image starts running in usec.",	\
482     pcie_timers_states)							\
483   m(+1, u64, time_to_iron_image_start, "time_to_iron_image_start",	\
484     "Time form start until FW iron image starts running in usec.",	\
485     pcie_timers_states)							\
486   m(+1, u64, perst_handler, "perst_handler",				\
487     "Number of persts arrived.", pcie_timers_states)			\
488   m(+1, u64, times_in_l1, "times_in_l1",				\
489     "Number of times LTSSM entered L1 flow.", pcie_timers_states)	\
490   m(+1, u64, times_in_l23, "times_in_l23",				\
491     "Number of times LTSSM entered L23 flow.", pcie_timers_states)	\
492   m(+1, u64, dl_down, "dl_down",					\
493     "Number of moves for DL_active to DL_down.", pcie_timers_states)	\
494   m(+1, u64, config_cycle1usec, "config_cycle1usec",			\
495     "Number of configuration requests that firmware "			\
496     "handled in less than 1 usec.", pcie_timers_states)			\
497   m(+1, u64, config_cycle2to7usec, "config_cycle2to7usec",		\
498     "Number of configuration requests that firmware "			\
499     "handled within 2 to 7 usec.", pcie_timers_states)			\
500   m(+1, u64, config_cycle8to15usec, "config_cycle8to15usec",		\
501     "Number of configuration requests that firmware "			\
502     "handled within 8 to 15 usec.", pcie_timers_states)			\
503   m(+1, u64, config_cycle16to63usec, "config_cycle16to63usec",		\
504     "Number of configuration requests that firmware "			\
505     "handled within 16 to 63 usec.", pcie_timers_states)		\
506   m(+1, u64, config_cycle64usec, "config_cycle64usec",			\
507     "Number of configuration requests that firmware "			\
508     "handled took more than 64 usec.", pcie_timers_states)		\
509   m(+1, u64, correctable_err_msg_sent, "correctable_err_msg_sent",	\
510     "Number of correctable error messages sent.", pcie_timers_states)	\
511   m(+1, u64, non_fatal_err_msg_sent, "non_fatal_err_msg_sent",		\
512     "Number of non-Fatal error msg sent.", pcie_timers_states)		\
513   m(+1, u64, fatal_err_msg_sent, "fatal_err_msg_sent",			\
514     "Number of fatal error msg sent.", pcie_timers_states)
515 
516 #define	MLX5E_PCIE_LANE_COUNTERS_32(m)				\
517   m(+1, u64, error_counter_lane0, "error_counter_lane0",	\
518     "Error counter for PCI lane 0", pcie_lanes_counters)	\
519   m(+1, u64, error_counter_lane1, "error_counter_lane1",	\
520     "Error counter for PCI lane 1", pcie_lanes_counters)	\
521   m(+1, u64, error_counter_lane2, "error_counter_lane2",	\
522     "Error counter for PCI lane 2", pcie_lanes_counters)	\
523   m(+1, u64, error_counter_lane3, "error_counter_lane3",	\
524     "Error counter for PCI lane 3", pcie_lanes_counters)	\
525   m(+1, u64, error_counter_lane4, "error_counter_lane4",	\
526     "Error counter for PCI lane 4", pcie_lanes_counters)	\
527   m(+1, u64, error_counter_lane5, "error_counter_lane5",	\
528     "Error counter for PCI lane 5", pcie_lanes_counters)	\
529   m(+1, u64, error_counter_lane6, "error_counter_lane6",	\
530     "Error counter for PCI lane 6", pcie_lanes_counters)	\
531   m(+1, u64, error_counter_lane7, "error_counter_lane7",	\
532     "Error counter for PCI lane 7", pcie_lanes_counters)	\
533   m(+1, u64, error_counter_lane8, "error_counter_lane8",	\
534     "Error counter for PCI lane 8", pcie_lanes_counters)	\
535   m(+1, u64, error_counter_lane9, "error_counter_lane9",	\
536     "Error counter for PCI lane 9", pcie_lanes_counters)	\
537   m(+1, u64, error_counter_lane10, "error_counter_lane10",	\
538     "Error counter for PCI lane 10", pcie_lanes_counters)	\
539   m(+1, u64, error_counter_lane11, "error_counter_lane11",	\
540     "Error counter for PCI lane 11", pcie_lanes_counters)	\
541   m(+1, u64, error_counter_lane12, "error_counter_lane12",	\
542     "Error counter for PCI lane 12", pcie_lanes_counters)	\
543   m(+1, u64, error_counter_lane13, "error_counter_lane13",	\
544     "Error counter for PCI lane 13", pcie_lanes_counters)	\
545   m(+1, u64, error_counter_lane14, "error_counter_lane14",	\
546     "Error counter for PCI lane 14", pcie_lanes_counters)	\
547   m(+1, u64, error_counter_lane15, "error_counter_lane15",	\
548     "Error counter for PCI lane 15", pcie_lanes_counters)
549 
550 /*
551  * Make sure to update mlx5e_update_pport_counters()
552  * when adding a new MLX5E_PPORT_STATS block
553  */
554 #define	MLX5E_PPORT_STATS(m)			\
555   MLX5E_PPORT_PER_PRIO_STATS(m)		\
556   MLX5E_PPORT_IEEE802_3_STATS(m)		\
557   MLX5E_PPORT_RFC2819_STATS(m)
558 
559 #define	MLX5E_PORT_STATS_DEBUG(m)		\
560   MLX5E_PPORT_RFC2819_STATS_DEBUG(m)		\
561   MLX5E_PPORT_RFC2863_STATS_DEBUG(m)		\
562   MLX5E_PPORT_PHYSICAL_LAYER_STATS_DEBUG(m)	\
563   MLX5E_PPORT_ETHERNET_EXTENDED_STATS_DEBUG(m)	\
564   MLX5E_PPORT_STATISTICAL_DEBUG(m)		\
565   MLX5E_PCIE_PERFORMANCE_COUNTERS_64(m) \
566   MLX5E_PCIE_PERFORMANCE_COUNTERS_32(m) \
567   MLX5E_PCIE_TIMERS_AND_STATES_COUNTERS_32(m) \
568   MLX5E_PCIE_LANE_COUNTERS_32(m)
569 
570 #define	MLX5E_PPORT_IEEE802_3_STATS_NUM \
571   (0 MLX5E_PPORT_IEEE802_3_STATS(MLX5E_STATS_COUNT))
572 #define	MLX5E_PPORT_RFC2819_STATS_NUM \
573   (0 MLX5E_PPORT_RFC2819_STATS(MLX5E_STATS_COUNT))
574 #define	MLX5E_PPORT_STATS_NUM \
575   (0 MLX5E_PPORT_STATS(MLX5E_STATS_COUNT))
576 
577 #define	MLX5E_PPORT_PER_PRIO_STATS_NUM \
578   (0 MLX5E_PPORT_PER_PRIO_STATS(MLX5E_STATS_COUNT))
579 #define	MLX5E_PPORT_RFC2819_STATS_DEBUG_NUM \
580   (0 MLX5E_PPORT_RFC2819_STATS_DEBUG(MLX5E_STATS_COUNT))
581 #define	MLX5E_PPORT_RFC2863_STATS_DEBUG_NUM \
582   (0 MLX5E_PPORT_RFC2863_STATS_DEBUG(MLX5E_STATS_COUNT))
583 #define	MLX5E_PPORT_PHYSICAL_LAYER_STATS_DEBUG_NUM \
584   (0 MLX5E_PPORT_PHYSICAL_LAYER_STATS_DEBUG(MLX5E_STATS_COUNT))
585 #define	MLX5E_PPORT_ETHERNET_EXTENDED_STATS_DEBUG_NUM \
586   (0 MLX5E_PPORT_ETHERNET_EXTENDED_STATS_DEBUG(MLX5E_STATS_COUNT))
587 #define	MLX5E_PPORT_STATISTICAL_DEBUG_NUM \
588   (0 MLX5E_PPORT_STATISTICAL_DEBUG(MLX5E_STATS_COUNT))
589 #define	MLX5E_PORT_STATS_DEBUG_NUM \
590   (0 MLX5E_PORT_STATS_DEBUG(MLX5E_STATS_COUNT))
591 
592 struct mlx5e_pport_stats {
593 	struct	sysctl_ctx_list ctx;
594 	u64	arg [0];
595 	MLX5E_PPORT_STATS(MLX5E_STATS_VAR)
596 };
597 
598 struct mlx5e_port_stats_debug {
599 	struct	sysctl_ctx_list ctx;
600 	u64	arg [0];
601 	MLX5E_PORT_STATS_DEBUG(MLX5E_STATS_VAR)
602 };
603 
604 #define	MLX5E_RQ_STATS(m)					\
605   m(+1, u64, packets, "packets", "Received packets")		\
606   m(+1, u64, bytes, "bytes", "Received bytes")			\
607   m(+1, u64, csum_none, "csum_none", "Received packets")		\
608   m(+1, u64, lro_packets, "lro_packets", "Received LRO packets")	\
609   m(+1, u64, lro_bytes, "lro_bytes", "Received LRO bytes")	\
610   m(+1, u64, sw_lro_queued, "sw_lro_queued", "Packets queued for SW LRO")	\
611   m(+1, u64, sw_lro_flushed, "sw_lro_flushed", "Packets flushed from SW LRO")	\
612   m(+1, u64, wqe_err, "wqe_err", "Received packets")
613 
614 #define	MLX5E_RQ_STATS_NUM (0 MLX5E_RQ_STATS(MLX5E_STATS_COUNT))
615 
616 struct mlx5e_rq_stats {
617 	struct	sysctl_ctx_list ctx;
618 	u64	arg [0];
619 	MLX5E_RQ_STATS(MLX5E_STATS_VAR)
620 };
621 
622 #define	MLX5E_SQ_STATS(m)						\
623   m(+1, u64, packets, "packets", "Transmitted packets")			\
624   m(+1, u64, bytes, "bytes", "Transmitted bytes")			\
625   m(+1, u64, tso_packets, "tso_packets", "Transmitted packets")		\
626   m(+1, u64, tso_bytes, "tso_bytes", "Transmitted bytes")		\
627   m(+1, u64, csum_offload_none, "csum_offload_none", "Transmitted packets")	\
628   m(+1, u64, defragged, "defragged", "Transmitted packets")		\
629   m(+1, u64, dropped, "dropped", "Transmitted packets")			\
630   m(+1, u64, nop, "nop", "Transmitted packets")
631 
632 #define	MLX5E_SQ_STATS_NUM (0 MLX5E_SQ_STATS(MLX5E_STATS_COUNT))
633 
634 struct mlx5e_sq_stats {
635 	struct	sysctl_ctx_list ctx;
636 	u64	arg [0];
637 	MLX5E_SQ_STATS(MLX5E_STATS_VAR)
638 };
639 
640 struct mlx5e_stats {
641 	struct mlx5e_vport_stats vport;
642 	struct mlx5e_pport_stats pport;
643 	struct mlx5e_port_stats_debug port_stats_debug;
644 };
645 
646 struct mlx5e_rq_param {
647 	u32	rqc [MLX5_ST_SZ_DW(rqc)];
648 	struct mlx5_wq_param wq;
649 };
650 
651 struct mlx5e_sq_param {
652 	u32	sqc [MLX5_ST_SZ_DW(sqc)];
653 	struct mlx5_wq_param wq;
654 };
655 
656 struct mlx5e_cq_param {
657 	u32	cqc [MLX5_ST_SZ_DW(cqc)];
658 	struct mlx5_wq_param wq;
659 };
660 
661 struct mlx5e_params {
662 	u8	log_sq_size;
663 	u8	log_rq_size;
664 	u16	num_channels;
665 	u8	default_vlan_prio;
666 	u8	num_tc;
667 	u8	rx_cq_moderation_mode;
668 	u8	tx_cq_moderation_mode;
669 	u16	rx_cq_moderation_usec;
670 	u16	rx_cq_moderation_pkts;
671 	u16	tx_cq_moderation_usec;
672 	u16	tx_cq_moderation_pkts;
673 	u16	min_rx_wqes;
674 	bool	hw_lro_en;
675 	bool	cqe_zipping_en;
676 	u32	lro_wqe_sz;
677 	u16	rx_hash_log_tbl_sz;
678 	u32	tx_pauseframe_control __aligned(4);
679 	u32	rx_pauseframe_control __aligned(4);
680 	u16	tx_max_inline;
681 	u8	tx_min_inline_mode;
682 	u8	tx_priority_flow_control;
683 	u8	rx_priority_flow_control;
684 	u8	channels_rsss;
685 };
686 
687 #define	MLX5E_PARAMS(m)							\
688   m(+1, u64, tx_queue_size_max, "tx_queue_size_max", "Max send queue size") \
689   m(+1, u64, rx_queue_size_max, "rx_queue_size_max", "Max receive queue size") \
690   m(+1, u64, tx_queue_size, "tx_queue_size", "Default send queue size")	\
691   m(+1, u64, rx_queue_size, "rx_queue_size", "Default receive queue size") \
692   m(+1, u64, channels, "channels", "Default number of channels")		\
693   m(+1, u64, channels_rsss, "channels_rsss", "Default channels receive side scaling stride") \
694   m(+1, u64, coalesce_usecs_max, "coalesce_usecs_max", "Maximum usecs for joining packets") \
695   m(+1, u64, coalesce_pkts_max, "coalesce_pkts_max", "Maximum packets to join") \
696   m(+1, u64, rx_coalesce_usecs, "rx_coalesce_usecs", "Limit in usec for joining rx packets") \
697   m(+1, u64, rx_coalesce_pkts, "rx_coalesce_pkts", "Maximum number of rx packets to join") \
698   m(+1, u64, rx_coalesce_mode, "rx_coalesce_mode", "0: EQE fixed mode 1: CQE fixed mode 2: EQE auto mode 3: CQE auto mode") \
699   m(+1, u64, tx_coalesce_usecs, "tx_coalesce_usecs", "Limit in usec for joining tx packets") \
700   m(+1, u64, tx_coalesce_pkts, "tx_coalesce_pkts", "Maximum number of tx packets to join") \
701   m(+1, u64, tx_coalesce_mode, "tx_coalesce_mode", "0: EQE mode 1: CQE mode") \
702   m(+1, u64, tx_completion_fact, "tx_completion_fact", "1..MAX: Completion event ratio") \
703   m(+1, u64, tx_completion_fact_max, "tx_completion_fact_max", "Maximum completion event ratio") \
704   m(+1, u64, hw_lro, "hw_lro", "set to enable hw_lro") \
705   m(+1, u64, cqe_zipping, "cqe_zipping", "0 : CQE zipping disabled") \
706   m(+1, u64, modify_tx_dma, "modify_tx_dma", "0: Enable TX 1: Disable TX") \
707   m(+1, u64, modify_rx_dma, "modify_rx_dma", "0: Enable RX 1: Disable RX") \
708   m(+1, u64, diag_pci_enable, "diag_pci_enable", "0: Disabled 1: Enabled") \
709   m(+1, u64, diag_general_enable, "diag_general_enable", "0: Disabled 1: Enabled") \
710   m(+1, u64, hw_mtu, "hw_mtu", "Current hardware MTU value") \
711   m(+1, u64, mc_local_lb, "mc_local_lb", "0: Local multicast loopback enabled 1: Disabled") \
712   m(+1, u64, uc_local_lb, "uc_local_lb", "0: Local unicast loopback enabled 1: Disabled")
713 
714 #define	MLX5E_PARAMS_NUM (0 MLX5E_PARAMS(MLX5E_STATS_COUNT))
715 
716 struct mlx5e_params_ethtool {
717 	u64	arg [0];
718 	MLX5E_PARAMS(MLX5E_STATS_VAR)
719 	u64	max_bw_value[IEEE_8021QAZ_MAX_TCS];
720 	u8	max_bw_share[IEEE_8021QAZ_MAX_TCS];
721 	u8	prio_tc[MLX5E_MAX_PRIORITY];
722 	u8	dscp2prio[MLX5_MAX_SUPPORTED_DSCP];
723 	u8	trust_state;
724 	u8	fec_mask_10x_25x[MLX5E_MAX_FEC_10X_25X];
725 	u16	fec_mask_50x[MLX5E_MAX_FEC_50X];
726 	u8	fec_avail_10x_25x[MLX5E_MAX_FEC_10X_25X];
727 	u16	fec_avail_50x[MLX5E_MAX_FEC_50X];
728 	u32	fec_mode_active;
729 	u32	hw_mtu_msb;
730 };
731 
732 struct mlx5e_cq {
733 	/* data path - accessed per cqe */
734 	struct mlx5_cqwq wq;
735 
736 	/* data path - accessed per HW polling */
737 	struct mlx5_core_cq mcq;
738 
739 	/* control */
740 	struct mlx5e_priv *priv;
741 	struct mlx5_wq_ctrl wq_ctrl;
742 } __aligned(MLX5E_CACHELINE_SIZE);
743 
744 struct mlx5e_rq_mbuf {
745 	bus_dmamap_t	dma_map;
746 	caddr_t		data;
747 	struct mbuf	*mbuf;
748 };
749 
750 struct mlx5e_rq {
751 	/* persistant fields */
752 	struct mtx mtx;
753 	struct mlx5e_rq_stats stats;
754 	struct callout watchdog;
755 
756 	/* data path */
757 #define	mlx5e_rq_zero_start wq
758 	struct mlx5_wq_ll wq;
759 	bus_dma_tag_t dma_tag;
760 	u32	wqe_sz;
761 	u32	nsegs;
762 	struct mlx5e_rq_mbuf *mbuf;
763 	struct ifnet *ifp;
764 	struct mlx5e_cq cq;
765 	struct lro_ctrl lro;
766 	volatile int enabled;
767 	int	ix;
768 
769 	/* Dynamic Interrupt Moderation */
770 	struct net_dim dim;
771 
772 	/* control */
773 	struct mlx5_wq_ctrl wq_ctrl;
774 	u32	rqn;
775 	struct mlx5e_channel *channel;
776 } __aligned(MLX5E_CACHELINE_SIZE);
777 
778 struct mlx5e_sq_mbuf {
779 	bus_dmamap_t dma_map;
780 	struct mbuf *mbuf;
781 	volatile s32 *p_refcount;	/* in use refcount, if any */
782 	u32	num_bytes;
783 	u32	num_wqebbs;
784 };
785 
786 enum {
787 	MLX5E_SQ_READY,
788 	MLX5E_SQ_FULL
789 };
790 
791 struct mlx5e_snd_tag {
792 	struct m_snd_tag m_snd_tag;	/* send tag */
793 	u32	type;	/* tag type */
794 };
795 
796 struct mlx5e_sq {
797 	/* persistant fields */
798 	struct	mtx lock;
799 	struct	mtx comp_lock;
800 	struct	mlx5e_sq_stats stats;
801   	struct	callout cev_callout;
802 
803 	/* data path */
804 #define	mlx5e_sq_zero_start dma_tag
805 	bus_dma_tag_t dma_tag;
806 
807 	/* dirtied @completion */
808 	u16	cc;
809 
810 	/* dirtied @xmit */
811 	u16	pc __aligned(MLX5E_CACHELINE_SIZE);
812 	u16	bf_offset;
813 	u16	cev_counter;		/* completion event counter */
814 	u16	cev_factor;		/* completion event factor */
815 	u16	cev_next_state;		/* next completion event state */
816 #define	MLX5E_CEV_STATE_INITIAL 0	/* timer not started */
817 #define	MLX5E_CEV_STATE_SEND_NOPS 1	/* send NOPs */
818 #define	MLX5E_CEV_STATE_HOLD_NOPS 2	/* don't send NOPs yet */
819 	u16	running;		/* set if SQ is running */
820 	union {
821 		u32	d32[2];
822 		u64	d64;
823 	} doorbell;
824 
825 	struct	mlx5e_cq cq;
826 
827 	/* pointers to per packet info: write@xmit, read@completion */
828 	struct	mlx5e_sq_mbuf *mbuf;
829 	struct	buf_ring *br;
830 
831 	/* read only */
832 	struct	mlx5_wq_cyc wq;
833 	struct	mlx5_uar uar;
834 	struct	ifnet *ifp;
835 	u32	sqn;
836 	u32	bf_buf_size;
837 	u32	mkey_be;
838 	u16	max_inline;
839 	u8	min_inline_mode;
840 	u8	min_insert_caps;
841 #define	MLX5E_INSERT_VLAN 1
842 #define	MLX5E_INSERT_NON_VLAN 2
843 
844 	/* control path */
845 	struct	mlx5_wq_ctrl wq_ctrl;
846 	struct	mlx5e_priv *priv;
847 	int	tc;
848 } __aligned(MLX5E_CACHELINE_SIZE);
849 
850 static inline bool
851 mlx5e_sq_has_room_for(struct mlx5e_sq *sq, u16 n)
852 {
853 	u16 cc = sq->cc;
854 	u16 pc = sq->pc;
855 
856 	return ((sq->wq.sz_m1 & (cc - pc)) >= n || cc == pc);
857 }
858 
859 static inline u32
860 mlx5e_sq_queue_level(struct mlx5e_sq *sq)
861 {
862 	u16 cc;
863 	u16 pc;
864 
865 	if (sq == NULL)
866 		return (0);
867 
868 	cc = sq->cc;
869 	pc = sq->pc;
870 
871 	return (((sq->wq.sz_m1 & (pc - cc)) *
872 	    IF_SND_QUEUE_LEVEL_MAX) / sq->wq.sz_m1);
873 }
874 
875 struct mlx5e_channel {
876 	struct mlx5e_rq rq;
877 	struct mlx5e_snd_tag tag;
878 	struct mlx5e_sq sq[MLX5E_MAX_TX_NUM_TC];
879 	struct mlx5e_priv *priv;
880 	struct completion completion;
881 	int	ix;
882 } __aligned(MLX5E_CACHELINE_SIZE);
883 
884 enum mlx5e_traffic_types {
885 	MLX5E_TT_IPV4_TCP,
886 	MLX5E_TT_IPV6_TCP,
887 	MLX5E_TT_IPV4_UDP,
888 	MLX5E_TT_IPV6_UDP,
889 	MLX5E_TT_IPV4_IPSEC_AH,
890 	MLX5E_TT_IPV6_IPSEC_AH,
891 	MLX5E_TT_IPV4_IPSEC_ESP,
892 	MLX5E_TT_IPV6_IPSEC_ESP,
893 	MLX5E_TT_IPV4,
894 	MLX5E_TT_IPV6,
895 	MLX5E_TT_ANY,
896 	MLX5E_NUM_TT,
897 };
898 
899 enum {
900 	MLX5E_RQT_SPREADING = 0,
901 	MLX5E_RQT_DEFAULT_RQ = 1,
902 	MLX5E_NUM_RQT = 2,
903 };
904 
905 struct mlx5_flow_rule;
906 
907 struct mlx5e_eth_addr_info {
908 	u8	addr [ETH_ALEN + 2];
909 	u32	tt_vec;
910 	/* flow table rule per traffic type */
911 	struct mlx5_flow_rule	*ft_rule[MLX5E_NUM_TT];
912 };
913 
914 #define	MLX5E_ETH_ADDR_HASH_SIZE (1 << BITS_PER_BYTE)
915 
916 struct mlx5e_eth_addr_hash_node;
917 
918 struct mlx5e_eth_addr_hash_head {
919 	struct mlx5e_eth_addr_hash_node *lh_first;
920 };
921 
922 struct mlx5e_eth_addr_db {
923 	struct mlx5e_eth_addr_hash_head if_uc[MLX5E_ETH_ADDR_HASH_SIZE];
924 	struct mlx5e_eth_addr_hash_head if_mc[MLX5E_ETH_ADDR_HASH_SIZE];
925 	struct mlx5e_eth_addr_info broadcast;
926 	struct mlx5e_eth_addr_info allmulti;
927 	struct mlx5e_eth_addr_info promisc;
928 	bool	broadcast_enabled;
929 	bool	allmulti_enabled;
930 	bool	promisc_enabled;
931 };
932 
933 enum {
934 	MLX5E_STATE_ASYNC_EVENTS_ENABLE,
935 	MLX5E_STATE_OPENED,
936 };
937 
938 enum {
939 	MLX5_BW_NO_LIMIT   = 0,
940 	MLX5_100_MBPS_UNIT = 3,
941 	MLX5_GBPS_UNIT     = 4,
942 };
943 
944 struct mlx5e_vlan_db {
945 	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
946 	struct mlx5_flow_rule	*active_vlans_ft_rule[VLAN_N_VID];
947 	struct mlx5_flow_rule	*untagged_ft_rule;
948 	struct mlx5_flow_rule	*any_cvlan_ft_rule;
949 	struct mlx5_flow_rule	*any_svlan_ft_rule;
950 	bool	filter_disabled;
951 };
952 
953 struct mlx5e_flow_table {
954 	int num_groups;
955 	struct mlx5_flow_table *t;
956 	struct mlx5_flow_group **g;
957 };
958 
959 struct mlx5e_flow_tables {
960 	struct mlx5_flow_namespace *ns;
961 	struct mlx5e_flow_table vlan;
962 	struct mlx5e_flow_table main;
963 	struct mlx5e_flow_table inner_rss;
964 };
965 
966 struct mlx5e_xmit_args {
967 	volatile s32 *pref;
968 	u32 tisn;
969 	u16 ihs;
970 };
971 
972 #include "en_rl.h"
973 #include "en_hw_tls.h"
974 
975 #define	MLX5E_TSTMP_PREC 10
976 
977 struct mlx5e_clbr_point {
978 	uint64_t base_curr;
979 	uint64_t base_prev;
980 	uint64_t clbr_hw_prev;
981 	uint64_t clbr_hw_curr;
982 	u_int clbr_gen;
983 };
984 
985 struct mlx5e_dcbx {
986 	u32	cable_len;
987 	u32	xoff;
988 };
989 
990 struct mlx5e_priv {
991 	struct mlx5_core_dev *mdev;     /* must be first */
992 
993 	/* priv data path fields - start */
994 	int	order_base_2_num_channels;
995 	int	queue_mapping_channel_mask;
996 	int	num_tc;
997 	int	default_vlan_prio;
998 	/* priv data path fields - end */
999 
1000 	unsigned long state;
1001 	int	gone;
1002 #define	PRIV_LOCK(priv) sx_xlock(&(priv)->state_lock)
1003 #define	PRIV_UNLOCK(priv) sx_xunlock(&(priv)->state_lock)
1004 #define	PRIV_LOCKED(priv) sx_xlocked(&(priv)->state_lock)
1005 #define	PRIV_ASSERT_LOCKED(priv) sx_assert(&(priv)->state_lock, SA_XLOCKED)
1006 	struct sx state_lock;		/* Protects Interface state */
1007 	struct mlx5_uar cq_uar;
1008 	u32	pdn;
1009 	u32	tdn;
1010 	struct mlx5_core_mr mr;
1011 
1012 	u32	tisn[MLX5E_MAX_TX_NUM_TC];
1013 	u32	rqtn;
1014 	u32	tirn[MLX5E_NUM_TT];
1015 
1016 	struct mlx5e_flow_tables fts;
1017 	struct mlx5e_eth_addr_db eth_addr;
1018 	struct mlx5e_vlan_db vlan;
1019 
1020 	struct mlx5e_params params;
1021 	struct mlx5e_params_ethtool params_ethtool;
1022 	union mlx5_core_pci_diagnostics params_pci;
1023 	union mlx5_core_general_diagnostics params_general;
1024 	struct mtx async_events_mtx;	/* sync hw events */
1025 	struct work_struct update_stats_work;
1026 	struct work_struct update_carrier_work;
1027 	struct work_struct set_rx_mode_work;
1028 	MLX5_DECLARE_DOORBELL_LOCK(doorbell_lock)
1029 
1030 	struct ifnet *ifp;
1031 	struct sysctl_ctx_list sysctl_ctx;
1032 	struct sysctl_oid *sysctl_ifnet;
1033 	struct sysctl_oid *sysctl_hw;
1034 	int	sysctl_debug;
1035 	struct mlx5e_stats stats;
1036 	int	counter_set_id;
1037 
1038 	struct workqueue_struct *wq;
1039 
1040 	eventhandler_tag vlan_detach;
1041 	eventhandler_tag vlan_attach;
1042 	struct ifmedia media;
1043 	int	media_status_last;
1044 	int	media_active_last;
1045 
1046 	struct callout watchdog;
1047 
1048 	struct mlx5e_rl_priv_data rl;
1049 
1050 	struct mlx5e_tls tls;
1051 
1052 	struct callout tstmp_clbr;
1053 	int	clbr_done;
1054 	int	clbr_curr;
1055 	struct mlx5e_clbr_point clbr_points[2];
1056 	u_int	clbr_gen;
1057 
1058 	struct mlx5e_dcbx dcbx;
1059 	bool	sw_is_port_buf_owner;
1060 
1061 	struct pfil_head *pfil;
1062 	struct mlx5e_channel channel[];
1063 };
1064 
1065 #define	MLX5E_NET_IP_ALIGN 2
1066 
1067 struct mlx5e_tx_wqe {
1068 	struct mlx5_wqe_ctrl_seg ctrl;
1069 	struct mlx5_wqe_eth_seg eth;
1070 };
1071 
1072 struct mlx5e_tx_umr_wqe {
1073 	struct mlx5_wqe_ctrl_seg ctrl;
1074 	struct mlx5_wqe_umr_ctrl_seg umr;
1075 	uint8_t mkc[64];
1076 };
1077 
1078 struct mlx5e_tx_psv_wqe {
1079 	struct mlx5_wqe_ctrl_seg ctrl;
1080 	struct mlx5_seg_set_psv psv;
1081 };
1082 
1083 struct mlx5e_rx_wqe {
1084 	struct mlx5_wqe_srq_next_seg next;
1085 	struct mlx5_wqe_data_seg data[];
1086 };
1087 
1088 /* the size of the structure above must be power of two */
1089 CTASSERT(powerof2(sizeof(struct mlx5e_rx_wqe)));
1090 
1091 struct mlx5e_eeprom {
1092 	int	lock_bit;
1093 	int	i2c_addr;
1094 	int	page_num;
1095 	int	device_addr;
1096 	int	module_num;
1097 	int	len;
1098 	int	type;
1099 	int	page_valid;
1100 	u32	*data;
1101 };
1102 
1103 #define	MLX5E_FLD_MAX(typ, fld) ((1ULL << __mlx5_bit_sz(typ, fld)) - 1ULL)
1104 
1105 bool	mlx5e_do_send_cqe(struct mlx5e_sq *);
1106 int	mlx5e_get_full_header_size(struct mbuf *, struct tcphdr **);
1107 int	mlx5e_xmit(struct ifnet *, struct mbuf *);
1108 
1109 int	mlx5e_open_locked(struct ifnet *);
1110 int	mlx5e_close_locked(struct ifnet *);
1111 
1112 void	mlx5e_cq_error_event(struct mlx5_core_cq *mcq, int event);
1113 void	mlx5e_rx_cq_comp(struct mlx5_core_cq *);
1114 void	mlx5e_tx_cq_comp(struct mlx5_core_cq *);
1115 struct mlx5_cqe64 *mlx5e_get_cqe(struct mlx5e_cq *cq);
1116 
1117 void	mlx5e_dim_work(struct work_struct *);
1118 void	mlx5e_dim_build_cq_param(struct mlx5e_priv *, struct mlx5e_cq_param *);
1119 
1120 int	mlx5e_open_flow_table(struct mlx5e_priv *priv);
1121 void	mlx5e_close_flow_table(struct mlx5e_priv *priv);
1122 void	mlx5e_set_rx_mode_core(struct mlx5e_priv *priv);
1123 void	mlx5e_set_rx_mode_work(struct work_struct *work);
1124 
1125 void	mlx5e_vlan_rx_add_vid(void *, struct ifnet *, u16);
1126 void	mlx5e_vlan_rx_kill_vid(void *, struct ifnet *, u16);
1127 void	mlx5e_enable_vlan_filter(struct mlx5e_priv *priv);
1128 void	mlx5e_disable_vlan_filter(struct mlx5e_priv *priv);
1129 int	mlx5e_add_all_vlan_rules(struct mlx5e_priv *priv);
1130 void	mlx5e_del_all_vlan_rules(struct mlx5e_priv *priv);
1131 
1132 static inline void
1133 mlx5e_tx_notify_hw(struct mlx5e_sq *sq, u32 *wqe, int bf_sz)
1134 {
1135 	u16 ofst = MLX5_BF_OFFSET + sq->bf_offset;
1136 
1137 	/* ensure wqe is visible to device before updating doorbell record */
1138 	wmb();
1139 
1140 	*sq->wq.db = cpu_to_be32(sq->pc);
1141 
1142 	/*
1143 	 * Ensure the doorbell record is visible to device before ringing
1144 	 * the doorbell:
1145 	 */
1146 	wmb();
1147 
1148 	if (bf_sz) {
1149 		__iowrite64_copy(sq->uar.bf_map + ofst, wqe, bf_sz);
1150 
1151 		/* flush the write-combining mapped buffer */
1152 		wmb();
1153 
1154 	} else {
1155 		mlx5_write64(wqe, sq->uar.map + ofst,
1156 		    MLX5_GET_DOORBELL_LOCK(&sq->priv->doorbell_lock));
1157 	}
1158 
1159 	sq->bf_offset ^= sq->bf_buf_size;
1160 }
1161 
1162 static inline void
1163 mlx5e_cq_arm(struct mlx5e_cq *cq, spinlock_t *dblock)
1164 {
1165 	struct mlx5_core_cq *mcq;
1166 
1167 	mcq = &cq->mcq;
1168 	mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, dblock, cq->wq.cc);
1169 }
1170 
1171 #define	mlx5e_dbg(_IGN, _priv, ...) mlx5_core_dbg((_priv)->mdev, __VA_ARGS__)
1172 
1173 extern const struct ethtool_ops mlx5e_ethtool_ops;
1174 void	mlx5e_create_ethtool(struct mlx5e_priv *);
1175 void	mlx5e_create_stats(struct sysctl_ctx_list *,
1176     struct sysctl_oid_list *, const char *,
1177     const char **, unsigned, u64 *);
1178 void	mlx5e_create_counter_stats(struct sysctl_ctx_list *,
1179     struct sysctl_oid_list *, const char *,
1180     const char **, unsigned, counter_u64_t *);
1181 void	mlx5e_send_nop(struct mlx5e_sq *, u32);
1182 int	mlx5e_sq_dump_xmit(struct mlx5e_sq *, struct mlx5e_xmit_args *, struct mbuf **);
1183 int	mlx5e_sq_xmit(struct mlx5e_sq *, struct mbuf **);
1184 void	mlx5e_sq_cev_timeout(void *);
1185 int	mlx5e_refresh_channel_params(struct mlx5e_priv *);
1186 int	mlx5e_open_cq(struct mlx5e_priv *, struct mlx5e_cq_param *,
1187     struct mlx5e_cq *, mlx5e_cq_comp_t *, int eq_ix);
1188 void	mlx5e_close_cq(struct mlx5e_cq *);
1189 void	mlx5e_free_sq_db(struct mlx5e_sq *);
1190 int	mlx5e_alloc_sq_db(struct mlx5e_sq *);
1191 int	mlx5e_enable_sq(struct mlx5e_sq *, struct mlx5e_sq_param *, int tis_num);
1192 int	mlx5e_modify_sq(struct mlx5e_sq *, int curr_state, int next_state);
1193 void	mlx5e_disable_sq(struct mlx5e_sq *);
1194 void	mlx5e_drain_sq(struct mlx5e_sq *);
1195 void	mlx5e_modify_tx_dma(struct mlx5e_priv *priv, uint8_t value);
1196 void	mlx5e_modify_rx_dma(struct mlx5e_priv *priv, uint8_t value);
1197 void	mlx5e_resume_sq(struct mlx5e_sq *sq);
1198 void	mlx5e_update_sq_inline(struct mlx5e_sq *sq);
1199 void	mlx5e_refresh_sq_inline(struct mlx5e_priv *priv);
1200 int	mlx5e_update_buf_lossy(struct mlx5e_priv *priv);
1201 int	mlx5e_fec_update(struct mlx5e_priv *priv);
1202 
1203 if_snd_tag_alloc_t mlx5e_ul_snd_tag_alloc;
1204 if_snd_tag_modify_t mlx5e_ul_snd_tag_modify;
1205 if_snd_tag_query_t mlx5e_ul_snd_tag_query;
1206 if_snd_tag_free_t mlx5e_ul_snd_tag_free;
1207 
1208 #endif					/* _MLX5_EN_H_ */
1209