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