Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[cascardo/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 #ifdef CONFIG_MLX4_EN_DCB
44 #include <linux/dcbnl.h>
45 #endif
46
47 #include <linux/mlx4/device.h>
48 #include <linux/mlx4/qp.h>
49 #include <linux/mlx4/cq.h>
50 #include <linux/mlx4/srq.h>
51 #include <linux/mlx4/doorbell.h>
52 #include <linux/mlx4/cmd.h>
53
54 #include "en_port.h"
55
56 #define DRV_NAME        "mlx4_en"
57 #define DRV_VERSION     "2.0"
58 #define DRV_RELDATE     "Dec 2011"
59
60 #define MLX4_EN_MSG_LEVEL       (NETIF_MSG_LINK | NETIF_MSG_IFDOWN)
61
62 /*
63  * Device constants
64  */
65
66
67 #define MLX4_EN_PAGE_SHIFT      12
68 #define MLX4_EN_PAGE_SIZE       (1 << MLX4_EN_PAGE_SHIFT)
69 #define MAX_RX_RINGS            16
70 #define MIN_RX_RINGS            4
71 #define TXBB_SIZE               64
72 #define HEADROOM                (2048 / TXBB_SIZE + 1)
73 #define STAMP_STRIDE            64
74 #define STAMP_DWORDS            (STAMP_STRIDE / 4)
75 #define STAMP_SHIFT             31
76 #define STAMP_VAL               0x7fffffff
77 #define STATS_DELAY             (HZ / 4)
78
79 /* Typical TSO descriptor with 16 gather entries is 352 bytes... */
80 #define MAX_DESC_SIZE           512
81 #define MAX_DESC_TXBBS          (MAX_DESC_SIZE / TXBB_SIZE)
82
83 /*
84  * OS related constants and tunables
85  */
86
87 #define MLX4_EN_WATCHDOG_TIMEOUT        (15 * HZ)
88
89 /* Use the maximum between 16384 and a single page */
90 #define MLX4_EN_ALLOC_SIZE      PAGE_ALIGN(16384)
91 #define MLX4_EN_ALLOC_ORDER     get_order(MLX4_EN_ALLOC_SIZE)
92
93 #define MLX4_EN_MAX_LRO_DESCRIPTORS     32
94
95 /* Receive fragment sizes; we use at most 4 fragments (for 9600 byte MTU
96  * and 4K allocations) */
97 enum {
98         FRAG_SZ0 = 512 - NET_IP_ALIGN,
99         FRAG_SZ1 = 1024,
100         FRAG_SZ2 = 4096,
101         FRAG_SZ3 = MLX4_EN_ALLOC_SIZE
102 };
103 #define MLX4_EN_MAX_RX_FRAGS    4
104
105 /* Maximum ring sizes */
106 #define MLX4_EN_MAX_TX_SIZE     8192
107 #define MLX4_EN_MAX_RX_SIZE     8192
108
109 /* Minimum ring size for our page-allocation sceme to work */
110 #define MLX4_EN_MIN_RX_SIZE     (MLX4_EN_ALLOC_SIZE / SMP_CACHE_BYTES)
111 #define MLX4_EN_MIN_TX_SIZE     (4096 / TXBB_SIZE)
112
113 #define MLX4_EN_SMALL_PKT_SIZE          64
114 #define MLX4_EN_NUM_TX_RINGS            8
115 #define MLX4_EN_NUM_PPP_RINGS           8
116 #define MAX_TX_RINGS                    (MLX4_EN_NUM_TX_RINGS + MLX4_EN_NUM_PPP_RINGS)
117 #define MLX4_EN_NUM_UP                  8
118 #define MLX4_EN_DEF_TX_RING_SIZE        512
119 #define MLX4_EN_DEF_RX_RING_SIZE        1024
120
121 /* Target number of packets to coalesce with interrupt moderation */
122 #define MLX4_EN_RX_COAL_TARGET  44
123 #define MLX4_EN_RX_COAL_TIME    0x10
124
125 #define MLX4_EN_TX_COAL_PKTS    5
126 #define MLX4_EN_TX_COAL_TIME    0x80
127
128 #define MLX4_EN_RX_RATE_LOW             400000
129 #define MLX4_EN_RX_COAL_TIME_LOW        0
130 #define MLX4_EN_RX_RATE_HIGH            450000
131 #define MLX4_EN_RX_COAL_TIME_HIGH       128
132 #define MLX4_EN_RX_SIZE_THRESH          1024
133 #define MLX4_EN_RX_RATE_THRESH          (1000000 / MLX4_EN_RX_COAL_TIME_HIGH)
134 #define MLX4_EN_SAMPLE_INTERVAL         0
135 #define MLX4_EN_AVG_PKT_SMALL           256
136
137 #define MLX4_EN_AUTO_CONF       0xffff
138
139 #define MLX4_EN_DEF_RX_PAUSE    1
140 #define MLX4_EN_DEF_TX_PAUSE    1
141
142 /* Interval between successive polls in the Tx routine when polling is used
143    instead of interrupts (in per-core Tx rings) - should be power of 2 */
144 #define MLX4_EN_TX_POLL_MODER   16
145 #define MLX4_EN_TX_POLL_TIMEOUT (HZ / 4)
146
147 #define ETH_LLC_SNAP_SIZE       8
148
149 #define SMALL_PACKET_SIZE      (256 - NET_IP_ALIGN)
150 #define HEADER_COPY_SIZE       (128 - NET_IP_ALIGN)
151 #define MLX4_LOOPBACK_TEST_PAYLOAD (HEADER_COPY_SIZE - ETH_HLEN)
152
153 #define MLX4_EN_MIN_MTU         46
154 #define ETH_BCAST               0xffffffffffffULL
155
156 #define MLX4_EN_LOOPBACK_RETRIES        5
157 #define MLX4_EN_LOOPBACK_TIMEOUT        100
158
159 #ifdef MLX4_EN_PERF_STAT
160 /* Number of samples to 'average' */
161 #define AVG_SIZE                        128
162 #define AVG_FACTOR                      1024
163 #define NUM_PERF_STATS                  NUM_PERF_COUNTERS
164
165 #define INC_PERF_COUNTER(cnt)           (++(cnt))
166 #define ADD_PERF_COUNTER(cnt, add)      ((cnt) += (add))
167 #define AVG_PERF_COUNTER(cnt, sample) \
168         ((cnt) = ((cnt) * (AVG_SIZE - 1) + (sample) * AVG_FACTOR) / AVG_SIZE)
169 #define GET_PERF_COUNTER(cnt)           (cnt)
170 #define GET_AVG_PERF_COUNTER(cnt)       ((cnt) / AVG_FACTOR)
171
172 #else
173
174 #define NUM_PERF_STATS                  0
175 #define INC_PERF_COUNTER(cnt)           do {} while (0)
176 #define ADD_PERF_COUNTER(cnt, add)      do {} while (0)
177 #define AVG_PERF_COUNTER(cnt, sample)   do {} while (0)
178 #define GET_PERF_COUNTER(cnt)           (0)
179 #define GET_AVG_PERF_COUNTER(cnt)       (0)
180 #endif /* MLX4_EN_PERF_STAT */
181
182 /*
183  * Configurables
184  */
185
186 enum cq_type {
187         RX = 0,
188         TX = 1,
189 };
190
191
192 /*
193  * Useful macros
194  */
195 #define ROUNDUP_LOG2(x)         ilog2(roundup_pow_of_two(x))
196 #define XNOR(x, y)              (!(x) == !(y))
197 #define ILLEGAL_MAC(addr)       (addr == 0xffffffffffffULL || addr == 0x0)
198
199
200 struct mlx4_en_tx_info {
201         struct sk_buff *skb;
202         u32 nr_txbb;
203         u8 linear;
204         u8 data_offset;
205         u8 inl;
206 };
207
208
209 #define MLX4_EN_BIT_DESC_OWN    0x80000000
210 #define CTRL_SIZE       sizeof(struct mlx4_wqe_ctrl_seg)
211 #define MLX4_EN_MEMTYPE_PAD     0x100
212 #define DS_SIZE         sizeof(struct mlx4_wqe_data_seg)
213
214
215 struct mlx4_en_tx_desc {
216         struct mlx4_wqe_ctrl_seg ctrl;
217         union {
218                 struct mlx4_wqe_data_seg data; /* at least one data segment */
219                 struct mlx4_wqe_lso_seg lso;
220                 struct mlx4_wqe_inline_seg inl;
221         };
222 };
223
224 #define MLX4_EN_USE_SRQ         0x01000000
225
226 #define MLX4_EN_CX3_LOW_ID      0x1000
227 #define MLX4_EN_CX3_HIGH_ID     0x1005
228
229 struct mlx4_en_rx_alloc {
230         struct page *page;
231         u16 offset;
232 };
233
234 struct mlx4_en_tx_ring {
235         struct mlx4_hwq_resources wqres;
236         u32 size ; /* number of TXBBs */
237         u32 size_mask;
238         u16 stride;
239         u16 cqn;        /* index of port CQ associated with this ring */
240         u32 prod;
241         u32 cons;
242         u32 buf_size;
243         u32 doorbell_qpn;
244         void *buf;
245         u16 poll_cnt;
246         int blocked;
247         struct mlx4_en_tx_info *tx_info;
248         u8 *bounce_buf;
249         u32 last_nr_txbb;
250         struct mlx4_qp qp;
251         struct mlx4_qp_context context;
252         int qpn;
253         enum mlx4_qp_state qp_state;
254         struct mlx4_srq dummy;
255         unsigned long bytes;
256         unsigned long packets;
257         unsigned long tx_csum;
258         spinlock_t comp_lock;
259         struct mlx4_bf bf;
260         bool bf_enabled;
261 };
262
263 struct mlx4_en_rx_desc {
264         /* actual number of entries depends on rx ring stride */
265         struct mlx4_wqe_data_seg data[0];
266 };
267
268 struct mlx4_en_rx_ring {
269         struct mlx4_hwq_resources wqres;
270         struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
271         u32 size ;      /* number of Rx descs*/
272         u32 actual_size;
273         u32 size_mask;
274         u16 stride;
275         u16 log_stride;
276         u16 cqn;        /* index of port CQ associated with this ring */
277         u32 prod;
278         u32 cons;
279         u32 buf_size;
280         u8  fcs_del;
281         void *buf;
282         void *rx_info;
283         unsigned long bytes;
284         unsigned long packets;
285         unsigned long csum_ok;
286         unsigned long csum_none;
287 };
288
289
290 static inline int mlx4_en_can_lro(__be16 status)
291 {
292         return (status & cpu_to_be16(MLX4_CQE_STATUS_IPV4       |
293                                      MLX4_CQE_STATUS_IPV4F      |
294                                      MLX4_CQE_STATUS_IPV6       |
295                                      MLX4_CQE_STATUS_IPV4OPT    |
296                                      MLX4_CQE_STATUS_TCP        |
297                                      MLX4_CQE_STATUS_UDP        |
298                                      MLX4_CQE_STATUS_IPOK)) ==
299                 cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
300                             MLX4_CQE_STATUS_IPOK |
301                             MLX4_CQE_STATUS_TCP);
302 }
303
304 struct mlx4_en_cq {
305         struct mlx4_cq          mcq;
306         struct mlx4_hwq_resources wqres;
307         int                     ring;
308         spinlock_t              lock;
309         struct net_device      *dev;
310         struct napi_struct      napi;
311         /* Per-core Tx cq processing support */
312         struct timer_list timer;
313         int size;
314         int buf_size;
315         unsigned vector;
316         enum cq_type is_tx;
317         u16 moder_time;
318         u16 moder_cnt;
319         struct mlx4_cqe *buf;
320 #define MLX4_EN_OPCODE_ERROR    0x1e
321 };
322
323 struct mlx4_en_port_profile {
324         u32 flags;
325         u32 tx_ring_num;
326         u32 rx_ring_num;
327         u32 tx_ring_size;
328         u32 rx_ring_size;
329         u8 rx_pause;
330         u8 rx_ppp;
331         u8 tx_pause;
332         u8 tx_ppp;
333         int rss_rings;
334 };
335
336 struct mlx4_en_profile {
337         int rss_xor;
338         int udp_rss;
339         u8 rss_mask;
340         u32 active_ports;
341         u32 small_pkt_int;
342         u8 no_reset;
343         struct mlx4_en_port_profile prof[MLX4_MAX_PORTS + 1];
344 };
345
346 struct mlx4_en_dev {
347         struct mlx4_dev         *dev;
348         struct pci_dev          *pdev;
349         struct mutex            state_lock;
350         struct net_device       *pndev[MLX4_MAX_PORTS + 1];
351         u32                     port_cnt;
352         bool                    device_up;
353         struct mlx4_en_profile  profile;
354         u32                     LSO_support;
355         struct workqueue_struct *workqueue;
356         struct device           *dma_device;
357         void __iomem            *uar_map;
358         struct mlx4_uar         priv_uar;
359         struct mlx4_mr          mr;
360         u32                     priv_pdn;
361         spinlock_t              uar_lock;
362         u8                      mac_removed[MLX4_MAX_PORTS + 1];
363 };
364
365
366 struct mlx4_en_rss_map {
367         int base_qpn;
368         struct mlx4_qp qps[MAX_RX_RINGS];
369         enum mlx4_qp_state state[MAX_RX_RINGS];
370         struct mlx4_qp indir_qp;
371         enum mlx4_qp_state indir_state;
372 };
373
374 struct mlx4_en_port_state {
375         int link_state;
376         int link_speed;
377         int transciver;
378 };
379
380 struct mlx4_en_pkt_stats {
381         unsigned long broadcast;
382         unsigned long rx_prio[8];
383         unsigned long tx_prio[8];
384 #define NUM_PKT_STATS           17
385 };
386
387 struct mlx4_en_port_stats {
388         unsigned long tso_packets;
389         unsigned long queue_stopped;
390         unsigned long wake_queue;
391         unsigned long tx_timeout;
392         unsigned long rx_alloc_failed;
393         unsigned long rx_chksum_good;
394         unsigned long rx_chksum_none;
395         unsigned long tx_chksum_offload;
396 #define NUM_PORT_STATS          8
397 };
398
399 struct mlx4_en_perf_stats {
400         u32 tx_poll;
401         u64 tx_pktsz_avg;
402         u32 inflight_avg;
403         u16 tx_coal_avg;
404         u16 rx_coal_avg;
405         u32 napi_quota;
406 #define NUM_PERF_COUNTERS               6
407 };
408
409 struct mlx4_en_frag_info {
410         u16 frag_size;
411         u16 frag_prefix_size;
412         u16 frag_stride;
413         u16 frag_align;
414         u16 last_offset;
415
416 };
417
418 #ifdef CONFIG_MLX4_EN_DCB
419 /* Minimal TC BW - setting to 0 will block traffic */
420 #define MLX4_EN_BW_MIN 1
421 #define MLX4_EN_BW_MAX 100 /* Utilize 100% of the line */
422
423 #define MLX4_EN_TC_ETS 7
424
425 #endif
426
427 struct mlx4_en_priv {
428         struct mlx4_en_dev *mdev;
429         struct mlx4_en_port_profile *prof;
430         struct net_device *dev;
431         unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
432         struct net_device_stats stats;
433         struct net_device_stats ret_stats;
434         struct mlx4_en_port_state port_state;
435         spinlock_t stats_lock;
436
437         unsigned long last_moder_packets[MAX_RX_RINGS];
438         unsigned long last_moder_tx_packets;
439         unsigned long last_moder_bytes[MAX_RX_RINGS];
440         unsigned long last_moder_jiffies;
441         int last_moder_time[MAX_RX_RINGS];
442         u16 rx_usecs;
443         u16 rx_frames;
444         u16 tx_usecs;
445         u16 tx_frames;
446         u32 pkt_rate_low;
447         u16 rx_usecs_low;
448         u32 pkt_rate_high;
449         u16 rx_usecs_high;
450         u16 sample_interval;
451         u16 adaptive_rx_coal;
452         u32 msg_enable;
453         u32 loopback_ok;
454         u32 validate_loopback;
455
456         struct mlx4_hwq_resources res;
457         int link_state;
458         int last_link_state;
459         bool port_up;
460         int port;
461         int registered;
462         int allocated;
463         int stride;
464         u64 mac;
465         int mac_index;
466         unsigned max_mtu;
467         int base_qpn;
468
469         struct mlx4_en_rss_map rss_map;
470         __be32 ctrl_flags;
471         u32 flags;
472 #define MLX4_EN_FLAG_PROMISC    0x1
473 #define MLX4_EN_FLAG_MC_PROMISC 0x2
474         u32 tx_ring_num;
475         u32 rx_ring_num;
476         u32 rx_skb_size;
477         struct mlx4_en_frag_info frag_info[MLX4_EN_MAX_RX_FRAGS];
478         u16 num_frags;
479         u16 log_rx_info;
480
481         struct mlx4_en_tx_ring tx_ring[MAX_TX_RINGS];
482         struct mlx4_en_rx_ring rx_ring[MAX_RX_RINGS];
483         struct mlx4_en_cq tx_cq[MAX_TX_RINGS];
484         struct mlx4_en_cq rx_cq[MAX_RX_RINGS];
485         struct work_struct mcast_task;
486         struct work_struct mac_task;
487         struct work_struct watchdog_task;
488         struct work_struct linkstate_task;
489         struct delayed_work stats_task;
490         struct mlx4_en_perf_stats pstats;
491         struct mlx4_en_pkt_stats pkstats;
492         struct mlx4_en_port_stats port_stats;
493         u64 stats_bitmap;
494         char *mc_addrs;
495         int mc_addrs_cnt;
496         struct mlx4_en_stat_out_mbox hw_stats;
497         int vids[128];
498         bool wol;
499         struct device *ddev;
500
501 #ifdef CONFIG_MLX4_EN_DCB
502         struct ieee_ets ets;
503         u16 maxrate[IEEE_8021QAZ_MAX_TCS];
504 #endif
505 };
506
507 enum mlx4_en_wol {
508         MLX4_EN_WOL_MAGIC = (1ULL << 61),
509         MLX4_EN_WOL_ENABLED = (1ULL << 62),
510 };
511
512 #define MLX4_EN_WOL_DO_MODIFY (1ULL << 63)
513
514 void mlx4_en_destroy_netdev(struct net_device *dev);
515 int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
516                         struct mlx4_en_port_profile *prof);
517
518 int mlx4_en_start_port(struct net_device *dev);
519 void mlx4_en_stop_port(struct net_device *dev);
520
521 void mlx4_en_free_resources(struct mlx4_en_priv *priv);
522 int mlx4_en_alloc_resources(struct mlx4_en_priv *priv);
523
524 int mlx4_en_create_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq,
525                       int entries, int ring, enum cq_type mode);
526 void mlx4_en_destroy_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
527 int mlx4_en_activate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq,
528                         int cq_idx);
529 void mlx4_en_deactivate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
530 int mlx4_en_set_cq_moder(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
531 int mlx4_en_arm_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
532
533 void mlx4_en_poll_tx_cq(unsigned long data);
534 void mlx4_en_tx_irq(struct mlx4_cq *mcq);
535 u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb);
536 netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev);
537
538 int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv, struct mlx4_en_tx_ring *ring,
539                            int qpn, u32 size, u16 stride);
540 void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv, struct mlx4_en_tx_ring *ring);
541 int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv,
542                              struct mlx4_en_tx_ring *ring,
543                              int cq, int user_prio);
544 void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv,
545                                 struct mlx4_en_tx_ring *ring);
546
547 int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
548                            struct mlx4_en_rx_ring *ring,
549                            u32 size, u16 stride);
550 void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
551                              struct mlx4_en_rx_ring *ring,
552                              u32 size, u16 stride);
553 int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv);
554 void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
555                                 struct mlx4_en_rx_ring *ring);
556 int mlx4_en_process_rx_cq(struct net_device *dev,
557                           struct mlx4_en_cq *cq,
558                           int budget);
559 int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget);
560 void mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride,
561                 int is_tx, int rss, int qpn, int cqn, int user_prio,
562                 struct mlx4_qp_context *context);
563 void mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event);
564 int mlx4_en_map_buffer(struct mlx4_buf *buf);
565 void mlx4_en_unmap_buffer(struct mlx4_buf *buf);
566
567 void mlx4_en_calc_rx_buf(struct net_device *dev);
568 int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv);
569 void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv);
570 int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring);
571 void mlx4_en_rx_irq(struct mlx4_cq *mcq);
572
573 int mlx4_SET_MCAST_FLTR(struct mlx4_dev *dev, u8 port, u64 mac, u64 clear, u8 mode);
574 int mlx4_SET_VLAN_FLTR(struct mlx4_dev *dev, struct mlx4_en_priv *priv);
575
576 int mlx4_en_DUMP_ETH_STATS(struct mlx4_en_dev *mdev, u8 port, u8 reset);
577 int mlx4_en_QUERY_PORT(struct mlx4_en_dev *mdev, u8 port);
578
579 #ifdef CONFIG_MLX4_EN_DCB
580 extern const struct dcbnl_rtnl_ops mlx4_en_dcbnl_ops;
581 #endif
582
583 #define MLX4_EN_NUM_SELF_TEST   5
584 void mlx4_en_ex_selftest(struct net_device *dev, u32 *flags, u64 *buf);
585 u64 mlx4_en_mac_to_u64(u8 *addr);
586
587 /*
588  * Globals
589  */
590 extern const struct ethtool_ops mlx4_en_ethtool_ops;
591
592
593
594 /*
595  * printk / logging functions
596  */
597
598 __printf(3, 4)
599 int en_print(const char *level, const struct mlx4_en_priv *priv,
600              const char *format, ...);
601
602 #define en_dbg(mlevel, priv, format, arg...)                    \
603 do {                                                            \
604         if (NETIF_MSG_##mlevel & priv->msg_enable)              \
605                 en_print(KERN_DEBUG, priv, format, ##arg);      \
606 } while (0)
607 #define en_warn(priv, format, arg...)                   \
608         en_print(KERN_WARNING, priv, format, ##arg)
609 #define en_err(priv, format, arg...)                    \
610         en_print(KERN_ERR, priv, format, ##arg)
611 #define en_info(priv, format, arg...)                   \
612         en_print(KERN_INFO, priv, format, ## arg)
613
614 #define mlx4_err(mdev, format, arg...)                  \
615         pr_err("%s %s: " format, DRV_NAME,              \
616                dev_name(&mdev->pdev->dev), ##arg)
617 #define mlx4_info(mdev, format, arg...)                 \
618         pr_info("%s %s: " format, DRV_NAME,             \
619                 dev_name(&mdev->pdev->dev), ##arg)
620 #define mlx4_warn(mdev, format, arg...)                 \
621         pr_warning("%s %s: " format, DRV_NAME,          \
622                    dev_name(&mdev->pdev->dev), ##arg)
623
624 #endif