be2net: add a counter for pkts dropped in xmit path
[firefly-linux-kernel-4.4.55.git] / drivers / net / ethernet / emulex / benet / be.h
1 /*
2  * Copyright (C) 2005 - 2013 Emulex
3  * All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License version 2
7  * as published by the Free Software Foundation.  The full GNU General
8  * Public License is included in this distribution in the file called COPYING.
9  *
10  * Contact Information:
11  * linux-drivers@emulex.com
12  *
13  * Emulex
14  * 3333 Susan Street
15  * Costa Mesa, CA 92626
16  */
17
18 #ifndef BE_H
19 #define BE_H
20
21 #include <linux/pci.h>
22 #include <linux/etherdevice.h>
23 #include <linux/delay.h>
24 #include <net/tcp.h>
25 #include <net/ip.h>
26 #include <net/ipv6.h>
27 #include <linux/if_vlan.h>
28 #include <linux/workqueue.h>
29 #include <linux/interrupt.h>
30 #include <linux/firmware.h>
31 #include <linux/slab.h>
32 #include <linux/u64_stats_sync.h>
33
34 #include "be_hw.h"
35 #include "be_roce.h"
36
37 #define DRV_VER                 "4.9.134.0u"
38 #define DRV_NAME                "be2net"
39 #define BE_NAME                 "Emulex BladeEngine2"
40 #define BE3_NAME                "Emulex BladeEngine3"
41 #define OC_NAME                 "Emulex OneConnect"
42 #define OC_NAME_BE              OC_NAME "(be3)"
43 #define OC_NAME_LANCER          OC_NAME "(Lancer)"
44 #define OC_NAME_SH              OC_NAME "(Skyhawk)"
45 #define DRV_DESC                "Emulex OneConnect 10Gbps NIC Driver"
46
47 #define BE_VENDOR_ID            0x19a2
48 #define EMULEX_VENDOR_ID        0x10df
49 #define BE_DEVICE_ID1           0x211
50 #define BE_DEVICE_ID2           0x221
51 #define OC_DEVICE_ID1           0x700   /* Device Id for BE2 cards */
52 #define OC_DEVICE_ID2           0x710   /* Device Id for BE3 cards */
53 #define OC_DEVICE_ID3           0xe220  /* Device id for Lancer cards */
54 #define OC_DEVICE_ID4           0xe228   /* Device id for VF in Lancer */
55 #define OC_DEVICE_ID5           0x720   /* Device Id for Skyhawk cards */
56 #define OC_DEVICE_ID6           0x728   /* Device id for VF in SkyHawk */
57 #define OC_SUBSYS_DEVICE_ID1    0xE602
58 #define OC_SUBSYS_DEVICE_ID2    0xE642
59 #define OC_SUBSYS_DEVICE_ID3    0xE612
60 #define OC_SUBSYS_DEVICE_ID4    0xE652
61
62 static inline char *nic_name(struct pci_dev *pdev)
63 {
64         switch (pdev->device) {
65         case OC_DEVICE_ID1:
66                 return OC_NAME;
67         case OC_DEVICE_ID2:
68                 return OC_NAME_BE;
69         case OC_DEVICE_ID3:
70         case OC_DEVICE_ID4:
71                 return OC_NAME_LANCER;
72         case BE_DEVICE_ID2:
73                 return BE3_NAME;
74         case OC_DEVICE_ID5:
75         case OC_DEVICE_ID6:
76                 return OC_NAME_SH;
77         default:
78                 return BE_NAME;
79         }
80 }
81
82 /* Number of bytes of an RX frame that are copied to skb->data */
83 #define BE_HDR_LEN              ((u16) 64)
84 /* allocate extra space to allow tunneling decapsulation without head reallocation */
85 #define BE_RX_SKB_ALLOC_SIZE (BE_HDR_LEN + 64)
86
87 #define BE_MAX_JUMBO_FRAME_SIZE 9018
88 #define BE_MIN_MTU              256
89
90 #define BE_NUM_VLANS_SUPPORTED  64
91 #define BE_MAX_EQD              128u
92 #define BE_MAX_TX_FRAG_COUNT    30
93
94 #define EVNT_Q_LEN              1024
95 #define TX_Q_LEN                2048
96 #define TX_CQ_LEN               1024
97 #define RX_Q_LEN                1024    /* Does not support any other value */
98 #define RX_CQ_LEN               1024
99 #define MCC_Q_LEN               128     /* total size not to exceed 8 pages */
100 #define MCC_CQ_LEN              256
101
102 #define BE2_MAX_RSS_QS          4
103 #define BE3_MAX_RSS_QS          16
104 #define BE3_MAX_TX_QS           16
105 #define BE3_MAX_EVT_QS          16
106
107 #define MAX_RX_QS               32
108 #define MAX_EVT_QS              32
109 #define MAX_TX_QS               32
110
111 #define MAX_ROCE_EQS            5
112 #define MAX_MSIX_VECTORS        32
113 #define MIN_MSIX_VECTORS        1
114 #define BE_TX_BUDGET            256
115 #define BE_NAPI_WEIGHT          64
116 #define MAX_RX_POST             BE_NAPI_WEIGHT /* Frags posted at a time */
117 #define RX_FRAGS_REFILL_WM      (RX_Q_LEN - MAX_RX_POST)
118
119 #define MAX_VFS                 30 /* Max VFs supported by BE3 FW */
120 #define FW_VER_LEN              32
121
122 struct be_dma_mem {
123         void *va;
124         dma_addr_t dma;
125         u32 size;
126 };
127
128 struct be_queue_info {
129         struct be_dma_mem dma_mem;
130         u16 len;
131         u16 entry_size; /* Size of an element in the queue */
132         u16 id;
133         u16 tail, head;
134         bool created;
135         atomic_t used;  /* Number of valid elements in the queue */
136 };
137
138 static inline u32 MODULO(u16 val, u16 limit)
139 {
140         BUG_ON(limit & (limit - 1));
141         return val & (limit - 1);
142 }
143
144 static inline void index_adv(u16 *index, u16 val, u16 limit)
145 {
146         *index = MODULO((*index + val), limit);
147 }
148
149 static inline void index_inc(u16 *index, u16 limit)
150 {
151         *index = MODULO((*index + 1), limit);
152 }
153
154 static inline void *queue_head_node(struct be_queue_info *q)
155 {
156         return q->dma_mem.va + q->head * q->entry_size;
157 }
158
159 static inline void *queue_tail_node(struct be_queue_info *q)
160 {
161         return q->dma_mem.va + q->tail * q->entry_size;
162 }
163
164 static inline void *queue_index_node(struct be_queue_info *q, u16 index)
165 {
166         return q->dma_mem.va + index * q->entry_size;
167 }
168
169 static inline void queue_head_inc(struct be_queue_info *q)
170 {
171         index_inc(&q->head, q->len);
172 }
173
174 static inline void index_dec(u16 *index, u16 limit)
175 {
176         *index = MODULO((*index - 1), limit);
177 }
178
179 static inline void queue_tail_inc(struct be_queue_info *q)
180 {
181         index_inc(&q->tail, q->len);
182 }
183
184 struct be_eq_obj {
185         struct be_queue_info q;
186         char desc[32];
187
188         /* Adaptive interrupt coalescing (AIC) info */
189         bool enable_aic;
190         u32 min_eqd;            /* in usecs */
191         u32 max_eqd;            /* in usecs */
192         u32 eqd;                /* configured val when aic is off */
193         u32 cur_eqd;            /* in usecs */
194
195         u8 idx;                 /* array index */
196         u8 msix_idx;
197         u16 tx_budget;
198         u16 spurious_intr;
199         struct napi_struct napi;
200         struct be_adapter *adapter;
201 } ____cacheline_aligned_in_smp;
202
203 struct be_aic_obj {             /* Adaptive interrupt coalescing (AIC) info */
204         bool enable;
205         u32 min_eqd;            /* in usecs */
206         u32 max_eqd;            /* in usecs */
207         u32 prev_eqd;           /* in usecs */
208         u32 et_eqd;             /* configured val when aic is off */
209         ulong jiffies;
210         u64 rx_pkts_prev;       /* Used to calculate RX pps */
211         u64 tx_reqs_prev;       /* Used to calculate TX pps */
212 };
213
214 struct be_mcc_obj {
215         struct be_queue_info q;
216         struct be_queue_info cq;
217         bool rearm_cq;
218 };
219
220 struct be_tx_stats {
221         u64 tx_bytes;
222         u64 tx_pkts;
223         u64 tx_reqs;
224         u64 tx_wrbs;
225         u64 tx_compl;
226         ulong tx_jiffies;
227         u32 tx_stops;
228         u32 tx_drv_drops;       /* pkts dropped by driver */
229         struct u64_stats_sync sync;
230         struct u64_stats_sync sync_compl;
231 };
232
233 struct be_tx_obj {
234         u32 db_offset;
235         struct be_queue_info q;
236         struct be_queue_info cq;
237         /* Remember the skbs that were transmitted */
238         struct sk_buff *sent_skb_list[TX_Q_LEN];
239         struct be_tx_stats stats;
240 } ____cacheline_aligned_in_smp;
241
242 /* Struct to remember the pages posted for rx frags */
243 struct be_rx_page_info {
244         struct page *page;
245         DEFINE_DMA_UNMAP_ADDR(bus);
246         u16 page_offset;
247         bool last_page_user;
248 };
249
250 struct be_rx_stats {
251         u64 rx_bytes;
252         u64 rx_pkts;
253         u32 rx_drops_no_skbs;   /* skb allocation errors */
254         u32 rx_drops_no_frags;  /* HW has no fetched frags */
255         u32 rx_post_fail;       /* page post alloc failures */
256         u32 rx_compl;
257         u32 rx_mcast_pkts;
258         u32 rx_compl_err;       /* completions with err set */
259         struct u64_stats_sync sync;
260 };
261
262 struct be_rx_compl_info {
263         u32 rss_hash;
264         u16 vlan_tag;
265         u16 pkt_size;
266         u16 rxq_idx;
267         u16 port;
268         u8 vlanf;
269         u8 num_rcvd;
270         u8 err;
271         u8 ipf;
272         u8 tcpf;
273         u8 udpf;
274         u8 ip_csum;
275         u8 l4_csum;
276         u8 ipv6;
277         u8 vtm;
278         u8 pkt_type;
279         u8 ip_frag;
280 };
281
282 struct be_rx_obj {
283         struct be_adapter *adapter;
284         struct be_queue_info q;
285         struct be_queue_info cq;
286         struct be_rx_compl_info rxcp;
287         struct be_rx_page_info page_info_tbl[RX_Q_LEN];
288         struct be_rx_stats stats;
289         u8 rss_id;
290         bool rx_post_starved;   /* Zero rx frags have been posted to BE */
291 } ____cacheline_aligned_in_smp;
292
293 struct be_drv_stats {
294         u32 be_on_die_temperature;
295         u32 eth_red_drops;
296         u32 rx_drops_no_pbuf;
297         u32 rx_drops_no_txpb;
298         u32 rx_drops_no_erx_descr;
299         u32 rx_drops_no_tpre_descr;
300         u32 rx_drops_too_many_frags;
301         u32 forwarded_packets;
302         u32 rx_drops_mtu;
303         u32 rx_crc_errors;
304         u32 rx_alignment_symbol_errors;
305         u32 rx_pause_frames;
306         u32 rx_priority_pause_frames;
307         u32 rx_control_frames;
308         u32 rx_in_range_errors;
309         u32 rx_out_range_errors;
310         u32 rx_frame_too_long;
311         u32 rx_address_filtered;
312         u32 rx_dropped_too_small;
313         u32 rx_dropped_too_short;
314         u32 rx_dropped_header_too_small;
315         u32 rx_dropped_tcp_length;
316         u32 rx_dropped_runt;
317         u32 rx_ip_checksum_errs;
318         u32 rx_tcp_checksum_errs;
319         u32 rx_udp_checksum_errs;
320         u32 tx_pauseframes;
321         u32 tx_priority_pauseframes;
322         u32 tx_controlframes;
323         u32 rxpp_fifo_overflow_drop;
324         u32 rx_input_fifo_overflow_drop;
325         u32 pmem_fifo_overflow_drop;
326         u32 jabber_events;
327 };
328
329 struct be_vf_cfg {
330         unsigned char mac_addr[ETH_ALEN];
331         int if_handle;
332         int pmac_id;
333         u16 def_vid;
334         u16 vlan_tag;
335         u32 tx_rate;
336 };
337
338 enum vf_state {
339         ENABLED = 0,
340         ASSIGNED = 1
341 };
342
343 #define BE_FLAGS_LINK_STATUS_INIT               1
344 #define BE_FLAGS_WORKER_SCHEDULED               (1 << 3)
345 #define BE_FLAGS_NAPI_ENABLED                   (1 << 9)
346 #define BE_UC_PMAC_COUNT                30
347 #define BE_VF_UC_PMAC_COUNT             2
348 #define BE_FLAGS_QNQ_ASYNC_EVT_RCVD             (1 << 11)
349
350 /* Ethtool set_dump flags */
351 #define LANCER_INITIATE_FW_DUMP                 0x1
352
353 struct phy_info {
354         u8 transceiver;
355         u8 autoneg;
356         u8 fc_autoneg;
357         u8 port_type;
358         u16 phy_type;
359         u16 interface_type;
360         u32 misc_params;
361         u16 auto_speeds_supported;
362         u16 fixed_speeds_supported;
363         int link_speed;
364         u32 dac_cable_len;
365         u32 advertising;
366         u32 supported;
367 };
368
369 struct be_resources {
370         u16 max_vfs;            /* Total VFs "really" supported by FW/HW */
371         u16 max_mcast_mac;
372         u16 max_tx_qs;
373         u16 max_rss_qs;
374         u16 max_rx_qs;
375         u16 max_uc_mac;         /* Max UC MACs programmable */
376         u16 max_vlans;          /* Number of vlans supported */
377         u16 max_evt_qs;
378         u32 if_cap_flags;
379 };
380
381 struct be_adapter {
382         struct pci_dev *pdev;
383         struct net_device *netdev;
384
385         u8 __iomem *csr;        /* CSR BAR used only for BE2/3 */
386         u8 __iomem *db;         /* Door Bell */
387
388         struct mutex mbox_lock; /* For serializing mbox cmds to BE card */
389         struct be_dma_mem mbox_mem;
390         /* Mbox mem is adjusted to align to 16 bytes. The allocated addr
391          * is stored for freeing purpose */
392         struct be_dma_mem mbox_mem_alloced;
393
394         struct be_mcc_obj mcc_obj;
395         spinlock_t mcc_lock;    /* For serializing mcc cmds to BE card */
396         spinlock_t mcc_cq_lock;
397
398         u16 cfg_num_qs;         /* configured via set-channels */
399         u16 num_evt_qs;
400         u16 num_msix_vec;
401         struct be_eq_obj eq_obj[MAX_EVT_QS];
402         struct msix_entry msix_entries[MAX_MSIX_VECTORS];
403         bool isr_registered;
404
405         /* TX Rings */
406         u16 num_tx_qs;
407         struct be_tx_obj tx_obj[MAX_TX_QS];
408
409         /* Rx rings */
410         u16 num_rx_qs;
411         struct be_rx_obj rx_obj[MAX_RX_QS];
412         u32 big_page_size;      /* Compounded page size shared by rx wrbs */
413
414         struct be_drv_stats drv_stats;
415         struct be_aic_obj aic_obj[MAX_EVT_QS];
416         u16 vlans_added;
417         u8 vlan_tag[VLAN_N_VID];
418         u8 vlan_prio_bmap;      /* Available Priority BitMap */
419         u16 recommended_prio;   /* Recommended Priority */
420         struct be_dma_mem rx_filter; /* Cmd DMA mem for rx-filter */
421
422         struct be_dma_mem stats_cmd;
423         /* Work queue used to perform periodic tasks like getting statistics */
424         struct delayed_work work;
425         u16 work_counter;
426
427         struct delayed_work func_recovery_work;
428         u32 flags;
429         u32 cmd_privileges;
430         /* Ethtool knobs and info */
431         char fw_ver[FW_VER_LEN];
432         char fw_on_flash[FW_VER_LEN];
433         int if_handle;          /* Used to configure filtering */
434         u32 *pmac_id;           /* MAC addr handle used by BE card */
435         u32 beacon_state;       /* for set_phys_id */
436
437         bool eeh_error;
438         bool fw_timeout;
439         bool hw_error;
440
441         u32 port_num;
442         bool promiscuous;
443         u32 function_mode;
444         u32 function_caps;
445         u32 rx_fc;              /* Rx flow control */
446         u32 tx_fc;              /* Tx flow control */
447         bool stats_cmd_sent;
448         u32 if_type;
449         struct {
450                 u32 size;
451                 u32 total_size;
452                 u64 io_addr;
453         } roce_db;
454         u32 num_msix_roce_vec;
455         struct ocrdma_dev *ocrdma_dev;
456         struct list_head entry;
457
458         u32 flash_status;
459         struct completion flash_compl;
460
461         struct be_resources res;        /* resources available for the func */
462         u16 num_vfs;                    /* Number of VFs provisioned by PF */
463         u8 virtfn;
464         struct be_vf_cfg *vf_cfg;
465         bool be3_native;
466         u32 sli_family;
467         u8 hba_port_num;
468         u16 pvid;
469         struct phy_info phy;
470         u8 wol_cap;
471         bool wol;
472         u32 uc_macs;            /* Count of secondary UC MAC programmed */
473         u16 asic_rev;
474         u16 qnq_vid;
475         u32 msg_enable;
476         int be_get_temp_freq;
477         u8 pf_number;
478         u64 rss_flags;
479 };
480
481 #define be_physfn(adapter)              (!adapter->virtfn)
482 #define sriov_enabled(adapter)          (adapter->num_vfs > 0)
483 #define sriov_want(adapter)             (be_physfn(adapter) &&  \
484                                          (num_vfs || pci_num_vf(adapter->pdev)))
485 #define for_all_vfs(adapter, vf_cfg, i)                                 \
486         for (i = 0, vf_cfg = &adapter->vf_cfg[i]; i < adapter->num_vfs; \
487                 i++, vf_cfg++)
488
489 #define ON                              1
490 #define OFF                             0
491
492 #define be_max_vlans(adapter)           (adapter->res.max_vlans)
493 #define be_max_uc(adapter)              (adapter->res.max_uc_mac)
494 #define be_max_mc(adapter)              (adapter->res.max_mcast_mac)
495 #define be_max_vfs(adapter)             (adapter->res.max_vfs)
496 #define be_max_rss(adapter)             (adapter->res.max_rss_qs)
497 #define be_max_txqs(adapter)            (adapter->res.max_tx_qs)
498 #define be_max_prio_txqs(adapter)       (adapter->res.max_prio_tx_qs)
499 #define be_max_rxqs(adapter)            (adapter->res.max_rx_qs)
500 #define be_max_eqs(adapter)             (adapter->res.max_evt_qs)
501 #define be_if_cap_flags(adapter)        (adapter->res.if_cap_flags)
502
503 static inline u16 be_max_qs(struct be_adapter *adapter)
504 {
505         /* If no RSS, need atleast the one def RXQ */
506         u16 num = max_t(u16, be_max_rss(adapter), 1);
507
508         num = min(num, be_max_eqs(adapter));
509         return min_t(u16, num, num_online_cpus());
510 }
511
512 #define lancer_chip(adapter)    (adapter->pdev->device == OC_DEVICE_ID3 || \
513                                  adapter->pdev->device == OC_DEVICE_ID4)
514
515 #define skyhawk_chip(adapter)   (adapter->pdev->device == OC_DEVICE_ID5 || \
516                                  adapter->pdev->device == OC_DEVICE_ID6)
517
518 #define BE3_chip(adapter)       (adapter->pdev->device == BE_DEVICE_ID2 || \
519                                  adapter->pdev->device == OC_DEVICE_ID2)
520
521 #define BE2_chip(adapter)       (adapter->pdev->device == BE_DEVICE_ID1 || \
522                                  adapter->pdev->device == OC_DEVICE_ID1)
523
524 #define BEx_chip(adapter)       (BE3_chip(adapter) || BE2_chip(adapter))
525
526 #define be_roce_supported(adapter)      (skyhawk_chip(adapter) && \
527                                         (adapter->function_mode & RDMA_ENABLED))
528
529 extern const struct ethtool_ops be_ethtool_ops;
530
531 #define msix_enabled(adapter)           (adapter->num_msix_vec > 0)
532 #define num_irqs(adapter)               (msix_enabled(adapter) ?        \
533                                                 adapter->num_msix_vec : 1)
534 #define tx_stats(txo)                   (&(txo)->stats)
535 #define rx_stats(rxo)                   (&(rxo)->stats)
536
537 /* The default RXQ is the last RXQ */
538 #define default_rxo(adpt)               (&adpt->rx_obj[adpt->num_rx_qs - 1])
539
540 #define for_all_rx_queues(adapter, rxo, i)                              \
541         for (i = 0, rxo = &adapter->rx_obj[i]; i < adapter->num_rx_qs;  \
542                 i++, rxo++)
543
544 /* Skip the default non-rss queue (last one)*/
545 #define for_all_rss_queues(adapter, rxo, i)                             \
546         for (i = 0, rxo = &adapter->rx_obj[i]; i < (adapter->num_rx_qs - 1);\
547                 i++, rxo++)
548
549 #define for_all_tx_queues(adapter, txo, i)                              \
550         for (i = 0, txo = &adapter->tx_obj[i]; i < adapter->num_tx_qs;  \
551                 i++, txo++)
552
553 #define for_all_evt_queues(adapter, eqo, i)                             \
554         for (i = 0, eqo = &adapter->eq_obj[i]; i < adapter->num_evt_qs; \
555                 i++, eqo++)
556
557 #define is_mcc_eqo(eqo)                 (eqo->idx == 0)
558 #define mcc_eqo(adapter)                (&adapter->eq_obj[0])
559
560 #define PAGE_SHIFT_4K           12
561 #define PAGE_SIZE_4K            (1 << PAGE_SHIFT_4K)
562
563 /* Returns number of pages spanned by the data starting at the given addr */
564 #define PAGES_4K_SPANNED(_address, size)                                \
565                 ((u32)((((size_t)(_address) & (PAGE_SIZE_4K - 1)) +     \
566                         (size) + (PAGE_SIZE_4K - 1)) >> PAGE_SHIFT_4K))
567
568 /* Returns bit offset within a DWORD of a bitfield */
569 #define AMAP_BIT_OFFSET(_struct, field)                                 \
570                 (((size_t)&(((_struct *)0)->field))%32)
571
572 /* Returns the bit mask of the field that is NOT shifted into location. */
573 static inline u32 amap_mask(u32 bitsize)
574 {
575         return (bitsize == 32 ? 0xFFFFFFFF : (1 << bitsize) - 1);
576 }
577
578 static inline void
579 amap_set(void *ptr, u32 dw_offset, u32 mask, u32 offset, u32 value)
580 {
581         u32 *dw = (u32 *) ptr + dw_offset;
582         *dw &= ~(mask << offset);
583         *dw |= (mask & value) << offset;
584 }
585
586 #define AMAP_SET_BITS(_struct, field, ptr, val)                         \
587                 amap_set(ptr,                                           \
588                         offsetof(_struct, field)/32,                    \
589                         amap_mask(sizeof(((_struct *)0)->field)),       \
590                         AMAP_BIT_OFFSET(_struct, field),                \
591                         val)
592
593 static inline u32 amap_get(void *ptr, u32 dw_offset, u32 mask, u32 offset)
594 {
595         u32 *dw = (u32 *) ptr;
596         return mask & (*(dw + dw_offset) >> offset);
597 }
598
599 #define AMAP_GET_BITS(_struct, field, ptr)                              \
600                 amap_get(ptr,                                           \
601                         offsetof(_struct, field)/32,                    \
602                         amap_mask(sizeof(((_struct *)0)->field)),       \
603                         AMAP_BIT_OFFSET(_struct, field))
604
605 #define be_dws_cpu_to_le(wrb, len)      swap_dws(wrb, len)
606 #define be_dws_le_to_cpu(wrb, len)      swap_dws(wrb, len)
607 static inline void swap_dws(void *wrb, int len)
608 {
609 #ifdef __BIG_ENDIAN
610         u32 *dw = wrb;
611         BUG_ON(len % 4);
612         do {
613                 *dw = cpu_to_le32(*dw);
614                 dw++;
615                 len -= 4;
616         } while (len);
617 #endif                          /* __BIG_ENDIAN */
618 }
619
620 static inline u8 is_tcp_pkt(struct sk_buff *skb)
621 {
622         u8 val = 0;
623
624         if (ip_hdr(skb)->version == 4)
625                 val = (ip_hdr(skb)->protocol == IPPROTO_TCP);
626         else if (ip_hdr(skb)->version == 6)
627                 val = (ipv6_hdr(skb)->nexthdr == NEXTHDR_TCP);
628
629         return val;
630 }
631
632 static inline u8 is_udp_pkt(struct sk_buff *skb)
633 {
634         u8 val = 0;
635
636         if (ip_hdr(skb)->version == 4)
637                 val = (ip_hdr(skb)->protocol == IPPROTO_UDP);
638         else if (ip_hdr(skb)->version == 6)
639                 val = (ipv6_hdr(skb)->nexthdr == NEXTHDR_UDP);
640
641         return val;
642 }
643
644 static inline bool is_ipv4_pkt(struct sk_buff *skb)
645 {
646         return skb->protocol == htons(ETH_P_IP) && ip_hdr(skb)->version == 4;
647 }
648
649 static inline void be_vf_eth_addr_generate(struct be_adapter *adapter, u8 *mac)
650 {
651         u32 addr;
652
653         addr = jhash(adapter->netdev->dev_addr, ETH_ALEN, 0);
654
655         mac[5] = (u8)(addr & 0xFF);
656         mac[4] = (u8)((addr >> 8) & 0xFF);
657         mac[3] = (u8)((addr >> 16) & 0xFF);
658         /* Use the OUI from the current MAC address */
659         memcpy(mac, adapter->netdev->dev_addr, 3);
660 }
661
662 static inline bool be_multi_rxq(const struct be_adapter *adapter)
663 {
664         return adapter->num_rx_qs > 1;
665 }
666
667 static inline bool be_error(struct be_adapter *adapter)
668 {
669         return adapter->eeh_error || adapter->hw_error || adapter->fw_timeout;
670 }
671
672 static inline bool be_hw_error(struct be_adapter *adapter)
673 {
674         return adapter->eeh_error || adapter->hw_error;
675 }
676
677 static inline void  be_clear_all_error(struct be_adapter *adapter)
678 {
679         adapter->eeh_error = false;
680         adapter->hw_error = false;
681         adapter->fw_timeout = false;
682 }
683
684 static inline bool be_is_wol_excluded(struct be_adapter *adapter)
685 {
686         struct pci_dev *pdev = adapter->pdev;
687
688         if (!be_physfn(adapter))
689                 return true;
690
691         switch (pdev->subsystem_device) {
692         case OC_SUBSYS_DEVICE_ID1:
693         case OC_SUBSYS_DEVICE_ID2:
694         case OC_SUBSYS_DEVICE_ID3:
695         case OC_SUBSYS_DEVICE_ID4:
696                 return true;
697         default:
698                 return false;
699         }
700 }
701
702 static inline int qnq_async_evt_rcvd(struct be_adapter *adapter)
703 {
704         return adapter->flags & BE_FLAGS_QNQ_ASYNC_EVT_RCVD;
705 }
706
707 void be_cq_notify(struct be_adapter *adapter, u16 qid, bool arm,
708                   u16 num_popped);
709 void be_link_status_update(struct be_adapter *adapter, u8 link_status);
710 void be_parse_stats(struct be_adapter *adapter);
711 int be_load_fw(struct be_adapter *adapter, u8 *func);
712 bool be_is_wol_supported(struct be_adapter *adapter);
713 bool be_pause_supported(struct be_adapter *adapter);
714 u32 be_get_fw_log_level(struct be_adapter *adapter);
715 int be_update_queues(struct be_adapter *adapter);
716 int be_poll(struct napi_struct *napi, int budget);
717
718 /*
719  * internal function to initialize-cleanup roce device.
720  */
721 void be_roce_dev_add(struct be_adapter *);
722 void be_roce_dev_remove(struct be_adapter *);
723
724 /*
725  * internal function to open-close roce device during ifup-ifdown.
726  */
727 void be_roce_dev_open(struct be_adapter *);
728 void be_roce_dev_close(struct be_adapter *);
729
730 #endif                          /* BE_H */