Home | History | Annotate | Line # | Download | only in ixgbe
ixgbe.h revision 1.75
      1  1.75   msaitoh /* $NetBSD: ixgbe.h,v 1.75 2021/03/09 10:03:18 msaitoh Exp $ */
      2  1.26   msaitoh 
      3   1.1    dyoung /******************************************************************************
      4  1.29   msaitoh   SPDX-License-Identifier: BSD-3-Clause
      5   1.1    dyoung 
      6  1.26   msaitoh   Copyright (c) 2001-2017, Intel Corporation
      7   1.1    dyoung   All rights reserved.
      8  1.26   msaitoh 
      9  1.26   msaitoh   Redistribution and use in source and binary forms, with or without
     10   1.1    dyoung   modification, are permitted provided that the following conditions are met:
     11  1.26   msaitoh 
     12  1.26   msaitoh    1. Redistributions of source code must retain the above copyright notice,
     13   1.1    dyoung       this list of conditions and the following disclaimer.
     14  1.26   msaitoh 
     15  1.26   msaitoh    2. Redistributions in binary form must reproduce the above copyright
     16  1.26   msaitoh       notice, this list of conditions and the following disclaimer in the
     17   1.1    dyoung       documentation and/or other materials provided with the distribution.
     18  1.26   msaitoh 
     19  1.26   msaitoh    3. Neither the name of the Intel Corporation nor the names of its
     20  1.26   msaitoh       contributors may be used to endorse or promote products derived from
     21   1.1    dyoung       this software without specific prior written permission.
     22  1.26   msaitoh 
     23   1.1    dyoung   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     24  1.26   msaitoh   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.26   msaitoh   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.26   msaitoh   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
     27  1.26   msaitoh   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28  1.26   msaitoh   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29  1.26   msaitoh   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30  1.26   msaitoh   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31  1.26   msaitoh   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32   1.1    dyoung   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33   1.1    dyoung   POSSIBILITY OF SUCH DAMAGE.
     34   1.1    dyoung 
     35   1.1    dyoung ******************************************************************************/
     36  1.41   msaitoh /*$FreeBSD: head/sys/dev/ixgbe/ixgbe.h 327031 2017-12-20 18:15:06Z erj $*/
     37  1.26   msaitoh 
     38   1.1    dyoung /*
     39   1.1    dyoung  * Copyright (c) 2011 The NetBSD Foundation, Inc.
     40   1.1    dyoung  * All rights reserved.
     41   1.1    dyoung  *
     42   1.1    dyoung  * This code is derived from software contributed to The NetBSD Foundation
     43   1.1    dyoung  * by Coyote Point Systems, Inc.
     44   1.1    dyoung  *
     45   1.1    dyoung  * Redistribution and use in source and binary forms, with or without
     46   1.1    dyoung  * modification, are permitted provided that the following conditions
     47   1.1    dyoung  * are met:
     48   1.1    dyoung  * 1. Redistributions of source code must retain the above copyright
     49   1.1    dyoung  *    notice, this list of conditions and the following disclaimer.
     50   1.1    dyoung  * 2. Redistributions in binary form must reproduce the above copyright
     51   1.1    dyoung  *    notice, this list of conditions and the following disclaimer in the
     52   1.1    dyoung  *    documentation and/or other materials provided with the distribution.
     53   1.1    dyoung  *
     54   1.1    dyoung  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     55   1.1    dyoung  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     56   1.1    dyoung  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     57   1.1    dyoung  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     58   1.1    dyoung  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     59   1.1    dyoung  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     60   1.1    dyoung  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     61   1.1    dyoung  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     62   1.1    dyoung  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     63   1.1    dyoung  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     64   1.1    dyoung  * POSSIBILITY OF SUCH DAMAGE.
     65   1.1    dyoung  */
     66   1.1    dyoung 
     67   1.1    dyoung 
     68   1.1    dyoung #ifndef _IXGBE_H_
     69   1.1    dyoung #define _IXGBE_H_
     70   1.1    dyoung 
     71   1.1    dyoung 
     72   1.1    dyoung #include <sys/param.h>
     73   1.1    dyoung #include <sys/reboot.h>
     74   1.1    dyoung #include <sys/systm.h>
     75  1.22   msaitoh #include <sys/pcq.h>
     76   1.1    dyoung #include <sys/mbuf.h>
     77   1.1    dyoung #include <sys/protosw.h>
     78   1.1    dyoung #include <sys/socket.h>
     79   1.1    dyoung #include <sys/malloc.h>
     80   1.1    dyoung #include <sys/kernel.h>
     81   1.1    dyoung #include <sys/module.h>
     82   1.1    dyoung #include <sys/sockio.h>
     83  1.32  knakahar #include <sys/percpu.h>
     84   1.1    dyoung 
     85   1.1    dyoung #include <net/if.h>
     86   1.1    dyoung #include <net/if_arp.h>
     87   1.1    dyoung #include <net/bpf.h>
     88   1.1    dyoung #include <net/if_ether.h>
     89   1.1    dyoung #include <net/if_dl.h>
     90   1.1    dyoung #include <net/if_media.h>
     91   1.1    dyoung 
     92   1.1    dyoung #include <net/if_types.h>
     93   1.1    dyoung #include <net/if_vlanvar.h>
     94   1.1    dyoung 
     95   1.1    dyoung #include <netinet/in_systm.h>
     96   1.1    dyoung #include <netinet/in.h>
     97   1.1    dyoung #include <netinet/ip.h>
     98   1.1    dyoung #include <netinet/ip6.h>
     99   1.1    dyoung #include <netinet/tcp.h>
    100   1.1    dyoung #include <netinet/udp.h>
    101   1.1    dyoung 
    102   1.1    dyoung #include <sys/bus.h>
    103   1.1    dyoung #include <dev/pci/pcivar.h>
    104   1.1    dyoung #include <dev/pci/pcireg.h>
    105   1.1    dyoung #include <sys/proc.h>
    106   1.1    dyoung #include <sys/sysctl.h>
    107   1.1    dyoung #include <sys/endian.h>
    108   1.1    dyoung #include <sys/workqueue.h>
    109   1.7   msaitoh #include <sys/cpu.h>
    110   1.9  knakahar #include <sys/interrupt.h>
    111  1.22   msaitoh #include <sys/bitops.h>
    112   1.1    dyoung 
    113   1.1    dyoung #include "ixgbe_netbsd.h"
    114   1.1    dyoung #include "ixgbe_api.h"
    115  1.12   msaitoh #include "ixgbe_common.h"
    116  1.10   msaitoh #include "ixgbe_vf.h"
    117  1.26   msaitoh #include "ixgbe_features.h"
    118   1.1    dyoung 
    119   1.1    dyoung /* Tunables */
    120   1.1    dyoung 
    121   1.1    dyoung /*
    122   1.1    dyoung  * TxDescriptors Valid Range: 64-4096 Default Value: 256 This value is the
    123   1.1    dyoung  * number of transmit descriptors allocated by the driver. Increasing this
    124   1.1    dyoung  * value allows the driver to queue more transmits. Each descriptor is 16
    125   1.1    dyoung  * bytes. Performance tests have show the 2K value to be optimal for top
    126   1.1    dyoung  * performance.
    127   1.1    dyoung  */
    128   1.1    dyoung #define DEFAULT_TXD	1024
    129   1.1    dyoung #define PERFORM_TXD	2048
    130   1.1    dyoung #define MAX_TXD		4096
    131   1.1    dyoung #define MIN_TXD		64
    132   1.1    dyoung 
    133   1.1    dyoung /*
    134   1.1    dyoung  * RxDescriptors Valid Range: 64-4096 Default Value: 256 This value is the
    135   1.1    dyoung  * number of receive descriptors allocated for each RX queue. Increasing this
    136   1.1    dyoung  * value allows the driver to buffer more incoming packets. Each descriptor
    137  1.60   msaitoh  * is 16 bytes.  A receive buffer is also allocated for each descriptor.
    138  1.60   msaitoh  *
    139  1.60   msaitoh  * Note: with 8 rings and a dual port card, it is possible to bump up
    140   1.1    dyoung  *	against the system mbuf pool limit, you can tune nmbclusters
    141   1.1    dyoung  *	to adjust for this.
    142   1.1    dyoung  */
    143   1.1    dyoung #define DEFAULT_RXD	1024
    144   1.1    dyoung #define PERFORM_RXD	2048
    145   1.1    dyoung #define MAX_RXD		4096
    146   1.1    dyoung #define MIN_RXD		64
    147   1.1    dyoung 
    148   1.1    dyoung /* Alignment for rings */
    149   1.1    dyoung #define DBA_ALIGN	128
    150   1.1    dyoung 
    151   1.1    dyoung /*
    152   1.1    dyoung  * This is the max watchdog interval, ie. the time that can
    153   1.1    dyoung  * pass between any two TX clean operations, such only happening
    154   1.1    dyoung  * when the TX hardware is functioning.
    155   1.1    dyoung  */
    156  1.48   msaitoh #define IXGBE_WATCHDOG  (10 * hz)
    157   1.1    dyoung 
    158   1.1    dyoung /*
    159   1.1    dyoung  * This parameters control when the driver calls the routine to reclaim
    160   1.1    dyoung  * transmit descriptors.
    161   1.1    dyoung  */
    162  1.26   msaitoh #define IXGBE_TX_CLEANUP_THRESHOLD(_a)  ((_a)->num_tx_desc / 8)
    163  1.26   msaitoh #define IXGBE_TX_OP_THRESHOLD(_a)       ((_a)->num_tx_desc / 32)
    164   1.1    dyoung 
    165  1.12   msaitoh /* These defines are used in MTU calculations */
    166  1.26   msaitoh #define IXGBE_MAX_FRAME_SIZE  9728
    167  1.26   msaitoh #define IXGBE_MTU_HDR         (ETHER_HDR_LEN + ETHER_CRC_LEN)
    168  1.26   msaitoh #define IXGBE_MTU_HDR_VLAN    (ETHER_HDR_LEN + ETHER_CRC_LEN + \
    169  1.26   msaitoh                                ETHER_VLAN_ENCAP_LEN)
    170  1.26   msaitoh #define IXGBE_MAX_MTU         (IXGBE_MAX_FRAME_SIZE - IXGBE_MTU_HDR)
    171  1.26   msaitoh #define IXGBE_MAX_MTU_VLAN    (IXGBE_MAX_FRAME_SIZE - IXGBE_MTU_HDR_VLAN)
    172   1.1    dyoung 
    173   1.1    dyoung /* Flow control constants */
    174  1.26   msaitoh #define IXGBE_FC_PAUSE        0xFFFF
    175   1.1    dyoung 
    176   1.6   msaitoh /*
    177   1.6   msaitoh  * Used for optimizing small rx mbufs.  Effort is made to keep the copy
    178   1.6   msaitoh  * small and aligned for the CPU L1 cache.
    179  1.26   msaitoh  *
    180   1.6   msaitoh  * MHLEN is typically 168 bytes, giving us 8-byte alignment.  Getting
    181   1.6   msaitoh  * 32 byte alignment needed for the fast bcopy results in 8 bytes being
    182   1.6   msaitoh  * wasted.  Getting 64 byte alignment, which _should_ be ideal for
    183   1.6   msaitoh  * modern Intel CPUs, results in 40 bytes wasted and a significant drop
    184   1.6   msaitoh  * in observed efficiency of the optimization, 97.9% -> 81.8%.
    185   1.6   msaitoh  */
    186   1.8   msaitoh #define	MPKTHSIZE		(offsetof(struct _mbuf_dummy, m_pktdat))
    187  1.26   msaitoh #define IXGBE_RX_COPY_HDR_PADDED  ((((MPKTHSIZE - 1) / 32) + 1) * 32)
    188  1.26   msaitoh #define IXGBE_RX_COPY_LEN         (MSIZE - IXGBE_RX_COPY_HDR_PADDED)
    189  1.26   msaitoh #define IXGBE_RX_COPY_ALIGN       (IXGBE_RX_COPY_HDR_PADDED - MPKTHSIZE)
    190   1.6   msaitoh 
    191   1.1    dyoung /* Keep older OS drivers building... */
    192   1.1    dyoung #if !defined(SYSCTL_ADD_UQUAD)
    193   1.1    dyoung #define SYSCTL_ADD_UQUAD SYSCTL_ADD_QUAD
    194   1.1    dyoung #endif
    195   1.1    dyoung 
    196   1.1    dyoung /* Defines for printing debug information */
    197   1.1    dyoung #define DEBUG_INIT  0
    198   1.1    dyoung #define DEBUG_IOCTL 0
    199   1.1    dyoung #define DEBUG_HW    0
    200   1.1    dyoung 
    201   1.1    dyoung #define INIT_DEBUGOUT(S)            if (DEBUG_INIT)  printf(S "\n")
    202   1.1    dyoung #define INIT_DEBUGOUT1(S, A)        if (DEBUG_INIT)  printf(S "\n", A)
    203   1.1    dyoung #define INIT_DEBUGOUT2(S, A, B)     if (DEBUG_INIT)  printf(S "\n", A, B)
    204   1.1    dyoung #define IOCTL_DEBUGOUT(S)           if (DEBUG_IOCTL) printf(S "\n")
    205   1.1    dyoung #define IOCTL_DEBUGOUT1(S, A)       if (DEBUG_IOCTL) printf(S "\n", A)
    206   1.1    dyoung #define IOCTL_DEBUGOUT2(S, A, B)    if (DEBUG_IOCTL) printf(S "\n", A, B)
    207   1.1    dyoung #define HW_DEBUGOUT(S)              if (DEBUG_HW) printf(S "\n")
    208   1.1    dyoung #define HW_DEBUGOUT1(S, A)          if (DEBUG_HW) printf(S "\n", A)
    209   1.1    dyoung #define HW_DEBUGOUT2(S, A, B)       if (DEBUG_HW) printf(S "\n", A, B)
    210   1.1    dyoung 
    211   1.1    dyoung #define MAX_NUM_MULTICAST_ADDRESSES     128
    212  1.26   msaitoh #define IXGBE_82598_SCATTER             100
    213  1.26   msaitoh #define IXGBE_82599_SCATTER             32
    214  1.26   msaitoh #define MSIX_82598_BAR                  3
    215  1.26   msaitoh #define MSIX_82599_BAR                  4
    216  1.26   msaitoh #define IXGBE_TSO_SIZE                  262140
    217  1.26   msaitoh #define IXGBE_RX_HDR                    128
    218  1.26   msaitoh #define IXGBE_VFTA_SIZE                 128
    219  1.75   msaitoh #define IXGBE_BR_SIZE                   2048
    220  1.26   msaitoh #define IXGBE_QUEUE_MIN_FREE            32
    221  1.48   msaitoh #define IXGBE_MAX_TX_BUSY               10
    222  1.48   msaitoh #define IXGBE_QUEUE_HUNG                0x80000000
    223  1.11   msaitoh 
    224  1.26   msaitoh #define IXGBE_EITR_DEFAULT		128
    225  1.11   msaitoh 
    226   1.7   msaitoh /* IOCTL define to gather SFP+ Diagnostic data */
    227   1.7   msaitoh #define SIOCGI2C	SIOCGIFGENERIC
    228   1.7   msaitoh 
    229   1.1    dyoung /* Offload bits in mbuf flag */
    230   1.1    dyoung #define	M_CSUM_OFFLOAD	\
    231   1.1    dyoung     (M_CSUM_IPv4|M_CSUM_UDPv4|M_CSUM_TCPv4|M_CSUM_UDPv6|M_CSUM_TCPv6)
    232   1.1    dyoung 
    233  1.11   msaitoh /* Backward compatibility items for very old versions */
    234  1.11   msaitoh #ifndef pci_find_cap
    235  1.11   msaitoh #define pci_find_cap pci_find_extcap
    236  1.11   msaitoh #endif
    237  1.11   msaitoh 
    238  1.11   msaitoh #ifndef DEVMETHOD_END
    239  1.11   msaitoh #define DEVMETHOD_END { NULL, NULL }
    240  1.11   msaitoh #endif
    241  1.11   msaitoh 
    242   1.1    dyoung /*
    243  1.55   msaitoh  * Interrupt Moderation parameters
    244   1.1    dyoung  */
    245   1.1    dyoung #define IXGBE_LOW_LATENCY	128
    246   1.1    dyoung #define IXGBE_AVE_LATENCY	400
    247   1.1    dyoung #define IXGBE_BULK_LATENCY	1200
    248  1.16   msaitoh 
    249  1.16   msaitoh /* Using 1FF (the max value), the interval is ~1.05ms */
    250  1.26   msaitoh #define IXGBE_LINK_ITR_QUANTA  0x1FF
    251  1.26   msaitoh #define IXGBE_LINK_ITR         ((IXGBE_LINK_ITR_QUANTA << 3) & \
    252  1.26   msaitoh                                 IXGBE_EITR_ITR_INT_MASK)
    253  1.13   msaitoh 
    254  1.13   msaitoh 
    255  1.26   msaitoh /************************************************************************
    256   1.1    dyoung  * vendor_info_array
    257  1.26   msaitoh  *
    258  1.26   msaitoh  *   Contains the list of Subvendor/Subdevice IDs on
    259  1.26   msaitoh  *   which the driver should load.
    260  1.26   msaitoh  ************************************************************************/
    261   1.1    dyoung typedef struct _ixgbe_vendor_info_t {
    262  1.26   msaitoh 	unsigned int vendor_id;
    263  1.26   msaitoh 	unsigned int device_id;
    264  1.26   msaitoh 	unsigned int subvendor_id;
    265  1.26   msaitoh 	unsigned int subdevice_id;
    266  1.26   msaitoh 	unsigned int index;
    267   1.1    dyoung } ixgbe_vendor_info_t;
    268   1.1    dyoung 
    269   1.7   msaitoh /* This is used to get SFP+ module data */
    270   1.7   msaitoh struct ixgbe_i2c_req {
    271  1.66   msaitoh 	u8 dev_addr;
    272  1.66   msaitoh 	u8 offset;
    273  1.66   msaitoh 	u8 len;
    274  1.66   msaitoh 	u8 data[8];
    275   1.7   msaitoh };
    276   1.1    dyoung 
    277  1.26   msaitoh struct ixgbe_bp_data {
    278  1.26   msaitoh 	u32 low;
    279  1.26   msaitoh 	u32 high;
    280  1.26   msaitoh 	u32 log;
    281  1.26   msaitoh };
    282  1.13   msaitoh 
    283   1.1    dyoung struct ixgbe_tx_buf {
    284   1.7   msaitoh 	union ixgbe_adv_tx_desc	*eop;
    285  1.26   msaitoh 	struct mbuf             *m_head;
    286  1.26   msaitoh 	bus_dmamap_t            map;
    287   1.1    dyoung };
    288   1.1    dyoung 
    289   1.1    dyoung struct ixgbe_rx_buf {
    290  1.26   msaitoh 	struct mbuf    *buf;
    291  1.26   msaitoh 	struct mbuf    *fmp;
    292  1.26   msaitoh 	bus_dmamap_t   pmap;
    293  1.26   msaitoh 	u_int          flags;
    294  1.26   msaitoh #define IXGBE_RX_COPY  0x01
    295  1.26   msaitoh 	uint64_t       addr;
    296   1.1    dyoung };
    297   1.1    dyoung 
    298   1.1    dyoung /*
    299  1.26   msaitoh  * Bus dma allocation structure used by ixgbe_dma_malloc and ixgbe_dma_free
    300   1.1    dyoung  */
    301   1.1    dyoung struct ixgbe_dma_alloc {
    302  1.26   msaitoh 	bus_addr_t        dma_paddr;
    303  1.26   msaitoh 	void              *dma_vaddr;
    304  1.26   msaitoh 	ixgbe_dma_tag_t   *dma_tag;
    305  1.26   msaitoh 	bus_dmamap_t      dma_map;
    306  1.26   msaitoh 	bus_dma_segment_t dma_seg;
    307  1.26   msaitoh 	bus_size_t        dma_size;
    308   1.1    dyoung };
    309   1.1    dyoung 
    310  1.13   msaitoh struct ixgbe_mc_addr {
    311  1.26   msaitoh 	u8  addr[IXGBE_ETH_LENGTH_OF_ADDRESS];
    312  1.13   msaitoh 	u32 vmdq;
    313  1.13   msaitoh };
    314  1.13   msaitoh 
    315   1.1    dyoung /*
    316  1.26   msaitoh  * Driver queue struct: this is the interrupt container
    317  1.26   msaitoh  *                      for the associated tx and rx ring.
    318  1.26   msaitoh  */
    319   1.1    dyoung struct ix_queue {
    320  1.26   msaitoh 	struct adapter   *adapter;
    321  1.26   msaitoh 	u32              msix;           /* This queue's MSI-X vector */
    322  1.26   msaitoh 	u32              eitr_setting;
    323  1.26   msaitoh 	u32              me;
    324  1.26   msaitoh 	struct resource  *res;
    325  1.48   msaitoh 	int              busy;
    326  1.26   msaitoh 	struct tx_ring   *txr;
    327  1.26   msaitoh 	struct rx_ring   *rxr;
    328  1.33   msaitoh 	struct work      wq_cookie;
    329  1.26   msaitoh 	void             *que_si;
    330  1.35   msaitoh 	/* Per queue event conters */
    331  1.35   msaitoh 	struct evcnt     irqs;		/* Hardware interrupt */
    332  1.35   msaitoh 	struct evcnt     handleq;	/* software_interrupt */
    333  1.35   msaitoh 	struct evcnt     req;		/* deferred */
    334  1.73   msaitoh 	char             namebuf[32];	/* Name for sysctl */
    335  1.73   msaitoh 	char             evnamebuf[32];	/* Name for evcnt */
    336  1.31  knakahar 
    337  1.66   msaitoh 	/* Lock for disabled_count and this queue's EIMS/EIMC bit */
    338  1.66   msaitoh 	kmutex_t         dc_mtx;
    339  1.66   msaitoh 	/*
    340  1.66   msaitoh 	 * disabled_count means:
    341  1.66   msaitoh 	 *     0   : this queue is enabled
    342  1.66   msaitoh 	 *     > 0 : this queue is disabled
    343  1.66   msaitoh 	 *           the value is ixgbe_disable_queue() called count
    344  1.66   msaitoh 	 */
    345  1.66   msaitoh 	int              disabled_count;
    346  1.42  knakahar 	bool             txrx_use_workqueue;
    347   1.1    dyoung };
    348   1.1    dyoung 
    349   1.1    dyoung /*
    350   1.1    dyoung  * The transmit ring, one per queue
    351   1.1    dyoung  */
    352   1.1    dyoung struct tx_ring {
    353  1.55   msaitoh 	struct adapter		*adapter;
    354   1.1    dyoung 	kmutex_t		tx_mtx;
    355   1.1    dyoung 	u32			me;
    356  1.11   msaitoh 	u32			tail;
    357  1.48   msaitoh 	int			busy;
    358   1.7   msaitoh 	union ixgbe_adv_tx_desc	*tx_base;
    359   1.7   msaitoh 	struct ixgbe_tx_buf	*tx_buffers;
    360   1.7   msaitoh 	struct ixgbe_dma_alloc	txdma;
    361   1.7   msaitoh 	volatile u16		tx_avail;
    362   1.7   msaitoh 	u16			next_avail_desc;
    363   1.7   msaitoh 	u16			next_to_clean;
    364   1.7   msaitoh 	u16			num_desc;
    365   1.1    dyoung 	ixgbe_dma_tag_t		*txtag;
    366  1.43   msaitoh #if 0
    367  1.43   msaitoh 	char			mtx_name[16]; /* NetBSD has no mutex name */
    368  1.43   msaitoh #endif
    369  1.22   msaitoh 	pcq_t			*txr_interq;
    370  1.33   msaitoh 	struct work		wq_cookie;
    371  1.22   msaitoh 	void			*txr_si;
    372  1.49   msaitoh 	bool			txr_no_space; /* Like IFF_OACTIVE */
    373  1.26   msaitoh 
    374  1.26   msaitoh 	/* Flow Director */
    375   1.1    dyoung 	u16			atr_sample;
    376   1.1    dyoung 	u16			atr_count;
    377  1.26   msaitoh 
    378  1.66   msaitoh 	u64			bytes;  /* Used for AIM */
    379  1.38  knakahar 	u64			packets;
    380   1.1    dyoung 	/* Soft Stats */
    381  1.66   msaitoh 	struct evcnt		tso_tx;
    382   1.1    dyoung 	struct evcnt		no_desc_avail;
    383   1.1    dyoung 	struct evcnt		total_packets;
    384  1.22   msaitoh 	struct evcnt		pcq_drops;
    385  1.35   msaitoh 	/* Per queue conters.  The adapter total is in struct adapter */
    386  1.35   msaitoh 	u64              q_efbig_tx_dma_setup;
    387  1.35   msaitoh 	u64              q_mbuf_defrag_failed;
    388  1.35   msaitoh 	u64              q_efbig2_tx_dma_setup;
    389  1.35   msaitoh 	u64              q_einval_tx_dma_setup;
    390  1.35   msaitoh 	u64              q_other_tx_dma_setup;
    391  1.35   msaitoh 	u64              q_eagain_tx_dma_setup;
    392  1.35   msaitoh 	u64              q_enomem_tx_dma_setup;
    393  1.35   msaitoh 	u64              q_tso_err;
    394   1.1    dyoung };
    395   1.1    dyoung 
    396   1.1    dyoung 
    397   1.1    dyoung /*
    398   1.1    dyoung  * The Receive ring, one per rx queue
    399   1.1    dyoung  */
    400   1.1    dyoung struct rx_ring {
    401  1.55   msaitoh 	struct adapter		*adapter;
    402   1.1    dyoung 	kmutex_t		rx_mtx;
    403   1.1    dyoung 	u32			me;
    404  1.11   msaitoh 	u32			tail;
    405   1.1    dyoung 	union ixgbe_adv_rx_desc	*rx_base;
    406   1.1    dyoung 	struct ixgbe_dma_alloc	rxdma;
    407   1.1    dyoung #ifdef LRO
    408   1.1    dyoung 	struct lro_ctrl		lro;
    409   1.1    dyoung #endif /* LRO */
    410   1.1    dyoung 	bool			lro_enabled;
    411   1.1    dyoung 	bool			hw_rsc;
    412   1.4   msaitoh 	bool			vtag_strip;
    413  1.55   msaitoh 	u16			next_to_refresh;
    414  1.66   msaitoh 	u16			next_to_check;
    415   1.7   msaitoh 	u16			num_desc;
    416   1.7   msaitoh 	u16			mbuf_sz;
    417  1.43   msaitoh #if 0
    418  1.43   msaitoh 	char			mtx_name[16]; /* NetBSD has no mutex name */
    419  1.43   msaitoh #endif
    420   1.1    dyoung 	struct ixgbe_rx_buf	*rx_buffers;
    421   1.7   msaitoh 	ixgbe_dma_tag_t		*ptag;
    422  1.66   msaitoh 	u16			last_rx_mbuf_sz;
    423  1.66   msaitoh 	u32			last_num_rx_desc;
    424  1.51   msaitoh 	ixgbe_extmem_head_t	jcl_head;
    425   1.1    dyoung 
    426  1.38  knakahar 	u64			bytes; /* Used for AIM calc */
    427  1.38  knakahar 	u64			packets;
    428   1.1    dyoung 
    429   1.1    dyoung 	/* Soft stats */
    430   1.6   msaitoh 	struct evcnt		rx_copies;
    431   1.1    dyoung 	struct evcnt		rx_packets;
    432  1.66   msaitoh 	struct evcnt		rx_bytes;
    433  1.66   msaitoh 	struct evcnt		rx_discarded;
    434  1.66   msaitoh 	struct evcnt		no_jmbuf;
    435  1.66   msaitoh 	u64			rsc_num;
    436  1.26   msaitoh 
    437  1.26   msaitoh 	/* Flow Director */
    438   1.1    dyoung 	u64			flm;
    439   1.1    dyoung };
    440   1.1    dyoung 
    441  1.13   msaitoh struct ixgbe_vf {
    442  1.26   msaitoh 	u_int    pool;
    443  1.26   msaitoh 	u_int    rar_index;
    444  1.26   msaitoh 	u_int    max_frame_size;
    445  1.26   msaitoh 	uint32_t flags;
    446  1.26   msaitoh 	uint8_t  ether_addr[ETHER_ADDR_LEN];
    447  1.26   msaitoh 	uint16_t mc_hash[IXGBE_MAX_VF_MC];
    448  1.26   msaitoh 	uint16_t num_mc_hashes;
    449  1.26   msaitoh 	uint16_t default_vlan;
    450  1.26   msaitoh 	uint16_t vlan_tag;
    451  1.26   msaitoh 	uint16_t api_ver;
    452  1.13   msaitoh };
    453  1.13   msaitoh 
    454  1.52   msaitoh /*
    455  1.52   msaitoh  * NetBSD: For trafic class
    456  1.52   msaitoh  * Crrently, the following structure is only for statistics.
    457  1.52   msaitoh  */
    458  1.52   msaitoh struct ixgbe_tc {
    459  1.52   msaitoh 	char             evnamebuf[32];
    460  1.52   msaitoh };
    461  1.52   msaitoh 
    462   1.1    dyoung /* Our adapter structure */
    463   1.1    dyoung struct adapter {
    464   1.1    dyoung 	struct ixgbe_hw		hw;
    465  1.16   msaitoh 	struct ixgbe_osdep	osdep;
    466   1.1    dyoung 
    467   1.1    dyoung 	device_t		dev;
    468  1.16   msaitoh 	struct ifnet		*ifp;
    469  1.24   msaitoh 	struct if_percpuq	*ipq;	/* softint-based input queues */
    470   1.1    dyoung 
    471   1.1    dyoung 	struct resource		*pci_mem;
    472   1.1    dyoung 	struct resource		*msix_mem;
    473   1.1    dyoung 
    474  1.43   msaitoh 	/* NetBSD: Interrupt resources are in osdep */
    475   1.1    dyoung 
    476   1.1    dyoung 	struct ifmedia		media;
    477   1.1    dyoung 	callout_t		timer;
    478  1.67   msaitoh 	struct workqueue	*timer_wq;
    479  1.67   msaitoh 	struct work		timer_wc;
    480  1.67   msaitoh 	u_int			timer_pending;
    481  1.67   msaitoh 
    482  1.58   msaitoh 	u_short			if_flags;	/* saved ifp->if_flags */
    483  1.56   msaitoh 	int			ec_capenable;	/* saved ec->ec_capenable */
    484   1.1    dyoung 
    485   1.1    dyoung 	kmutex_t		core_mtx;
    486   1.1    dyoung 
    487   1.1    dyoung 	unsigned int		num_queues;
    488   1.1    dyoung 
    489   1.1    dyoung 	/*
    490  1.26   msaitoh 	 * Shadow VFTA table, this is needed because
    491  1.26   msaitoh 	 * the real vlan filter table gets cleared during
    492  1.26   msaitoh 	 * a soft reset and the driver needs to be able
    493  1.26   msaitoh 	 * to repopulate it.
    494  1.26   msaitoh 	 */
    495   1.1    dyoung 	u32			shadow_vfta[IXGBE_VFTA_SIZE];
    496   1.1    dyoung 
    497   1.1    dyoung 	/* Info about the interface */
    498   1.1    dyoung 	int			advertise;  /* link speeds */
    499  1.18   msaitoh 	bool			enable_aim; /* adaptive interrupt moderation */
    500  1.54   msaitoh 	int			link_active; /* Use LINK_STATE_* value */
    501   1.1    dyoung 	u16			max_frame_size;
    502   1.1    dyoung 	u16			num_segs;
    503   1.1    dyoung 	u32			link_speed;
    504   1.1    dyoung 	bool			link_up;
    505  1.66   msaitoh 	u32			vector;
    506  1.12   msaitoh 	u16			dmac;
    507  1.13   msaitoh 	u32			phy_layer;
    508  1.12   msaitoh 
    509  1.12   msaitoh 	/* Power management-related */
    510  1.12   msaitoh 	bool			wol_support;
    511  1.12   msaitoh 	u32			wufc;
    512   1.1    dyoung 
    513   1.1    dyoung 	/* Mbuf cluster size */
    514   1.1    dyoung 	u32			rx_mbuf_sz;
    515   1.1    dyoung 
    516  1.63   thorpej 	bool			schedule_wqs_ok;
    517  1.63   thorpej 
    518  1.26   msaitoh 	/* Flow Director */
    519   1.1    dyoung 	int			fdir_reinit;
    520  1.26   msaitoh 
    521  1.67   msaitoh 	/* Admin task */
    522  1.67   msaitoh 	struct workqueue	*admin_wq; /* Link, SFP, PHY and FDIR */
    523  1.67   msaitoh 	struct work		admin_wc;
    524  1.67   msaitoh 	u_int			admin_pending;
    525  1.67   msaitoh 	volatile u32		task_requests;
    526  1.72  knakahar 	kmutex_t		admin_mtx; /* lock for admin_pending, task_request */
    527  1.72  knakahar 					   /*
    528  1.72  knakahar 					    * Don't acquire this mutex while
    529  1.72  knakahar 					    * holding rx_mtx or tx_mtx, and
    530  1.72  knakahar 					    * vice versa.
    531  1.72  knakahar 					    */
    532   1.1    dyoung 
    533  1.32  knakahar 	bool			txrx_use_workqueue;
    534  1.66   msaitoh 
    535  1.66   msaitoh 	/*
    536  1.66   msaitoh 	 * Workqueue for ixgbe_handle_que_work().
    537  1.66   msaitoh 	 *
    538  1.66   msaitoh 	 * que_wq's "enqueued flag" is not required, because twice
    539  1.66   msaitoh 	 * workqueue_enqueue() for ixgbe_handle_que_work() is avoided by
    540  1.66   msaitoh 	 * masking the queue's interrupt by EIMC. See also ixgbe_msix_que().
    541  1.66   msaitoh 	 */
    542  1.66   msaitoh 	struct workqueue	*que_wq;
    543  1.66   msaitoh 	/* Workqueue for ixgbe_deferred_mq_start_work() */
    544  1.66   msaitoh 	struct workqueue	*txr_wq;
    545  1.32  knakahar 	percpu_t		*txr_wq_enqueued;
    546  1.32  knakahar 
    547   1.1    dyoung 	/*
    548  1.26   msaitoh 	 * Queues:
    549  1.26   msaitoh 	 *   This is the irq holder, it has
    550  1.26   msaitoh 	 *   and RX/TX pair or rings associated
    551  1.26   msaitoh 	 *   with it.
    552  1.26   msaitoh 	 */
    553   1.1    dyoung 	struct ix_queue		*queues;
    554   1.1    dyoung 
    555   1.1    dyoung 	/*
    556  1.26   msaitoh 	 * Transmit rings
    557  1.26   msaitoh 	 *      Allocated at run time, an array of rings
    558   1.1    dyoung 	 */
    559   1.1    dyoung 	struct tx_ring		*tx_rings;
    560   1.7   msaitoh 	u32			num_tx_desc;
    561  1.15   msaitoh 	u32			tx_process_limit;
    562   1.1    dyoung 
    563   1.1    dyoung 	/*
    564  1.26   msaitoh 	 * Receive rings
    565  1.26   msaitoh 	 *      Allocated at run time, an array of rings
    566   1.1    dyoung 	 */
    567   1.1    dyoung 	struct rx_ring		*rx_rings;
    568  1.11   msaitoh 	u64			active_queues;
    569   1.7   msaitoh 	u32			num_rx_desc;
    570  1.15   msaitoh 	u32			rx_process_limit;
    571  1.75   msaitoh 	int			num_jcl;
    572   1.1    dyoung 
    573   1.1    dyoung 	/* Multicast array memory */
    574  1.13   msaitoh 	struct ixgbe_mc_addr	*mta;
    575  1.26   msaitoh 
    576  1.26   msaitoh 	/* SR-IOV */
    577  1.26   msaitoh 	int                     iov_mode;
    578  1.13   msaitoh 	int			num_vfs;
    579  1.13   msaitoh 	int			pool;
    580  1.13   msaitoh 	struct ixgbe_vf		*vfs;
    581  1.26   msaitoh 
    582  1.26   msaitoh 	/* Bypass */
    583  1.26   msaitoh 	struct ixgbe_bp_data    bypass;
    584  1.26   msaitoh 
    585  1.26   msaitoh 	/* Netmap */
    586  1.66   msaitoh 	void			(*init_locked)(struct adapter *);
    587  1.66   msaitoh 	void			(*stop_locked)(void *);
    588   1.8   msaitoh 
    589  1.53   msaitoh 	/* Firmware error check */
    590  1.53   msaitoh 	u_int                   recovery_mode;
    591  1.67   msaitoh 	callout_t               recovery_mode_timer;
    592  1.67   msaitoh 	struct workqueue        *recovery_mode_timer_wq;
    593  1.67   msaitoh 	struct work             recovery_mode_timer_wc;
    594  1.67   msaitoh 	u_int			recovery_mode_timer_pending;
    595  1.53   msaitoh 
    596   1.1    dyoung 	/* Misc stats maintained by the driver */
    597  1.66   msaitoh 	struct evcnt		efbig_tx_dma_setup;
    598  1.66   msaitoh 	struct evcnt		mbuf_defrag_failed;
    599  1.66   msaitoh 	struct evcnt		efbig2_tx_dma_setup;
    600  1.66   msaitoh 	struct evcnt		einval_tx_dma_setup;
    601  1.66   msaitoh 	struct evcnt		other_tx_dma_setup;
    602  1.66   msaitoh 	struct evcnt		eagain_tx_dma_setup;
    603  1.66   msaitoh 	struct evcnt		enomem_tx_dma_setup;
    604  1.66   msaitoh 	struct evcnt		tso_err;
    605  1.66   msaitoh 	struct evcnt		watchdog_events;
    606  1.67   msaitoh 	struct evcnt		admin_irqev;
    607  1.67   msaitoh 	struct evcnt		link_workev;
    608  1.67   msaitoh 	struct evcnt		mod_workev;
    609  1.67   msaitoh 	struct evcnt		msf_workev;
    610  1.67   msaitoh 	struct evcnt		phy_workev;
    611   1.1    dyoung 
    612  1.11   msaitoh 	union {
    613  1.11   msaitoh 		struct ixgbe_hw_stats pf;
    614  1.11   msaitoh 		struct ixgbevf_hw_stats	vf;
    615  1.11   msaitoh 	} stats;
    616  1.11   msaitoh #if __FreeBSD_version >= 1100036
    617  1.11   msaitoh 	/* counter(9) stats */
    618  1.11   msaitoh 	u64			ipackets;
    619  1.11   msaitoh 	u64			ierrors;
    620  1.11   msaitoh 	u64			opackets;
    621  1.11   msaitoh 	u64			oerrors;
    622  1.11   msaitoh 	u64			ibytes;
    623  1.11   msaitoh 	u64			obytes;
    624  1.11   msaitoh 	u64			imcasts;
    625  1.11   msaitoh 	u64			omcasts;
    626  1.11   msaitoh 	u64			iqdrops;
    627  1.11   msaitoh 	u64			noproto;
    628  1.11   msaitoh #endif
    629  1.26   msaitoh 	/* Feature capable/enabled flags.  See ixgbe_features.h */
    630  1.26   msaitoh 	u32                     feat_cap;
    631  1.26   msaitoh 	u32                     feat_en;
    632  1.26   msaitoh 
    633  1.52   msaitoh 	/* Traffic classes */
    634  1.52   msaitoh 	struct ixgbe_tc tcs[IXGBE_DCB_MAX_TRAFFIC_CLASS];
    635  1.52   msaitoh 
    636   1.1    dyoung 	struct sysctllog	*sysctllog;
    637  1.19   msaitoh 	const struct sysctlnode *sysctltop;
    638   1.1    dyoung };
    639   1.1    dyoung 
    640   1.1    dyoung /* Precision Time Sync (IEEE 1588) defines */
    641   1.1    dyoung #define ETHERTYPE_IEEE1588      0x88F7
    642   1.1    dyoung #define PICOSECS_PER_TICK       20833
    643   1.1    dyoung #define TSYNC_UDP_PORT          319 /* UDP port for the protocol */
    644  1.26   msaitoh #define IXGBE_ADVTXD_TSTAMP     0x00080000
    645   1.1    dyoung 
    646   1.1    dyoung 
    647   1.1    dyoung #define IXGBE_CORE_LOCK_INIT(_sc, _name) \
    648  1.66   msaitoh 	mutex_init(&(_sc)->core_mtx, MUTEX_DEFAULT, IPL_SOFTNET)
    649   1.1    dyoung #define IXGBE_CORE_LOCK_DESTROY(_sc)      mutex_destroy(&(_sc)->core_mtx)
    650   1.1    dyoung #define IXGBE_TX_LOCK_DESTROY(_sc)        mutex_destroy(&(_sc)->tx_mtx)
    651   1.1    dyoung #define IXGBE_RX_LOCK_DESTROY(_sc)        mutex_destroy(&(_sc)->rx_mtx)
    652   1.1    dyoung #define IXGBE_CORE_LOCK(_sc)              mutex_enter(&(_sc)->core_mtx)
    653   1.1    dyoung #define IXGBE_TX_LOCK(_sc)                mutex_enter(&(_sc)->tx_mtx)
    654   1.1    dyoung #define IXGBE_TX_TRYLOCK(_sc)             mutex_tryenter(&(_sc)->tx_mtx)
    655   1.1    dyoung #define IXGBE_RX_LOCK(_sc)                mutex_enter(&(_sc)->rx_mtx)
    656   1.1    dyoung #define IXGBE_CORE_UNLOCK(_sc)            mutex_exit(&(_sc)->core_mtx)
    657   1.1    dyoung #define IXGBE_TX_UNLOCK(_sc)              mutex_exit(&(_sc)->tx_mtx)
    658   1.1    dyoung #define IXGBE_RX_UNLOCK(_sc)              mutex_exit(&(_sc)->rx_mtx)
    659   1.3   msaitoh #define IXGBE_CORE_LOCK_ASSERT(_sc)       KASSERT(mutex_owned(&(_sc)->core_mtx))
    660   1.1    dyoung #define IXGBE_TX_LOCK_ASSERT(_sc)         KASSERT(mutex_owned(&(_sc)->tx_mtx))
    661   1.1    dyoung 
    662  1.12   msaitoh /* External PHY register addresses */
    663  1.12   msaitoh #define IXGBE_PHY_CURRENT_TEMP		0xC820
    664  1.12   msaitoh #define IXGBE_PHY_OVERTEMP_STATUS	0xC830
    665  1.12   msaitoh 
    666  1.11   msaitoh /* Sysctl help messages; displayed with sysctl -d */
    667  1.11   msaitoh #define IXGBE_SYSCTL_DESC_ADV_SPEED \
    668  1.11   msaitoh 	"\nControl advertised link speed using these flags:\n" \
    669  1.27   msaitoh 	"\t0x01 - advertise 100M\n" \
    670  1.27   msaitoh 	"\t0x02 - advertise 1G\n" \
    671  1.55   msaitoh 	"\t0x04 - advertise 10G\n" \
    672  1.55   msaitoh 	"\t0x08 - advertise 10M\n" \
    673  1.55   msaitoh 	"\t0x10 - advertise 2.5G\n" \
    674  1.55   msaitoh 	"\t0x20 - advertise 5G\n\n" \
    675  1.55   msaitoh 	"\t5G, 2.5G, 100M and 10M are only supported on certain adapters."
    676  1.11   msaitoh 
    677  1.11   msaitoh #define IXGBE_SYSCTL_DESC_SET_FC \
    678  1.11   msaitoh 	"\nSet flow control mode using these values:\n" \
    679  1.11   msaitoh 	"\t0 - off\n" \
    680  1.11   msaitoh 	"\t1 - rx pause\n" \
    681  1.11   msaitoh 	"\t2 - tx pause\n" \
    682  1.11   msaitoh 	"\t3 - tx and rx pause"
    683  1.11   msaitoh 
    684   1.1    dyoung /* Workaround to make 8.0 buildable */
    685   1.1    dyoung #if __FreeBSD_version >= 800000 && __FreeBSD_version < 800504
    686   1.1    dyoung static __inline int
    687   1.1    dyoung drbr_needs_enqueue(struct ifnet *ifp, struct buf_ring *br)
    688   1.1    dyoung {
    689   1.1    dyoung #ifdef ALTQ
    690  1.36   msaitoh 	if (ALTQ_IS_ENABLED(&ifp->if_snd))
    691  1.36   msaitoh 		return (1);
    692   1.1    dyoung #endif
    693  1.36   msaitoh 	return (!buf_ring_empty(br));
    694   1.1    dyoung }
    695   1.1    dyoung #endif
    696   1.1    dyoung 
    697   1.1    dyoung /*
    698  1.26   msaitoh  * Find the number of unrefreshed RX descriptors
    699  1.26   msaitoh  */
    700  1.45  christos static __inline u16
    701   1.1    dyoung ixgbe_rx_unrefreshed(struct rx_ring *rxr)
    702  1.26   msaitoh {
    703   1.1    dyoung 	if (rxr->next_to_check > rxr->next_to_refresh)
    704   1.1    dyoung 		return (rxr->next_to_check - rxr->next_to_refresh - 1);
    705   1.1    dyoung 	else
    706   1.7   msaitoh 		return ((rxr->num_desc + rxr->next_to_check) -
    707   1.1    dyoung 		    rxr->next_to_refresh - 1);
    708  1.11   msaitoh }
    709  1.11   msaitoh 
    710  1.45  christos static __inline int
    711  1.26   msaitoh ixgbe_legacy_ring_empty(struct ifnet *ifp, pcq_t *dummy)
    712  1.13   msaitoh {
    713  1.26   msaitoh 	UNREFERENCED_1PARAMETER(dummy);
    714  1.13   msaitoh 
    715  1.26   msaitoh 	return IFQ_IS_EMPTY(&ifp->if_snd);
    716  1.13   msaitoh }
    717  1.13   msaitoh 
    718  1.45  christos static __inline int
    719  1.26   msaitoh ixgbe_mq_ring_empty(struct ifnet *dummy, pcq_t *interq)
    720  1.13   msaitoh {
    721  1.26   msaitoh 	UNREFERENCED_1PARAMETER(dummy);
    722  1.13   msaitoh 
    723  1.26   msaitoh 	return (pcq_peek(interq) == NULL);
    724  1.13   msaitoh }
    725  1.13   msaitoh 
    726  1.26   msaitoh /*
    727  1.26   msaitoh  * This checks for a zero mac addr, something that will be likely
    728  1.26   msaitoh  * unless the Admin on the Host has created one.
    729  1.26   msaitoh  */
    730  1.45  christos static __inline bool
    731  1.26   msaitoh ixv_check_ether_addr(u8 *addr)
    732  1.13   msaitoh {
    733  1.26   msaitoh 	bool status = TRUE;
    734  1.13   msaitoh 
    735  1.26   msaitoh 	if ((addr[0] == 0 && addr[1]== 0 && addr[2] == 0 &&
    736  1.26   msaitoh 	    addr[3] == 0 && addr[4]== 0 && addr[5] == 0))
    737  1.26   msaitoh 		status = FALSE;
    738  1.13   msaitoh 
    739  1.26   msaitoh 	return (status);
    740  1.13   msaitoh }
    741  1.13   msaitoh 
    742  1.53   msaitoh /*
    743  1.53   msaitoh  * This checks the adapter->recovery_mode software flag which is
    744  1.53   msaitoh  * set by ixgbe_fw_recovery_mode().
    745  1.53   msaitoh  *
    746  1.53   msaitoh  */
    747  1.53   msaitoh static inline bool
    748  1.53   msaitoh ixgbe_fw_recovery_mode_swflag(struct adapter *adapter)
    749  1.53   msaitoh {
    750  1.53   msaitoh 	return (adapter->feat_en & IXGBE_FEATURE_RECOVERY_MODE) &&
    751  1.53   msaitoh 	    atomic_load_acq_uint(&adapter->recovery_mode);
    752  1.53   msaitoh }
    753  1.53   msaitoh 
    754  1.26   msaitoh /* Shared Prototypes */
    755  1.26   msaitoh void ixgbe_legacy_start(struct ifnet *);
    756  1.26   msaitoh int  ixgbe_legacy_start_locked(struct ifnet *, struct tx_ring *);
    757  1.26   msaitoh int  ixgbe_mq_start(struct ifnet *, struct mbuf *);
    758  1.26   msaitoh int  ixgbe_mq_start_locked(struct ifnet *, struct tx_ring *);
    759  1.26   msaitoh void ixgbe_deferred_mq_start(void *);
    760  1.32  knakahar void ixgbe_deferred_mq_start_work(struct work *, void *);
    761  1.40  knakahar void ixgbe_drain_all(struct adapter *);
    762  1.26   msaitoh 
    763  1.26   msaitoh int  ixgbe_allocate_queues(struct adapter *);
    764  1.62   msaitoh void ixgbe_free_queues(struct adapter *);
    765  1.26   msaitoh int  ixgbe_setup_transmit_structures(struct adapter *);
    766  1.26   msaitoh void ixgbe_free_transmit_structures(struct adapter *);
    767  1.26   msaitoh int  ixgbe_setup_receive_structures(struct adapter *);
    768  1.26   msaitoh void ixgbe_free_receive_structures(struct adapter *);
    769  1.30   msaitoh bool ixgbe_txeof(struct tx_ring *);
    770  1.26   msaitoh bool ixgbe_rxeof(struct ix_queue *);
    771  1.26   msaitoh 
    772  1.67   msaitoh #define IXGBE_REQUEST_TASK_MOD		0x01
    773  1.74   msaitoh #define IXGBE_REQUEST_TASK_MOD_WOI	0x02
    774  1.74   msaitoh #define IXGBE_REQUEST_TASK_MSF		0x04
    775  1.74   msaitoh #define IXGBE_REQUEST_TASK_MSF_WOI	0x08
    776  1.74   msaitoh #define IXGBE_REQUEST_TASK_MBX		0x10
    777  1.74   msaitoh #define IXGBE_REQUEST_TASK_FDIR		0x20
    778  1.74   msaitoh #define IXGBE_REQUEST_TASK_PHY		0x40
    779  1.74   msaitoh #define IXGBE_REQUEST_TASK_LSC		0x80
    780  1.28   msaitoh 
    781  1.46   msaitoh /* For NetBSD */
    782  1.67   msaitoh const struct sysctlnode *ixgbe_sysctl_instance(struct adapter *);
    783  1.51   msaitoh void ixgbe_jcl_reinit(struct adapter *, bus_dma_tag_t, struct rx_ring *,
    784  1.51   msaitoh     int, size_t);
    785  1.61   msaitoh void ixgbe_jcl_destroy(struct adapter *,  struct rx_ring *);
    786  1.46   msaitoh 
    787  1.26   msaitoh #include "ixgbe_bypass.h"
    788  1.26   msaitoh #include "ixgbe_fdir.h"
    789  1.26   msaitoh #include "ixgbe_rss.h"
    790  1.26   msaitoh #include "ixgbe_netmap.h"
    791  1.13   msaitoh 
    792   1.1    dyoung #endif /* _IXGBE_H_ */
    793