1 /*
2  * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  *
32  */
33 
34 #ifndef _MLX4_EN_H_
35 #define _MLX4_EN_H_
36 
37 #include <linux/bitops.h>
38 #include <linux/compiler.h>
39 #include <linux/list.h>
40 #include <linux/mutex.h>
41 #include <linux/netdevice.h>
42 #include <linux/if_vlan.h>
43 #include <linux/net_tstamp.h>
44 #ifdef CONFIG_MLX4_EN_DCB
45 #include <linux/dcbnl.h>
46 #endif
47 #include <linux/cpu_rmap.h>
48 #include <linux/ptp_clock_kernel.h>
49 #include <net/xdp.h>
50 
51 #include <linux/mlx4/device.h>
52 #include <linux/mlx4/qp.h>
53 #include <linux/mlx4/cq.h>
54 #include <linux/mlx4/srq.h>
55 #include <linux/mlx4/doorbell.h>
56 #include <linux/mlx4/cmd.h>
57 
58 #include "en_port.h"
59 #include "mlx4_stats.h"
60 
61 #define DRV_NAME	"mlx4_en"
62 #define DRV_VERSION	"4.0-0"
63 
64 #define MLX4_EN_MSG_LEVEL	(NETIF_MSG_LINK | NETIF_MSG_IFDOWN)
65 
66 /*
67  * Device constants
68  */
69 
70 
71 #define MLX4_EN_PAGE_SHIFT	12
72 #define MLX4_EN_PAGE_SIZE	(1 << MLX4_EN_PAGE_SHIFT)
73 #define DEF_RX_RINGS		16
74 #define MAX_RX_RINGS		128
75 #define MIN_RX_RINGS		4
76 #define LOG_TXBB_SIZE		6
77 #define TXBB_SIZE		BIT(LOG_TXBB_SIZE)
78 #define HEADROOM		(2048 / TXBB_SIZE + 1)
79 #define STAMP_STRIDE		64
80 #define STAMP_DWORDS		(STAMP_STRIDE / 4)
81 #define STAMP_SHIFT		31
82 #define STAMP_VAL		0x7fffffff
83 #define STATS_DELAY		(HZ / 4)
84 #define SERVICE_TASK_DELAY	(HZ / 4)
85 #define MAX_NUM_OF_FS_RULES	256
86 
87 #define MLX4_EN_FILTER_HASH_SHIFT 4
88 #define MLX4_EN_FILTER_EXPIRY_QUOTA 60
89 
90 /* Typical TSO descriptor with 16 gather entries is 352 bytes... */
91 #define MAX_DESC_SIZE		512
92 #define MAX_DESC_TXBBS		(MAX_DESC_SIZE / TXBB_SIZE)
93 
94 /*
95  * OS related constants and tunables
96  */
97 
98 #define MLX4_EN_PRIV_FLAGS_BLUEFLAME 1
99 #define MLX4_EN_PRIV_FLAGS_PHV	     2
100 
101 #define MLX4_EN_WATCHDOG_TIMEOUT	(15 * HZ)
102 
103 /* Use the maximum between 16384 and a single page */
104 #define MLX4_EN_ALLOC_SIZE	PAGE_ALIGN(16384)
105 
106 #define MLX4_EN_MAX_RX_FRAGS	4
107 
108 /* Maximum ring sizes */
109 #define MLX4_EN_MAX_TX_SIZE	8192
110 #define MLX4_EN_MAX_RX_SIZE	8192
111 
112 /* Minimum ring size for our page-allocation scheme to work */
113 #define MLX4_EN_MIN_RX_SIZE	(MLX4_EN_ALLOC_SIZE / SMP_CACHE_BYTES)
114 #define MLX4_EN_MIN_TX_SIZE	(4096 / TXBB_SIZE)
115 
116 #define MLX4_EN_SMALL_PKT_SIZE		64
117 #define MLX4_EN_MIN_TX_RING_P_UP	1
118 #define MLX4_EN_MAX_TX_RING_P_UP	32
119 #define MLX4_EN_NUM_UP_LOW		1
120 #define MLX4_EN_NUM_UP_HIGH		8
121 #define MLX4_EN_DEF_RX_RING_SIZE  	1024
122 #define MLX4_EN_DEF_TX_RING_SIZE	MLX4_EN_DEF_RX_RING_SIZE
123 #define MAX_TX_RINGS			(MLX4_EN_MAX_TX_RING_P_UP * \
124 					 MLX4_EN_NUM_UP_HIGH)
125 
126 #define MLX4_EN_DEFAULT_TX_WORK		256
127 
128 /* Target number of packets to coalesce with interrupt moderation */
129 #define MLX4_EN_RX_COAL_TARGET	44
130 #define MLX4_EN_RX_COAL_TIME	0x10
131 
132 #define MLX4_EN_TX_COAL_PKTS	16
133 #define MLX4_EN_TX_COAL_TIME	0x10
134 
135 #define MLX4_EN_RX_RATE_LOW		400000
136 #define MLX4_EN_RX_COAL_TIME_LOW	0
137 #define MLX4_EN_RX_RATE_HIGH		450000
138 #define MLX4_EN_RX_COAL_TIME_HIGH	128
139 #define MLX4_EN_RX_SIZE_THRESH		1024
140 #define MLX4_EN_RX_RATE_THRESH		(1000000 / MLX4_EN_RX_COAL_TIME_HIGH)
141 #define MLX4_EN_SAMPLE_INTERVAL		0
142 #define MLX4_EN_AVG_PKT_SMALL		256
143 
144 #define MLX4_EN_AUTO_CONF	0xffff
145 
146 #define MLX4_EN_DEF_RX_PAUSE	1
147 #define MLX4_EN_DEF_TX_PAUSE	1
148 
149 /* Interval between successive polls in the Tx routine when polling is used
150    instead of interrupts (in per-core Tx rings) - should be power of 2 */
151 #define MLX4_EN_TX_POLL_MODER	16
152 #define MLX4_EN_TX_POLL_TIMEOUT	(HZ / 4)
153 
154 #define SMALL_PACKET_SIZE      (256 - NET_IP_ALIGN)
155 #define HEADER_COPY_SIZE       (128 - NET_IP_ALIGN)
156 #define MLX4_LOOPBACK_TEST_PAYLOAD (HEADER_COPY_SIZE - ETH_HLEN)
157 #define PREAMBLE_LEN           8
158 #define MLX4_SELFTEST_LB_MIN_MTU (MLX4_LOOPBACK_TEST_PAYLOAD + NET_IP_ALIGN + \
159 				  ETH_HLEN + PREAMBLE_LEN)
160 
161 #define MLX4_EN_MIN_MTU		46
162 /* VLAN_HLEN is added twice,to support skb vlan tagged with multiple
163  * headers. (For example: ETH_P_8021Q and ETH_P_8021AD).
164  */
165 #define MLX4_EN_EFF_MTU(mtu)	((mtu) + ETH_HLEN + (2 * VLAN_HLEN))
166 #define ETH_BCAST		0xffffffffffffULL
167 
168 #define MLX4_EN_LOOPBACK_RETRIES	5
169 #define MLX4_EN_LOOPBACK_TIMEOUT	100
170 
171 #ifdef MLX4_EN_PERF_STAT
172 /* Number of samples to 'average' */
173 #define AVG_SIZE			128
174 #define AVG_FACTOR			1024
175 
176 #define INC_PERF_COUNTER(cnt)		(++(cnt))
177 #define ADD_PERF_COUNTER(cnt, add)	((cnt) += (add))
178 #define AVG_PERF_COUNTER(cnt, sample) \
179 	((cnt) = ((cnt) * (AVG_SIZE - 1) + (sample) * AVG_FACTOR) / AVG_SIZE)
180 #define GET_PERF_COUNTER(cnt)		(cnt)
181 #define GET_AVG_PERF_COUNTER(cnt)	((cnt) / AVG_FACTOR)
182 
183 #else
184 
185 #define INC_PERF_COUNTER(cnt)		do {} while (0)
186 #define ADD_PERF_COUNTER(cnt, add)	do {} while (0)
187 #define AVG_PERF_COUNTER(cnt, sample)	do {} while (0)
188 #define GET_PERF_COUNTER(cnt)		(0)
189 #define GET_AVG_PERF_COUNTER(cnt)	(0)
190 #endif /* MLX4_EN_PERF_STAT */
191 
192 /* Constants for TX flow */
193 enum {
194 	MAX_INLINE = 104, /* 128 - 16 - 4 - 4 */
195 	MAX_BF = 256,
196 	MIN_PKT_LEN = 17,
197 };
198 
199 /*
200  * Configurables
201  */
202 
203 enum cq_type {
204 	/* keep tx types first */
205 	TX,
206 	TX_XDP,
207 #define MLX4_EN_NUM_TX_TYPES (TX_XDP + 1)
208 	RX,
209 };
210 
211 
212 /*
213  * Useful macros
214  */
215 #define ROUNDUP_LOG2(x)		ilog2(roundup_pow_of_two(x))
216 #define XNOR(x, y)		(!(x) == !(y))
217 
218 
219 struct mlx4_en_tx_info {
220 	union {
221 		struct sk_buff *skb;
222 		struct page *page;
223 	};
224 	dma_addr_t	map0_dma;
225 	u32		map0_byte_count;
226 	u32		nr_txbb;
227 	u32		nr_bytes;
228 	u8		linear;
229 	u8		data_offset;
230 	u8		inl;
231 	u8		ts_requested;
232 	u8		nr_maps;
233 } ____cacheline_aligned_in_smp;
234 
235 
236 #define MLX4_EN_BIT_DESC_OWN	0x80000000
237 #define CTRL_SIZE	sizeof(struct mlx4_wqe_ctrl_seg)
238 #define MLX4_EN_MEMTYPE_PAD	0x100
239 #define DS_SIZE		sizeof(struct mlx4_wqe_data_seg)
240 
241 
242 struct mlx4_en_tx_desc {
243 	struct mlx4_wqe_ctrl_seg ctrl;
244 	union {
245 		struct mlx4_wqe_data_seg data; /* at least one data segment */
246 		struct mlx4_wqe_lso_seg lso;
247 		struct mlx4_wqe_inline_seg inl;
248 	};
249 };
250 
251 #define MLX4_EN_USE_SRQ		0x01000000
252 
253 #define MLX4_EN_CX3_LOW_ID	0x1000
254 #define MLX4_EN_CX3_HIGH_ID	0x1005
255 
256 struct mlx4_en_rx_alloc {
257 	struct page	*page;
258 	dma_addr_t	dma;
259 	u32		page_offset;
260 };
261 
262 #define MLX4_EN_CACHE_SIZE (2 * NAPI_POLL_WEIGHT)
263 
264 struct mlx4_en_page_cache {
265 	u32 index;
266 	struct {
267 		struct page	*page;
268 		dma_addr_t	dma;
269 	} buf[MLX4_EN_CACHE_SIZE];
270 };
271 
272 struct mlx4_en_priv;
273 
274 struct mlx4_en_tx_ring {
275 	/* cache line used and dirtied in tx completion
276 	 * (mlx4_en_free_tx_buf())
277 	 */
278 	u32			last_nr_txbb;
279 	u32			cons;
280 	unsigned long		wake_queue;
281 	struct netdev_queue	*tx_queue;
282 	u32			(*free_tx_desc)(struct mlx4_en_priv *priv,
283 						struct mlx4_en_tx_ring *ring,
284 						int index,
285 						u64 timestamp, int napi_mode);
286 	struct mlx4_en_rx_ring	*recycle_ring;
287 
288 	/* cache line used and dirtied in mlx4_en_xmit() */
289 	u32			prod ____cacheline_aligned_in_smp;
290 	unsigned int		tx_dropped;
291 	unsigned long		bytes;
292 	unsigned long		packets;
293 	unsigned long		tx_csum;
294 	unsigned long		tso_packets;
295 	unsigned long		xmit_more;
296 	struct mlx4_bf		bf;
297 
298 	/* Following part should be mostly read */
299 	__be32			doorbell_qpn;
300 	__be32			mr_key;
301 	u32			size; /* number of TXBBs */
302 	u32			size_mask;
303 	u32			full_size;
304 	u32			buf_size;
305 	void			*buf;
306 	struct mlx4_en_tx_info	*tx_info;
307 	int			qpn;
308 	u8			queue_index;
309 	bool			bf_enabled;
310 	bool			bf_alloced;
311 	u8			hwtstamp_tx_type;
312 	u8			*bounce_buf;
313 
314 	/* Not used in fast path
315 	 * Only queue_stopped might be used if BQL is not properly working.
316 	 */
317 	unsigned long		queue_stopped;
318 	struct mlx4_hwq_resources sp_wqres;
319 	struct mlx4_qp		sp_qp;
320 	struct mlx4_qp_context	sp_context;
321 	cpumask_t		sp_affinity_mask;
322 	enum mlx4_qp_state	sp_qp_state;
323 	u16			sp_stride;
324 	u16			sp_cqn;	/* index of port CQ associated with this ring */
325 } ____cacheline_aligned_in_smp;
326 
327 struct mlx4_en_rx_desc {
328 	/* actual number of entries depends on rx ring stride */
329 	struct mlx4_wqe_data_seg data[0];
330 };
331 
332 struct mlx4_en_rx_ring {
333 	struct mlx4_hwq_resources wqres;
334 	u32 size ;	/* number of Rx descs*/
335 	u32 actual_size;
336 	u32 size_mask;
337 	u16 stride;
338 	u16 log_stride;
339 	u16 cqn;	/* index of port CQ associated with this ring */
340 	u32 prod;
341 	u32 cons;
342 	u32 buf_size;
343 	u8  fcs_del;
344 	void *buf;
345 	void *rx_info;
346 	struct bpf_prog __rcu *xdp_prog;
347 	struct mlx4_en_page_cache page_cache;
348 	unsigned long bytes;
349 	unsigned long packets;
350 	unsigned long csum_ok;
351 	unsigned long csum_none;
352 	unsigned long csum_complete;
353 	unsigned long rx_alloc_pages;
354 	unsigned long xdp_drop;
355 	unsigned long xdp_tx;
356 	unsigned long xdp_tx_full;
357 	unsigned long dropped;
358 	int hwtstamp_rx_filter;
359 	cpumask_var_t affinity_mask;
360 	struct xdp_rxq_info xdp_rxq;
361 };
362 
363 struct mlx4_en_cq {
364 	struct mlx4_cq          mcq;
365 	struct mlx4_hwq_resources wqres;
366 	int                     ring;
367 	struct net_device      *dev;
368 	union {
369 		struct napi_struct napi;
370 		bool               xdp_busy;
371 	};
372 	int size;
373 	int buf_size;
374 	int vector;
375 	enum cq_type type;
376 	u16 moder_time;
377 	u16 moder_cnt;
378 	struct mlx4_cqe *buf;
379 #define MLX4_EN_OPCODE_ERROR	0x1e
380 
381 	struct irq_desc *irq_desc;
382 };
383 
384 struct mlx4_en_port_profile {
385 	u32 flags;
386 	u32 tx_ring_num[MLX4_EN_NUM_TX_TYPES];
387 	u32 rx_ring_num;
388 	u32 tx_ring_size;
389 	u32 rx_ring_size;
390 	u8 num_tx_rings_p_up;
391 	u8 rx_pause;
392 	u8 rx_ppp;
393 	u8 tx_pause;
394 	u8 tx_ppp;
395 	u8 num_up;
396 	int rss_rings;
397 	int inline_thold;
398 	struct hwtstamp_config hwtstamp_config;
399 };
400 
401 struct mlx4_en_profile {
402 	int udp_rss;
403 	u8 rss_mask;
404 	u32 active_ports;
405 	u32 small_pkt_int;
406 	u8 no_reset;
407 	u8 max_num_tx_rings_p_up;
408 	struct mlx4_en_port_profile prof[MLX4_MAX_PORTS + 1];
409 };
410 
411 struct mlx4_en_dev {
412 	struct mlx4_dev         *dev;
413 	struct pci_dev		*pdev;
414 	struct mutex		state_lock;
415 	struct net_device       *pndev[MLX4_MAX_PORTS + 1];
416 	struct net_device       *upper[MLX4_MAX_PORTS + 1];
417 	u32                     port_cnt;
418 	bool			device_up;
419 	struct mlx4_en_profile  profile;
420 	u32			LSO_support;
421 	struct workqueue_struct *workqueue;
422 	struct device           *dma_device;
423 	void __iomem            *uar_map;
424 	struct mlx4_uar         priv_uar;
425 	struct mlx4_mr		mr;
426 	u32                     priv_pdn;
427 	spinlock_t              uar_lock;
428 	u8			mac_removed[MLX4_MAX_PORTS + 1];
429 	u32			nominal_c_mult;
430 	struct cyclecounter	cycles;
431 	seqlock_t		clock_lock;
432 	struct timecounter	clock;
433 	unsigned long		last_overflow_check;
434 	struct ptp_clock	*ptp_clock;
435 	struct ptp_clock_info	ptp_clock_info;
436 	struct notifier_block	nb;
437 };
438 
439 
440 struct mlx4_en_rss_map {
441 	int base_qpn;
442 	struct mlx4_qp qps[MAX_RX_RINGS];
443 	enum mlx4_qp_state state[MAX_RX_RINGS];
444 	struct mlx4_qp *indir_qp;
445 	enum mlx4_qp_state indir_state;
446 };
447 
448 enum mlx4_en_port_flag {
449 	MLX4_EN_PORT_ANC = 1<<0, /* Auto-negotiation complete */
450 	MLX4_EN_PORT_ANE = 1<<1, /* Auto-negotiation enabled */
451 };
452 
453 struct mlx4_en_port_state {
454 	int link_state;
455 	int link_speed;
456 	int transceiver;
457 	u32 flags;
458 };
459 
460 enum mlx4_en_mclist_act {
461 	MCLIST_NONE,
462 	MCLIST_REM,
463 	MCLIST_ADD,
464 };
465 
466 struct mlx4_en_mc_list {
467 	struct list_head	list;
468 	enum mlx4_en_mclist_act	action;
469 	u8			addr[ETH_ALEN];
470 	u64			reg_id;
471 	u64			tunnel_reg_id;
472 };
473 
474 struct mlx4_en_frag_info {
475 	u16 frag_size;
476 	u32 frag_stride;
477 };
478 
479 #ifdef CONFIG_MLX4_EN_DCB
480 /* Minimal TC BW - setting to 0 will block traffic */
481 #define MLX4_EN_BW_MIN 1
482 #define MLX4_EN_BW_MAX 100 /* Utilize 100% of the line */
483 
484 #define MLX4_EN_TC_VENDOR 0
485 #define MLX4_EN_TC_ETS 7
486 
487 enum dcb_pfc_type {
488 	pfc_disabled = 0,
489 	pfc_enabled_full,
490 	pfc_enabled_tx,
491 	pfc_enabled_rx
492 };
493 
494 struct mlx4_en_cee_config {
495 	bool	pfc_state;
496 	enum	dcb_pfc_type dcb_pfc[MLX4_EN_NUM_UP_HIGH];
497 };
498 #endif
499 
500 struct ethtool_flow_id {
501 	struct list_head list;
502 	struct ethtool_rx_flow_spec flow_spec;
503 	u64 id;
504 };
505 
506 enum {
507 	MLX4_EN_FLAG_PROMISC		= (1 << 0),
508 	MLX4_EN_FLAG_MC_PROMISC		= (1 << 1),
509 	/* whether we need to enable hardware loopback by putting dmac
510 	 * in Tx WQE
511 	 */
512 	MLX4_EN_FLAG_ENABLE_HW_LOOPBACK	= (1 << 2),
513 	/* whether we need to drop packets that hardware loopback-ed */
514 	MLX4_EN_FLAG_RX_FILTER_NEEDED	= (1 << 3),
515 	MLX4_EN_FLAG_FORCE_PROMISC	= (1 << 4),
516 	MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP	= (1 << 5),
517 #ifdef CONFIG_MLX4_EN_DCB
518 	MLX4_EN_FLAG_DCB_ENABLED        = (1 << 6),
519 #endif
520 };
521 
522 #define PORT_BEACON_MAX_LIMIT (65535)
523 #define MLX4_EN_MAC_HASH_SIZE (1 << BITS_PER_BYTE)
524 #define MLX4_EN_MAC_HASH_IDX 5
525 
526 struct mlx4_en_stats_bitmap {
527 	DECLARE_BITMAP(bitmap, NUM_ALL_STATS);
528 	struct mutex mutex; /* for mutual access to stats bitmap */
529 };
530 
531 struct mlx4_en_priv {
532 	struct mlx4_en_dev *mdev;
533 	struct mlx4_en_port_profile *prof;
534 	struct net_device *dev;
535 	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
536 	struct mlx4_en_port_state port_state;
537 	spinlock_t stats_lock;
538 	struct ethtool_flow_id ethtool_rules[MAX_NUM_OF_FS_RULES];
539 	/* To allow rules removal while port is going down */
540 	struct list_head ethtool_list;
541 
542 	unsigned long last_moder_packets[MAX_RX_RINGS];
543 	unsigned long last_moder_tx_packets;
544 	unsigned long last_moder_bytes[MAX_RX_RINGS];
545 	unsigned long last_moder_jiffies;
546 	int last_moder_time[MAX_RX_RINGS];
547 	u16 rx_usecs;
548 	u16 rx_frames;
549 	u16 tx_usecs;
550 	u16 tx_frames;
551 	u32 pkt_rate_low;
552 	u16 rx_usecs_low;
553 	u32 pkt_rate_high;
554 	u16 rx_usecs_high;
555 	u16 sample_interval;
556 	u16 adaptive_rx_coal;
557 	u32 msg_enable;
558 	u32 loopback_ok;
559 	u32 validate_loopback;
560 
561 	struct mlx4_hwq_resources res;
562 	int link_state;
563 	int last_link_state;
564 	bool port_up;
565 	int port;
566 	int registered;
567 	int allocated;
568 	int stride;
569 	unsigned char current_mac[ETH_ALEN + 2];
570 	int mac_index;
571 	unsigned max_mtu;
572 	int base_qpn;
573 	int cqe_factor;
574 	int cqe_size;
575 
576 	struct mlx4_en_rss_map rss_map;
577 	__be32 ctrl_flags;
578 	u32 flags;
579 	u8 num_tx_rings_p_up;
580 	u32 tx_work_limit;
581 	u32 tx_ring_num[MLX4_EN_NUM_TX_TYPES];
582 	u32 rx_ring_num;
583 	u32 rx_skb_size;
584 	struct mlx4_en_frag_info frag_info[MLX4_EN_MAX_RX_FRAGS];
585 	u8 num_frags;
586 	u8 log_rx_info;
587 	u8 dma_dir;
588 	u16 rx_headroom;
589 
590 	struct mlx4_en_tx_ring **tx_ring[MLX4_EN_NUM_TX_TYPES];
591 	struct mlx4_en_rx_ring *rx_ring[MAX_RX_RINGS];
592 	struct mlx4_en_cq **tx_cq[MLX4_EN_NUM_TX_TYPES];
593 	struct mlx4_en_cq *rx_cq[MAX_RX_RINGS];
594 	struct mlx4_qp drop_qp;
595 	struct work_struct rx_mode_task;
596 	struct work_struct watchdog_task;
597 	struct work_struct linkstate_task;
598 	struct delayed_work stats_task;
599 	struct delayed_work service_task;
600 	struct work_struct vxlan_add_task;
601 	struct work_struct vxlan_del_task;
602 	struct mlx4_en_perf_stats pstats;
603 	struct mlx4_en_pkt_stats pkstats;
604 	struct mlx4_en_counter_stats pf_stats;
605 	struct mlx4_en_flow_stats_rx rx_priority_flowstats[MLX4_NUM_PRIORITIES];
606 	struct mlx4_en_flow_stats_tx tx_priority_flowstats[MLX4_NUM_PRIORITIES];
607 	struct mlx4_en_flow_stats_rx rx_flowstats;
608 	struct mlx4_en_flow_stats_tx tx_flowstats;
609 	struct mlx4_en_port_stats port_stats;
610 	struct mlx4_en_xdp_stats xdp_stats;
611 	struct mlx4_en_phy_stats phy_stats;
612 	struct mlx4_en_stats_bitmap stats_bitmap;
613 	struct list_head mc_list;
614 	struct list_head curr_list;
615 	u64 broadcast_id;
616 	struct mlx4_en_stat_out_mbox hw_stats;
617 	int vids[128];
618 	bool wol;
619 	struct device *ddev;
620 	struct hlist_head mac_hash[MLX4_EN_MAC_HASH_SIZE];
621 	struct hwtstamp_config hwtstamp_config;
622 	u32 counter_index;
623 
624 #ifdef CONFIG_MLX4_EN_DCB
625 #define MLX4_EN_DCB_ENABLED	0x3
626 	struct ieee_ets ets;
627 	u16 maxrate[IEEE_8021QAZ_MAX_TCS];
628 	enum dcbnl_cndd_states cndd_state[IEEE_8021QAZ_MAX_TCS];
629 	struct mlx4_en_cee_config cee_config;
630 	u8 dcbx_cap;
631 #endif
632 #ifdef CONFIG_RFS_ACCEL
633 	spinlock_t filters_lock;
634 	int last_filter_id;
635 	struct list_head filters;
636 	struct hlist_head filter_hash[1 << MLX4_EN_FILTER_HASH_SHIFT];
637 #endif
638 	u64 tunnel_reg_id;
639 	__be16 vxlan_port;
640 
641 	u32 pflags;
642 	u8 rss_key[MLX4_EN_RSS_KEY_SIZE];
643 	u8 rss_hash_fn;
644 };
645 
646 enum mlx4_en_wol {
647 	MLX4_EN_WOL_MAGIC = (1ULL << 61),
648 	MLX4_EN_WOL_ENABLED = (1ULL << 62),
649 };
650 
651 struct mlx4_mac_entry {
652 	struct hlist_node hlist;
653 	unsigned char mac[ETH_ALEN + 2];
654 	u64 reg_id;
655 	struct rcu_head rcu;
656 };
657 
658 static inline struct mlx4_cqe *mlx4_en_get_cqe(void *buf, int idx, int cqe_sz)
659 {
660 	return buf + idx * cqe_sz;
661 }
662 
663 #define MLX4_EN_WOL_DO_MODIFY (1ULL << 63)
664 
665 void mlx4_en_init_ptys2ethtool_map(void);
666 void mlx4_en_update_loopback_state(struct net_device *dev,
667 				   netdev_features_t features);
668 
669 void mlx4_en_destroy_netdev(struct net_device *dev);
670 int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
671 			struct mlx4_en_port_profile *prof);
672 
673 int mlx4_en_start_port(struct net_device *dev);
674 void mlx4_en_stop_port(struct net_device *dev, int detach);
675 
676 void mlx4_en_set_stats_bitmap(struct mlx4_dev *dev,
677 			      struct mlx4_en_stats_bitmap *stats_bitmap,
678 			      u8 rx_ppp, u8 rx_pause,
679 			      u8 tx_ppp, u8 tx_pause);
680 
681 int mlx4_en_try_alloc_resources(struct mlx4_en_priv *priv,
682 				struct mlx4_en_priv *tmp,
683 				struct mlx4_en_port_profile *prof,
684 				bool carry_xdp_prog);
685 void mlx4_en_safe_replace_resources(struct mlx4_en_priv *priv,
686 				    struct mlx4_en_priv *tmp);
687 
688 int mlx4_en_create_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq **pcq,
689 		      int entries, int ring, enum cq_type mode, int node);
690 void mlx4_en_destroy_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq **pcq);
691 int mlx4_en_activate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq,
692 			int cq_idx);
693 void mlx4_en_deactivate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
694 int mlx4_en_set_cq_moder(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
695 void mlx4_en_arm_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
696 
697 void mlx4_en_tx_irq(struct mlx4_cq *mcq);
698 u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb,
699 			 void *accel_priv, select_queue_fallback_t fallback);
700 netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev);
701 netdev_tx_t mlx4_en_xmit_frame(struct mlx4_en_rx_ring *rx_ring,
702 			       struct mlx4_en_rx_alloc *frame,
703 			       struct mlx4_en_priv *priv, unsigned int length,
704 			       int tx_ind, bool *doorbell_pending);
705 void mlx4_en_xmit_doorbell(struct mlx4_en_tx_ring *ring);
706 bool mlx4_en_rx_recycle(struct mlx4_en_rx_ring *ring,
707 			struct mlx4_en_rx_alloc *frame);
708 
709 int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv,
710 			   struct mlx4_en_tx_ring **pring,
711 			   u32 size, u16 stride,
712 			   int node, int queue_index);
713 void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv,
714 			     struct mlx4_en_tx_ring **pring);
715 void mlx4_en_init_tx_xdp_ring_descs(struct mlx4_en_priv *priv,
716 				    struct mlx4_en_tx_ring *ring);
717 int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv,
718 			     struct mlx4_en_tx_ring *ring,
719 			     int cq, int user_prio);
720 void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv,
721 				struct mlx4_en_tx_ring *ring);
722 void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev);
723 void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv);
724 int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
725 			   struct mlx4_en_rx_ring **pring,
726 			   u32 size, u16 stride, int node, int queue_index);
727 void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
728 			     struct mlx4_en_rx_ring **pring,
729 			     u32 size, u16 stride);
730 int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv);
731 void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
732 				struct mlx4_en_rx_ring *ring);
733 int mlx4_en_process_rx_cq(struct net_device *dev,
734 			  struct mlx4_en_cq *cq,
735 			  int budget);
736 int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget);
737 int mlx4_en_poll_tx_cq(struct napi_struct *napi, int budget);
738 bool mlx4_en_process_tx_cq(struct net_device *dev,
739 			   struct mlx4_en_cq *cq, int napi_budget);
740 u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
741 			 struct mlx4_en_tx_ring *ring,
742 			 int index, u64 timestamp,
743 			 int napi_mode);
744 u32 mlx4_en_recycle_tx_desc(struct mlx4_en_priv *priv,
745 			    struct mlx4_en_tx_ring *ring,
746 			    int index, u64 timestamp,
747 			    int napi_mode);
748 void mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride,
749 		int is_tx, int rss, int qpn, int cqn, int user_prio,
750 		struct mlx4_qp_context *context);
751 void mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event);
752 int mlx4_en_change_mcast_lb(struct mlx4_en_priv *priv, struct mlx4_qp *qp,
753 			    int loopback);
754 void mlx4_en_calc_rx_buf(struct net_device *dev);
755 int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv);
756 void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv);
757 int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv);
758 void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv);
759 int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring);
760 void mlx4_en_rx_irq(struct mlx4_cq *mcq);
761 
762 int mlx4_SET_MCAST_FLTR(struct mlx4_dev *dev, u8 port, u64 mac, u64 clear, u8 mode);
763 int mlx4_SET_VLAN_FLTR(struct mlx4_dev *dev, struct mlx4_en_priv *priv);
764 
765 void mlx4_en_fold_software_stats(struct net_device *dev);
766 int mlx4_en_DUMP_ETH_STATS(struct mlx4_en_dev *mdev, u8 port, u8 reset);
767 int mlx4_en_QUERY_PORT(struct mlx4_en_dev *mdev, u8 port);
768 
769 #ifdef CONFIG_MLX4_EN_DCB
770 extern const struct dcbnl_rtnl_ops mlx4_en_dcbnl_ops;
771 extern const struct dcbnl_rtnl_ops mlx4_en_dcbnl_pfc_ops;
772 #endif
773 
774 int mlx4_en_setup_tc(struct net_device *dev, u8 up);
775 int mlx4_en_alloc_tx_queue_per_tc(struct net_device *dev, u8 tc);
776 
777 #ifdef CONFIG_RFS_ACCEL
778 void mlx4_en_cleanup_filters(struct mlx4_en_priv *priv);
779 #endif
780 
781 #define MLX4_EN_NUM_SELF_TEST	5
782 void mlx4_en_ex_selftest(struct net_device *dev, u32 *flags, u64 *buf);
783 void mlx4_en_ptp_overflow_check(struct mlx4_en_dev *mdev);
784 
785 #define DEV_FEATURE_CHANGED(dev, new_features, feature) \
786 	((dev->features & feature) ^ (new_features & feature))
787 
788 int mlx4_en_reset_config(struct net_device *dev,
789 			 struct hwtstamp_config ts_config,
790 			 netdev_features_t new_features);
791 void mlx4_en_update_pfc_stats_bitmap(struct mlx4_dev *dev,
792 				     struct mlx4_en_stats_bitmap *stats_bitmap,
793 				     u8 rx_ppp, u8 rx_pause,
794 				     u8 tx_ppp, u8 tx_pause);
795 int mlx4_en_netdev_event(struct notifier_block *this,
796 			 unsigned long event, void *ptr);
797 
798 /*
799  * Functions for time stamping
800  */
801 u64 mlx4_en_get_cqe_ts(struct mlx4_cqe *cqe);
802 void mlx4_en_fill_hwtstamps(struct mlx4_en_dev *mdev,
803 			    struct skb_shared_hwtstamps *hwts,
804 			    u64 timestamp);
805 void mlx4_en_init_timestamp(struct mlx4_en_dev *mdev);
806 void mlx4_en_remove_timestamp(struct mlx4_en_dev *mdev);
807 
808 /* Globals
809  */
810 extern const struct ethtool_ops mlx4_en_ethtool_ops;
811 
812 
813 
814 /*
815  * printk / logging functions
816  */
817 
818 __printf(3, 4)
819 void en_print(const char *level, const struct mlx4_en_priv *priv,
820 	      const char *format, ...);
821 
822 #define en_dbg(mlevel, priv, format, ...)				\
823 do {									\
824 	if (NETIF_MSG_##mlevel & (priv)->msg_enable)			\
825 		en_print(KERN_DEBUG, priv, format, ##__VA_ARGS__);	\
826 } while (0)
827 #define en_warn(priv, format, ...)					\
828 	en_print(KERN_WARNING, priv, format, ##__VA_ARGS__)
829 #define en_err(priv, format, ...)					\
830 	en_print(KERN_ERR, priv, format, ##__VA_ARGS__)
831 #define en_info(priv, format, ...)					\
832 	en_print(KERN_INFO, priv, format, ##__VA_ARGS__)
833 
834 #define mlx4_err(mdev, format, ...)					\
835 	pr_err(DRV_NAME " %s: " format,					\
836 	       dev_name(&(mdev)->pdev->dev), ##__VA_ARGS__)
837 #define mlx4_info(mdev, format, ...)					\
838 	pr_info(DRV_NAME " %s: " format,				\
839 		dev_name(&(mdev)->pdev->dev), ##__VA_ARGS__)
840 #define mlx4_warn(mdev, format, ...)					\
841 	pr_warn(DRV_NAME " %s: " format,				\
842 		dev_name(&(mdev)->pdev->dev), ##__VA_ARGS__)
843 
844 #endif
845