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