Home | History | Annotate | Line # | Download | only in ixgbe
ixgbe.c revision 1.145
      1  1.145   msaitoh /* $NetBSD: ixgbe.c,v 1.145 2018/04/04 08:59:22 msaitoh Exp $ */
      2   1.99   msaitoh 
      3    1.1    dyoung /******************************************************************************
      4    1.1    dyoung 
      5   1.99   msaitoh   Copyright (c) 2001-2017, Intel Corporation
      6    1.1    dyoung   All rights reserved.
      7   1.99   msaitoh 
      8   1.99   msaitoh   Redistribution and use in source and binary forms, with or without
      9    1.1    dyoung   modification, are permitted provided that the following conditions are met:
     10   1.99   msaitoh 
     11   1.99   msaitoh    1. Redistributions of source code must retain the above copyright notice,
     12    1.1    dyoung       this list of conditions and the following disclaimer.
     13   1.99   msaitoh 
     14   1.99   msaitoh    2. Redistributions in binary form must reproduce the above copyright
     15   1.99   msaitoh       notice, this list of conditions and the following disclaimer in the
     16    1.1    dyoung       documentation and/or other materials provided with the distribution.
     17   1.99   msaitoh 
     18   1.99   msaitoh    3. Neither the name of the Intel Corporation nor the names of its
     19   1.99   msaitoh       contributors may be used to endorse or promote products derived from
     20    1.1    dyoung       this software without specific prior written permission.
     21   1.99   msaitoh 
     22    1.1    dyoung   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     23   1.99   msaitoh   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.99   msaitoh   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.99   msaitoh   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
     26   1.99   msaitoh   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27   1.99   msaitoh   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28   1.99   msaitoh   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29   1.99   msaitoh   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30   1.99   msaitoh   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31    1.1    dyoung   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     32    1.1    dyoung   POSSIBILITY OF SUCH DAMAGE.
     33    1.1    dyoung 
     34    1.1    dyoung ******************************************************************************/
     35  1.145   msaitoh /*$FreeBSD: head/sys/dev/ixgbe/if_ix.c 331224 2018-03-19 20:55:05Z erj $*/
     36   1.99   msaitoh 
     37    1.1    dyoung /*
     38    1.1    dyoung  * Copyright (c) 2011 The NetBSD Foundation, Inc.
     39    1.1    dyoung  * All rights reserved.
     40    1.1    dyoung  *
     41    1.1    dyoung  * This code is derived from software contributed to The NetBSD Foundation
     42    1.1    dyoung  * by Coyote Point Systems, Inc.
     43    1.1    dyoung  *
     44    1.1    dyoung  * Redistribution and use in source and binary forms, with or without
     45    1.1    dyoung  * modification, are permitted provided that the following conditions
     46    1.1    dyoung  * are met:
     47    1.1    dyoung  * 1. Redistributions of source code must retain the above copyright
     48    1.1    dyoung  *    notice, this list of conditions and the following disclaimer.
     49    1.1    dyoung  * 2. Redistributions in binary form must reproduce the above copyright
     50    1.1    dyoung  *    notice, this list of conditions and the following disclaimer in the
     51    1.1    dyoung  *    documentation and/or other materials provided with the distribution.
     52    1.1    dyoung  *
     53    1.1    dyoung  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     54    1.1    dyoung  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     55    1.1    dyoung  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     56    1.1    dyoung  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     57    1.1    dyoung  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     58    1.1    dyoung  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     59    1.1    dyoung  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     60    1.1    dyoung  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     61    1.1    dyoung  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     62    1.1    dyoung  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     63    1.1    dyoung  * POSSIBILITY OF SUCH DAMAGE.
     64    1.1    dyoung  */
     65    1.1    dyoung 
     66   1.80   msaitoh #ifdef _KERNEL_OPT
     67    1.1    dyoung #include "opt_inet.h"
     68   1.22   msaitoh #include "opt_inet6.h"
     69   1.80   msaitoh #include "opt_net_mpsafe.h"
     70   1.80   msaitoh #endif
     71    1.1    dyoung 
     72    1.1    dyoung #include "ixgbe.h"
     73  1.135   msaitoh #include "ixgbe_sriov.h"
     74   1.29   msaitoh #include "vlan.h"
     75    1.1    dyoung 
     76   1.33   msaitoh #include <sys/cprng.h>
     77   1.95   msaitoh #include <dev/mii/mii.h>
     78   1.95   msaitoh #include <dev/mii/miivar.h>
     79   1.33   msaitoh 
     80   1.99   msaitoh /************************************************************************
     81   1.99   msaitoh  * Driver version
     82   1.99   msaitoh  ************************************************************************/
     83  1.145   msaitoh char ixgbe_driver_version[] = "4.0.1-k";
     84    1.1    dyoung 
     85    1.1    dyoung 
     86   1.99   msaitoh /************************************************************************
     87   1.99   msaitoh  * PCI Device ID Table
     88    1.1    dyoung  *
     89   1.99   msaitoh  *   Used by probe to select devices to load on
     90   1.99   msaitoh  *   Last field stores an index into ixgbe_strings
     91   1.99   msaitoh  *   Last entry must be all 0s
     92    1.1    dyoung  *
     93   1.99   msaitoh  *   { Vendor ID, Device ID, SubVendor ID, SubDevice ID, String Index }
     94   1.99   msaitoh  ************************************************************************/
     95    1.1    dyoung static ixgbe_vendor_info_t ixgbe_vendor_info_array[] =
     96    1.1    dyoung {
     97    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_DUAL_PORT, 0, 0, 0},
     98    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_SINGLE_PORT, 0, 0, 0},
     99    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_CX4, 0, 0, 0},
    100    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT, 0, 0, 0},
    101    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT2, 0, 0, 0},
    102    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598, 0, 0, 0},
    103    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_DA_DUAL_PORT, 0, 0, 0},
    104    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_CX4_DUAL_PORT, 0, 0, 0},
    105    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_XF_LR, 0, 0, 0},
    106    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM, 0, 0, 0},
    107    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_SFP_LOM, 0, 0, 0},
    108    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4, 0, 0, 0},
    109    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4_MEZZ, 0, 0, 0},
    110    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP, 0, 0, 0},
    111    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_XAUI_LOM, 0, 0, 0},
    112    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_CX4, 0, 0, 0},
    113    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_T3_LOM, 0, 0, 0},
    114    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_COMBO_BACKPLANE, 0, 0, 0},
    115    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BACKPLANE_FCOE, 0, 0, 0},
    116   1.21   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF2, 0, 0, 0},
    117    1.1    dyoung 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_FCOE, 0, 0, 0},
    118   1.21   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599EN_SFP, 0, 0, 0},
    119   1.21   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF_QP, 0, 0, 0},
    120   1.43   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_QSFP_SF_QP, 0, 0, 0},
    121   1.24   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T, 0, 0, 0},
    122   1.43   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T1, 0, 0, 0},
    123   1.43   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T, 0, 0, 0},
    124   1.48   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T1, 0, 0, 0},
    125   1.43   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KR, 0, 0, 0},
    126   1.43   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KX4, 0, 0, 0},
    127   1.43   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_10G_T, 0, 0, 0},
    128   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_1G_T, 0, 0, 0},
    129   1.48   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_SFP, 0, 0, 0},
    130   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR, 0, 0, 0},
    131   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR_L, 0, 0, 0},
    132   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP, 0, 0, 0},
    133   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP_N, 0, 0, 0},
    134   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII, 0, 0, 0},
    135   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII_L, 0, 0, 0},
    136   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_10G_T, 0, 0, 0},
    137   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T, 0, 0, 0},
    138   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T_L, 0, 0, 0},
    139   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_BYPASS, 0, 0, 0},
    140   1.99   msaitoh 	{IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BYPASS, 0, 0, 0},
    141    1.1    dyoung 	/* required last entry */
    142    1.1    dyoung 	{0, 0, 0, 0, 0}
    143    1.1    dyoung };
    144    1.1    dyoung 
    145   1.99   msaitoh /************************************************************************
    146   1.99   msaitoh  * Table of branding strings
    147   1.99   msaitoh  ************************************************************************/
    148    1.1    dyoung static const char    *ixgbe_strings[] = {
    149    1.1    dyoung 	"Intel(R) PRO/10GbE PCI-Express Network Driver"
    150    1.1    dyoung };
    151    1.1    dyoung 
    152   1.99   msaitoh /************************************************************************
    153   1.99   msaitoh  * Function prototypes
    154   1.99   msaitoh  ************************************************************************/
    155    1.1    dyoung static int      ixgbe_probe(device_t, cfdata_t, void *);
    156    1.1    dyoung static void     ixgbe_attach(device_t, device_t, void *);
    157    1.1    dyoung static int      ixgbe_detach(device_t, int);
    158    1.1    dyoung #if 0
    159    1.1    dyoung static int      ixgbe_shutdown(device_t);
    160    1.1    dyoung #endif
    161   1.44   msaitoh static bool	ixgbe_suspend(device_t, const pmf_qual_t *);
    162   1.44   msaitoh static bool	ixgbe_resume(device_t, const pmf_qual_t *);
    163   1.98   msaitoh static int	ixgbe_ifflags_cb(struct ethercom *);
    164    1.1    dyoung static int      ixgbe_ioctl(struct ifnet *, u_long, void *);
    165    1.1    dyoung static void	ixgbe_ifstop(struct ifnet *, int);
    166    1.1    dyoung static int	ixgbe_init(struct ifnet *);
    167    1.1    dyoung static void	ixgbe_init_locked(struct adapter *);
    168    1.1    dyoung static void     ixgbe_stop(void *);
    169   1.99   msaitoh static void     ixgbe_init_device_features(struct adapter *);
    170   1.99   msaitoh static void     ixgbe_check_fan_failure(struct adapter *, u32, bool);
    171   1.43   msaitoh static void	ixgbe_add_media_types(struct adapter *);
    172    1.1    dyoung static void     ixgbe_media_status(struct ifnet *, struct ifmediareq *);
    173    1.1    dyoung static int      ixgbe_media_change(struct ifnet *);
    174    1.1    dyoung static int      ixgbe_allocate_pci_resources(struct adapter *,
    175    1.1    dyoung 		    const struct pci_attach_args *);
    176  1.137   msaitoh static void     ixgbe_free_softint(struct adapter *);
    177   1.48   msaitoh static void	ixgbe_get_slot_info(struct adapter *);
    178    1.1    dyoung static int      ixgbe_allocate_msix(struct adapter *,
    179    1.1    dyoung 		    const struct pci_attach_args *);
    180    1.1    dyoung static int      ixgbe_allocate_legacy(struct adapter *,
    181    1.1    dyoung 		    const struct pci_attach_args *);
    182   1.99   msaitoh static int      ixgbe_configure_interrupts(struct adapter *);
    183  1.119   msaitoh static void	ixgbe_free_pciintr_resources(struct adapter *);
    184    1.1    dyoung static void	ixgbe_free_pci_resources(struct adapter *);
    185    1.1    dyoung static void	ixgbe_local_timer(void *);
    186   1.63   msaitoh static void	ixgbe_local_timer1(void *);
    187    1.1    dyoung static int	ixgbe_setup_interface(device_t, struct adapter *);
    188   1.45   msaitoh static void	ixgbe_config_gpie(struct adapter *);
    189   1.44   msaitoh static void	ixgbe_config_dmac(struct adapter *);
    190   1.44   msaitoh static void	ixgbe_config_delay_values(struct adapter *);
    191    1.1    dyoung static void	ixgbe_config_link(struct adapter *);
    192   1.44   msaitoh static void	ixgbe_check_wol_support(struct adapter *);
    193   1.44   msaitoh static int	ixgbe_setup_low_power_mode(struct adapter *);
    194   1.43   msaitoh static void	ixgbe_rearm_queues(struct adapter *, u64);
    195    1.1    dyoung 
    196    1.1    dyoung static void     ixgbe_initialize_transmit_units(struct adapter *);
    197    1.1    dyoung static void     ixgbe_initialize_receive_units(struct adapter *);
    198   1.43   msaitoh static void	ixgbe_enable_rx_drop(struct adapter *);
    199   1.43   msaitoh static void	ixgbe_disable_rx_drop(struct adapter *);
    200   1.48   msaitoh static void	ixgbe_initialize_rss_mapping(struct adapter *);
    201    1.1    dyoung 
    202    1.1    dyoung static void     ixgbe_enable_intr(struct adapter *);
    203    1.1    dyoung static void     ixgbe_disable_intr(struct adapter *);
    204    1.1    dyoung static void     ixgbe_update_stats_counters(struct adapter *);
    205    1.1    dyoung static void     ixgbe_set_promisc(struct adapter *);
    206    1.1    dyoung static void     ixgbe_set_multi(struct adapter *);
    207    1.1    dyoung static void     ixgbe_update_link_status(struct adapter *);
    208    1.1    dyoung static void	ixgbe_set_ivar(struct adapter *, u8, u8, s8);
    209    1.1    dyoung static void	ixgbe_configure_ivars(struct adapter *);
    210    1.1    dyoung static u8 *	ixgbe_mc_array_itr(struct ixgbe_hw *, u8 **, u32 *);
    211  1.124   msaitoh static void	ixgbe_eitr_write(struct ix_queue *, uint32_t);
    212    1.1    dyoung 
    213    1.1    dyoung static void	ixgbe_setup_vlan_hw_support(struct adapter *);
    214    1.1    dyoung #if 0
    215    1.1    dyoung static void	ixgbe_register_vlan(void *, struct ifnet *, u16);
    216    1.1    dyoung static void	ixgbe_unregister_vlan(void *, struct ifnet *, u16);
    217    1.1    dyoung #endif
    218    1.1    dyoung 
    219   1.44   msaitoh static void	ixgbe_add_device_sysctls(struct adapter *);
    220   1.44   msaitoh static void     ixgbe_add_hw_stats(struct adapter *);
    221   1.85   msaitoh static void	ixgbe_clear_evcnt(struct adapter *);
    222   1.52   msaitoh static int	ixgbe_set_flowcntl(struct adapter *, int);
    223   1.52   msaitoh static int	ixgbe_set_advertise(struct adapter *, int);
    224   1.99   msaitoh static int      ixgbe_get_advertise(struct adapter *);
    225   1.44   msaitoh 
    226   1.44   msaitoh /* Sysctl handlers */
    227   1.47   msaitoh static void	ixgbe_set_sysctl_value(struct adapter *, const char *,
    228   1.48   msaitoh 		     const char *, int *, int);
    229   1.52   msaitoh static int	ixgbe_sysctl_flowcntl(SYSCTLFN_PROTO);
    230   1.52   msaitoh static int	ixgbe_sysctl_advertise(SYSCTLFN_PROTO);
    231   1.98   msaitoh static int      ixgbe_sysctl_interrupt_rate_handler(SYSCTLFN_PROTO);
    232   1.44   msaitoh static int	ixgbe_sysctl_dmac(SYSCTLFN_PROTO);
    233   1.44   msaitoh static int	ixgbe_sysctl_phy_temp(SYSCTLFN_PROTO);
    234   1.44   msaitoh static int	ixgbe_sysctl_phy_overtemp_occurred(SYSCTLFN_PROTO);
    235   1.48   msaitoh #ifdef IXGBE_DEBUG
    236   1.48   msaitoh static int	ixgbe_sysctl_power_state(SYSCTLFN_PROTO);
    237   1.48   msaitoh static int	ixgbe_sysctl_print_rss_config(SYSCTLFN_PROTO);
    238   1.48   msaitoh #endif
    239   1.98   msaitoh static int      ixgbe_sysctl_rdh_handler(SYSCTLFN_PROTO);
    240   1.98   msaitoh static int      ixgbe_sysctl_rdt_handler(SYSCTLFN_PROTO);
    241   1.98   msaitoh static int      ixgbe_sysctl_tdt_handler(SYSCTLFN_PROTO);
    242   1.98   msaitoh static int      ixgbe_sysctl_tdh_handler(SYSCTLFN_PROTO);
    243   1.99   msaitoh static int      ixgbe_sysctl_eee_state(SYSCTLFN_PROTO);
    244   1.44   msaitoh static int	ixgbe_sysctl_wol_enable(SYSCTLFN_PROTO);
    245   1.44   msaitoh static int	ixgbe_sysctl_wufc(SYSCTLFN_PROTO);
    246    1.1    dyoung 
    247    1.1    dyoung /* Support for pluggable optic modules */
    248    1.1    dyoung static bool	ixgbe_sfp_probe(struct adapter *);
    249    1.1    dyoung 
    250   1.99   msaitoh /* Legacy (single vector) interrupt handler */
    251    1.1    dyoung static int	ixgbe_legacy_irq(void *);
    252    1.1    dyoung 
    253   1.99   msaitoh /* The MSI/MSI-X Interrupt handlers */
    254   1.34   msaitoh static int	ixgbe_msix_que(void *);
    255   1.34   msaitoh static int	ixgbe_msix_link(void *);
    256    1.1    dyoung 
    257    1.1    dyoung /* Software interrupts for deferred work */
    258    1.1    dyoung static void	ixgbe_handle_que(void *);
    259    1.1    dyoung static void	ixgbe_handle_link(void *);
    260    1.1    dyoung static void	ixgbe_handle_msf(void *);
    261    1.1    dyoung static void	ixgbe_handle_mod(void *);
    262   1.44   msaitoh static void	ixgbe_handle_phy(void *);
    263    1.1    dyoung 
    264  1.128  knakahar /* Workqueue handler for deferred work */
    265  1.128  knakahar static void	ixgbe_handle_que_work(struct work *, void *);
    266  1.128  knakahar 
    267    1.1    dyoung static ixgbe_vendor_info_t *ixgbe_lookup(const struct pci_attach_args *);
    268    1.1    dyoung 
    269   1.99   msaitoh /************************************************************************
    270   1.99   msaitoh  *  NetBSD Device Interface Entry Points
    271   1.99   msaitoh  ************************************************************************/
    272    1.1    dyoung CFATTACH_DECL3_NEW(ixg, sizeof(struct adapter),
    273    1.1    dyoung     ixgbe_probe, ixgbe_attach, ixgbe_detach, NULL, NULL, NULL,
    274    1.1    dyoung     DVF_DETACH_SHUTDOWN);
    275    1.1    dyoung 
    276    1.1    dyoung #if 0
    277   1.44   msaitoh devclass_t ix_devclass;
    278   1.44   msaitoh DRIVER_MODULE(ix, pci, ix_driver, ix_devclass, 0, 0);
    279    1.1    dyoung 
    280   1.44   msaitoh MODULE_DEPEND(ix, pci, 1, 1, 1);
    281   1.44   msaitoh MODULE_DEPEND(ix, ether, 1, 1, 1);
    282  1.115   msaitoh #ifdef DEV_NETMAP
    283  1.115   msaitoh MODULE_DEPEND(ix, netmap, 1, 1, 1);
    284  1.115   msaitoh #endif
    285    1.1    dyoung #endif
    286    1.1    dyoung 
    287    1.1    dyoung /*
    288   1.99   msaitoh  * TUNEABLE PARAMETERS:
    289   1.99   msaitoh  */
    290    1.1    dyoung 
    291    1.1    dyoung /*
    292   1.99   msaitoh  * AIM: Adaptive Interrupt Moderation
    293   1.99   msaitoh  * which means that the interrupt rate
    294   1.99   msaitoh  * is varied over time based on the
    295   1.99   msaitoh  * traffic for that interrupt vector
    296   1.99   msaitoh  */
    297   1.73   msaitoh static bool ixgbe_enable_aim = true;
    298   1.52   msaitoh #define SYSCTL_INT(_a1, _a2, _a3, _a4, _a5, _a6, _a7)
    299   1.99   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, enable_aim, CTLFLAG_RDTUN, &ixgbe_enable_aim, 0,
    300   1.52   msaitoh     "Enable adaptive interrupt moderation");
    301    1.1    dyoung 
    302   1.22   msaitoh static int ixgbe_max_interrupt_rate = (4000000 / IXGBE_LOW_LATENCY);
    303   1.52   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, max_interrupt_rate, CTLFLAG_RDTUN,
    304   1.52   msaitoh     &ixgbe_max_interrupt_rate, 0, "Maximum interrupts per second");
    305    1.1    dyoung 
    306    1.1    dyoung /* How many packets rxeof tries to clean at a time */
    307    1.1    dyoung static int ixgbe_rx_process_limit = 256;
    308   1.52   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, rx_process_limit, CTLFLAG_RDTUN,
    309   1.99   msaitoh     &ixgbe_rx_process_limit, 0, "Maximum number of received packets to process at a time, -1 means unlimited");
    310    1.1    dyoung 
    311   1.28   msaitoh /* How many packets txeof tries to clean at a time */
    312   1.28   msaitoh static int ixgbe_tx_process_limit = 256;
    313   1.52   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, tx_process_limit, CTLFLAG_RDTUN,
    314   1.52   msaitoh     &ixgbe_tx_process_limit, 0,
    315   1.99   msaitoh     "Maximum number of sent packets to process at a time, -1 means unlimited");
    316   1.52   msaitoh 
    317   1.52   msaitoh /* Flow control setting, default to full */
    318   1.52   msaitoh static int ixgbe_flow_control = ixgbe_fc_full;
    319   1.52   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, flow_control, CTLFLAG_RDTUN,
    320   1.52   msaitoh     &ixgbe_flow_control, 0, "Default flow control used for all adapters");
    321   1.52   msaitoh 
    322  1.128  knakahar /* Which pakcet processing uses workqueue or softint */
    323  1.128  knakahar static bool ixgbe_txrx_workqueue = false;
    324  1.128  knakahar 
    325    1.1    dyoung /*
    326   1.99   msaitoh  * Smart speed setting, default to on
    327   1.99   msaitoh  * this only works as a compile option
    328   1.99   msaitoh  * right now as its during attach, set
    329   1.99   msaitoh  * this to 'ixgbe_smart_speed_off' to
    330   1.99   msaitoh  * disable.
    331   1.99   msaitoh  */
    332    1.1    dyoung static int ixgbe_smart_speed = ixgbe_smart_speed_on;
    333    1.1    dyoung 
    334    1.1    dyoung /*
    335   1.99   msaitoh  * MSI-X should be the default for best performance,
    336    1.1    dyoung  * but this allows it to be forced off for testing.
    337    1.1    dyoung  */
    338    1.1    dyoung static int ixgbe_enable_msix = 1;
    339   1.52   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, enable_msix, CTLFLAG_RDTUN, &ixgbe_enable_msix, 0,
    340   1.52   msaitoh     "Enable MSI-X interrupts");
    341    1.1    dyoung 
    342    1.1    dyoung /*
    343    1.1    dyoung  * Number of Queues, can be set to 0,
    344    1.1    dyoung  * it then autoconfigures based on the
    345    1.1    dyoung  * number of cpus with a max of 8. This
    346    1.1    dyoung  * can be overriden manually here.
    347    1.1    dyoung  */
    348   1.62   msaitoh static int ixgbe_num_queues = 0;
    349   1.52   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, num_queues, CTLFLAG_RDTUN, &ixgbe_num_queues, 0,
    350   1.52   msaitoh     "Number of queues to configure, 0 indicates autoconfigure");
    351    1.1    dyoung 
    352    1.1    dyoung /*
    353   1.99   msaitoh  * Number of TX descriptors per ring,
    354   1.99   msaitoh  * setting higher than RX as this seems
    355   1.99   msaitoh  * the better performing choice.
    356   1.99   msaitoh  */
    357    1.1    dyoung static int ixgbe_txd = PERFORM_TXD;
    358   1.52   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, txd, CTLFLAG_RDTUN, &ixgbe_txd, 0,
    359   1.52   msaitoh     "Number of transmit descriptors per queue");
    360    1.1    dyoung 
    361    1.1    dyoung /* Number of RX descriptors per ring */
    362    1.1    dyoung static int ixgbe_rxd = PERFORM_RXD;
    363   1.52   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, rxd, CTLFLAG_RDTUN, &ixgbe_rxd, 0,
    364   1.52   msaitoh     "Number of receive descriptors per queue");
    365   1.33   msaitoh 
    366   1.33   msaitoh /*
    367   1.99   msaitoh  * Defining this on will allow the use
    368   1.99   msaitoh  * of unsupported SFP+ modules, note that
    369   1.99   msaitoh  * doing so you are on your own :)
    370   1.99   msaitoh  */
    371   1.35   msaitoh static int allow_unsupported_sfp = false;
    372   1.52   msaitoh #define TUNABLE_INT(__x, __y)
    373   1.52   msaitoh TUNABLE_INT("hw.ix.unsupported_sfp", &allow_unsupported_sfp);
    374    1.1    dyoung 
    375   1.99   msaitoh /*
    376   1.99   msaitoh  * Not sure if Flow Director is fully baked,
    377   1.99   msaitoh  * so we'll default to turning it off.
    378   1.99   msaitoh  */
    379   1.99   msaitoh static int ixgbe_enable_fdir = 0;
    380   1.99   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, enable_fdir, CTLFLAG_RDTUN, &ixgbe_enable_fdir, 0,
    381   1.99   msaitoh     "Enable Flow Director");
    382   1.99   msaitoh 
    383   1.99   msaitoh /* Legacy Transmit (single queue) */
    384   1.99   msaitoh static int ixgbe_enable_legacy_tx = 0;
    385   1.99   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, enable_legacy_tx, CTLFLAG_RDTUN,
    386   1.99   msaitoh     &ixgbe_enable_legacy_tx, 0, "Enable Legacy TX flow");
    387   1.99   msaitoh 
    388   1.99   msaitoh /* Receive-Side Scaling */
    389   1.99   msaitoh static int ixgbe_enable_rss = 1;
    390   1.99   msaitoh SYSCTL_INT(_hw_ix, OID_AUTO, enable_rss, CTLFLAG_RDTUN, &ixgbe_enable_rss, 0,
    391   1.99   msaitoh     "Enable Receive-Side Scaling (RSS)");
    392   1.99   msaitoh 
    393    1.1    dyoung /* Keep running tab on them for sanity check */
    394    1.1    dyoung static int ixgbe_total_ports;
    395    1.1    dyoung 
    396   1.99   msaitoh #if 0
    397   1.99   msaitoh static int (*ixgbe_start_locked)(struct ifnet *, struct tx_ring *);
    398   1.99   msaitoh static int (*ixgbe_ring_empty)(struct ifnet *, pcq_t *);
    399    1.1    dyoung #endif
    400    1.1    dyoung 
    401   1.80   msaitoh #ifdef NET_MPSAFE
    402   1.80   msaitoh #define IXGBE_MPSAFE		1
    403   1.80   msaitoh #define IXGBE_CALLOUT_FLAGS	CALLOUT_MPSAFE
    404   1.80   msaitoh #define IXGBE_SOFTINFT_FLAGS	SOFTINT_MPSAFE
    405  1.128  knakahar #define IXGBE_WORKQUEUE_FLAGS	WQ_PERCPU | WQ_MPSAFE
    406   1.80   msaitoh #else
    407   1.80   msaitoh #define IXGBE_CALLOUT_FLAGS	0
    408   1.80   msaitoh #define IXGBE_SOFTINFT_FLAGS	0
    409  1.128  knakahar #define IXGBE_WORKQUEUE_FLAGS	WQ_PERCPU
    410   1.80   msaitoh #endif
    411  1.128  knakahar #define IXGBE_WORKQUEUE_PRI PRI_SOFTNET
    412   1.80   msaitoh 
    413   1.99   msaitoh /************************************************************************
    414   1.99   msaitoh  * ixgbe_initialize_rss_mapping
    415   1.99   msaitoh  ************************************************************************/
    416   1.98   msaitoh static void
    417   1.98   msaitoh ixgbe_initialize_rss_mapping(struct adapter *adapter)
    418    1.1    dyoung {
    419   1.98   msaitoh 	struct ixgbe_hw	*hw = &adapter->hw;
    420   1.99   msaitoh 	u32             reta = 0, mrqc, rss_key[10];
    421   1.99   msaitoh 	int             queue_id, table_size, index_mult;
    422   1.99   msaitoh 	int             i, j;
    423   1.99   msaitoh 	u32             rss_hash_config;
    424   1.99   msaitoh 
    425  1.122  knakahar 	/* force use default RSS key. */
    426  1.122  knakahar #ifdef __NetBSD__
    427  1.122  knakahar 	rss_getkey((uint8_t *) &rss_key);
    428  1.122  knakahar #else
    429   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_RSS) {
    430   1.99   msaitoh 		/* Fetch the configured RSS key */
    431   1.99   msaitoh 		rss_getkey((uint8_t *) &rss_key);
    432   1.99   msaitoh 	} else {
    433   1.99   msaitoh 		/* set up random bits */
    434   1.99   msaitoh 		cprng_fast(&rss_key, sizeof(rss_key));
    435   1.99   msaitoh 	}
    436  1.122  knakahar #endif
    437    1.1    dyoung 
    438   1.98   msaitoh 	/* Set multiplier for RETA setup and table size based on MAC */
    439   1.98   msaitoh 	index_mult = 0x1;
    440   1.98   msaitoh 	table_size = 128;
    441   1.98   msaitoh 	switch (adapter->hw.mac.type) {
    442   1.98   msaitoh 	case ixgbe_mac_82598EB:
    443   1.98   msaitoh 		index_mult = 0x11;
    444   1.98   msaitoh 		break;
    445   1.98   msaitoh 	case ixgbe_mac_X550:
    446   1.98   msaitoh 	case ixgbe_mac_X550EM_x:
    447   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
    448   1.98   msaitoh 		table_size = 512;
    449   1.98   msaitoh 		break;
    450   1.98   msaitoh 	default:
    451   1.98   msaitoh 		break;
    452   1.98   msaitoh 	}
    453    1.1    dyoung 
    454   1.98   msaitoh 	/* Set up the redirection table */
    455   1.99   msaitoh 	for (i = 0, j = 0; i < table_size; i++, j++) {
    456   1.99   msaitoh 		if (j == adapter->num_queues)
    457   1.99   msaitoh 			j = 0;
    458   1.99   msaitoh 
    459   1.99   msaitoh 		if (adapter->feat_en & IXGBE_FEATURE_RSS) {
    460   1.99   msaitoh 			/*
    461   1.99   msaitoh 			 * Fetch the RSS bucket id for the given indirection
    462   1.99   msaitoh 			 * entry. Cap it at the number of configured buckets
    463   1.99   msaitoh 			 * (which is num_queues.)
    464   1.99   msaitoh 			 */
    465   1.99   msaitoh 			queue_id = rss_get_indirection_to_bucket(i);
    466   1.99   msaitoh 			queue_id = queue_id % adapter->num_queues;
    467   1.99   msaitoh 		} else
    468   1.99   msaitoh 			queue_id = (j * index_mult);
    469   1.99   msaitoh 
    470   1.98   msaitoh 		/*
    471   1.98   msaitoh 		 * The low 8 bits are for hash value (n+0);
    472   1.98   msaitoh 		 * The next 8 bits are for hash value (n+1), etc.
    473   1.98   msaitoh 		 */
    474   1.98   msaitoh 		reta = reta >> 8;
    475   1.98   msaitoh 		reta = reta | (((uint32_t) queue_id) << 24);
    476   1.98   msaitoh 		if ((i & 3) == 3) {
    477   1.98   msaitoh 			if (i < 128)
    478   1.98   msaitoh 				IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
    479   1.98   msaitoh 			else
    480   1.99   msaitoh 				IXGBE_WRITE_REG(hw, IXGBE_ERETA((i >> 2) - 32),
    481   1.99   msaitoh 				    reta);
    482   1.98   msaitoh 			reta = 0;
    483   1.98   msaitoh 		}
    484   1.98   msaitoh 	}
    485    1.1    dyoung 
    486   1.98   msaitoh 	/* Now fill our hash function seeds */
    487   1.99   msaitoh 	for (i = 0; i < 10; i++)
    488   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), rss_key[i]);
    489    1.1    dyoung 
    490   1.98   msaitoh 	/* Perform hash on these packet types */
    491   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_RSS)
    492   1.99   msaitoh 		rss_hash_config = rss_gethashconfig();
    493   1.99   msaitoh 	else {
    494   1.99   msaitoh 		/*
    495   1.99   msaitoh 		 * Disable UDP - IP fragments aren't currently being handled
    496   1.99   msaitoh 		 * and so we end up with a mix of 2-tuple and 4-tuple
    497   1.99   msaitoh 		 * traffic.
    498   1.99   msaitoh 		 */
    499   1.99   msaitoh 		rss_hash_config = RSS_HASHTYPE_RSS_IPV4
    500   1.99   msaitoh 		                | RSS_HASHTYPE_RSS_TCP_IPV4
    501   1.99   msaitoh 		                | RSS_HASHTYPE_RSS_IPV6
    502   1.99   msaitoh 		                | RSS_HASHTYPE_RSS_TCP_IPV6
    503   1.99   msaitoh 		                | RSS_HASHTYPE_RSS_IPV6_EX
    504   1.99   msaitoh 		                | RSS_HASHTYPE_RSS_TCP_IPV6_EX;
    505   1.99   msaitoh 	}
    506   1.99   msaitoh 
    507   1.98   msaitoh 	mrqc = IXGBE_MRQC_RSSEN;
    508   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_IPV4)
    509   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4;
    510   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_TCP_IPV4)
    511   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_TCP;
    512   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_IPV6)
    513   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6;
    514   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_TCP_IPV6)
    515   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
    516   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_IPV6_EX)
    517   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX;
    518   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_TCP_IPV6_EX)
    519   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_TCP;
    520   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV4)
    521   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
    522   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6)
    523   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
    524   1.98   msaitoh 	if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6_EX)
    525   1.98   msaitoh 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_UDP;
    526   1.99   msaitoh 	mrqc |= ixgbe_get_mrqc(adapter->iov_mode);
    527   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
    528   1.99   msaitoh } /* ixgbe_initialize_rss_mapping */
    529    1.1    dyoung 
    530   1.99   msaitoh /************************************************************************
    531   1.99   msaitoh  * ixgbe_initialize_receive_units - Setup receive registers and features.
    532   1.99   msaitoh  ************************************************************************/
    533   1.98   msaitoh #define BSIZEPKT_ROUNDUP ((1<<IXGBE_SRRCTL_BSIZEPKT_SHIFT)-1)
    534   1.98   msaitoh 
    535    1.1    dyoung static void
    536   1.98   msaitoh ixgbe_initialize_receive_units(struct adapter *adapter)
    537    1.1    dyoung {
    538   1.98   msaitoh 	struct	rx_ring	*rxr = adapter->rx_rings;
    539   1.98   msaitoh 	struct ixgbe_hw	*hw = &adapter->hw;
    540   1.99   msaitoh 	struct ifnet    *ifp = adapter->ifp;
    541   1.99   msaitoh 	int             i, j;
    542   1.98   msaitoh 	u32		bufsz, fctrl, srrctl, rxcsum;
    543   1.98   msaitoh 	u32		hlreg;
    544   1.98   msaitoh 
    545   1.98   msaitoh 	/*
    546   1.98   msaitoh 	 * Make sure receives are disabled while
    547   1.98   msaitoh 	 * setting up the descriptor ring
    548   1.98   msaitoh 	 */
    549   1.98   msaitoh 	ixgbe_disable_rx(hw);
    550    1.1    dyoung 
    551   1.98   msaitoh 	/* Enable broadcasts */
    552   1.98   msaitoh 	fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
    553   1.98   msaitoh 	fctrl |= IXGBE_FCTRL_BAM;
    554   1.98   msaitoh 	if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
    555   1.98   msaitoh 		fctrl |= IXGBE_FCTRL_DPF;
    556   1.98   msaitoh 		fctrl |= IXGBE_FCTRL_PMCF;
    557   1.98   msaitoh 	}
    558   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
    559    1.1    dyoung 
    560   1.98   msaitoh 	/* Set for Jumbo Frames? */
    561   1.98   msaitoh 	hlreg = IXGBE_READ_REG(hw, IXGBE_HLREG0);
    562   1.98   msaitoh 	if (ifp->if_mtu > ETHERMTU)
    563   1.98   msaitoh 		hlreg |= IXGBE_HLREG0_JUMBOEN;
    564   1.98   msaitoh 	else
    565   1.98   msaitoh 		hlreg &= ~IXGBE_HLREG0_JUMBOEN;
    566   1.99   msaitoh 
    567   1.98   msaitoh #ifdef DEV_NETMAP
    568   1.99   msaitoh 	/* CRC stripping is conditional in Netmap */
    569   1.99   msaitoh 	if ((adapter->feat_en & IXGBE_FEATURE_NETMAP) &&
    570   1.99   msaitoh 	    (ifp->if_capenable & IFCAP_NETMAP) &&
    571   1.99   msaitoh 	    !ix_crcstrip)
    572   1.98   msaitoh 		hlreg &= ~IXGBE_HLREG0_RXCRCSTRP;
    573   1.60   msaitoh 	else
    574   1.99   msaitoh #endif /* DEV_NETMAP */
    575   1.98   msaitoh 		hlreg |= IXGBE_HLREG0_RXCRCSTRP;
    576   1.99   msaitoh 
    577   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg);
    578    1.1    dyoung 
    579   1.99   msaitoh 	bufsz = (adapter->rx_mbuf_sz + BSIZEPKT_ROUNDUP) >>
    580   1.99   msaitoh 	    IXGBE_SRRCTL_BSIZEPKT_SHIFT;
    581    1.1    dyoung 
    582   1.98   msaitoh 	for (i = 0; i < adapter->num_queues; i++, rxr++) {
    583   1.98   msaitoh 		u64 rdba = rxr->rxdma.dma_paddr;
    584   1.98   msaitoh 		u32 tqsmreg, reg;
    585   1.98   msaitoh 		int regnum = i / 4;	/* 1 register per 4 queues */
    586   1.98   msaitoh 		int regshift = i % 4;	/* 4 bits per 1 queue */
    587   1.99   msaitoh 		j = rxr->me;
    588    1.1    dyoung 
    589   1.98   msaitoh 		/* Setup the Base and Length of the Rx Descriptor Ring */
    590   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RDBAL(j),
    591   1.98   msaitoh 		    (rdba & 0x00000000ffffffffULL));
    592   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RDBAH(j), (rdba >> 32));
    593   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RDLEN(j),
    594   1.98   msaitoh 		    adapter->num_rx_desc * sizeof(union ixgbe_adv_rx_desc));
    595    1.1    dyoung 
    596   1.98   msaitoh 		/* Set up the SRRCTL register */
    597   1.98   msaitoh 		srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(j));
    598   1.98   msaitoh 		srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
    599   1.98   msaitoh 		srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
    600   1.98   msaitoh 		srrctl |= bufsz;
    601   1.98   msaitoh 		srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
    602   1.47   msaitoh 
    603   1.98   msaitoh 		/* Set RQSMR (Receive Queue Statistic Mapping) register */
    604   1.98   msaitoh 		reg = IXGBE_READ_REG(hw, IXGBE_RQSMR(regnum));
    605   1.98   msaitoh 		reg &= ~(0x000000ff << (regshift * 8));
    606   1.98   msaitoh 		reg |= i << (regshift * 8);
    607   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RQSMR(regnum), reg);
    608   1.98   msaitoh 
    609   1.98   msaitoh 		/*
    610   1.98   msaitoh 		 * Set RQSMR (Receive Queue Statistic Mapping) register.
    611   1.98   msaitoh 		 * Register location for queue 0...7 are different between
    612   1.98   msaitoh 		 * 82598 and newer.
    613   1.98   msaitoh 		 */
    614   1.98   msaitoh 		if (adapter->hw.mac.type == ixgbe_mac_82598EB)
    615   1.98   msaitoh 			tqsmreg = IXGBE_TQSMR(regnum);
    616   1.98   msaitoh 		else
    617   1.98   msaitoh 			tqsmreg = IXGBE_TQSM(regnum);
    618   1.98   msaitoh 		reg = IXGBE_READ_REG(hw, tqsmreg);
    619   1.98   msaitoh 		reg &= ~(0x000000ff << (regshift * 8));
    620   1.98   msaitoh 		reg |= i << (regshift * 8);
    621   1.98   msaitoh 		IXGBE_WRITE_REG(hw, tqsmreg, reg);
    622   1.98   msaitoh 
    623   1.98   msaitoh 		/*
    624   1.98   msaitoh 		 * Set DROP_EN iff we have no flow control and >1 queue.
    625   1.98   msaitoh 		 * Note that srrctl was cleared shortly before during reset,
    626   1.98   msaitoh 		 * so we do not need to clear the bit, but do it just in case
    627   1.98   msaitoh 		 * this code is moved elsewhere.
    628   1.98   msaitoh 		 */
    629   1.98   msaitoh 		if (adapter->num_queues > 1 &&
    630   1.98   msaitoh 		    adapter->hw.fc.requested_mode == ixgbe_fc_none) {
    631   1.98   msaitoh 			srrctl |= IXGBE_SRRCTL_DROP_EN;
    632   1.98   msaitoh 		} else {
    633   1.98   msaitoh 			srrctl &= ~IXGBE_SRRCTL_DROP_EN;
    634   1.98   msaitoh 		}
    635   1.98   msaitoh 
    636   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(j), srrctl);
    637   1.98   msaitoh 
    638   1.98   msaitoh 		/* Setup the HW Rx Head and Tail Descriptor Pointers */
    639   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RDH(j), 0);
    640   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RDT(j), 0);
    641   1.98   msaitoh 
    642   1.98   msaitoh 		/* Set the driver rx tail address */
    643   1.98   msaitoh 		rxr->tail =  IXGBE_RDT(rxr->me);
    644   1.98   msaitoh 	}
    645   1.98   msaitoh 
    646   1.98   msaitoh 	if (adapter->hw.mac.type != ixgbe_mac_82598EB) {
    647   1.99   msaitoh 		u32 psrtype = IXGBE_PSRTYPE_TCPHDR
    648   1.99   msaitoh 		            | IXGBE_PSRTYPE_UDPHDR
    649   1.99   msaitoh 		            | IXGBE_PSRTYPE_IPV4HDR
    650   1.99   msaitoh 		            | IXGBE_PSRTYPE_IPV6HDR;
    651   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(0), psrtype);
    652   1.98   msaitoh 	}
    653   1.98   msaitoh 
    654   1.98   msaitoh 	rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
    655   1.98   msaitoh 
    656   1.98   msaitoh 	ixgbe_initialize_rss_mapping(adapter);
    657   1.98   msaitoh 
    658   1.98   msaitoh 	if (adapter->num_queues > 1) {
    659   1.98   msaitoh 		/* RSS and RX IPP Checksum are mutually exclusive */
    660   1.98   msaitoh 		rxcsum |= IXGBE_RXCSUM_PCSD;
    661   1.98   msaitoh 	}
    662   1.98   msaitoh 
    663   1.98   msaitoh 	if (ifp->if_capenable & IFCAP_RXCSUM)
    664   1.98   msaitoh 		rxcsum |= IXGBE_RXCSUM_PCSD;
    665   1.98   msaitoh 
    666   1.98   msaitoh 	/* This is useful for calculating UDP/IP fragment checksums */
    667   1.98   msaitoh 	if (!(rxcsum & IXGBE_RXCSUM_PCSD))
    668   1.98   msaitoh 		rxcsum |= IXGBE_RXCSUM_IPPCSE;
    669   1.98   msaitoh 
    670   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
    671   1.98   msaitoh 
    672   1.99   msaitoh } /* ixgbe_initialize_receive_units */
    673   1.98   msaitoh 
    674   1.99   msaitoh /************************************************************************
    675   1.99   msaitoh  * ixgbe_initialize_transmit_units - Enable transmit units.
    676   1.99   msaitoh  ************************************************************************/
    677   1.98   msaitoh static void
    678   1.98   msaitoh ixgbe_initialize_transmit_units(struct adapter *adapter)
    679   1.98   msaitoh {
    680   1.99   msaitoh 	struct tx_ring  *txr = adapter->tx_rings;
    681   1.98   msaitoh 	struct ixgbe_hw	*hw = &adapter->hw;
    682  1.144   msaitoh 	int i;
    683   1.98   msaitoh 
    684   1.98   msaitoh 	/* Setup the Base and Length of the Tx Descriptor Ring */
    685  1.144   msaitoh 	for (i = 0; i < adapter->num_queues; i++, txr++) {
    686   1.99   msaitoh 		u64 tdba = txr->txdma.dma_paddr;
    687   1.99   msaitoh 		u32 txctrl = 0;
    688   1.99   msaitoh 		int j = txr->me;
    689   1.98   msaitoh 
    690   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_TDBAL(j),
    691   1.98   msaitoh 		    (tdba & 0x00000000ffffffffULL));
    692   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_TDBAH(j), (tdba >> 32));
    693   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_TDLEN(j),
    694   1.98   msaitoh 		    adapter->num_tx_desc * sizeof(union ixgbe_adv_tx_desc));
    695   1.98   msaitoh 
    696   1.98   msaitoh 		/* Setup the HW Tx Head and Tail descriptor pointers */
    697   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_TDH(j), 0);
    698   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_TDT(j), 0);
    699   1.98   msaitoh 
    700   1.98   msaitoh 		/* Cache the tail address */
    701   1.98   msaitoh 		txr->tail = IXGBE_TDT(j);
    702   1.98   msaitoh 
    703   1.98   msaitoh 		/* Disable Head Writeback */
    704   1.98   msaitoh 		/*
    705   1.98   msaitoh 		 * Note: for X550 series devices, these registers are actually
    706   1.98   msaitoh 		 * prefixed with TPH_ isntead of DCA_, but the addresses and
    707   1.98   msaitoh 		 * fields remain the same.
    708   1.98   msaitoh 		 */
    709   1.98   msaitoh 		switch (hw->mac.type) {
    710   1.98   msaitoh 		case ixgbe_mac_82598EB:
    711   1.98   msaitoh 			txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(j));
    712   1.98   msaitoh 			break;
    713   1.98   msaitoh 		default:
    714   1.98   msaitoh 			txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(j));
    715   1.98   msaitoh 			break;
    716   1.98   msaitoh 		}
    717   1.98   msaitoh 		txctrl &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
    718   1.98   msaitoh 		switch (hw->mac.type) {
    719   1.98   msaitoh 		case ixgbe_mac_82598EB:
    720   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(j), txctrl);
    721   1.98   msaitoh 			break;
    722   1.98   msaitoh 		default:
    723   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(j), txctrl);
    724   1.98   msaitoh 			break;
    725   1.98   msaitoh 		}
    726   1.98   msaitoh 
    727   1.98   msaitoh 	}
    728   1.98   msaitoh 
    729   1.98   msaitoh 	if (hw->mac.type != ixgbe_mac_82598EB) {
    730   1.98   msaitoh 		u32 dmatxctl, rttdcs;
    731   1.99   msaitoh 
    732   1.98   msaitoh 		dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
    733   1.98   msaitoh 		dmatxctl |= IXGBE_DMATXCTL_TE;
    734   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
    735   1.98   msaitoh 		/* Disable arbiter to set MTQC */
    736   1.98   msaitoh 		rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
    737   1.98   msaitoh 		rttdcs |= IXGBE_RTTDCS_ARBDIS;
    738   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
    739   1.99   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_MTQC,
    740   1.99   msaitoh 		    ixgbe_get_mtqc(adapter->iov_mode));
    741   1.98   msaitoh 		rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
    742   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
    743   1.98   msaitoh 	}
    744   1.98   msaitoh 
    745   1.98   msaitoh 	return;
    746   1.99   msaitoh } /* ixgbe_initialize_transmit_units */
    747   1.98   msaitoh 
    748   1.99   msaitoh /************************************************************************
    749   1.99   msaitoh  * ixgbe_attach - Device initialization routine
    750   1.98   msaitoh  *
    751   1.99   msaitoh  *   Called when the driver is being loaded.
    752   1.99   msaitoh  *   Identifies the type of hardware, allocates all resources
    753   1.99   msaitoh  *   and initializes the hardware.
    754   1.98   msaitoh  *
    755   1.99   msaitoh  *   return 0 on success, positive on failure
    756   1.99   msaitoh  ************************************************************************/
    757   1.98   msaitoh static void
    758   1.98   msaitoh ixgbe_attach(device_t parent, device_t dev, void *aux)
    759   1.98   msaitoh {
    760   1.99   msaitoh 	struct adapter  *adapter;
    761   1.98   msaitoh 	struct ixgbe_hw *hw;
    762   1.98   msaitoh 	int             error = -1;
    763   1.98   msaitoh 	u32		ctrl_ext;
    764   1.99   msaitoh 	u16		high, low, nvmreg;
    765   1.99   msaitoh 	pcireg_t	id, subid;
    766   1.98   msaitoh 	ixgbe_vendor_info_t *ent;
    767   1.98   msaitoh 	struct pci_attach_args *pa = aux;
    768   1.98   msaitoh 	const char *str;
    769   1.99   msaitoh 	char buf[256];
    770   1.98   msaitoh 
    771   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_attach: begin");
    772   1.98   msaitoh 
    773   1.98   msaitoh 	/* Allocate, clear, and link in our adapter structure */
    774   1.98   msaitoh 	adapter = device_private(dev);
    775   1.99   msaitoh 	adapter->hw.back = adapter;
    776   1.98   msaitoh 	adapter->dev = dev;
    777   1.98   msaitoh 	hw = &adapter->hw;
    778   1.98   msaitoh 	adapter->osdep.pc = pa->pa_pc;
    779   1.98   msaitoh 	adapter->osdep.tag = pa->pa_tag;
    780   1.98   msaitoh 	if (pci_dma64_available(pa))
    781   1.98   msaitoh 		adapter->osdep.dmat = pa->pa_dmat64;
    782   1.98   msaitoh 	else
    783   1.98   msaitoh 		adapter->osdep.dmat = pa->pa_dmat;
    784   1.98   msaitoh 	adapter->osdep.attached = false;
    785   1.98   msaitoh 
    786   1.98   msaitoh 	ent = ixgbe_lookup(pa);
    787   1.98   msaitoh 
    788   1.98   msaitoh 	KASSERT(ent != NULL);
    789   1.98   msaitoh 
    790   1.98   msaitoh 	aprint_normal(": %s, Version - %s\n",
    791   1.98   msaitoh 	    ixgbe_strings[ent->index], ixgbe_driver_version);
    792   1.98   msaitoh 
    793   1.98   msaitoh 	/* Core Lock Init*/
    794   1.98   msaitoh 	IXGBE_CORE_LOCK_INIT(adapter, device_xname(dev));
    795    1.1    dyoung 
    796    1.1    dyoung 	/* Set up the timer callout */
    797   1.80   msaitoh 	callout_init(&adapter->timer, IXGBE_CALLOUT_FLAGS);
    798    1.1    dyoung 
    799    1.1    dyoung 	/* Determine hardware revision */
    800   1.99   msaitoh 	id = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_ID_REG);
    801   1.99   msaitoh 	subid = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_SUBSYS_ID_REG);
    802   1.99   msaitoh 
    803   1.99   msaitoh 	hw->vendor_id = PCI_VENDOR(id);
    804   1.99   msaitoh 	hw->device_id = PCI_PRODUCT(id);
    805   1.99   msaitoh 	hw->revision_id =
    806   1.99   msaitoh 	    PCI_REVISION(pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_CLASS_REG));
    807   1.99   msaitoh 	hw->subsystem_vendor_id = PCI_SUBSYS_VENDOR(subid);
    808   1.99   msaitoh 	hw->subsystem_device_id = PCI_SUBSYS_ID(subid);
    809   1.99   msaitoh 
    810   1.99   msaitoh 	/*
    811   1.99   msaitoh 	 * Make sure BUSMASTER is set
    812   1.99   msaitoh 	 */
    813   1.99   msaitoh 	ixgbe_pci_enable_busmaster(pa->pa_pc, pa->pa_tag);
    814   1.99   msaitoh 
    815   1.99   msaitoh 	/* Do base PCI setup - map BAR0 */
    816   1.99   msaitoh 	if (ixgbe_allocate_pci_resources(adapter, pa)) {
    817   1.99   msaitoh 		aprint_error_dev(dev, "Allocation of PCI resources failed\n");
    818   1.99   msaitoh 		error = ENXIO;
    819   1.99   msaitoh 		goto err_out;
    820   1.99   msaitoh 	}
    821   1.99   msaitoh 
    822   1.99   msaitoh 	/* let hardware know driver is loaded */
    823   1.99   msaitoh 	ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
    824   1.99   msaitoh 	ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
    825   1.99   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
    826   1.99   msaitoh 
    827   1.99   msaitoh 	/*
    828   1.99   msaitoh 	 * Initialize the shared code
    829   1.99   msaitoh 	 */
    830  1.144   msaitoh 	if (ixgbe_init_shared_code(hw) != 0) {
    831   1.99   msaitoh 		aprint_error_dev(dev, "Unable to initialize the shared code\n");
    832   1.99   msaitoh 		error = ENXIO;
    833   1.99   msaitoh 		goto err_out;
    834   1.99   msaitoh 	}
    835    1.1    dyoung 
    836   1.79   msaitoh 	switch (hw->mac.type) {
    837   1.79   msaitoh 	case ixgbe_mac_82598EB:
    838   1.79   msaitoh 		str = "82598EB";
    839   1.79   msaitoh 		break;
    840   1.79   msaitoh 	case ixgbe_mac_82599EB:
    841   1.79   msaitoh 		str = "82599EB";
    842   1.79   msaitoh 		break;
    843   1.79   msaitoh 	case ixgbe_mac_X540:
    844   1.79   msaitoh 		str = "X540";
    845   1.79   msaitoh 		break;
    846   1.79   msaitoh 	case ixgbe_mac_X550:
    847   1.79   msaitoh 		str = "X550";
    848   1.79   msaitoh 		break;
    849   1.79   msaitoh 	case ixgbe_mac_X550EM_x:
    850   1.79   msaitoh 		str = "X550EM";
    851   1.79   msaitoh 		break;
    852   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
    853   1.99   msaitoh 		str = "X550EM A";
    854   1.99   msaitoh 		break;
    855   1.79   msaitoh 	default:
    856   1.79   msaitoh 		str = "Unknown";
    857   1.79   msaitoh 		break;
    858   1.79   msaitoh 	}
    859   1.79   msaitoh 	aprint_normal_dev(dev, "device %s\n", str);
    860   1.79   msaitoh 
    861   1.99   msaitoh 	if (hw->mbx.ops.init_params)
    862   1.99   msaitoh 		hw->mbx.ops.init_params(hw);
    863   1.99   msaitoh 
    864   1.99   msaitoh 	hw->allow_unsupported_sfp = allow_unsupported_sfp;
    865   1.99   msaitoh 
    866   1.99   msaitoh 	/* Pick up the 82599 settings */
    867   1.99   msaitoh 	if (hw->mac.type != ixgbe_mac_82598EB) {
    868   1.99   msaitoh 		hw->phy.smart_speed = ixgbe_smart_speed;
    869   1.99   msaitoh 		adapter->num_segs = IXGBE_82599_SCATTER;
    870   1.99   msaitoh 	} else
    871   1.99   msaitoh 		adapter->num_segs = IXGBE_82598_SCATTER;
    872   1.99   msaitoh 
    873  1.113   msaitoh 	hw->mac.ops.set_lan_id(hw);
    874   1.99   msaitoh 	ixgbe_init_device_features(adapter);
    875   1.99   msaitoh 
    876   1.99   msaitoh 	if (ixgbe_configure_interrupts(adapter)) {
    877    1.1    dyoung 		error = ENXIO;
    878    1.1    dyoung 		goto err_out;
    879    1.1    dyoung 	}
    880    1.1    dyoung 
    881   1.99   msaitoh 	/* Allocate multicast array memory. */
    882   1.99   msaitoh 	adapter->mta = malloc(sizeof(*adapter->mta) *
    883   1.99   msaitoh 	    MAX_NUM_MULTICAST_ADDRESSES, M_DEVBUF, M_NOWAIT);
    884   1.99   msaitoh 	if (adapter->mta == NULL) {
    885   1.99   msaitoh 		aprint_error_dev(dev, "Cannot allocate multicast setup array\n");
    886   1.99   msaitoh 		error = ENOMEM;
    887   1.99   msaitoh 		goto err_out;
    888   1.99   msaitoh 	}
    889   1.99   msaitoh 
    890   1.99   msaitoh 	/* Enable WoL (if supported) */
    891   1.99   msaitoh 	ixgbe_check_wol_support(adapter);
    892   1.99   msaitoh 
    893   1.99   msaitoh 	/* Verify adapter fan is still functional (if applicable) */
    894   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_FAN_FAIL) {
    895   1.99   msaitoh 		u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
    896   1.99   msaitoh 		ixgbe_check_fan_failure(adapter, esdp, FALSE);
    897   1.99   msaitoh 	}
    898   1.99   msaitoh 
    899   1.99   msaitoh 	/* Ensure SW/FW semaphore is free */
    900   1.99   msaitoh 	ixgbe_init_swfw_semaphore(hw);
    901   1.99   msaitoh 
    902   1.99   msaitoh 	/* Enable EEE power saving */
    903   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_EEE)
    904   1.99   msaitoh 		hw->mac.ops.setup_eee(hw, TRUE);
    905   1.99   msaitoh 
    906   1.99   msaitoh 	/* Set an initial default flow control value */
    907   1.99   msaitoh 	hw->fc.requested_mode = ixgbe_flow_control;
    908   1.99   msaitoh 
    909   1.47   msaitoh 	/* Sysctls for limiting the amount of work done in the taskqueues */
    910   1.47   msaitoh 	ixgbe_set_sysctl_value(adapter, "rx_processing_limit",
    911   1.47   msaitoh 	    "max number of rx packets to process",
    912   1.47   msaitoh 	    &adapter->rx_process_limit, ixgbe_rx_process_limit);
    913   1.47   msaitoh 
    914   1.47   msaitoh 	ixgbe_set_sysctl_value(adapter, "tx_processing_limit",
    915   1.47   msaitoh 	    "max number of tx packets to process",
    916   1.69   msaitoh 	    &adapter->tx_process_limit, ixgbe_tx_process_limit);
    917   1.47   msaitoh 
    918    1.1    dyoung 	/* Do descriptor calc and sanity checks */
    919    1.1    dyoung 	if (((ixgbe_txd * sizeof(union ixgbe_adv_tx_desc)) % DBA_ALIGN) != 0 ||
    920    1.1    dyoung 	    ixgbe_txd < MIN_TXD || ixgbe_txd > MAX_TXD) {
    921    1.1    dyoung 		aprint_error_dev(dev, "TXD config issue, using default!\n");
    922    1.1    dyoung 		adapter->num_tx_desc = DEFAULT_TXD;
    923    1.1    dyoung 	} else
    924    1.1    dyoung 		adapter->num_tx_desc = ixgbe_txd;
    925    1.1    dyoung 
    926    1.1    dyoung 	/*
    927   1.99   msaitoh 	 * With many RX rings it is easy to exceed the
    928   1.99   msaitoh 	 * system mbuf allocation. Tuning nmbclusters
    929   1.99   msaitoh 	 * can alleviate this.
    930   1.99   msaitoh 	 */
    931   1.43   msaitoh 	if (nmbclusters > 0) {
    932    1.1    dyoung 		int s;
    933    1.1    dyoung 		s = (ixgbe_rxd * adapter->num_queues) * ixgbe_total_ports;
    934    1.1    dyoung 		if (s > nmbclusters) {
    935    1.1    dyoung 			aprint_error_dev(dev, "RX Descriptors exceed "
    936    1.1    dyoung 			    "system mbuf max, using default instead!\n");
    937    1.1    dyoung 			ixgbe_rxd = DEFAULT_RXD;
    938    1.1    dyoung 		}
    939    1.1    dyoung 	}
    940    1.1    dyoung 
    941    1.1    dyoung 	if (((ixgbe_rxd * sizeof(union ixgbe_adv_rx_desc)) % DBA_ALIGN) != 0 ||
    942   1.33   msaitoh 	    ixgbe_rxd < MIN_RXD || ixgbe_rxd > MAX_RXD) {
    943    1.1    dyoung 		aprint_error_dev(dev, "RXD config issue, using default!\n");
    944    1.1    dyoung 		adapter->num_rx_desc = DEFAULT_RXD;
    945    1.1    dyoung 	} else
    946    1.1    dyoung 		adapter->num_rx_desc = ixgbe_rxd;
    947    1.1    dyoung 
    948    1.1    dyoung 	/* Allocate our TX/RX Queues */
    949    1.1    dyoung 	if (ixgbe_allocate_queues(adapter)) {
    950    1.1    dyoung 		error = ENOMEM;
    951    1.1    dyoung 		goto err_out;
    952    1.1    dyoung 	}
    953    1.1    dyoung 
    954   1.99   msaitoh 	hw->phy.reset_if_overtemp = TRUE;
    955   1.99   msaitoh 	error = ixgbe_reset_hw(hw);
    956   1.99   msaitoh 	hw->phy.reset_if_overtemp = FALSE;
    957    1.1    dyoung 	if (error == IXGBE_ERR_SFP_NOT_PRESENT) {
    958    1.1    dyoung 		/*
    959   1.99   msaitoh 		 * No optics in this port, set up
    960   1.99   msaitoh 		 * so the timer routine will probe
    961   1.99   msaitoh 		 * for later insertion.
    962   1.99   msaitoh 		 */
    963    1.1    dyoung 		adapter->sfp_probe = TRUE;
    964   1.99   msaitoh 		error = IXGBE_SUCCESS;
    965   1.35   msaitoh 	} else if (error == IXGBE_ERR_SFP_NOT_SUPPORTED) {
    966   1.48   msaitoh 		aprint_error_dev(dev, "Unsupported SFP+ module detected!\n");
    967    1.1    dyoung 		error = EIO;
    968    1.1    dyoung 		goto err_late;
    969    1.1    dyoung 	} else if (error) {
    970   1.99   msaitoh 		aprint_error_dev(dev, "Hardware initialization failed\n");
    971    1.1    dyoung 		error = EIO;
    972    1.1    dyoung 		goto err_late;
    973    1.1    dyoung 	}
    974    1.1    dyoung 
    975    1.1    dyoung 	/* Make sure we have a good EEPROM before we read from it */
    976   1.99   msaitoh 	if (ixgbe_validate_eeprom_checksum(&adapter->hw, NULL) < 0) {
    977   1.48   msaitoh 		aprint_error_dev(dev, "The EEPROM Checksum Is Not Valid\n");
    978    1.1    dyoung 		error = EIO;
    979    1.1    dyoung 		goto err_late;
    980    1.1    dyoung 	}
    981    1.1    dyoung 
    982   1.88   msaitoh 	aprint_normal("%s:", device_xname(dev));
    983   1.88   msaitoh 	/* NVM Image Version */
    984   1.88   msaitoh 	switch (hw->mac.type) {
    985   1.88   msaitoh 	case ixgbe_mac_X540:
    986   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
    987   1.88   msaitoh 		hw->eeprom.ops.read(hw, IXGBE_NVM_IMAGE_VER, &nvmreg);
    988   1.88   msaitoh 		if (nvmreg == 0xffff)
    989   1.88   msaitoh 			break;
    990   1.88   msaitoh 		high = (nvmreg >> 12) & 0x0f;
    991   1.88   msaitoh 		low = (nvmreg >> 4) & 0xff;
    992   1.88   msaitoh 		id = nvmreg & 0x0f;
    993  1.107   msaitoh 		aprint_normal(" NVM Image Version %u.", high);
    994  1.107   msaitoh 		if (hw->mac.type == ixgbe_mac_X540)
    995  1.107   msaitoh 			str = "%x";
    996  1.107   msaitoh 		else
    997  1.107   msaitoh 			str = "%02x";
    998  1.107   msaitoh 		aprint_normal(str, low);
    999  1.107   msaitoh 		aprint_normal(" ID 0x%x,", id);
   1000   1.88   msaitoh 		break;
   1001   1.88   msaitoh 	case ixgbe_mac_X550EM_x:
   1002   1.88   msaitoh 	case ixgbe_mac_X550:
   1003   1.88   msaitoh 		hw->eeprom.ops.read(hw, IXGBE_NVM_IMAGE_VER, &nvmreg);
   1004   1.88   msaitoh 		if (nvmreg == 0xffff)
   1005   1.88   msaitoh 			break;
   1006   1.88   msaitoh 		high = (nvmreg >> 12) & 0x0f;
   1007   1.88   msaitoh 		low = nvmreg & 0xff;
   1008  1.107   msaitoh 		aprint_normal(" NVM Image Version %u.%02x,", high, low);
   1009   1.88   msaitoh 		break;
   1010   1.88   msaitoh 	default:
   1011   1.88   msaitoh 		break;
   1012   1.88   msaitoh 	}
   1013   1.88   msaitoh 
   1014   1.88   msaitoh 	/* PHY firmware revision */
   1015   1.88   msaitoh 	switch (hw->mac.type) {
   1016   1.88   msaitoh 	case ixgbe_mac_X540:
   1017   1.88   msaitoh 	case ixgbe_mac_X550:
   1018   1.88   msaitoh 		hw->eeprom.ops.read(hw, IXGBE_PHYFW_REV, &nvmreg);
   1019   1.88   msaitoh 		if (nvmreg == 0xffff)
   1020   1.88   msaitoh 			break;
   1021   1.88   msaitoh 		high = (nvmreg >> 12) & 0x0f;
   1022   1.88   msaitoh 		low = (nvmreg >> 4) & 0xff;
   1023   1.88   msaitoh 		id = nvmreg & 0x000f;
   1024  1.114   msaitoh 		aprint_normal(" PHY FW Revision %u.", high);
   1025  1.114   msaitoh 		if (hw->mac.type == ixgbe_mac_X540)
   1026  1.114   msaitoh 			str = "%x";
   1027  1.114   msaitoh 		else
   1028  1.114   msaitoh 			str = "%02x";
   1029  1.114   msaitoh 		aprint_normal(str, low);
   1030  1.114   msaitoh 		aprint_normal(" ID 0x%x,", id);
   1031   1.88   msaitoh 		break;
   1032   1.88   msaitoh 	default:
   1033   1.88   msaitoh 		break;
   1034   1.88   msaitoh 	}
   1035   1.88   msaitoh 
   1036   1.88   msaitoh 	/* NVM Map version & OEM NVM Image version */
   1037   1.88   msaitoh 	switch (hw->mac.type) {
   1038   1.88   msaitoh 	case ixgbe_mac_X550:
   1039   1.88   msaitoh 	case ixgbe_mac_X550EM_x:
   1040   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   1041   1.88   msaitoh 		hw->eeprom.ops.read(hw, IXGBE_NVM_MAP_VER, &nvmreg);
   1042   1.88   msaitoh 		if (nvmreg != 0xffff) {
   1043   1.88   msaitoh 			high = (nvmreg >> 12) & 0x0f;
   1044   1.88   msaitoh 			low = nvmreg & 0x00ff;
   1045   1.88   msaitoh 			aprint_normal(" NVM Map version %u.%02x,", high, low);
   1046   1.88   msaitoh 		}
   1047   1.88   msaitoh 		hw->eeprom.ops.read(hw, IXGBE_OEM_NVM_IMAGE_VER, &nvmreg);
   1048  1.107   msaitoh 		if (nvmreg != 0xffff) {
   1049   1.88   msaitoh 			high = (nvmreg >> 12) & 0x0f;
   1050   1.88   msaitoh 			low = nvmreg & 0x00ff;
   1051   1.88   msaitoh 			aprint_verbose(" OEM NVM Image version %u.%02x,", high,
   1052   1.88   msaitoh 			    low);
   1053   1.88   msaitoh 		}
   1054   1.88   msaitoh 		break;
   1055   1.88   msaitoh 	default:
   1056   1.88   msaitoh 		break;
   1057   1.88   msaitoh 	}
   1058   1.88   msaitoh 
   1059   1.88   msaitoh 	/* Print the ETrackID */
   1060   1.88   msaitoh 	hw->eeprom.ops.read(hw, IXGBE_ETRACKID_H, &high);
   1061   1.88   msaitoh 	hw->eeprom.ops.read(hw, IXGBE_ETRACKID_L, &low);
   1062   1.88   msaitoh 	aprint_normal(" ETrackID %08x\n", ((uint32_t)high << 16) | low);
   1063   1.79   msaitoh 
   1064  1.119   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_MSIX) {
   1065   1.99   msaitoh 		error = ixgbe_allocate_msix(adapter, pa);
   1066  1.119   msaitoh 		if (error) {
   1067  1.119   msaitoh 			/* Free allocated queue structures first */
   1068  1.119   msaitoh 			ixgbe_free_transmit_structures(adapter);
   1069  1.119   msaitoh 			ixgbe_free_receive_structures(adapter);
   1070  1.119   msaitoh 			free(adapter->queues, M_DEVBUF);
   1071  1.119   msaitoh 
   1072  1.119   msaitoh 			/* Fallback to legacy interrupt */
   1073  1.119   msaitoh 			adapter->feat_en &= ~IXGBE_FEATURE_MSIX;
   1074  1.119   msaitoh 			if (adapter->feat_cap & IXGBE_FEATURE_MSI)
   1075  1.119   msaitoh 				adapter->feat_en |= IXGBE_FEATURE_MSI;
   1076  1.119   msaitoh 			adapter->num_queues = 1;
   1077  1.119   msaitoh 
   1078  1.119   msaitoh 			/* Allocate our TX/RX Queues again */
   1079  1.119   msaitoh 			if (ixgbe_allocate_queues(adapter)) {
   1080  1.119   msaitoh 				error = ENOMEM;
   1081  1.119   msaitoh 				goto err_out;
   1082  1.119   msaitoh 			}
   1083  1.119   msaitoh 		}
   1084  1.119   msaitoh 	}
   1085  1.119   msaitoh 	if ((adapter->feat_en & IXGBE_FEATURE_MSIX) == 0)
   1086   1.99   msaitoh 		error = ixgbe_allocate_legacy(adapter, pa);
   1087   1.99   msaitoh 	if (error)
   1088   1.99   msaitoh 		goto err_late;
   1089   1.99   msaitoh 
   1090  1.119   msaitoh 	/* Tasklets for Link, SFP, Multispeed Fiber and Flow Director */
   1091  1.119   msaitoh 	adapter->link_si = softint_establish(SOFTINT_NET |IXGBE_SOFTINFT_FLAGS,
   1092  1.119   msaitoh 	    ixgbe_handle_link, adapter);
   1093  1.119   msaitoh 	adapter->mod_si = softint_establish(SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   1094  1.119   msaitoh 	    ixgbe_handle_mod, adapter);
   1095  1.119   msaitoh 	adapter->msf_si = softint_establish(SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   1096  1.119   msaitoh 	    ixgbe_handle_msf, adapter);
   1097  1.119   msaitoh 	adapter->phy_si = softint_establish(SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   1098  1.119   msaitoh 	    ixgbe_handle_phy, adapter);
   1099  1.119   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_FDIR)
   1100  1.119   msaitoh 		adapter->fdir_si =
   1101  1.119   msaitoh 		    softint_establish(SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   1102  1.119   msaitoh 			ixgbe_reinit_fdir, adapter);
   1103  1.119   msaitoh 	if ((adapter->link_si == NULL) || (adapter->mod_si == NULL)
   1104  1.119   msaitoh 	    || (adapter->msf_si == NULL) || (adapter->phy_si == NULL)
   1105  1.119   msaitoh 	    || ((adapter->feat_en & IXGBE_FEATURE_FDIR)
   1106  1.119   msaitoh 		&& (adapter->fdir_si == NULL))) {
   1107  1.119   msaitoh 		aprint_error_dev(dev,
   1108  1.119   msaitoh 		    "could not establish software interrupts ()\n");
   1109  1.119   msaitoh 		goto err_out;
   1110  1.119   msaitoh 	}
   1111  1.119   msaitoh 
   1112   1.99   msaitoh 	error = ixgbe_start_hw(hw);
   1113   1.25   msaitoh 	switch (error) {
   1114   1.25   msaitoh 	case IXGBE_ERR_EEPROM_VERSION:
   1115    1.1    dyoung 		aprint_error_dev(dev, "This device is a pre-production adapter/"
   1116    1.1    dyoung 		    "LOM.  Please be aware there may be issues associated "
   1117   1.48   msaitoh 		    "with your hardware.\nIf you are experiencing problems "
   1118    1.1    dyoung 		    "please contact your Intel or hardware representative "
   1119    1.1    dyoung 		    "who provided you with this hardware.\n");
   1120   1.25   msaitoh 		break;
   1121   1.25   msaitoh 	case IXGBE_ERR_SFP_NOT_SUPPORTED:
   1122   1.48   msaitoh 		aprint_error_dev(dev, "Unsupported SFP+ Module\n");
   1123    1.1    dyoung 		error = EIO;
   1124    1.1    dyoung 		goto err_late;
   1125   1.25   msaitoh 	case IXGBE_ERR_SFP_NOT_PRESENT:
   1126   1.48   msaitoh 		aprint_error_dev(dev, "No SFP+ Module found\n");
   1127   1.25   msaitoh 		/* falls thru */
   1128   1.25   msaitoh 	default:
   1129   1.25   msaitoh 		break;
   1130    1.1    dyoung 	}
   1131    1.1    dyoung 
   1132  1.116   msaitoh 	/* Setup OS specific network interface */
   1133  1.116   msaitoh 	if (ixgbe_setup_interface(dev, adapter) != 0)
   1134  1.116   msaitoh 		goto err_late;
   1135  1.116   msaitoh 
   1136  1.110   msaitoh 	/*
   1137  1.110   msaitoh 	 *  Print PHY ID only for copper PHY. On device which has SFP(+) cage
   1138  1.110   msaitoh 	 * and a module is inserted, phy.id is not MII PHY id but SFF 8024 ID.
   1139  1.110   msaitoh 	 */
   1140  1.110   msaitoh 	if (hw->phy.media_type == ixgbe_media_type_copper) {
   1141   1.95   msaitoh 		uint16_t id1, id2;
   1142   1.95   msaitoh 		int oui, model, rev;
   1143   1.95   msaitoh 		const char *descr;
   1144   1.95   msaitoh 
   1145   1.95   msaitoh 		id1 = hw->phy.id >> 16;
   1146   1.95   msaitoh 		id2 = hw->phy.id & 0xffff;
   1147   1.95   msaitoh 		oui = MII_OUI(id1, id2);
   1148   1.95   msaitoh 		model = MII_MODEL(id2);
   1149   1.95   msaitoh 		rev = MII_REV(id2);
   1150   1.95   msaitoh 		if ((descr = mii_get_descr(oui, model)) != NULL)
   1151   1.95   msaitoh 			aprint_normal_dev(dev,
   1152   1.95   msaitoh 			    "PHY: %s (OUI 0x%06x, model 0x%04x), rev. %d\n",
   1153   1.95   msaitoh 			    descr, oui, model, rev);
   1154   1.95   msaitoh 		else
   1155   1.95   msaitoh 			aprint_normal_dev(dev,
   1156   1.95   msaitoh 			    "PHY OUI 0x%06x, model 0x%04x, rev. %d\n",
   1157   1.95   msaitoh 			    oui, model, rev);
   1158   1.95   msaitoh 	}
   1159   1.95   msaitoh 
   1160   1.52   msaitoh 	/* Enable the optics for 82599 SFP+ fiber */
   1161   1.52   msaitoh 	ixgbe_enable_tx_laser(hw);
   1162   1.52   msaitoh 
   1163   1.52   msaitoh 	/* Enable power to the phy. */
   1164   1.52   msaitoh 	ixgbe_set_phy_power(hw, TRUE);
   1165   1.52   msaitoh 
   1166    1.1    dyoung 	/* Initialize statistics */
   1167    1.1    dyoung 	ixgbe_update_stats_counters(adapter);
   1168    1.1    dyoung 
   1169   1.98   msaitoh 	/* Check PCIE slot type/speed/width */
   1170   1.48   msaitoh 	ixgbe_get_slot_info(adapter);
   1171    1.1    dyoung 
   1172   1.99   msaitoh 	/*
   1173   1.99   msaitoh 	 * Do time init and sysctl init here, but
   1174   1.99   msaitoh 	 * only on the first port of a bypass adapter.
   1175   1.99   msaitoh 	 */
   1176   1.99   msaitoh 	ixgbe_bypass_init(adapter);
   1177   1.99   msaitoh 
   1178   1.99   msaitoh 	/* Set an initial dmac value */
   1179   1.48   msaitoh 	adapter->dmac = 0;
   1180   1.99   msaitoh 	/* Set initial advertised speeds (if applicable) */
   1181   1.99   msaitoh 	adapter->advertise = ixgbe_get_advertise(adapter);
   1182   1.45   msaitoh 
   1183   1.99   msaitoh 	if (adapter->feat_cap & IXGBE_FEATURE_SRIOV)
   1184   1.99   msaitoh 		ixgbe_define_iov_schemas(dev, &error);
   1185   1.44   msaitoh 
   1186   1.44   msaitoh 	/* Add sysctls */
   1187   1.44   msaitoh 	ixgbe_add_device_sysctls(adapter);
   1188   1.44   msaitoh 	ixgbe_add_hw_stats(adapter);
   1189   1.44   msaitoh 
   1190   1.99   msaitoh 	/* For Netmap */
   1191   1.99   msaitoh 	adapter->init_locked = ixgbe_init_locked;
   1192   1.99   msaitoh 	adapter->stop_locked = ixgbe_stop;
   1193   1.99   msaitoh 
   1194   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_NETMAP)
   1195   1.99   msaitoh 		ixgbe_netmap_attach(adapter);
   1196    1.1    dyoung 
   1197   1.99   msaitoh 	snprintb(buf, sizeof(buf), IXGBE_FEATURE_FLAGS, adapter->feat_cap);
   1198   1.99   msaitoh 	aprint_verbose_dev(dev, "feature cap %s\n", buf);
   1199   1.99   msaitoh 	snprintb(buf, sizeof(buf), IXGBE_FEATURE_FLAGS, adapter->feat_en);
   1200   1.99   msaitoh 	aprint_verbose_dev(dev, "feature ena %s\n", buf);
   1201   1.44   msaitoh 
   1202   1.44   msaitoh 	if (pmf_device_register(dev, ixgbe_suspend, ixgbe_resume))
   1203   1.44   msaitoh 		pmf_class_network_register(dev, adapter->ifp);
   1204   1.44   msaitoh 	else
   1205   1.44   msaitoh 		aprint_error_dev(dev, "couldn't establish power handler\n");
   1206   1.44   msaitoh 
   1207    1.1    dyoung 	INIT_DEBUGOUT("ixgbe_attach: end");
   1208   1.32   msaitoh 	adapter->osdep.attached = true;
   1209   1.98   msaitoh 
   1210    1.1    dyoung 	return;
   1211   1.43   msaitoh 
   1212    1.1    dyoung err_late:
   1213    1.1    dyoung 	ixgbe_free_transmit_structures(adapter);
   1214    1.1    dyoung 	ixgbe_free_receive_structures(adapter);
   1215   1.99   msaitoh 	free(adapter->queues, M_DEVBUF);
   1216    1.1    dyoung err_out:
   1217   1.99   msaitoh 	ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
   1218   1.99   msaitoh 	ctrl_ext &= ~IXGBE_CTRL_EXT_DRV_LOAD;
   1219   1.99   msaitoh 	IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT, ctrl_ext);
   1220  1.119   msaitoh 	ixgbe_free_softint(adapter);
   1221    1.1    dyoung 	ixgbe_free_pci_resources(adapter);
   1222    1.1    dyoung 	if (adapter->mta != NULL)
   1223    1.1    dyoung 		free(adapter->mta, M_DEVBUF);
   1224   1.99   msaitoh 	IXGBE_CORE_LOCK_DESTROY(adapter);
   1225   1.99   msaitoh 
   1226    1.1    dyoung 	return;
   1227   1.99   msaitoh } /* ixgbe_attach */
   1228    1.1    dyoung 
   1229   1.99   msaitoh /************************************************************************
   1230   1.99   msaitoh  * ixgbe_check_wol_support
   1231   1.99   msaitoh  *
   1232   1.99   msaitoh  *   Checks whether the adapter's ports are capable of
   1233   1.99   msaitoh  *   Wake On LAN by reading the adapter's NVM.
   1234    1.1    dyoung  *
   1235   1.99   msaitoh  *   Sets each port's hw->wol_enabled value depending
   1236   1.99   msaitoh  *   on the value read here.
   1237   1.99   msaitoh  ************************************************************************/
   1238   1.98   msaitoh static void
   1239   1.98   msaitoh ixgbe_check_wol_support(struct adapter *adapter)
   1240   1.98   msaitoh {
   1241   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   1242   1.99   msaitoh 	u16             dev_caps = 0;
   1243    1.1    dyoung 
   1244   1.98   msaitoh 	/* Find out WoL support for port */
   1245   1.98   msaitoh 	adapter->wol_support = hw->wol_enabled = 0;
   1246   1.98   msaitoh 	ixgbe_get_device_caps(hw, &dev_caps);
   1247   1.98   msaitoh 	if ((dev_caps & IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
   1248   1.98   msaitoh 	    ((dev_caps & IXGBE_DEVICE_CAPS_WOL_PORT0) &&
   1249   1.99   msaitoh 	     hw->bus.func == 0))
   1250   1.98   msaitoh 		adapter->wol_support = hw->wol_enabled = 1;
   1251   1.98   msaitoh 
   1252   1.98   msaitoh 	/* Save initial wake up filter configuration */
   1253   1.98   msaitoh 	adapter->wufc = IXGBE_READ_REG(hw, IXGBE_WUFC);
   1254   1.98   msaitoh 
   1255   1.98   msaitoh 	return;
   1256   1.99   msaitoh } /* ixgbe_check_wol_support */
   1257   1.98   msaitoh 
   1258   1.99   msaitoh /************************************************************************
   1259   1.99   msaitoh  * ixgbe_setup_interface
   1260   1.98   msaitoh  *
   1261   1.99   msaitoh  *   Setup networking device structure and register an interface.
   1262   1.99   msaitoh  ************************************************************************/
   1263    1.1    dyoung static int
   1264   1.98   msaitoh ixgbe_setup_interface(device_t dev, struct adapter *adapter)
   1265    1.1    dyoung {
   1266   1.98   msaitoh 	struct ethercom *ec = &adapter->osdep.ec;
   1267   1.98   msaitoh 	struct ifnet   *ifp;
   1268  1.106   msaitoh 	int rv;
   1269    1.1    dyoung 
   1270   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_setup_interface: begin");
   1271    1.1    dyoung 
   1272   1.98   msaitoh 	ifp = adapter->ifp = &ec->ec_if;
   1273   1.98   msaitoh 	strlcpy(ifp->if_xname, device_xname(dev), IFNAMSIZ);
   1274   1.98   msaitoh 	ifp->if_baudrate = IF_Gbps(10);
   1275   1.98   msaitoh 	ifp->if_init = ixgbe_init;
   1276   1.98   msaitoh 	ifp->if_stop = ixgbe_ifstop;
   1277   1.98   msaitoh 	ifp->if_softc = adapter;
   1278   1.98   msaitoh 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
   1279   1.98   msaitoh #ifdef IXGBE_MPSAFE
   1280  1.112     ozaki 	ifp->if_extflags = IFEF_MPSAFE;
   1281   1.98   msaitoh #endif
   1282   1.98   msaitoh 	ifp->if_ioctl = ixgbe_ioctl;
   1283   1.98   msaitoh #if __FreeBSD_version >= 1100045
   1284   1.98   msaitoh 	/* TSO parameters */
   1285   1.98   msaitoh 	ifp->if_hw_tsomax = 65518;
   1286   1.98   msaitoh 	ifp->if_hw_tsomaxsegcount = IXGBE_82599_SCATTER;
   1287   1.98   msaitoh 	ifp->if_hw_tsomaxsegsize = 2048;
   1288   1.98   msaitoh #endif
   1289   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_LEGACY_TX) {
   1290   1.99   msaitoh #if 0
   1291   1.99   msaitoh 		ixgbe_start_locked = ixgbe_legacy_start_locked;
   1292   1.99   msaitoh #endif
   1293   1.99   msaitoh 	} else {
   1294   1.99   msaitoh 		ifp->if_transmit = ixgbe_mq_start;
   1295   1.99   msaitoh #if 0
   1296   1.99   msaitoh 		ixgbe_start_locked = ixgbe_mq_start_locked;
   1297   1.29   msaitoh #endif
   1298   1.99   msaitoh 	}
   1299   1.99   msaitoh 	ifp->if_start = ixgbe_legacy_start;
   1300   1.98   msaitoh 	IFQ_SET_MAXLEN(&ifp->if_snd, adapter->num_tx_desc - 2);
   1301   1.98   msaitoh 	IFQ_SET_READY(&ifp->if_snd);
   1302   1.98   msaitoh 
   1303  1.106   msaitoh 	rv = if_initialize(ifp);
   1304  1.106   msaitoh 	if (rv != 0) {
   1305  1.106   msaitoh 		aprint_error_dev(dev, "if_initialize failed(%d)\n", rv);
   1306  1.106   msaitoh 		return rv;
   1307  1.106   msaitoh 	}
   1308   1.98   msaitoh 	adapter->ipq = if_percpuq_create(&adapter->osdep.ec.ec_if);
   1309   1.98   msaitoh 	ether_ifattach(ifp, adapter->hw.mac.addr);
   1310   1.98   msaitoh 	/*
   1311   1.98   msaitoh 	 * We use per TX queue softint, so if_deferred_start_init() isn't
   1312   1.98   msaitoh 	 * used.
   1313   1.98   msaitoh 	 */
   1314   1.98   msaitoh 	if_register(ifp);
   1315   1.98   msaitoh 	ether_set_ifflags_cb(ec, ixgbe_ifflags_cb);
   1316   1.98   msaitoh 
   1317   1.99   msaitoh 	adapter->max_frame_size = ifp->if_mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
   1318   1.98   msaitoh 
   1319   1.98   msaitoh 	/*
   1320   1.98   msaitoh 	 * Tell the upper layer(s) we support long frames.
   1321   1.98   msaitoh 	 */
   1322   1.98   msaitoh 	ifp->if_hdrlen = sizeof(struct ether_vlan_header);
   1323   1.98   msaitoh 
   1324   1.98   msaitoh 	/* Set capability flags */
   1325   1.98   msaitoh 	ifp->if_capabilities |= IFCAP_RXCSUM
   1326   1.98   msaitoh 			     |  IFCAP_TXCSUM
   1327   1.98   msaitoh 			     |  IFCAP_TSOv4
   1328   1.98   msaitoh 			     |  IFCAP_TSOv6
   1329   1.98   msaitoh 			     |  IFCAP_LRO;
   1330   1.98   msaitoh 	ifp->if_capenable = 0;
   1331   1.98   msaitoh 
   1332   1.98   msaitoh 	ec->ec_capabilities |= ETHERCAP_VLAN_HWTAGGING
   1333   1.98   msaitoh 	    		    |  ETHERCAP_VLAN_HWCSUM
   1334   1.98   msaitoh 	    		    |  ETHERCAP_JUMBO_MTU
   1335   1.98   msaitoh 	    		    |  ETHERCAP_VLAN_MTU;
   1336   1.98   msaitoh 
   1337   1.98   msaitoh 	/* Enable the above capabilities by default */
   1338   1.98   msaitoh 	ec->ec_capenable = ec->ec_capabilities;
   1339   1.98   msaitoh 
   1340   1.98   msaitoh 	/*
   1341   1.99   msaitoh 	 * Don't turn this on by default, if vlans are
   1342   1.99   msaitoh 	 * created on another pseudo device (eg. lagg)
   1343   1.99   msaitoh 	 * then vlan events are not passed thru, breaking
   1344   1.99   msaitoh 	 * operation, but with HW FILTER off it works. If
   1345   1.99   msaitoh 	 * using vlans directly on the ixgbe driver you can
   1346   1.99   msaitoh 	 * enable this and get full hardware tag filtering.
   1347   1.99   msaitoh 	 */
   1348   1.98   msaitoh 	ec->ec_capabilities |= ETHERCAP_VLAN_HWFILTER;
   1349    1.1    dyoung 
   1350   1.98   msaitoh 	/*
   1351   1.98   msaitoh 	 * Specify the media types supported by this adapter and register
   1352   1.98   msaitoh 	 * callbacks to update media and link information
   1353   1.98   msaitoh 	 */
   1354   1.98   msaitoh 	ifmedia_init(&adapter->media, IFM_IMASK, ixgbe_media_change,
   1355   1.98   msaitoh 	    ixgbe_media_status);
   1356   1.45   msaitoh 
   1357   1.98   msaitoh 	adapter->phy_layer = ixgbe_get_supported_physical_layer(&adapter->hw);
   1358   1.98   msaitoh 	ixgbe_add_media_types(adapter);
   1359   1.49   msaitoh 
   1360   1.98   msaitoh 	/* Set autoselect media by default */
   1361   1.98   msaitoh 	ifmedia_set(&adapter->media, IFM_ETHER | IFM_AUTO);
   1362    1.1    dyoung 
   1363   1.98   msaitoh 	return (0);
   1364   1.99   msaitoh } /* ixgbe_setup_interface */
   1365    1.1    dyoung 
   1366   1.99   msaitoh /************************************************************************
   1367   1.99   msaitoh  * ixgbe_add_media_types
   1368   1.99   msaitoh  ************************************************************************/
   1369   1.98   msaitoh static void
   1370   1.98   msaitoh ixgbe_add_media_types(struct adapter *adapter)
   1371   1.98   msaitoh {
   1372   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   1373   1.99   msaitoh 	device_t        dev = adapter->dev;
   1374   1.99   msaitoh 	u64             layer;
   1375    1.1    dyoung 
   1376   1.98   msaitoh 	layer = adapter->phy_layer;
   1377    1.1    dyoung 
   1378   1.98   msaitoh #define	ADD(mm, dd)							\
   1379   1.98   msaitoh 	ifmedia_add(&adapter->media, IFM_ETHER | (mm), (dd), NULL);
   1380    1.1    dyoung 
   1381  1.140   msaitoh 	ADD(IFM_NONE, 0);
   1382  1.140   msaitoh 
   1383   1.98   msaitoh 	/* Media types with matching NetBSD media defines */
   1384   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_T) {
   1385   1.98   msaitoh 		ADD(IFM_10G_T | IFM_FDX, 0);
   1386   1.98   msaitoh 	}
   1387   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_T) {
   1388   1.98   msaitoh 		ADD(IFM_1000_T | IFM_FDX, 0);
   1389   1.98   msaitoh 	}
   1390   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_100BASE_TX) {
   1391   1.98   msaitoh 		ADD(IFM_100_TX | IFM_FDX, 0);
   1392   1.98   msaitoh 	}
   1393   1.99   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10BASE_T) {
   1394   1.99   msaitoh 		ADD(IFM_10_T | IFM_FDX, 0);
   1395   1.99   msaitoh 	}
   1396   1.26   msaitoh 
   1397   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU ||
   1398   1.98   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_SFP_ACTIVE_DA) {
   1399   1.98   msaitoh 		ADD(IFM_10G_TWINAX | IFM_FDX, 0);
   1400   1.98   msaitoh 	}
   1401    1.1    dyoung 
   1402   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LR) {
   1403   1.98   msaitoh 		ADD(IFM_10G_LR | IFM_FDX, 0);
   1404   1.98   msaitoh 		if (hw->phy.multispeed_fiber) {
   1405   1.98   msaitoh 			ADD(IFM_1000_LX | IFM_FDX, 0);
   1406   1.72   msaitoh 		}
   1407   1.98   msaitoh 	}
   1408   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_SR) {
   1409   1.98   msaitoh 		ADD(IFM_10G_SR | IFM_FDX, 0);
   1410   1.98   msaitoh 		if (hw->phy.multispeed_fiber) {
   1411   1.98   msaitoh 			ADD(IFM_1000_SX | IFM_FDX, 0);
   1412    1.1    dyoung 		}
   1413   1.98   msaitoh 	} else if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_SX) {
   1414   1.98   msaitoh 		ADD(IFM_1000_SX | IFM_FDX, 0);
   1415   1.98   msaitoh 	}
   1416   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_CX4) {
   1417   1.98   msaitoh 		ADD(IFM_10G_CX4 | IFM_FDX, 0);
   1418   1.98   msaitoh 	}
   1419    1.1    dyoung 
   1420   1.98   msaitoh #ifdef IFM_ETH_XTYPE
   1421   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR) {
   1422   1.98   msaitoh 		ADD(IFM_10G_KR | IFM_FDX, 0);
   1423   1.98   msaitoh 	}
   1424   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KX4) {
   1425   1.98   msaitoh 		ADD(AIFM_10G_KX4 | IFM_FDX, 0);
   1426   1.98   msaitoh 	}
   1427   1.98   msaitoh #else
   1428   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR) {
   1429   1.98   msaitoh 		device_printf(dev, "Media supported: 10GbaseKR\n");
   1430   1.98   msaitoh 		device_printf(dev, "10GbaseKR mapped to 10GbaseSR\n");
   1431   1.98   msaitoh 		ADD(IFM_10G_SR | IFM_FDX, 0);
   1432   1.98   msaitoh 	}
   1433   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KX4) {
   1434   1.98   msaitoh 		device_printf(dev, "Media supported: 10GbaseKX4\n");
   1435   1.98   msaitoh 		device_printf(dev, "10GbaseKX4 mapped to 10GbaseCX4\n");
   1436   1.98   msaitoh 		ADD(IFM_10G_CX4 | IFM_FDX, 0);
   1437   1.98   msaitoh 	}
   1438   1.98   msaitoh #endif
   1439   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_KX) {
   1440   1.98   msaitoh 		ADD(IFM_1000_KX | IFM_FDX, 0);
   1441   1.98   msaitoh 	}
   1442   1.99   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_2500BASE_KX) {
   1443   1.99   msaitoh 		ADD(IFM_2500_KX | IFM_FDX, 0);
   1444   1.99   msaitoh 	}
   1445  1.103   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_2500BASE_T) {
   1446  1.103   msaitoh 		ADD(IFM_2500_T | IFM_FDX, 0);
   1447  1.103   msaitoh 	}
   1448  1.103   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_5GBASE_T) {
   1449  1.103   msaitoh 		ADD(IFM_5000_T | IFM_FDX, 0);
   1450  1.103   msaitoh 	}
   1451   1.98   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_BX)
   1452   1.98   msaitoh 		device_printf(dev, "Media supported: 1000baseBX\n");
   1453   1.98   msaitoh 	/* XXX no ifmedia_set? */
   1454   1.98   msaitoh 
   1455   1.98   msaitoh 	ADD(IFM_AUTO, 0);
   1456   1.98   msaitoh 
   1457   1.98   msaitoh #undef ADD
   1458   1.99   msaitoh } /* ixgbe_add_media_types */
   1459    1.1    dyoung 
   1460   1.99   msaitoh /************************************************************************
   1461   1.99   msaitoh  * ixgbe_is_sfp
   1462   1.99   msaitoh  ************************************************************************/
   1463   1.99   msaitoh static inline bool
   1464   1.99   msaitoh ixgbe_is_sfp(struct ixgbe_hw *hw)
   1465   1.99   msaitoh {
   1466   1.99   msaitoh 	switch (hw->mac.type) {
   1467   1.99   msaitoh 	case ixgbe_mac_82598EB:
   1468   1.99   msaitoh 		if (hw->phy.type == ixgbe_phy_nl)
   1469  1.144   msaitoh 			return (TRUE);
   1470  1.144   msaitoh 		return (FALSE);
   1471   1.99   msaitoh 	case ixgbe_mac_82599EB:
   1472   1.99   msaitoh 		switch (hw->mac.ops.get_media_type(hw)) {
   1473   1.99   msaitoh 		case ixgbe_media_type_fiber:
   1474   1.99   msaitoh 		case ixgbe_media_type_fiber_qsfp:
   1475  1.144   msaitoh 			return (TRUE);
   1476   1.99   msaitoh 		default:
   1477  1.144   msaitoh 			return (FALSE);
   1478   1.99   msaitoh 		}
   1479   1.99   msaitoh 	case ixgbe_mac_X550EM_x:
   1480   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   1481   1.99   msaitoh 		if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber)
   1482  1.144   msaitoh 			return (TRUE);
   1483  1.144   msaitoh 		return (FALSE);
   1484   1.99   msaitoh 	default:
   1485  1.144   msaitoh 		return (FALSE);
   1486   1.99   msaitoh 	}
   1487   1.99   msaitoh } /* ixgbe_is_sfp */
   1488   1.99   msaitoh 
   1489   1.99   msaitoh /************************************************************************
   1490   1.99   msaitoh  * ixgbe_config_link
   1491   1.99   msaitoh  ************************************************************************/
   1492   1.98   msaitoh static void
   1493   1.98   msaitoh ixgbe_config_link(struct adapter *adapter)
   1494   1.98   msaitoh {
   1495   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   1496   1.99   msaitoh 	u32             autoneg, err = 0;
   1497   1.99   msaitoh 	bool            sfp, negotiate = false;
   1498    1.1    dyoung 
   1499   1.98   msaitoh 	sfp = ixgbe_is_sfp(hw);
   1500    1.1    dyoung 
   1501   1.98   msaitoh 	if (sfp) {
   1502   1.99   msaitoh 		if (hw->phy.multispeed_fiber) {
   1503   1.99   msaitoh 			ixgbe_enable_tx_laser(hw);
   1504   1.99   msaitoh 			kpreempt_disable();
   1505   1.99   msaitoh 			softint_schedule(adapter->msf_si);
   1506   1.99   msaitoh 			kpreempt_enable();
   1507   1.99   msaitoh 		}
   1508  1.144   msaitoh 		kpreempt_disable();
   1509  1.144   msaitoh 		softint_schedule(adapter->mod_si);
   1510  1.144   msaitoh 		kpreempt_enable();
   1511   1.98   msaitoh 	} else {
   1512  1.143   msaitoh 		struct ifmedia  *ifm = &adapter->media;
   1513  1.143   msaitoh 
   1514   1.98   msaitoh 		if (hw->mac.ops.check_link)
   1515   1.98   msaitoh 			err = ixgbe_check_link(hw, &adapter->link_speed,
   1516   1.98   msaitoh 			    &adapter->link_up, FALSE);
   1517   1.98   msaitoh 		if (err)
   1518  1.144   msaitoh 			return;
   1519  1.143   msaitoh 
   1520  1.143   msaitoh 		/*
   1521  1.143   msaitoh 		 * Check if it's the first call. If it's the first call,
   1522  1.143   msaitoh 		 * get value for auto negotiation.
   1523  1.143   msaitoh 		 */
   1524   1.98   msaitoh 		autoneg = hw->phy.autoneg_advertised;
   1525  1.143   msaitoh 		if ((IFM_SUBTYPE(ifm->ifm_cur->ifm_media) != IFM_NONE)
   1526  1.143   msaitoh 		    && ((!autoneg) && (hw->mac.ops.get_link_capabilities)))
   1527   1.99   msaitoh                 	err = hw->mac.ops.get_link_capabilities(hw, &autoneg,
   1528   1.99   msaitoh 			    &negotiate);
   1529   1.98   msaitoh 		if (err)
   1530  1.144   msaitoh 			return;
   1531   1.98   msaitoh 		if (hw->mac.ops.setup_link)
   1532   1.99   msaitoh                 	err = hw->mac.ops.setup_link(hw, autoneg,
   1533   1.99   msaitoh 			    adapter->link_up);
   1534   1.98   msaitoh 	}
   1535   1.99   msaitoh 
   1536   1.99   msaitoh } /* ixgbe_config_link */
   1537   1.98   msaitoh 
   1538   1.99   msaitoh /************************************************************************
   1539   1.99   msaitoh  * ixgbe_update_stats_counters - Update board statistics counters.
   1540   1.99   msaitoh  ************************************************************************/
   1541   1.98   msaitoh static void
   1542   1.98   msaitoh ixgbe_update_stats_counters(struct adapter *adapter)
   1543    1.1    dyoung {
   1544   1.99   msaitoh 	struct ifnet          *ifp = adapter->ifp;
   1545   1.99   msaitoh 	struct ixgbe_hw       *hw = &adapter->hw;
   1546   1.98   msaitoh 	struct ixgbe_hw_stats *stats = &adapter->stats.pf;
   1547   1.99   msaitoh 	u32                   missed_rx = 0, bprc, lxon, lxoff, total;
   1548   1.99   msaitoh 	u64                   total_missed_rx = 0;
   1549   1.99   msaitoh 	uint64_t              crcerrs, rlec;
   1550   1.44   msaitoh 
   1551   1.98   msaitoh 	crcerrs = IXGBE_READ_REG(hw, IXGBE_CRCERRS);
   1552   1.98   msaitoh 	stats->crcerrs.ev_count += crcerrs;
   1553   1.98   msaitoh 	stats->illerrc.ev_count += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
   1554   1.98   msaitoh 	stats->errbc.ev_count += IXGBE_READ_REG(hw, IXGBE_ERRBC);
   1555   1.98   msaitoh 	stats->mspdc.ev_count += IXGBE_READ_REG(hw, IXGBE_MSPDC);
   1556   1.98   msaitoh 	if (hw->mac.type == ixgbe_mac_X550)
   1557   1.98   msaitoh 		stats->mbsdc.ev_count += IXGBE_READ_REG(hw, IXGBE_MBSDC);
   1558   1.44   msaitoh 
   1559   1.98   msaitoh 	for (int i = 0; i < __arraycount(stats->qprc); i++) {
   1560   1.98   msaitoh 		int j = i % adapter->num_queues;
   1561   1.98   msaitoh 		stats->qprc[j].ev_count += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
   1562   1.98   msaitoh 		stats->qptc[j].ev_count += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
   1563   1.98   msaitoh 		stats->qprdc[j].ev_count += IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
   1564   1.98   msaitoh 	}
   1565   1.98   msaitoh 	for (int i = 0; i < __arraycount(stats->mpc); i++) {
   1566   1.98   msaitoh 		uint32_t mp;
   1567   1.98   msaitoh 		int j = i % adapter->num_queues;
   1568   1.44   msaitoh 
   1569   1.98   msaitoh 		mp = IXGBE_READ_REG(hw, IXGBE_MPC(i));
   1570   1.98   msaitoh 		/* global total per queue */
   1571   1.98   msaitoh 		stats->mpc[j].ev_count += mp;
   1572   1.98   msaitoh 		/* running comprehensive total for stats display */
   1573   1.98   msaitoh 		total_missed_rx += mp;
   1574   1.44   msaitoh 
   1575   1.98   msaitoh 		if (hw->mac.type == ixgbe_mac_82598EB)
   1576   1.98   msaitoh 			stats->rnbc[j].ev_count
   1577   1.98   msaitoh 			    += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
   1578   1.98   msaitoh 
   1579   1.98   msaitoh 	}
   1580   1.98   msaitoh 	stats->mpctotal.ev_count += total_missed_rx;
   1581   1.44   msaitoh 
   1582   1.98   msaitoh 	/* Document says M[LR]FC are valid when link is up and 10Gbps */
   1583   1.98   msaitoh 	if ((adapter->link_active == TRUE)
   1584   1.98   msaitoh 	    && (adapter->link_speed == IXGBE_LINK_SPEED_10GB_FULL)) {
   1585   1.98   msaitoh 		stats->mlfc.ev_count += IXGBE_READ_REG(hw, IXGBE_MLFC);
   1586   1.98   msaitoh 		stats->mrfc.ev_count += IXGBE_READ_REG(hw, IXGBE_MRFC);
   1587   1.98   msaitoh 	}
   1588   1.98   msaitoh 	rlec = IXGBE_READ_REG(hw, IXGBE_RLEC);
   1589   1.98   msaitoh 	stats->rlec.ev_count += rlec;
   1590   1.44   msaitoh 
   1591   1.98   msaitoh 	/* Hardware workaround, gprc counts missed packets */
   1592   1.98   msaitoh 	stats->gprc.ev_count += IXGBE_READ_REG(hw, IXGBE_GPRC) - missed_rx;
   1593   1.44   msaitoh 
   1594   1.98   msaitoh 	lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
   1595   1.98   msaitoh 	stats->lxontxc.ev_count += lxon;
   1596   1.98   msaitoh 	lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
   1597   1.98   msaitoh 	stats->lxofftxc.ev_count += lxoff;
   1598   1.98   msaitoh 	total = lxon + lxoff;
   1599   1.44   msaitoh 
   1600   1.98   msaitoh 	if (hw->mac.type != ixgbe_mac_82598EB) {
   1601   1.98   msaitoh 		stats->gorc.ev_count += IXGBE_READ_REG(hw, IXGBE_GORCL) +
   1602   1.98   msaitoh 		    ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
   1603   1.98   msaitoh 		stats->gotc.ev_count += IXGBE_READ_REG(hw, IXGBE_GOTCL) +
   1604   1.98   msaitoh 		    ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32) - total * ETHER_MIN_LEN;
   1605   1.98   msaitoh 		stats->tor.ev_count += IXGBE_READ_REG(hw, IXGBE_TORL) +
   1606   1.98   msaitoh 		    ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
   1607   1.98   msaitoh 		stats->lxonrxc.ev_count += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
   1608   1.98   msaitoh 		stats->lxoffrxc.ev_count += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
   1609   1.98   msaitoh 	} else {
   1610   1.98   msaitoh 		stats->lxonrxc.ev_count += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
   1611   1.98   msaitoh 		stats->lxoffrxc.ev_count += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
   1612   1.98   msaitoh 		/* 82598 only has a counter in the high register */
   1613   1.98   msaitoh 		stats->gorc.ev_count += IXGBE_READ_REG(hw, IXGBE_GORCH);
   1614   1.98   msaitoh 		stats->gotc.ev_count += IXGBE_READ_REG(hw, IXGBE_GOTCH) - total * ETHER_MIN_LEN;
   1615   1.98   msaitoh 		stats->tor.ev_count += IXGBE_READ_REG(hw, IXGBE_TORH);
   1616   1.98   msaitoh 	}
   1617   1.44   msaitoh 
   1618   1.98   msaitoh 	/*
   1619   1.98   msaitoh 	 * Workaround: mprc hardware is incorrectly counting
   1620   1.98   msaitoh 	 * broadcasts, so for now we subtract those.
   1621   1.98   msaitoh 	 */
   1622   1.98   msaitoh 	bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
   1623   1.98   msaitoh 	stats->bprc.ev_count += bprc;
   1624   1.99   msaitoh 	stats->mprc.ev_count += IXGBE_READ_REG(hw, IXGBE_MPRC)
   1625   1.99   msaitoh 	    - ((hw->mac.type == ixgbe_mac_82598EB) ? bprc : 0);
   1626   1.44   msaitoh 
   1627   1.98   msaitoh 	stats->prc64.ev_count += IXGBE_READ_REG(hw, IXGBE_PRC64);
   1628   1.98   msaitoh 	stats->prc127.ev_count += IXGBE_READ_REG(hw, IXGBE_PRC127);
   1629   1.98   msaitoh 	stats->prc255.ev_count += IXGBE_READ_REG(hw, IXGBE_PRC255);
   1630   1.98   msaitoh 	stats->prc511.ev_count += IXGBE_READ_REG(hw, IXGBE_PRC511);
   1631   1.98   msaitoh 	stats->prc1023.ev_count += IXGBE_READ_REG(hw, IXGBE_PRC1023);
   1632   1.98   msaitoh 	stats->prc1522.ev_count += IXGBE_READ_REG(hw, IXGBE_PRC1522);
   1633   1.44   msaitoh 
   1634   1.98   msaitoh 	stats->gptc.ev_count += IXGBE_READ_REG(hw, IXGBE_GPTC) - total;
   1635   1.98   msaitoh 	stats->mptc.ev_count += IXGBE_READ_REG(hw, IXGBE_MPTC) - total;
   1636   1.98   msaitoh 	stats->ptc64.ev_count += IXGBE_READ_REG(hw, IXGBE_PTC64) - total;
   1637   1.44   msaitoh 
   1638   1.98   msaitoh 	stats->ruc.ev_count += IXGBE_READ_REG(hw, IXGBE_RUC);
   1639   1.98   msaitoh 	stats->rfc.ev_count += IXGBE_READ_REG(hw, IXGBE_RFC);
   1640   1.98   msaitoh 	stats->roc.ev_count += IXGBE_READ_REG(hw, IXGBE_ROC);
   1641   1.98   msaitoh 	stats->rjc.ev_count += IXGBE_READ_REG(hw, IXGBE_RJC);
   1642   1.98   msaitoh 	stats->mngprc.ev_count += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
   1643   1.98   msaitoh 	stats->mngpdc.ev_count += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
   1644   1.98   msaitoh 	stats->mngptc.ev_count += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
   1645   1.98   msaitoh 	stats->tpr.ev_count += IXGBE_READ_REG(hw, IXGBE_TPR);
   1646   1.98   msaitoh 	stats->tpt.ev_count += IXGBE_READ_REG(hw, IXGBE_TPT);
   1647   1.98   msaitoh 	stats->ptc127.ev_count += IXGBE_READ_REG(hw, IXGBE_PTC127);
   1648   1.98   msaitoh 	stats->ptc255.ev_count += IXGBE_READ_REG(hw, IXGBE_PTC255);
   1649   1.98   msaitoh 	stats->ptc511.ev_count += IXGBE_READ_REG(hw, IXGBE_PTC511);
   1650   1.98   msaitoh 	stats->ptc1023.ev_count += IXGBE_READ_REG(hw, IXGBE_PTC1023);
   1651   1.98   msaitoh 	stats->ptc1522.ev_count += IXGBE_READ_REG(hw, IXGBE_PTC1522);
   1652   1.98   msaitoh 	stats->bptc.ev_count += IXGBE_READ_REG(hw, IXGBE_BPTC);
   1653   1.98   msaitoh 	stats->xec.ev_count += IXGBE_READ_REG(hw, IXGBE_XEC);
   1654   1.98   msaitoh 	stats->fccrc.ev_count += IXGBE_READ_REG(hw, IXGBE_FCCRC);
   1655   1.98   msaitoh 	stats->fclast.ev_count += IXGBE_READ_REG(hw, IXGBE_FCLAST);
   1656   1.98   msaitoh 	/* Only read FCOE on 82599 */
   1657   1.98   msaitoh 	if (hw->mac.type != ixgbe_mac_82598EB) {
   1658   1.98   msaitoh 		stats->fcoerpdc.ev_count += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
   1659   1.98   msaitoh 		stats->fcoeprc.ev_count += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
   1660   1.98   msaitoh 		stats->fcoeptc.ev_count += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
   1661   1.98   msaitoh 		stats->fcoedwrc.ev_count += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
   1662   1.98   msaitoh 		stats->fcoedwtc.ev_count += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
   1663   1.98   msaitoh 	}
   1664   1.44   msaitoh 
   1665   1.98   msaitoh 	/* Fill out the OS statistics structure */
   1666   1.44   msaitoh 	/*
   1667   1.98   msaitoh 	 * NetBSD: Don't override if_{i|o}{packets|bytes|mcasts} with
   1668   1.98   msaitoh 	 * adapter->stats counters. It's required to make ifconfig -z
   1669   1.98   msaitoh 	 * (SOICZIFDATA) work.
   1670   1.44   msaitoh 	 */
   1671   1.98   msaitoh 	ifp->if_collisions = 0;
   1672   1.44   msaitoh 
   1673   1.98   msaitoh 	/* Rx Errors */
   1674   1.98   msaitoh 	ifp->if_iqdrops += total_missed_rx;
   1675   1.98   msaitoh 	ifp->if_ierrors += crcerrs + rlec;
   1676   1.99   msaitoh } /* ixgbe_update_stats_counters */
   1677    1.1    dyoung 
   1678   1.99   msaitoh /************************************************************************
   1679   1.99   msaitoh  * ixgbe_add_hw_stats
   1680   1.99   msaitoh  *
   1681   1.99   msaitoh  *   Add sysctl variables, one per statistic, to the system.
   1682   1.99   msaitoh  ************************************************************************/
   1683   1.98   msaitoh static void
   1684   1.98   msaitoh ixgbe_add_hw_stats(struct adapter *adapter)
   1685    1.1    dyoung {
   1686   1.98   msaitoh 	device_t dev = adapter->dev;
   1687   1.98   msaitoh 	const struct sysctlnode *rnode, *cnode;
   1688   1.98   msaitoh 	struct sysctllog **log = &adapter->sysctllog;
   1689   1.98   msaitoh 	struct tx_ring *txr = adapter->tx_rings;
   1690   1.98   msaitoh 	struct rx_ring *rxr = adapter->rx_rings;
   1691   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   1692   1.98   msaitoh 	struct ixgbe_hw_stats *stats = &adapter->stats.pf;
   1693   1.98   msaitoh 	const char *xname = device_xname(dev);
   1694  1.144   msaitoh 	int i;
   1695    1.1    dyoung 
   1696   1.98   msaitoh 	/* Driver Statistics */
   1697   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->efbig_tx_dma_setup, EVCNT_TYPE_MISC,
   1698   1.98   msaitoh 	    NULL, xname, "Driver tx dma soft fail EFBIG");
   1699   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->mbuf_defrag_failed, EVCNT_TYPE_MISC,
   1700   1.98   msaitoh 	    NULL, xname, "m_defrag() failed");
   1701   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->efbig2_tx_dma_setup, EVCNT_TYPE_MISC,
   1702   1.98   msaitoh 	    NULL, xname, "Driver tx dma hard fail EFBIG");
   1703   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->einval_tx_dma_setup, EVCNT_TYPE_MISC,
   1704   1.98   msaitoh 	    NULL, xname, "Driver tx dma hard fail EINVAL");
   1705   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->other_tx_dma_setup, EVCNT_TYPE_MISC,
   1706   1.98   msaitoh 	    NULL, xname, "Driver tx dma hard fail other");
   1707   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->eagain_tx_dma_setup, EVCNT_TYPE_MISC,
   1708   1.98   msaitoh 	    NULL, xname, "Driver tx dma soft fail EAGAIN");
   1709   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->enomem_tx_dma_setup, EVCNT_TYPE_MISC,
   1710   1.98   msaitoh 	    NULL, xname, "Driver tx dma soft fail ENOMEM");
   1711   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->watchdog_events, EVCNT_TYPE_MISC,
   1712   1.98   msaitoh 	    NULL, xname, "Watchdog timeouts");
   1713   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->tso_err, EVCNT_TYPE_MISC,
   1714   1.98   msaitoh 	    NULL, xname, "TSO errors");
   1715   1.98   msaitoh 	evcnt_attach_dynamic(&adapter->link_irq, EVCNT_TYPE_INTR,
   1716   1.99   msaitoh 	    NULL, xname, "Link MSI-X IRQ Handled");
   1717  1.137   msaitoh 	evcnt_attach_dynamic(&adapter->link_sicount, EVCNT_TYPE_INTR,
   1718  1.137   msaitoh 	    NULL, xname, "Link softint");
   1719  1.137   msaitoh 	evcnt_attach_dynamic(&adapter->mod_sicount, EVCNT_TYPE_INTR,
   1720  1.137   msaitoh 	    NULL, xname, "module softint");
   1721  1.137   msaitoh 	evcnt_attach_dynamic(&adapter->msf_sicount, EVCNT_TYPE_INTR,
   1722  1.137   msaitoh 	    NULL, xname, "multimode softint");
   1723  1.137   msaitoh 	evcnt_attach_dynamic(&adapter->phy_sicount, EVCNT_TYPE_INTR,
   1724  1.137   msaitoh 	    NULL, xname, "external PHY softint");
   1725    1.1    dyoung 
   1726  1.144   msaitoh 	for (i = 0; i < adapter->num_queues; i++, rxr++, txr++) {
   1727  1.135   msaitoh #ifdef LRO
   1728  1.135   msaitoh 		struct lro_ctrl *lro = &rxr->lro;
   1729  1.135   msaitoh #endif /* LRO */
   1730  1.135   msaitoh 
   1731   1.98   msaitoh 		snprintf(adapter->queues[i].evnamebuf,
   1732   1.98   msaitoh 		    sizeof(adapter->queues[i].evnamebuf), "%s q%d",
   1733   1.98   msaitoh 		    xname, i);
   1734   1.98   msaitoh 		snprintf(adapter->queues[i].namebuf,
   1735   1.98   msaitoh 		    sizeof(adapter->queues[i].namebuf), "q%d", i);
   1736    1.1    dyoung 
   1737   1.98   msaitoh 		if ((rnode = ixgbe_sysctl_instance(adapter)) == NULL) {
   1738   1.98   msaitoh 			aprint_error_dev(dev, "could not create sysctl root\n");
   1739   1.98   msaitoh 			break;
   1740   1.98   msaitoh 		}
   1741    1.1    dyoung 
   1742   1.98   msaitoh 		if (sysctl_createv(log, 0, &rnode, &rnode,
   1743   1.98   msaitoh 		    0, CTLTYPE_NODE,
   1744   1.98   msaitoh 		    adapter->queues[i].namebuf, SYSCTL_DESCR("Queue Name"),
   1745   1.98   msaitoh 		    NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL) != 0)
   1746   1.98   msaitoh 			break;
   1747   1.23   msaitoh 
   1748   1.98   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode,
   1749   1.98   msaitoh 		    CTLFLAG_READWRITE, CTLTYPE_INT,
   1750   1.98   msaitoh 		    "interrupt_rate", SYSCTL_DESCR("Interrupt Rate"),
   1751   1.98   msaitoh 		    ixgbe_sysctl_interrupt_rate_handler, 0,
   1752   1.98   msaitoh 		    (void *)&adapter->queues[i], 0, CTL_CREATE, CTL_EOL) != 0)
   1753   1.98   msaitoh 			break;
   1754    1.1    dyoung 
   1755   1.98   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode,
   1756   1.98   msaitoh 		    CTLFLAG_READONLY, CTLTYPE_INT,
   1757   1.98   msaitoh 		    "txd_head", SYSCTL_DESCR("Transmit Descriptor Head"),
   1758   1.98   msaitoh 		    ixgbe_sysctl_tdh_handler, 0, (void *)txr,
   1759   1.98   msaitoh 		    0, CTL_CREATE, CTL_EOL) != 0)
   1760   1.98   msaitoh 			break;
   1761    1.1    dyoung 
   1762   1.98   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode,
   1763   1.98   msaitoh 		    CTLFLAG_READONLY, CTLTYPE_INT,
   1764   1.98   msaitoh 		    "txd_tail", SYSCTL_DESCR("Transmit Descriptor Tail"),
   1765   1.98   msaitoh 		    ixgbe_sysctl_tdt_handler, 0, (void *)txr,
   1766   1.98   msaitoh 		    0, CTL_CREATE, CTL_EOL) != 0)
   1767   1.98   msaitoh 			break;
   1768    1.1    dyoung 
   1769   1.98   msaitoh 		evcnt_attach_dynamic(&adapter->queues[i].irqs, EVCNT_TYPE_INTR,
   1770   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf, "IRQs on queue");
   1771  1.129   msaitoh 		evcnt_attach_dynamic(&adapter->queues[i].handleq,
   1772  1.129   msaitoh 		    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1773  1.129   msaitoh 		    "Handled queue in softint");
   1774  1.129   msaitoh 		evcnt_attach_dynamic(&adapter->queues[i].req, EVCNT_TYPE_MISC,
   1775  1.129   msaitoh 		    NULL, adapter->queues[i].evnamebuf, "Requeued in softint");
   1776   1.98   msaitoh 		evcnt_attach_dynamic(&txr->tso_tx, EVCNT_TYPE_MISC,
   1777   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf, "TSO");
   1778   1.98   msaitoh 		evcnt_attach_dynamic(&txr->no_desc_avail, EVCNT_TYPE_MISC,
   1779   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf,
   1780   1.98   msaitoh 		    "Queue No Descriptor Available");
   1781   1.98   msaitoh 		evcnt_attach_dynamic(&txr->total_packets, EVCNT_TYPE_MISC,
   1782   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf,
   1783   1.98   msaitoh 		    "Queue Packets Transmitted");
   1784   1.98   msaitoh #ifndef IXGBE_LEGACY_TX
   1785   1.98   msaitoh 		evcnt_attach_dynamic(&txr->pcq_drops, EVCNT_TYPE_MISC,
   1786   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf,
   1787   1.98   msaitoh 		    "Packets dropped in pcq");
   1788   1.67   msaitoh #endif
   1789    1.1    dyoung 
   1790   1.98   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode,
   1791   1.98   msaitoh 		    CTLFLAG_READONLY,
   1792   1.98   msaitoh 		    CTLTYPE_INT,
   1793   1.98   msaitoh 		    "rxd_head", SYSCTL_DESCR("Receive Descriptor Head"),
   1794   1.98   msaitoh 		    ixgbe_sysctl_rdh_handler, 0, (void *)rxr, 0,
   1795   1.98   msaitoh 		    CTL_CREATE, CTL_EOL) != 0)
   1796   1.33   msaitoh 			break;
   1797   1.98   msaitoh 
   1798   1.98   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode,
   1799   1.98   msaitoh 		    CTLFLAG_READONLY,
   1800   1.98   msaitoh 		    CTLTYPE_INT,
   1801   1.98   msaitoh 		    "rxd_tail", SYSCTL_DESCR("Receive Descriptor Tail"),
   1802   1.98   msaitoh 		    ixgbe_sysctl_rdt_handler, 0, (void *)rxr, 0,
   1803   1.98   msaitoh 		    CTL_CREATE, CTL_EOL) != 0)
   1804   1.28   msaitoh 			break;
   1805   1.98   msaitoh 
   1806   1.98   msaitoh 		if (i < __arraycount(stats->mpc)) {
   1807   1.98   msaitoh 			evcnt_attach_dynamic(&stats->mpc[i],
   1808   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1809   1.99   msaitoh 			    "RX Missed Packet Count");
   1810   1.98   msaitoh 			if (hw->mac.type == ixgbe_mac_82598EB)
   1811   1.98   msaitoh 				evcnt_attach_dynamic(&stats->rnbc[i],
   1812   1.98   msaitoh 				    EVCNT_TYPE_MISC, NULL,
   1813   1.98   msaitoh 				    adapter->queues[i].evnamebuf,
   1814   1.98   msaitoh 				    "Receive No Buffers");
   1815   1.98   msaitoh 		}
   1816   1.98   msaitoh 		if (i < __arraycount(stats->pxontxc)) {
   1817   1.98   msaitoh 			evcnt_attach_dynamic(&stats->pxontxc[i],
   1818   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1819   1.98   msaitoh 			    "pxontxc");
   1820   1.98   msaitoh 			evcnt_attach_dynamic(&stats->pxonrxc[i],
   1821   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1822   1.98   msaitoh 			    "pxonrxc");
   1823   1.98   msaitoh 			evcnt_attach_dynamic(&stats->pxofftxc[i],
   1824   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1825   1.98   msaitoh 			    "pxofftxc");
   1826   1.98   msaitoh 			evcnt_attach_dynamic(&stats->pxoffrxc[i],
   1827   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1828   1.98   msaitoh 			    "pxoffrxc");
   1829   1.98   msaitoh 			evcnt_attach_dynamic(&stats->pxon2offc[i],
   1830   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1831   1.98   msaitoh 			    "pxon2offc");
   1832   1.33   msaitoh 		}
   1833   1.98   msaitoh 		if (i < __arraycount(stats->qprc)) {
   1834   1.98   msaitoh 			evcnt_attach_dynamic(&stats->qprc[i],
   1835   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1836   1.98   msaitoh 			    "qprc");
   1837   1.98   msaitoh 			evcnt_attach_dynamic(&stats->qptc[i],
   1838   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1839   1.98   msaitoh 			    "qptc");
   1840   1.98   msaitoh 			evcnt_attach_dynamic(&stats->qbrc[i],
   1841   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1842   1.98   msaitoh 			    "qbrc");
   1843   1.98   msaitoh 			evcnt_attach_dynamic(&stats->qbtc[i],
   1844   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1845   1.98   msaitoh 			    "qbtc");
   1846   1.98   msaitoh 			evcnt_attach_dynamic(&stats->qprdc[i],
   1847   1.98   msaitoh 			    EVCNT_TYPE_MISC, NULL, adapter->queues[i].evnamebuf,
   1848   1.98   msaitoh 			    "qprdc");
   1849   1.28   msaitoh 		}
   1850   1.33   msaitoh 
   1851   1.98   msaitoh 		evcnt_attach_dynamic(&rxr->rx_packets, EVCNT_TYPE_MISC,
   1852   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf, "Queue Packets Received");
   1853   1.98   msaitoh 		evcnt_attach_dynamic(&rxr->rx_bytes, EVCNT_TYPE_MISC,
   1854   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf, "Queue Bytes Received");
   1855   1.98   msaitoh 		evcnt_attach_dynamic(&rxr->rx_copies, EVCNT_TYPE_MISC,
   1856   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf, "Copied RX Frames");
   1857   1.98   msaitoh 		evcnt_attach_dynamic(&rxr->no_jmbuf, EVCNT_TYPE_MISC,
   1858   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf, "Rx no jumbo mbuf");
   1859   1.98   msaitoh 		evcnt_attach_dynamic(&rxr->rx_discarded, EVCNT_TYPE_MISC,
   1860   1.98   msaitoh 		    NULL, adapter->queues[i].evnamebuf, "Rx discarded");
   1861   1.98   msaitoh #ifdef LRO
   1862   1.98   msaitoh 		SYSCTL_ADD_INT(ctx, queue_list, OID_AUTO, "lro_queued",
   1863   1.98   msaitoh 				CTLFLAG_RD, &lro->lro_queued, 0,
   1864   1.98   msaitoh 				"LRO Queued");
   1865   1.98   msaitoh 		SYSCTL_ADD_INT(ctx, queue_list, OID_AUTO, "lro_flushed",
   1866   1.98   msaitoh 				CTLFLAG_RD, &lro->lro_flushed, 0,
   1867   1.98   msaitoh 				"LRO Flushed");
   1868   1.98   msaitoh #endif /* LRO */
   1869    1.1    dyoung 	}
   1870   1.28   msaitoh 
   1871   1.99   msaitoh 	/* MAC stats get their own sub node */
   1872   1.98   msaitoh 
   1873   1.98   msaitoh 	snprintf(stats->namebuf,
   1874   1.98   msaitoh 	    sizeof(stats->namebuf), "%s MAC Statistics", xname);
   1875   1.98   msaitoh 
   1876   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ipcs, EVCNT_TYPE_MISC, NULL,
   1877   1.98   msaitoh 	    stats->namebuf, "rx csum offload - IP");
   1878   1.98   msaitoh 	evcnt_attach_dynamic(&stats->l4cs, EVCNT_TYPE_MISC, NULL,
   1879   1.98   msaitoh 	    stats->namebuf, "rx csum offload - L4");
   1880   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ipcs_bad, EVCNT_TYPE_MISC, NULL,
   1881   1.98   msaitoh 	    stats->namebuf, "rx csum offload - IP bad");
   1882   1.98   msaitoh 	evcnt_attach_dynamic(&stats->l4cs_bad, EVCNT_TYPE_MISC, NULL,
   1883   1.98   msaitoh 	    stats->namebuf, "rx csum offload - L4 bad");
   1884   1.98   msaitoh 	evcnt_attach_dynamic(&stats->intzero, EVCNT_TYPE_MISC, NULL,
   1885   1.98   msaitoh 	    stats->namebuf, "Interrupt conditions zero");
   1886   1.98   msaitoh 	evcnt_attach_dynamic(&stats->legint, EVCNT_TYPE_MISC, NULL,
   1887   1.98   msaitoh 	    stats->namebuf, "Legacy interrupts");
   1888   1.99   msaitoh 
   1889   1.98   msaitoh 	evcnt_attach_dynamic(&stats->crcerrs, EVCNT_TYPE_MISC, NULL,
   1890   1.98   msaitoh 	    stats->namebuf, "CRC Errors");
   1891   1.98   msaitoh 	evcnt_attach_dynamic(&stats->illerrc, EVCNT_TYPE_MISC, NULL,
   1892   1.98   msaitoh 	    stats->namebuf, "Illegal Byte Errors");
   1893   1.98   msaitoh 	evcnt_attach_dynamic(&stats->errbc, EVCNT_TYPE_MISC, NULL,
   1894   1.98   msaitoh 	    stats->namebuf, "Byte Errors");
   1895   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mspdc, EVCNT_TYPE_MISC, NULL,
   1896   1.98   msaitoh 	    stats->namebuf, "MAC Short Packets Discarded");
   1897   1.98   msaitoh 	if (hw->mac.type >= ixgbe_mac_X550)
   1898   1.98   msaitoh 		evcnt_attach_dynamic(&stats->mbsdc, EVCNT_TYPE_MISC, NULL,
   1899   1.98   msaitoh 		    stats->namebuf, "Bad SFD");
   1900   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mpctotal, EVCNT_TYPE_MISC, NULL,
   1901   1.98   msaitoh 	    stats->namebuf, "Total Packets Missed");
   1902   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mlfc, EVCNT_TYPE_MISC, NULL,
   1903   1.98   msaitoh 	    stats->namebuf, "MAC Local Faults");
   1904   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mrfc, EVCNT_TYPE_MISC, NULL,
   1905   1.98   msaitoh 	    stats->namebuf, "MAC Remote Faults");
   1906   1.98   msaitoh 	evcnt_attach_dynamic(&stats->rlec, EVCNT_TYPE_MISC, NULL,
   1907   1.98   msaitoh 	    stats->namebuf, "Receive Length Errors");
   1908   1.98   msaitoh 	evcnt_attach_dynamic(&stats->lxontxc, EVCNT_TYPE_MISC, NULL,
   1909   1.98   msaitoh 	    stats->namebuf, "Link XON Transmitted");
   1910   1.98   msaitoh 	evcnt_attach_dynamic(&stats->lxonrxc, EVCNT_TYPE_MISC, NULL,
   1911   1.98   msaitoh 	    stats->namebuf, "Link XON Received");
   1912   1.98   msaitoh 	evcnt_attach_dynamic(&stats->lxofftxc, EVCNT_TYPE_MISC, NULL,
   1913   1.98   msaitoh 	    stats->namebuf, "Link XOFF Transmitted");
   1914   1.98   msaitoh 	evcnt_attach_dynamic(&stats->lxoffrxc, EVCNT_TYPE_MISC, NULL,
   1915   1.98   msaitoh 	    stats->namebuf, "Link XOFF Received");
   1916   1.98   msaitoh 
   1917   1.98   msaitoh 	/* Packet Reception Stats */
   1918   1.98   msaitoh 	evcnt_attach_dynamic(&stats->tor, EVCNT_TYPE_MISC, NULL,
   1919   1.98   msaitoh 	    stats->namebuf, "Total Octets Received");
   1920   1.98   msaitoh 	evcnt_attach_dynamic(&stats->gorc, EVCNT_TYPE_MISC, NULL,
   1921   1.98   msaitoh 	    stats->namebuf, "Good Octets Received");
   1922   1.98   msaitoh 	evcnt_attach_dynamic(&stats->tpr, EVCNT_TYPE_MISC, NULL,
   1923   1.98   msaitoh 	    stats->namebuf, "Total Packets Received");
   1924   1.98   msaitoh 	evcnt_attach_dynamic(&stats->gprc, EVCNT_TYPE_MISC, NULL,
   1925   1.98   msaitoh 	    stats->namebuf, "Good Packets Received");
   1926   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mprc, EVCNT_TYPE_MISC, NULL,
   1927   1.98   msaitoh 	    stats->namebuf, "Multicast Packets Received");
   1928   1.98   msaitoh 	evcnt_attach_dynamic(&stats->bprc, EVCNT_TYPE_MISC, NULL,
   1929   1.98   msaitoh 	    stats->namebuf, "Broadcast Packets Received");
   1930   1.98   msaitoh 	evcnt_attach_dynamic(&stats->prc64, EVCNT_TYPE_MISC, NULL,
   1931   1.98   msaitoh 	    stats->namebuf, "64 byte frames received ");
   1932   1.98   msaitoh 	evcnt_attach_dynamic(&stats->prc127, EVCNT_TYPE_MISC, NULL,
   1933   1.98   msaitoh 	    stats->namebuf, "65-127 byte frames received");
   1934   1.98   msaitoh 	evcnt_attach_dynamic(&stats->prc255, EVCNT_TYPE_MISC, NULL,
   1935   1.98   msaitoh 	    stats->namebuf, "128-255 byte frames received");
   1936   1.98   msaitoh 	evcnt_attach_dynamic(&stats->prc511, EVCNT_TYPE_MISC, NULL,
   1937   1.98   msaitoh 	    stats->namebuf, "256-511 byte frames received");
   1938   1.98   msaitoh 	evcnt_attach_dynamic(&stats->prc1023, EVCNT_TYPE_MISC, NULL,
   1939   1.98   msaitoh 	    stats->namebuf, "512-1023 byte frames received");
   1940   1.98   msaitoh 	evcnt_attach_dynamic(&stats->prc1522, EVCNT_TYPE_MISC, NULL,
   1941   1.98   msaitoh 	    stats->namebuf, "1023-1522 byte frames received");
   1942   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ruc, EVCNT_TYPE_MISC, NULL,
   1943   1.98   msaitoh 	    stats->namebuf, "Receive Undersized");
   1944   1.98   msaitoh 	evcnt_attach_dynamic(&stats->rfc, EVCNT_TYPE_MISC, NULL,
   1945   1.98   msaitoh 	    stats->namebuf, "Fragmented Packets Received ");
   1946   1.98   msaitoh 	evcnt_attach_dynamic(&stats->roc, EVCNT_TYPE_MISC, NULL,
   1947   1.98   msaitoh 	    stats->namebuf, "Oversized Packets Received");
   1948   1.98   msaitoh 	evcnt_attach_dynamic(&stats->rjc, EVCNT_TYPE_MISC, NULL,
   1949   1.98   msaitoh 	    stats->namebuf, "Received Jabber");
   1950   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mngprc, EVCNT_TYPE_MISC, NULL,
   1951   1.98   msaitoh 	    stats->namebuf, "Management Packets Received");
   1952   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mngpdc, EVCNT_TYPE_MISC, NULL,
   1953   1.98   msaitoh 	    stats->namebuf, "Management Packets Dropped");
   1954   1.98   msaitoh 	evcnt_attach_dynamic(&stats->xec, EVCNT_TYPE_MISC, NULL,
   1955   1.98   msaitoh 	    stats->namebuf, "Checksum Errors");
   1956    1.1    dyoung 
   1957   1.98   msaitoh 	/* Packet Transmission Stats */
   1958   1.98   msaitoh 	evcnt_attach_dynamic(&stats->gotc, EVCNT_TYPE_MISC, NULL,
   1959   1.98   msaitoh 	    stats->namebuf, "Good Octets Transmitted");
   1960   1.98   msaitoh 	evcnt_attach_dynamic(&stats->tpt, EVCNT_TYPE_MISC, NULL,
   1961   1.98   msaitoh 	    stats->namebuf, "Total Packets Transmitted");
   1962   1.98   msaitoh 	evcnt_attach_dynamic(&stats->gptc, EVCNT_TYPE_MISC, NULL,
   1963   1.98   msaitoh 	    stats->namebuf, "Good Packets Transmitted");
   1964   1.98   msaitoh 	evcnt_attach_dynamic(&stats->bptc, EVCNT_TYPE_MISC, NULL,
   1965   1.98   msaitoh 	    stats->namebuf, "Broadcast Packets Transmitted");
   1966   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mptc, EVCNT_TYPE_MISC, NULL,
   1967   1.98   msaitoh 	    stats->namebuf, "Multicast Packets Transmitted");
   1968   1.98   msaitoh 	evcnt_attach_dynamic(&stats->mngptc, EVCNT_TYPE_MISC, NULL,
   1969   1.98   msaitoh 	    stats->namebuf, "Management Packets Transmitted");
   1970   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ptc64, EVCNT_TYPE_MISC, NULL,
   1971   1.98   msaitoh 	    stats->namebuf, "64 byte frames transmitted ");
   1972   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ptc127, EVCNT_TYPE_MISC, NULL,
   1973   1.98   msaitoh 	    stats->namebuf, "65-127 byte frames transmitted");
   1974   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ptc255, EVCNT_TYPE_MISC, NULL,
   1975   1.98   msaitoh 	    stats->namebuf, "128-255 byte frames transmitted");
   1976   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ptc511, EVCNT_TYPE_MISC, NULL,
   1977   1.98   msaitoh 	    stats->namebuf, "256-511 byte frames transmitted");
   1978   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ptc1023, EVCNT_TYPE_MISC, NULL,
   1979   1.98   msaitoh 	    stats->namebuf, "512-1023 byte frames transmitted");
   1980   1.98   msaitoh 	evcnt_attach_dynamic(&stats->ptc1522, EVCNT_TYPE_MISC, NULL,
   1981   1.98   msaitoh 	    stats->namebuf, "1024-1522 byte frames transmitted");
   1982   1.99   msaitoh } /* ixgbe_add_hw_stats */
   1983   1.48   msaitoh 
   1984    1.1    dyoung static void
   1985   1.98   msaitoh ixgbe_clear_evcnt(struct adapter *adapter)
   1986    1.1    dyoung {
   1987   1.98   msaitoh 	struct tx_ring *txr = adapter->tx_rings;
   1988   1.98   msaitoh 	struct rx_ring *rxr = adapter->rx_rings;
   1989    1.1    dyoung 	struct ixgbe_hw *hw = &adapter->hw;
   1990   1.98   msaitoh 	struct ixgbe_hw_stats *stats = &adapter->stats.pf;
   1991   1.98   msaitoh 
   1992   1.98   msaitoh 	adapter->efbig_tx_dma_setup.ev_count = 0;
   1993   1.98   msaitoh 	adapter->mbuf_defrag_failed.ev_count = 0;
   1994   1.98   msaitoh 	adapter->efbig2_tx_dma_setup.ev_count = 0;
   1995   1.98   msaitoh 	adapter->einval_tx_dma_setup.ev_count = 0;
   1996   1.98   msaitoh 	adapter->other_tx_dma_setup.ev_count = 0;
   1997   1.98   msaitoh 	adapter->eagain_tx_dma_setup.ev_count = 0;
   1998   1.98   msaitoh 	adapter->enomem_tx_dma_setup.ev_count = 0;
   1999  1.134   msaitoh 	adapter->tso_err.ev_count = 0;
   2000   1.98   msaitoh 	adapter->watchdog_events.ev_count = 0;
   2001   1.98   msaitoh 	adapter->link_irq.ev_count = 0;
   2002  1.137   msaitoh 	adapter->link_sicount.ev_count = 0;
   2003  1.137   msaitoh 	adapter->mod_sicount.ev_count = 0;
   2004  1.137   msaitoh 	adapter->msf_sicount.ev_count = 0;
   2005  1.137   msaitoh 	adapter->phy_sicount.ev_count = 0;
   2006   1.98   msaitoh 
   2007   1.98   msaitoh 	txr = adapter->tx_rings;
   2008   1.98   msaitoh 	for (int i = 0; i < adapter->num_queues; i++, rxr++, txr++) {
   2009   1.98   msaitoh 		adapter->queues[i].irqs.ev_count = 0;
   2010  1.129   msaitoh 		adapter->queues[i].handleq.ev_count = 0;
   2011  1.129   msaitoh 		adapter->queues[i].req.ev_count = 0;
   2012   1.98   msaitoh 		txr->no_desc_avail.ev_count = 0;
   2013   1.98   msaitoh 		txr->total_packets.ev_count = 0;
   2014   1.98   msaitoh 		txr->tso_tx.ev_count = 0;
   2015   1.98   msaitoh #ifndef IXGBE_LEGACY_TX
   2016   1.98   msaitoh 		txr->pcq_drops.ev_count = 0;
   2017   1.45   msaitoh #endif
   2018  1.134   msaitoh 		txr->q_efbig_tx_dma_setup = 0;
   2019  1.134   msaitoh 		txr->q_mbuf_defrag_failed = 0;
   2020  1.134   msaitoh 		txr->q_efbig2_tx_dma_setup = 0;
   2021  1.134   msaitoh 		txr->q_einval_tx_dma_setup = 0;
   2022  1.134   msaitoh 		txr->q_other_tx_dma_setup = 0;
   2023  1.134   msaitoh 		txr->q_eagain_tx_dma_setup = 0;
   2024  1.134   msaitoh 		txr->q_enomem_tx_dma_setup = 0;
   2025  1.134   msaitoh 		txr->q_tso_err = 0;
   2026    1.1    dyoung 
   2027   1.98   msaitoh 		if (i < __arraycount(stats->mpc)) {
   2028   1.98   msaitoh 			stats->mpc[i].ev_count = 0;
   2029   1.98   msaitoh 			if (hw->mac.type == ixgbe_mac_82598EB)
   2030   1.98   msaitoh 				stats->rnbc[i].ev_count = 0;
   2031   1.98   msaitoh 		}
   2032   1.98   msaitoh 		if (i < __arraycount(stats->pxontxc)) {
   2033   1.98   msaitoh 			stats->pxontxc[i].ev_count = 0;
   2034   1.98   msaitoh 			stats->pxonrxc[i].ev_count = 0;
   2035   1.98   msaitoh 			stats->pxofftxc[i].ev_count = 0;
   2036   1.98   msaitoh 			stats->pxoffrxc[i].ev_count = 0;
   2037   1.98   msaitoh 			stats->pxon2offc[i].ev_count = 0;
   2038   1.98   msaitoh 		}
   2039   1.98   msaitoh 		if (i < __arraycount(stats->qprc)) {
   2040   1.98   msaitoh 			stats->qprc[i].ev_count = 0;
   2041   1.98   msaitoh 			stats->qptc[i].ev_count = 0;
   2042   1.98   msaitoh 			stats->qbrc[i].ev_count = 0;
   2043   1.98   msaitoh 			stats->qbtc[i].ev_count = 0;
   2044   1.98   msaitoh 			stats->qprdc[i].ev_count = 0;
   2045   1.98   msaitoh 		}
   2046   1.98   msaitoh 
   2047   1.98   msaitoh 		rxr->rx_packets.ev_count = 0;
   2048   1.98   msaitoh 		rxr->rx_bytes.ev_count = 0;
   2049   1.98   msaitoh 		rxr->rx_copies.ev_count = 0;
   2050   1.98   msaitoh 		rxr->no_jmbuf.ev_count = 0;
   2051   1.98   msaitoh 		rxr->rx_discarded.ev_count = 0;
   2052   1.98   msaitoh 	}
   2053   1.98   msaitoh 	stats->ipcs.ev_count = 0;
   2054   1.98   msaitoh 	stats->l4cs.ev_count = 0;
   2055   1.98   msaitoh 	stats->ipcs_bad.ev_count = 0;
   2056   1.98   msaitoh 	stats->l4cs_bad.ev_count = 0;
   2057   1.98   msaitoh 	stats->intzero.ev_count = 0;
   2058   1.98   msaitoh 	stats->legint.ev_count = 0;
   2059   1.98   msaitoh 	stats->crcerrs.ev_count = 0;
   2060   1.98   msaitoh 	stats->illerrc.ev_count = 0;
   2061   1.98   msaitoh 	stats->errbc.ev_count = 0;
   2062   1.98   msaitoh 	stats->mspdc.ev_count = 0;
   2063   1.98   msaitoh 	stats->mbsdc.ev_count = 0;
   2064   1.98   msaitoh 	stats->mpctotal.ev_count = 0;
   2065   1.98   msaitoh 	stats->mlfc.ev_count = 0;
   2066   1.98   msaitoh 	stats->mrfc.ev_count = 0;
   2067   1.98   msaitoh 	stats->rlec.ev_count = 0;
   2068   1.98   msaitoh 	stats->lxontxc.ev_count = 0;
   2069   1.98   msaitoh 	stats->lxonrxc.ev_count = 0;
   2070   1.98   msaitoh 	stats->lxofftxc.ev_count = 0;
   2071   1.98   msaitoh 	stats->lxoffrxc.ev_count = 0;
   2072   1.98   msaitoh 
   2073   1.98   msaitoh 	/* Packet Reception Stats */
   2074   1.98   msaitoh 	stats->tor.ev_count = 0;
   2075   1.98   msaitoh 	stats->gorc.ev_count = 0;
   2076   1.98   msaitoh 	stats->tpr.ev_count = 0;
   2077   1.98   msaitoh 	stats->gprc.ev_count = 0;
   2078   1.98   msaitoh 	stats->mprc.ev_count = 0;
   2079   1.98   msaitoh 	stats->bprc.ev_count = 0;
   2080   1.98   msaitoh 	stats->prc64.ev_count = 0;
   2081   1.98   msaitoh 	stats->prc127.ev_count = 0;
   2082   1.98   msaitoh 	stats->prc255.ev_count = 0;
   2083   1.98   msaitoh 	stats->prc511.ev_count = 0;
   2084   1.98   msaitoh 	stats->prc1023.ev_count = 0;
   2085   1.98   msaitoh 	stats->prc1522.ev_count = 0;
   2086   1.98   msaitoh 	stats->ruc.ev_count = 0;
   2087   1.98   msaitoh 	stats->rfc.ev_count = 0;
   2088   1.98   msaitoh 	stats->roc.ev_count = 0;
   2089   1.98   msaitoh 	stats->rjc.ev_count = 0;
   2090   1.98   msaitoh 	stats->mngprc.ev_count = 0;
   2091   1.98   msaitoh 	stats->mngpdc.ev_count = 0;
   2092   1.98   msaitoh 	stats->xec.ev_count = 0;
   2093   1.98   msaitoh 
   2094   1.98   msaitoh 	/* Packet Transmission Stats */
   2095   1.98   msaitoh 	stats->gotc.ev_count = 0;
   2096   1.98   msaitoh 	stats->tpt.ev_count = 0;
   2097   1.98   msaitoh 	stats->gptc.ev_count = 0;
   2098   1.98   msaitoh 	stats->bptc.ev_count = 0;
   2099   1.98   msaitoh 	stats->mptc.ev_count = 0;
   2100   1.98   msaitoh 	stats->mngptc.ev_count = 0;
   2101   1.98   msaitoh 	stats->ptc64.ev_count = 0;
   2102   1.98   msaitoh 	stats->ptc127.ev_count = 0;
   2103   1.98   msaitoh 	stats->ptc255.ev_count = 0;
   2104   1.98   msaitoh 	stats->ptc511.ev_count = 0;
   2105   1.98   msaitoh 	stats->ptc1023.ev_count = 0;
   2106   1.98   msaitoh 	stats->ptc1522.ev_count = 0;
   2107   1.98   msaitoh }
   2108   1.98   msaitoh 
   2109   1.99   msaitoh /************************************************************************
   2110   1.99   msaitoh  * ixgbe_sysctl_tdh_handler - Transmit Descriptor Head handler function
   2111   1.99   msaitoh  *
   2112   1.99   msaitoh  *   Retrieves the TDH value from the hardware
   2113   1.99   msaitoh  ************************************************************************/
   2114   1.98   msaitoh static int
   2115   1.98   msaitoh ixgbe_sysctl_tdh_handler(SYSCTLFN_ARGS)
   2116   1.98   msaitoh {
   2117   1.98   msaitoh 	struct sysctlnode node = *rnode;
   2118   1.99   msaitoh 	struct tx_ring *txr = (struct tx_ring *)node.sysctl_data;
   2119   1.98   msaitoh 	uint32_t val;
   2120   1.98   msaitoh 
   2121   1.99   msaitoh 	if (!txr)
   2122   1.99   msaitoh 		return (0);
   2123   1.99   msaitoh 
   2124   1.98   msaitoh 	val = IXGBE_READ_REG(&txr->adapter->hw, IXGBE_TDH(txr->me));
   2125   1.98   msaitoh 	node.sysctl_data = &val;
   2126   1.98   msaitoh 	return sysctl_lookup(SYSCTLFN_CALL(&node));
   2127   1.99   msaitoh } /* ixgbe_sysctl_tdh_handler */
   2128   1.98   msaitoh 
   2129   1.99   msaitoh /************************************************************************
   2130   1.99   msaitoh  * ixgbe_sysctl_tdt_handler - Transmit Descriptor Tail handler function
   2131   1.99   msaitoh  *
   2132   1.99   msaitoh  *   Retrieves the TDT value from the hardware
   2133   1.99   msaitoh  ************************************************************************/
   2134   1.98   msaitoh static int
   2135   1.98   msaitoh ixgbe_sysctl_tdt_handler(SYSCTLFN_ARGS)
   2136   1.98   msaitoh {
   2137   1.98   msaitoh 	struct sysctlnode node = *rnode;
   2138   1.99   msaitoh 	struct tx_ring *txr = (struct tx_ring *)node.sysctl_data;
   2139   1.98   msaitoh 	uint32_t val;
   2140    1.1    dyoung 
   2141   1.99   msaitoh 	if (!txr)
   2142   1.99   msaitoh 		return (0);
   2143   1.99   msaitoh 
   2144   1.98   msaitoh 	val = IXGBE_READ_REG(&txr->adapter->hw, IXGBE_TDT(txr->me));
   2145   1.98   msaitoh 	node.sysctl_data = &val;
   2146   1.98   msaitoh 	return sysctl_lookup(SYSCTLFN_CALL(&node));
   2147   1.99   msaitoh } /* ixgbe_sysctl_tdt_handler */
   2148   1.45   msaitoh 
   2149   1.99   msaitoh /************************************************************************
   2150   1.99   msaitoh  * ixgbe_sysctl_rdh_handler - Receive Descriptor Head handler function
   2151   1.99   msaitoh  *
   2152   1.99   msaitoh  *   Retrieves the RDH value from the hardware
   2153   1.99   msaitoh  ************************************************************************/
   2154   1.98   msaitoh static int
   2155   1.98   msaitoh ixgbe_sysctl_rdh_handler(SYSCTLFN_ARGS)
   2156   1.98   msaitoh {
   2157   1.98   msaitoh 	struct sysctlnode node = *rnode;
   2158   1.99   msaitoh 	struct rx_ring *rxr = (struct rx_ring *)node.sysctl_data;
   2159   1.98   msaitoh 	uint32_t val;
   2160    1.1    dyoung 
   2161   1.99   msaitoh 	if (!rxr)
   2162   1.99   msaitoh 		return (0);
   2163   1.99   msaitoh 
   2164   1.98   msaitoh 	val = IXGBE_READ_REG(&rxr->adapter->hw, IXGBE_RDH(rxr->me));
   2165   1.98   msaitoh 	node.sysctl_data = &val;
   2166   1.98   msaitoh 	return sysctl_lookup(SYSCTLFN_CALL(&node));
   2167   1.99   msaitoh } /* ixgbe_sysctl_rdh_handler */
   2168    1.1    dyoung 
   2169   1.99   msaitoh /************************************************************************
   2170   1.99   msaitoh  * ixgbe_sysctl_rdt_handler - Receive Descriptor Tail handler function
   2171   1.99   msaitoh  *
   2172   1.99   msaitoh  *   Retrieves the RDT value from the hardware
   2173   1.99   msaitoh  ************************************************************************/
   2174   1.98   msaitoh static int
   2175   1.98   msaitoh ixgbe_sysctl_rdt_handler(SYSCTLFN_ARGS)
   2176   1.98   msaitoh {
   2177   1.98   msaitoh 	struct sysctlnode node = *rnode;
   2178   1.99   msaitoh 	struct rx_ring *rxr = (struct rx_ring *)node.sysctl_data;
   2179   1.98   msaitoh 	uint32_t val;
   2180    1.1    dyoung 
   2181   1.99   msaitoh 	if (!rxr)
   2182   1.99   msaitoh 		return (0);
   2183   1.99   msaitoh 
   2184   1.98   msaitoh 	val = IXGBE_READ_REG(&rxr->adapter->hw, IXGBE_RDT(rxr->me));
   2185   1.98   msaitoh 	node.sysctl_data = &val;
   2186   1.98   msaitoh 	return sysctl_lookup(SYSCTLFN_CALL(&node));
   2187   1.99   msaitoh } /* ixgbe_sysctl_rdt_handler */
   2188    1.1    dyoung 
   2189   1.98   msaitoh #if 0	/* XXX Badly need to overhaul vlan(4) on NetBSD. */
   2190   1.99   msaitoh /************************************************************************
   2191   1.99   msaitoh  * ixgbe_register_vlan
   2192   1.99   msaitoh  *
   2193   1.99   msaitoh  *   Run via vlan config EVENT, it enables us to use the
   2194   1.99   msaitoh  *   HW Filter table since we can get the vlan id. This
   2195   1.99   msaitoh  *   just creates the entry in the soft version of the
   2196   1.99   msaitoh  *   VFTA, init will repopulate the real table.
   2197   1.99   msaitoh  ************************************************************************/
   2198   1.98   msaitoh static void
   2199   1.98   msaitoh ixgbe_register_vlan(void *arg, struct ifnet *ifp, u16 vtag)
   2200   1.98   msaitoh {
   2201   1.98   msaitoh 	struct adapter	*adapter = ifp->if_softc;
   2202   1.98   msaitoh 	u16		index, bit;
   2203   1.48   msaitoh 
   2204   1.98   msaitoh 	if (ifp->if_softc != arg)   /* Not our event */
   2205    1.1    dyoung 		return;
   2206    1.1    dyoung 
   2207   1.98   msaitoh 	if ((vtag == 0) || (vtag > 4095))	/* Invalid */
   2208   1.98   msaitoh 		return;
   2209    1.1    dyoung 
   2210   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   2211   1.98   msaitoh 	index = (vtag >> 5) & 0x7F;
   2212   1.98   msaitoh 	bit = vtag & 0x1F;
   2213   1.98   msaitoh 	adapter->shadow_vfta[index] |= (1 << bit);
   2214   1.98   msaitoh 	ixgbe_setup_vlan_hw_support(adapter);
   2215   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   2216   1.99   msaitoh } /* ixgbe_register_vlan */
   2217    1.1    dyoung 
   2218   1.99   msaitoh /************************************************************************
   2219   1.99   msaitoh  * ixgbe_unregister_vlan
   2220   1.99   msaitoh  *
   2221   1.99   msaitoh  *   Run via vlan unconfig EVENT, remove our entry in the soft vfta.
   2222   1.99   msaitoh  ************************************************************************/
   2223   1.98   msaitoh static void
   2224   1.98   msaitoh ixgbe_unregister_vlan(void *arg, struct ifnet *ifp, u16 vtag)
   2225   1.98   msaitoh {
   2226   1.98   msaitoh 	struct adapter	*adapter = ifp->if_softc;
   2227   1.98   msaitoh 	u16		index, bit;
   2228    1.1    dyoung 
   2229   1.98   msaitoh 	if (ifp->if_softc != arg)
   2230    1.1    dyoung 		return;
   2231    1.1    dyoung 
   2232   1.98   msaitoh 	if ((vtag == 0) || (vtag > 4095))	/* Invalid */
   2233   1.98   msaitoh 		return;
   2234    1.1    dyoung 
   2235   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   2236   1.98   msaitoh 	index = (vtag >> 5) & 0x7F;
   2237   1.98   msaitoh 	bit = vtag & 0x1F;
   2238   1.98   msaitoh 	adapter->shadow_vfta[index] &= ~(1 << bit);
   2239   1.98   msaitoh 	/* Re-init to load the changes */
   2240   1.98   msaitoh 	ixgbe_setup_vlan_hw_support(adapter);
   2241   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   2242   1.99   msaitoh } /* ixgbe_unregister_vlan */
   2243   1.98   msaitoh #endif
   2244   1.98   msaitoh 
   2245   1.98   msaitoh static void
   2246   1.98   msaitoh ixgbe_setup_vlan_hw_support(struct adapter *adapter)
   2247   1.98   msaitoh {
   2248   1.98   msaitoh 	struct ethercom *ec = &adapter->osdep.ec;
   2249   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   2250   1.98   msaitoh 	struct rx_ring	*rxr;
   2251   1.99   msaitoh 	int             i;
   2252   1.98   msaitoh 	u32		ctrl;
   2253   1.98   msaitoh 
   2254   1.98   msaitoh 
   2255   1.98   msaitoh 	/*
   2256   1.99   msaitoh 	 * We get here thru init_locked, meaning
   2257   1.99   msaitoh 	 * a soft reset, this has already cleared
   2258   1.99   msaitoh 	 * the VFTA and other state, so if there
   2259   1.99   msaitoh 	 * have been no vlan's registered do nothing.
   2260   1.99   msaitoh 	 */
   2261   1.98   msaitoh 	if (!VLAN_ATTACHED(&adapter->osdep.ec))
   2262   1.98   msaitoh 		return;
   2263    1.1    dyoung 
   2264   1.98   msaitoh 	/* Setup the queues for vlans */
   2265  1.115   msaitoh 	if (ec->ec_capenable & ETHERCAP_VLAN_HWTAGGING) {
   2266  1.115   msaitoh 		for (i = 0; i < adapter->num_queues; i++) {
   2267  1.115   msaitoh 			rxr = &adapter->rx_rings[i];
   2268  1.115   msaitoh 			/* On 82599 the VLAN enable is per/queue in RXDCTL */
   2269  1.115   msaitoh 			if (hw->mac.type != ixgbe_mac_82598EB) {
   2270  1.115   msaitoh 				ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxr->me));
   2271  1.115   msaitoh 				ctrl |= IXGBE_RXDCTL_VME;
   2272  1.115   msaitoh 				IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxr->me), ctrl);
   2273  1.115   msaitoh 			}
   2274  1.115   msaitoh 			rxr->vtag_strip = TRUE;
   2275   1.98   msaitoh 		}
   2276    1.1    dyoung 	}
   2277    1.1    dyoung 
   2278   1.98   msaitoh 	if ((ec->ec_capenable & ETHERCAP_VLAN_HWFILTER) == 0)
   2279   1.98   msaitoh 		return;
   2280   1.98   msaitoh 	/*
   2281   1.99   msaitoh 	 * A soft reset zero's out the VFTA, so
   2282   1.99   msaitoh 	 * we need to repopulate it now.
   2283   1.99   msaitoh 	 */
   2284   1.99   msaitoh 	for (i = 0; i < IXGBE_VFTA_SIZE; i++)
   2285   1.98   msaitoh 		if (adapter->shadow_vfta[i] != 0)
   2286   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_VFTA(i),
   2287   1.98   msaitoh 			    adapter->shadow_vfta[i]);
   2288   1.22   msaitoh 
   2289   1.98   msaitoh 	ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
   2290   1.98   msaitoh 	/* Enable the Filter Table if enabled */
   2291   1.98   msaitoh 	if (ec->ec_capenable & ETHERCAP_VLAN_HWFILTER) {
   2292   1.98   msaitoh 		ctrl &= ~IXGBE_VLNCTRL_CFIEN;
   2293   1.98   msaitoh 		ctrl |= IXGBE_VLNCTRL_VFE;
   2294    1.1    dyoung 	}
   2295    1.1    dyoung 	if (hw->mac.type == ixgbe_mac_82598EB)
   2296   1.98   msaitoh 		ctrl |= IXGBE_VLNCTRL_VME;
   2297   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
   2298   1.99   msaitoh } /* ixgbe_setup_vlan_hw_support */
   2299    1.1    dyoung 
   2300   1.99   msaitoh /************************************************************************
   2301   1.99   msaitoh  * ixgbe_get_slot_info
   2302   1.99   msaitoh  *
   2303   1.99   msaitoh  *   Get the width and transaction speed of
   2304   1.99   msaitoh  *   the slot this adapter is plugged into.
   2305   1.99   msaitoh  ************************************************************************/
   2306   1.98   msaitoh static void
   2307   1.98   msaitoh ixgbe_get_slot_info(struct adapter *adapter)
   2308   1.98   msaitoh {
   2309   1.98   msaitoh 	device_t		dev = adapter->dev;
   2310   1.98   msaitoh 	struct ixgbe_hw		*hw = &adapter->hw;
   2311   1.99   msaitoh 	u32                   offset;
   2312   1.98   msaitoh 	u16			link;
   2313   1.99   msaitoh 	int                   bus_info_valid = TRUE;
   2314   1.99   msaitoh 
   2315   1.99   msaitoh 	/* Some devices are behind an internal bridge */
   2316   1.99   msaitoh 	switch (hw->device_id) {
   2317   1.99   msaitoh 	case IXGBE_DEV_ID_82599_SFP_SF_QP:
   2318   1.99   msaitoh 	case IXGBE_DEV_ID_82599_QSFP_SF_QP:
   2319   1.99   msaitoh 		goto get_parent_info;
   2320   1.99   msaitoh 	default:
   2321   1.99   msaitoh 		break;
   2322   1.99   msaitoh 	}
   2323    1.1    dyoung 
   2324   1.99   msaitoh 	ixgbe_get_bus_info(hw);
   2325   1.99   msaitoh 
   2326   1.99   msaitoh 	/*
   2327   1.99   msaitoh 	 * Some devices don't use PCI-E, but there is no need
   2328   1.99   msaitoh 	 * to display "Unknown" for bus speed and width.
   2329   1.99   msaitoh 	 */
   2330   1.99   msaitoh 	switch (hw->mac.type) {
   2331   1.99   msaitoh 	case ixgbe_mac_X550EM_x:
   2332   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   2333   1.99   msaitoh 		return;
   2334   1.99   msaitoh 	default:
   2335   1.99   msaitoh 		goto display;
   2336    1.1    dyoung 	}
   2337    1.1    dyoung 
   2338   1.99   msaitoh get_parent_info:
   2339   1.98   msaitoh 	/*
   2340   1.99   msaitoh 	 * For the Quad port adapter we need to parse back
   2341   1.99   msaitoh 	 * up the PCI tree to find the speed of the expansion
   2342   1.99   msaitoh 	 * slot into which this adapter is plugged. A bit more work.
   2343   1.99   msaitoh 	 */
   2344   1.98   msaitoh 	dev = device_parent(device_parent(dev));
   2345   1.99   msaitoh #if 0
   2346   1.98   msaitoh #ifdef IXGBE_DEBUG
   2347   1.99   msaitoh 	device_printf(dev, "parent pcib = %x,%x,%x\n", pci_get_bus(dev),
   2348   1.99   msaitoh 	    pci_get_slot(dev), pci_get_function(dev));
   2349   1.98   msaitoh #endif
   2350   1.98   msaitoh 	dev = device_parent(device_parent(dev));
   2351   1.98   msaitoh #ifdef IXGBE_DEBUG
   2352   1.99   msaitoh 	device_printf(dev, "slot pcib = %x,%x,%x\n", pci_get_bus(dev),
   2353   1.99   msaitoh 	    pci_get_slot(dev), pci_get_function(dev));
   2354   1.99   msaitoh #endif
   2355    1.1    dyoung #endif
   2356   1.98   msaitoh 	/* Now get the PCI Express Capabilities offset */
   2357   1.99   msaitoh 	if (pci_get_capability(adapter->osdep.pc, adapter->osdep.tag,
   2358   1.99   msaitoh 	    PCI_CAP_PCIEXPRESS, &offset, NULL)) {
   2359   1.99   msaitoh 		/*
   2360   1.99   msaitoh 		 * Hmm...can't get PCI-Express capabilities.
   2361   1.99   msaitoh 		 * Falling back to default method.
   2362   1.99   msaitoh 		 */
   2363   1.99   msaitoh 		bus_info_valid = FALSE;
   2364   1.99   msaitoh 		ixgbe_get_bus_info(hw);
   2365   1.99   msaitoh 		goto display;
   2366   1.99   msaitoh 	}
   2367   1.98   msaitoh 	/* ...and read the Link Status Register */
   2368   1.99   msaitoh 	link = pci_conf_read(adapter->osdep.pc, adapter->osdep.tag,
   2369  1.120   msaitoh 	    offset + PCIE_LCSR) >> 16;
   2370  1.120   msaitoh 	ixgbe_set_pci_config_data_generic(hw, link);
   2371   1.52   msaitoh 
   2372   1.98   msaitoh display:
   2373   1.99   msaitoh 	device_printf(dev, "PCI Express Bus: Speed %s Width %s\n",
   2374   1.99   msaitoh 	    ((hw->bus.speed == ixgbe_bus_speed_8000)    ? "8.0GT/s" :
   2375   1.99   msaitoh 	     (hw->bus.speed == ixgbe_bus_speed_5000)    ? "5.0GT/s" :
   2376   1.99   msaitoh 	     (hw->bus.speed == ixgbe_bus_speed_2500)    ? "2.5GT/s" :
   2377   1.99   msaitoh 	     "Unknown"),
   2378   1.99   msaitoh 	    ((hw->bus.width == ixgbe_bus_width_pcie_x8) ? "x8" :
   2379   1.99   msaitoh 	     (hw->bus.width == ixgbe_bus_width_pcie_x4) ? "x4" :
   2380   1.99   msaitoh 	     (hw->bus.width == ixgbe_bus_width_pcie_x1) ? "x1" :
   2381   1.99   msaitoh 	     "Unknown"));
   2382   1.99   msaitoh 
   2383   1.99   msaitoh 	if (bus_info_valid) {
   2384   1.99   msaitoh 		if ((hw->device_id != IXGBE_DEV_ID_82599_SFP_SF_QP) &&
   2385   1.99   msaitoh 		    ((hw->bus.width <= ixgbe_bus_width_pcie_x4) &&
   2386   1.99   msaitoh 			(hw->bus.speed == ixgbe_bus_speed_2500))) {
   2387   1.99   msaitoh 			device_printf(dev, "PCI-Express bandwidth available"
   2388   1.99   msaitoh 			    " for this card\n     is not sufficient for"
   2389   1.99   msaitoh 			    " optimal performance.\n");
   2390   1.99   msaitoh 			device_printf(dev, "For optimal performance a x8 "
   2391   1.99   msaitoh 			    "PCIE, or x4 PCIE Gen2 slot is required.\n");
   2392   1.99   msaitoh 		}
   2393   1.99   msaitoh 		if ((hw->device_id == IXGBE_DEV_ID_82599_SFP_SF_QP) &&
   2394   1.99   msaitoh 		    ((hw->bus.width <= ixgbe_bus_width_pcie_x8) &&
   2395   1.99   msaitoh 			(hw->bus.speed < ixgbe_bus_speed_8000))) {
   2396   1.99   msaitoh 			device_printf(dev, "PCI-Express bandwidth available"
   2397   1.99   msaitoh 			    " for this card\n     is not sufficient for"
   2398   1.99   msaitoh 			    " optimal performance.\n");
   2399   1.99   msaitoh 			device_printf(dev, "For optimal performance a x8 "
   2400   1.99   msaitoh 			    "PCIE Gen3 slot is required.\n");
   2401   1.99   msaitoh 		}
   2402   1.99   msaitoh 	} else
   2403   1.99   msaitoh 		device_printf(dev, "Unable to determine slot speed/width. The speed/width reported are that of the internal switch.\n");
   2404   1.45   msaitoh 
   2405   1.45   msaitoh 	return;
   2406   1.99   msaitoh } /* ixgbe_get_slot_info */
   2407    1.1    dyoung 
   2408   1.99   msaitoh /************************************************************************
   2409   1.99   msaitoh  * ixgbe_enable_queue - MSI-X Interrupt Handlers and Tasklets
   2410   1.99   msaitoh  ************************************************************************/
   2411    1.1    dyoung static inline void
   2412    1.1    dyoung ixgbe_enable_queue(struct adapter *adapter, u32 vector)
   2413    1.1    dyoung {
   2414    1.1    dyoung 	struct ixgbe_hw *hw = &adapter->hw;
   2415  1.127  knakahar 	struct ix_queue *que = &adapter->queues[vector];
   2416   1.99   msaitoh 	u64             queue = (u64)(1ULL << vector);
   2417   1.99   msaitoh 	u32             mask;
   2418    1.1    dyoung 
   2419  1.139  knakahar 	mutex_enter(&que->dc_mtx);
   2420  1.139  knakahar 	if (que->disabled_count > 0 && --que->disabled_count > 0)
   2421  1.127  knakahar 		goto out;
   2422  1.127  knakahar 
   2423    1.1    dyoung 	if (hw->mac.type == ixgbe_mac_82598EB) {
   2424   1.98   msaitoh 		mask = (IXGBE_EIMS_RTX_QUEUE & queue);
   2425   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
   2426    1.1    dyoung 	} else {
   2427   1.98   msaitoh 		mask = (queue & 0xFFFFFFFF);
   2428   1.98   msaitoh 		if (mask)
   2429   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
   2430   1.98   msaitoh 		mask = (queue >> 32);
   2431   1.98   msaitoh 		if (mask)
   2432   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
   2433    1.1    dyoung 	}
   2434  1.127  knakahar out:
   2435  1.139  knakahar 	mutex_exit(&que->dc_mtx);
   2436   1.99   msaitoh } /* ixgbe_enable_queue */
   2437    1.1    dyoung 
   2438   1.99   msaitoh /************************************************************************
   2439  1.139  knakahar  * ixgbe_disable_queue_internal
   2440   1.99   msaitoh  ************************************************************************/
   2441   1.82   msaitoh static inline void
   2442  1.139  knakahar ixgbe_disable_queue_internal(struct adapter *adapter, u32 vector, bool nestok)
   2443    1.1    dyoung {
   2444    1.1    dyoung 	struct ixgbe_hw *hw = &adapter->hw;
   2445  1.127  knakahar 	struct ix_queue *que = &adapter->queues[vector];
   2446   1.99   msaitoh 	u64             queue = (u64)(1ULL << vector);
   2447   1.99   msaitoh 	u32             mask;
   2448    1.1    dyoung 
   2449  1.139  knakahar 	mutex_enter(&que->dc_mtx);
   2450  1.139  knakahar 
   2451  1.139  knakahar 	if (que->disabled_count > 0) {
   2452  1.139  knakahar 		if (nestok)
   2453  1.139  knakahar 			que->disabled_count++;
   2454  1.139  knakahar 		goto out;
   2455  1.139  knakahar 	}
   2456  1.139  knakahar 	que->disabled_count++;
   2457  1.127  knakahar 
   2458    1.1    dyoung 	if (hw->mac.type == ixgbe_mac_82598EB) {
   2459   1.98   msaitoh 		mask = (IXGBE_EIMS_RTX_QUEUE & queue);
   2460   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
   2461    1.1    dyoung 	} else {
   2462   1.98   msaitoh 		mask = (queue & 0xFFFFFFFF);
   2463   1.98   msaitoh 		if (mask)
   2464   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
   2465   1.98   msaitoh 		mask = (queue >> 32);
   2466   1.98   msaitoh 		if (mask)
   2467   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
   2468    1.1    dyoung 	}
   2469  1.127  knakahar out:
   2470  1.139  knakahar 	mutex_exit(&que->dc_mtx);
   2471  1.139  knakahar } /* ixgbe_disable_queue_internal */
   2472  1.139  knakahar 
   2473  1.139  knakahar /************************************************************************
   2474  1.139  knakahar  * ixgbe_disable_queue
   2475  1.139  knakahar  ************************************************************************/
   2476  1.139  knakahar static inline void
   2477  1.139  knakahar ixgbe_disable_queue(struct adapter *adapter, u32 vector)
   2478  1.139  knakahar {
   2479  1.139  knakahar 
   2480  1.139  knakahar 	ixgbe_disable_queue_internal(adapter, vector, true);
   2481   1.99   msaitoh } /* ixgbe_disable_queue */
   2482    1.1    dyoung 
   2483   1.99   msaitoh /************************************************************************
   2484  1.133  knakahar  * ixgbe_sched_handle_que - schedule deferred packet processing
   2485  1.133  knakahar  ************************************************************************/
   2486  1.133  knakahar static inline void
   2487  1.133  knakahar ixgbe_sched_handle_que(struct adapter *adapter, struct ix_queue *que)
   2488  1.133  knakahar {
   2489  1.133  knakahar 
   2490  1.133  knakahar 	if (adapter->txrx_use_workqueue) {
   2491  1.133  knakahar 		/*
   2492  1.133  knakahar 		 * adapter->que_wq is bound to each CPU instead of
   2493  1.133  knakahar 		 * each NIC queue to reduce workqueue kthread. As we
   2494  1.133  knakahar 		 * should consider about interrupt affinity in this
   2495  1.133  knakahar 		 * function, the workqueue kthread must be WQ_PERCPU.
   2496  1.133  knakahar 		 * If create WQ_PERCPU workqueue kthread for each NIC
   2497  1.133  knakahar 		 * queue, that number of created workqueue kthread is
   2498  1.133  knakahar 		 * (number of used NIC queue) * (number of CPUs) =
   2499  1.133  knakahar 		 * (number of CPUs) ^ 2 most often.
   2500  1.133  knakahar 		 *
   2501  1.133  knakahar 		 * The same NIC queue's interrupts are avoided by
   2502  1.133  knakahar 		 * masking the queue's interrupt. And different
   2503  1.133  knakahar 		 * NIC queue's interrupts use different struct work
   2504  1.133  knakahar 		 * (que->wq_cookie). So, "enqueued flag" to avoid
   2505  1.133  knakahar 		 * twice workqueue_enqueue() is not required .
   2506  1.133  knakahar 		 */
   2507  1.133  knakahar 		workqueue_enqueue(adapter->que_wq, &que->wq_cookie, curcpu());
   2508  1.133  knakahar 	} else {
   2509  1.133  knakahar 		softint_schedule(que->que_si);
   2510  1.133  knakahar 	}
   2511  1.133  knakahar }
   2512  1.133  knakahar 
   2513  1.133  knakahar /************************************************************************
   2514   1.99   msaitoh  * ixgbe_msix_que - MSI-X Queue Interrupt Service routine
   2515   1.99   msaitoh  ************************************************************************/
   2516   1.34   msaitoh static int
   2517    1.1    dyoung ixgbe_msix_que(void *arg)
   2518    1.1    dyoung {
   2519    1.1    dyoung 	struct ix_queue	*que = arg;
   2520    1.1    dyoung 	struct adapter  *adapter = que->adapter;
   2521   1.33   msaitoh 	struct ifnet    *ifp = adapter->ifp;
   2522    1.1    dyoung 	struct tx_ring	*txr = que->txr;
   2523    1.1    dyoung 	struct rx_ring	*rxr = que->rxr;
   2524   1.33   msaitoh 	bool		more;
   2525    1.1    dyoung 	u32		newitr = 0;
   2526    1.1    dyoung 
   2527   1.33   msaitoh 	/* Protect against spurious interrupts */
   2528   1.33   msaitoh 	if ((ifp->if_flags & IFF_RUNNING) == 0)
   2529   1.34   msaitoh 		return 0;
   2530   1.33   msaitoh 
   2531   1.24   msaitoh 	ixgbe_disable_queue(adapter, que->msix);
   2532   1.43   msaitoh 	++que->irqs.ev_count;
   2533    1.1    dyoung 
   2534   1.37     ozaki #ifdef __NetBSD__
   2535   1.37     ozaki 	/* Don't run ixgbe_rxeof in interrupt context */
   2536   1.37     ozaki 	more = true;
   2537   1.37     ozaki #else
   2538   1.33   msaitoh 	more = ixgbe_rxeof(que);
   2539   1.37     ozaki #endif
   2540    1.1    dyoung 
   2541    1.1    dyoung 	IXGBE_TX_LOCK(txr);
   2542   1.33   msaitoh 	ixgbe_txeof(txr);
   2543    1.1    dyoung 	IXGBE_TX_UNLOCK(txr);
   2544    1.1    dyoung 
   2545    1.1    dyoung 	/* Do AIM now? */
   2546    1.1    dyoung 
   2547   1.73   msaitoh 	if (adapter->enable_aim == false)
   2548    1.1    dyoung 		goto no_calc;
   2549    1.1    dyoung 	/*
   2550   1.99   msaitoh 	 * Do Adaptive Interrupt Moderation:
   2551   1.99   msaitoh 	 *  - Write out last calculated setting
   2552   1.99   msaitoh 	 *  - Calculate based on average size over
   2553   1.99   msaitoh 	 *    the last interval.
   2554   1.99   msaitoh 	 */
   2555   1.99   msaitoh 	if (que->eitr_setting)
   2556  1.124   msaitoh 		ixgbe_eitr_write(que, que->eitr_setting);
   2557   1.99   msaitoh 
   2558   1.98   msaitoh 	que->eitr_setting = 0;
   2559    1.1    dyoung 
   2560   1.98   msaitoh 	/* Idle, do nothing */
   2561   1.99   msaitoh         if ((txr->bytes == 0) && (rxr->bytes == 0))
   2562   1.99   msaitoh                 goto no_calc;
   2563    1.1    dyoung 
   2564    1.1    dyoung 	if ((txr->bytes) && (txr->packets))
   2565   1.98   msaitoh 		newitr = txr->bytes/txr->packets;
   2566    1.1    dyoung 	if ((rxr->bytes) && (rxr->packets))
   2567   1.99   msaitoh 		newitr = max(newitr, (rxr->bytes / rxr->packets));
   2568    1.1    dyoung 	newitr += 24; /* account for hardware frame, crc */
   2569    1.1    dyoung 
   2570    1.1    dyoung 	/* set an upper boundary */
   2571    1.1    dyoung 	newitr = min(newitr, 3000);
   2572    1.1    dyoung 
   2573    1.1    dyoung 	/* Be nice to the mid range */
   2574    1.1    dyoung 	if ((newitr > 300) && (newitr < 1200))
   2575    1.1    dyoung 		newitr = (newitr / 3);
   2576    1.1    dyoung 	else
   2577    1.1    dyoung 		newitr = (newitr / 2);
   2578    1.1    dyoung 
   2579  1.124   msaitoh 	/*
   2580  1.124   msaitoh 	 * When RSC is used, ITR interval must be larger than RSC_DELAY.
   2581  1.124   msaitoh 	 * Currently, we use 2us for RSC_DELAY. The minimum value is always
   2582  1.124   msaitoh 	 * greater than 2us on 100M (and 10M?(not documented)), but it's not
   2583  1.124   msaitoh 	 * on 1G and higher.
   2584  1.124   msaitoh 	 */
   2585  1.124   msaitoh 	if ((adapter->link_speed != IXGBE_LINK_SPEED_100_FULL)
   2586  1.124   msaitoh 	    && (adapter->link_speed != IXGBE_LINK_SPEED_10_FULL)) {
   2587  1.124   msaitoh 		if (newitr < IXGBE_MIN_RSC_EITR_10G1G)
   2588  1.124   msaitoh 			newitr = IXGBE_MIN_RSC_EITR_10G1G;
   2589  1.124   msaitoh 	}
   2590  1.124   msaitoh 
   2591    1.1    dyoung         /* save for next interrupt */
   2592    1.1    dyoung         que->eitr_setting = newitr;
   2593    1.1    dyoung 
   2594   1.98   msaitoh 	/* Reset state */
   2595   1.98   msaitoh 	txr->bytes = 0;
   2596   1.98   msaitoh 	txr->packets = 0;
   2597   1.98   msaitoh 	rxr->bytes = 0;
   2598   1.98   msaitoh 	rxr->packets = 0;
   2599    1.1    dyoung 
   2600    1.1    dyoung no_calc:
   2601  1.133  knakahar 	if (more)
   2602  1.133  knakahar 		ixgbe_sched_handle_que(adapter, que);
   2603  1.133  knakahar 	else
   2604    1.1    dyoung 		ixgbe_enable_queue(adapter, que->msix);
   2605   1.99   msaitoh 
   2606   1.34   msaitoh 	return 1;
   2607   1.99   msaitoh } /* ixgbe_msix_que */
   2608    1.1    dyoung 
   2609   1.99   msaitoh /************************************************************************
   2610   1.99   msaitoh  * ixgbe_media_status - Media Ioctl callback
   2611   1.98   msaitoh  *
   2612   1.99   msaitoh  *   Called whenever the user queries the status of
   2613   1.99   msaitoh  *   the interface using ifconfig.
   2614   1.99   msaitoh  ************************************************************************/
   2615   1.98   msaitoh static void
   2616   1.98   msaitoh ixgbe_media_status(struct ifnet *ifp, struct ifmediareq *ifmr)
   2617    1.1    dyoung {
   2618   1.98   msaitoh 	struct adapter *adapter = ifp->if_softc;
   2619    1.1    dyoung 	struct ixgbe_hw *hw = &adapter->hw;
   2620   1.98   msaitoh 	int layer;
   2621    1.1    dyoung 
   2622   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_media_status: begin");
   2623   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   2624   1.98   msaitoh 	ixgbe_update_link_status(adapter);
   2625    1.1    dyoung 
   2626    1.1    dyoung 	ifmr->ifm_status = IFM_AVALID;
   2627    1.1    dyoung 	ifmr->ifm_active = IFM_ETHER;
   2628    1.1    dyoung 
   2629    1.1    dyoung 	if (!adapter->link_active) {
   2630   1.68   msaitoh 		ifmr->ifm_active |= IFM_NONE;
   2631    1.1    dyoung 		IXGBE_CORE_UNLOCK(adapter);
   2632    1.1    dyoung 		return;
   2633    1.1    dyoung 	}
   2634    1.1    dyoung 
   2635    1.1    dyoung 	ifmr->ifm_status |= IFM_ACTIVE;
   2636   1.45   msaitoh 	layer = adapter->phy_layer;
   2637    1.1    dyoung 
   2638   1.43   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_T ||
   2639  1.103   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_5GBASE_T ||
   2640  1.103   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_2500BASE_T ||
   2641   1.43   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_1000BASE_T ||
   2642   1.99   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_100BASE_TX ||
   2643   1.99   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_10BASE_T)
   2644   1.43   msaitoh 		switch (adapter->link_speed) {
   2645   1.43   msaitoh 		case IXGBE_LINK_SPEED_10GB_FULL:
   2646   1.43   msaitoh 			ifmr->ifm_active |= IFM_10G_T | IFM_FDX;
   2647   1.43   msaitoh 			break;
   2648  1.103   msaitoh 		case IXGBE_LINK_SPEED_5GB_FULL:
   2649  1.103   msaitoh 			ifmr->ifm_active |= IFM_5000_T | IFM_FDX;
   2650  1.103   msaitoh 			break;
   2651  1.103   msaitoh 		case IXGBE_LINK_SPEED_2_5GB_FULL:
   2652  1.103   msaitoh 			ifmr->ifm_active |= IFM_2500_T | IFM_FDX;
   2653  1.103   msaitoh 			break;
   2654   1.43   msaitoh 		case IXGBE_LINK_SPEED_1GB_FULL:
   2655   1.33   msaitoh 			ifmr->ifm_active |= IFM_1000_T | IFM_FDX;
   2656   1.43   msaitoh 			break;
   2657   1.43   msaitoh 		case IXGBE_LINK_SPEED_100_FULL:
   2658   1.24   msaitoh 			ifmr->ifm_active |= IFM_100_TX | IFM_FDX;
   2659   1.43   msaitoh 			break;
   2660   1.99   msaitoh 		case IXGBE_LINK_SPEED_10_FULL:
   2661   1.99   msaitoh 			ifmr->ifm_active |= IFM_10_T | IFM_FDX;
   2662   1.99   msaitoh 			break;
   2663   1.43   msaitoh 		}
   2664   1.43   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU ||
   2665   1.43   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_SFP_ACTIVE_DA)
   2666   1.43   msaitoh 		switch (adapter->link_speed) {
   2667   1.43   msaitoh 		case IXGBE_LINK_SPEED_10GB_FULL:
   2668   1.43   msaitoh 			ifmr->ifm_active |= IFM_10G_TWINAX | IFM_FDX;
   2669   1.43   msaitoh 			break;
   2670   1.43   msaitoh 		}
   2671   1.43   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LR)
   2672   1.43   msaitoh 		switch (adapter->link_speed) {
   2673   1.43   msaitoh 		case IXGBE_LINK_SPEED_10GB_FULL:
   2674   1.43   msaitoh 			ifmr->ifm_active |= IFM_10G_LR | IFM_FDX;
   2675   1.43   msaitoh 			break;
   2676   1.43   msaitoh 		case IXGBE_LINK_SPEED_1GB_FULL:
   2677   1.43   msaitoh 			ifmr->ifm_active |= IFM_1000_LX | IFM_FDX;
   2678   1.43   msaitoh 			break;
   2679   1.43   msaitoh 		}
   2680   1.43   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LRM)
   2681   1.43   msaitoh 		switch (adapter->link_speed) {
   2682   1.43   msaitoh 		case IXGBE_LINK_SPEED_10GB_FULL:
   2683   1.43   msaitoh 			ifmr->ifm_active |= IFM_10G_LRM | IFM_FDX;
   2684   1.43   msaitoh 			break;
   2685   1.43   msaitoh 		case IXGBE_LINK_SPEED_1GB_FULL:
   2686   1.43   msaitoh 			ifmr->ifm_active |= IFM_1000_LX | IFM_FDX;
   2687   1.43   msaitoh 			break;
   2688   1.43   msaitoh 		}
   2689   1.43   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_SR ||
   2690   1.43   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_1000BASE_SX)
   2691   1.43   msaitoh 		switch (adapter->link_speed) {
   2692   1.43   msaitoh 		case IXGBE_LINK_SPEED_10GB_FULL:
   2693   1.43   msaitoh 			ifmr->ifm_active |= IFM_10G_SR | IFM_FDX;
   2694   1.43   msaitoh 			break;
   2695   1.43   msaitoh 		case IXGBE_LINK_SPEED_1GB_FULL:
   2696   1.28   msaitoh 			ifmr->ifm_active |= IFM_1000_SX | IFM_FDX;
   2697   1.43   msaitoh 			break;
   2698   1.43   msaitoh 		}
   2699   1.43   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_CX4)
   2700   1.43   msaitoh 		switch (adapter->link_speed) {
   2701   1.43   msaitoh 		case IXGBE_LINK_SPEED_10GB_FULL:
   2702   1.43   msaitoh 			ifmr->ifm_active |= IFM_10G_CX4 | IFM_FDX;
   2703   1.43   msaitoh 			break;
   2704   1.43   msaitoh 		}
   2705   1.43   msaitoh 	/*
   2706   1.99   msaitoh 	 * XXX: These need to use the proper media types once
   2707   1.99   msaitoh 	 * they're added.
   2708   1.99   msaitoh 	 */
   2709   1.43   msaitoh 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR)
   2710   1.43   msaitoh 		switch (adapter->link_speed) {
   2711   1.43   msaitoh 		case IXGBE_LINK_SPEED_10GB_FULL:
   2712   1.89   msaitoh #ifndef IFM_ETH_XTYPE
   2713   1.44   msaitoh 			ifmr->ifm_active |= IFM_10G_SR | IFM_FDX;
   2714   1.48   msaitoh #else
   2715   1.48   msaitoh 			ifmr->ifm_active |= IFM_10G_KR | IFM_FDX;
   2716   1.89   msaitoh #endif
   2717   1.48   msaitoh 			break;
   2718   1.48   msaitoh 		case IXGBE_LINK_SPEED_2_5GB_FULL:
   2719   1.48   msaitoh 			ifmr->ifm_active |= IFM_2500_KX | IFM_FDX;
   2720   1.48   msaitoh 			break;
   2721   1.48   msaitoh 		case IXGBE_LINK_SPEED_1GB_FULL:
   2722   1.48   msaitoh 			ifmr->ifm_active |= IFM_1000_KX | IFM_FDX;
   2723   1.48   msaitoh 			break;
   2724   1.48   msaitoh 		}
   2725   1.99   msaitoh 	else if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KX4 ||
   2726   1.99   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_2500BASE_KX ||
   2727   1.99   msaitoh 	    layer & IXGBE_PHYSICAL_LAYER_1000BASE_KX)
   2728   1.48   msaitoh 		switch (adapter->link_speed) {
   2729   1.48   msaitoh 		case IXGBE_LINK_SPEED_10GB_FULL:
   2730   1.89   msaitoh #ifndef IFM_ETH_XTYPE
   2731   1.89   msaitoh 			ifmr->ifm_active |= IFM_10G_CX4 | IFM_FDX;
   2732   1.89   msaitoh #else
   2733   1.48   msaitoh 			ifmr->ifm_active |= IFM_10G_KX4 | IFM_FDX;
   2734   1.89   msaitoh #endif
   2735   1.48   msaitoh 			break;
   2736   1.48   msaitoh 		case IXGBE_LINK_SPEED_2_5GB_FULL:
   2737   1.48   msaitoh 			ifmr->ifm_active |= IFM_2500_KX | IFM_FDX;
   2738   1.48   msaitoh 			break;
   2739   1.48   msaitoh 		case IXGBE_LINK_SPEED_1GB_FULL:
   2740   1.48   msaitoh 			ifmr->ifm_active |= IFM_1000_KX | IFM_FDX;
   2741   1.48   msaitoh 			break;
   2742   1.48   msaitoh 		}
   2743   1.98   msaitoh 
   2744   1.43   msaitoh 	/* If nothing is recognized... */
   2745   1.43   msaitoh #if 0
   2746   1.43   msaitoh 	if (IFM_SUBTYPE(ifmr->ifm_active) == 0)
   2747   1.43   msaitoh 		ifmr->ifm_active |= IFM_UNKNOWN;
   2748   1.43   msaitoh #endif
   2749   1.98   msaitoh 
   2750  1.104   msaitoh 	ifp->if_baudrate = ifmedia_baudrate(ifmr->ifm_active);
   2751  1.104   msaitoh 
   2752   1.44   msaitoh 	/* Display current flow control setting used on link */
   2753   1.44   msaitoh 	if (hw->fc.current_mode == ixgbe_fc_rx_pause ||
   2754   1.44   msaitoh 	    hw->fc.current_mode == ixgbe_fc_full)
   2755   1.43   msaitoh 		ifmr->ifm_active |= IFM_ETH_RXPAUSE;
   2756   1.44   msaitoh 	if (hw->fc.current_mode == ixgbe_fc_tx_pause ||
   2757   1.44   msaitoh 	    hw->fc.current_mode == ixgbe_fc_full)
   2758   1.43   msaitoh 		ifmr->ifm_active |= IFM_ETH_TXPAUSE;
   2759    1.1    dyoung 
   2760    1.1    dyoung 	IXGBE_CORE_UNLOCK(adapter);
   2761    1.1    dyoung 
   2762    1.1    dyoung 	return;
   2763   1.99   msaitoh } /* ixgbe_media_status */
   2764    1.1    dyoung 
   2765   1.99   msaitoh /************************************************************************
   2766   1.99   msaitoh  * ixgbe_media_change - Media Ioctl callback
   2767    1.1    dyoung  *
   2768   1.99   msaitoh  *   Called when the user changes speed/duplex using
   2769   1.99   msaitoh  *   media/mediopt option with ifconfig.
   2770   1.99   msaitoh  ************************************************************************/
   2771    1.1    dyoung static int
   2772   1.98   msaitoh ixgbe_media_change(struct ifnet *ifp)
   2773    1.1    dyoung {
   2774   1.99   msaitoh 	struct adapter   *adapter = ifp->if_softc;
   2775   1.99   msaitoh 	struct ifmedia   *ifm = &adapter->media;
   2776   1.99   msaitoh 	struct ixgbe_hw  *hw = &adapter->hw;
   2777   1.43   msaitoh 	ixgbe_link_speed speed = 0;
   2778   1.94   msaitoh 	ixgbe_link_speed link_caps = 0;
   2779   1.94   msaitoh 	bool negotiate = false;
   2780   1.94   msaitoh 	s32 err = IXGBE_NOT_IMPLEMENTED;
   2781    1.1    dyoung 
   2782    1.1    dyoung 	INIT_DEBUGOUT("ixgbe_media_change: begin");
   2783    1.1    dyoung 
   2784    1.1    dyoung 	if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
   2785    1.1    dyoung 		return (EINVAL);
   2786    1.1    dyoung 
   2787   1.44   msaitoh 	if (hw->phy.media_type == ixgbe_media_type_backplane)
   2788  1.144   msaitoh 		return (EPERM);
   2789   1.44   msaitoh 
   2790   1.43   msaitoh 	/*
   2791   1.99   msaitoh 	 * We don't actually need to check against the supported
   2792   1.99   msaitoh 	 * media types of the adapter; ifmedia will take care of
   2793   1.99   msaitoh 	 * that for us.
   2794   1.99   msaitoh 	 */
   2795   1.43   msaitoh 	switch (IFM_SUBTYPE(ifm->ifm_media)) {
   2796   1.98   msaitoh 	case IFM_AUTO:
   2797   1.98   msaitoh 		err = hw->mac.ops.get_link_capabilities(hw, &link_caps,
   2798   1.98   msaitoh 		    &negotiate);
   2799   1.98   msaitoh 		if (err != IXGBE_SUCCESS) {
   2800   1.98   msaitoh 			device_printf(adapter->dev, "Unable to determine "
   2801   1.98   msaitoh 			    "supported advertise speeds\n");
   2802   1.98   msaitoh 			return (ENODEV);
   2803   1.98   msaitoh 		}
   2804   1.98   msaitoh 		speed |= link_caps;
   2805   1.98   msaitoh 		break;
   2806   1.98   msaitoh 	case IFM_10G_T:
   2807   1.98   msaitoh 	case IFM_10G_LRM:
   2808   1.98   msaitoh 	case IFM_10G_LR:
   2809   1.98   msaitoh 	case IFM_10G_TWINAX:
   2810   1.90   msaitoh #ifndef IFM_ETH_XTYPE
   2811   1.98   msaitoh 	case IFM_10G_SR: /* KR, too */
   2812   1.98   msaitoh 	case IFM_10G_CX4: /* KX4 */
   2813   1.48   msaitoh #else
   2814   1.98   msaitoh 	case IFM_10G_KR:
   2815   1.98   msaitoh 	case IFM_10G_KX4:
   2816   1.90   msaitoh #endif
   2817   1.98   msaitoh 		speed |= IXGBE_LINK_SPEED_10GB_FULL;
   2818   1.98   msaitoh 		break;
   2819  1.103   msaitoh 	case IFM_5000_T:
   2820  1.103   msaitoh 		speed |= IXGBE_LINK_SPEED_5GB_FULL;
   2821  1.103   msaitoh 		break;
   2822  1.103   msaitoh 	case IFM_2500_T:
   2823   1.99   msaitoh 	case IFM_2500_KX:
   2824   1.99   msaitoh 		speed |= IXGBE_LINK_SPEED_2_5GB_FULL;
   2825   1.99   msaitoh 		break;
   2826   1.98   msaitoh 	case IFM_1000_T:
   2827   1.98   msaitoh 	case IFM_1000_LX:
   2828   1.98   msaitoh 	case IFM_1000_SX:
   2829   1.98   msaitoh 	case IFM_1000_KX:
   2830   1.98   msaitoh 		speed |= IXGBE_LINK_SPEED_1GB_FULL;
   2831   1.98   msaitoh 		break;
   2832   1.98   msaitoh 	case IFM_100_TX:
   2833   1.98   msaitoh 		speed |= IXGBE_LINK_SPEED_100_FULL;
   2834   1.98   msaitoh 		break;
   2835   1.99   msaitoh 	case IFM_10_T:
   2836   1.99   msaitoh 		speed |= IXGBE_LINK_SPEED_10_FULL;
   2837   1.99   msaitoh 		break;
   2838  1.140   msaitoh 	case IFM_NONE:
   2839  1.140   msaitoh 		break;
   2840   1.98   msaitoh 	default:
   2841   1.98   msaitoh 		goto invalid;
   2842   1.48   msaitoh 	}
   2843   1.43   msaitoh 
   2844   1.43   msaitoh 	hw->mac.autotry_restart = TRUE;
   2845   1.43   msaitoh 	hw->mac.ops.setup_link(hw, speed, TRUE);
   2846  1.109   msaitoh 	adapter->advertise = 0;
   2847  1.109   msaitoh 	if (IFM_SUBTYPE(ifm->ifm_media) != IFM_AUTO) {
   2848   1.51   msaitoh 		if ((speed & IXGBE_LINK_SPEED_10GB_FULL) != 0)
   2849   1.51   msaitoh 			adapter->advertise |= 1 << 2;
   2850   1.51   msaitoh 		if ((speed & IXGBE_LINK_SPEED_1GB_FULL) != 0)
   2851   1.51   msaitoh 			adapter->advertise |= 1 << 1;
   2852   1.51   msaitoh 		if ((speed & IXGBE_LINK_SPEED_100_FULL) != 0)
   2853   1.51   msaitoh 			adapter->advertise |= 1 << 0;
   2854   1.99   msaitoh 		if ((speed & IXGBE_LINK_SPEED_10_FULL) != 0)
   2855  1.102   msaitoh 			adapter->advertise |= 1 << 3;
   2856  1.103   msaitoh 		if ((speed & IXGBE_LINK_SPEED_2_5GB_FULL) != 0)
   2857  1.103   msaitoh 			adapter->advertise |= 1 << 4;
   2858  1.103   msaitoh 		if ((speed & IXGBE_LINK_SPEED_5GB_FULL) != 0)
   2859  1.103   msaitoh 			adapter->advertise |= 1 << 5;
   2860   1.51   msaitoh 	}
   2861    1.1    dyoung 
   2862    1.1    dyoung 	return (0);
   2863   1.43   msaitoh 
   2864   1.43   msaitoh invalid:
   2865   1.44   msaitoh 	device_printf(adapter->dev, "Invalid media type!\n");
   2866   1.98   msaitoh 
   2867   1.43   msaitoh 	return (EINVAL);
   2868   1.99   msaitoh } /* ixgbe_media_change */
   2869    1.1    dyoung 
   2870   1.99   msaitoh /************************************************************************
   2871   1.99   msaitoh  * ixgbe_set_promisc
   2872   1.99   msaitoh  ************************************************************************/
   2873    1.1    dyoung static void
   2874    1.1    dyoung ixgbe_set_promisc(struct adapter *adapter)
   2875    1.1    dyoung {
   2876   1.99   msaitoh 	struct ifnet *ifp = adapter->ifp;
   2877   1.99   msaitoh 	int          mcnt = 0;
   2878   1.99   msaitoh 	u32          rctl;
   2879   1.28   msaitoh 	struct ether_multi *enm;
   2880   1.28   msaitoh 	struct ether_multistep step;
   2881   1.28   msaitoh 	struct ethercom *ec = &adapter->osdep.ec;
   2882    1.1    dyoung 
   2883  1.105   msaitoh 	KASSERT(mutex_owned(&adapter->core_mtx));
   2884   1.99   msaitoh 	rctl = IXGBE_READ_REG(&adapter->hw, IXGBE_FCTRL);
   2885   1.99   msaitoh 	rctl &= (~IXGBE_FCTRL_UPE);
   2886   1.28   msaitoh 	if (ifp->if_flags & IFF_ALLMULTI)
   2887   1.28   msaitoh 		mcnt = MAX_NUM_MULTICAST_ADDRESSES;
   2888   1.28   msaitoh 	else {
   2889  1.105   msaitoh 		ETHER_LOCK(ec);
   2890   1.28   msaitoh 		ETHER_FIRST_MULTI(step, ec, enm);
   2891   1.28   msaitoh 		while (enm != NULL) {
   2892   1.28   msaitoh 			if (mcnt == MAX_NUM_MULTICAST_ADDRESSES)
   2893   1.28   msaitoh 				break;
   2894   1.28   msaitoh 			mcnt++;
   2895   1.28   msaitoh 			ETHER_NEXT_MULTI(step, enm);
   2896   1.28   msaitoh 		}
   2897  1.105   msaitoh 		ETHER_UNLOCK(ec);
   2898   1.28   msaitoh 	}
   2899   1.28   msaitoh 	if (mcnt < MAX_NUM_MULTICAST_ADDRESSES)
   2900   1.99   msaitoh 		rctl &= (~IXGBE_FCTRL_MPE);
   2901   1.99   msaitoh 	IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCTRL, rctl);
   2902    1.1    dyoung 
   2903    1.1    dyoung 	if (ifp->if_flags & IFF_PROMISC) {
   2904   1.99   msaitoh 		rctl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
   2905   1.99   msaitoh 		IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCTRL, rctl);
   2906    1.1    dyoung 	} else if (ifp->if_flags & IFF_ALLMULTI) {
   2907   1.99   msaitoh 		rctl |= IXGBE_FCTRL_MPE;
   2908   1.99   msaitoh 		rctl &= ~IXGBE_FCTRL_UPE;
   2909   1.99   msaitoh 		IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCTRL, rctl);
   2910   1.99   msaitoh 	}
   2911   1.99   msaitoh } /* ixgbe_set_promisc */
   2912   1.99   msaitoh 
   2913   1.99   msaitoh /************************************************************************
   2914   1.99   msaitoh  * ixgbe_msix_link - Link status change ISR (MSI/MSI-X)
   2915   1.99   msaitoh  ************************************************************************/
   2916   1.98   msaitoh static int
   2917   1.98   msaitoh ixgbe_msix_link(void *arg)
   2918   1.98   msaitoh {
   2919   1.98   msaitoh 	struct adapter	*adapter = arg;
   2920   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   2921   1.99   msaitoh 	u32		eicr, eicr_mask;
   2922   1.99   msaitoh 	s32             retval;
   2923   1.98   msaitoh 
   2924   1.98   msaitoh 	++adapter->link_irq.ev_count;
   2925   1.98   msaitoh 
   2926   1.98   msaitoh 	/* Pause other interrupts */
   2927   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_OTHER);
   2928    1.1    dyoung 
   2929   1.98   msaitoh 	/* First get the cause */
   2930  1.125  knakahar 	/*
   2931  1.125  knakahar 	 * The specifications of 82598, 82599, X540 and X550 say EICS register
   2932  1.125  knakahar 	 * is write only. However, Linux says it is a workaround for silicon
   2933  1.125  knakahar 	 * errata to read EICS instead of EICR to get interrupt cause. It seems
   2934  1.125  knakahar 	 * there is a problem about read clear mechanism for EICR register.
   2935  1.125  knakahar 	 */
   2936   1.99   msaitoh 	eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
   2937   1.98   msaitoh 	/* Be sure the queue bits are not cleared */
   2938   1.99   msaitoh 	eicr &= ~IXGBE_EICR_RTX_QUEUE;
   2939   1.98   msaitoh 	/* Clear interrupt with write */
   2940   1.99   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
   2941    1.1    dyoung 
   2942   1.98   msaitoh 	/* Link status change */
   2943   1.99   msaitoh 	if (eicr & IXGBE_EICR_LSC) {
   2944   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
   2945   1.98   msaitoh 		softint_schedule(adapter->link_si);
   2946   1.98   msaitoh 	}
   2947    1.1    dyoung 
   2948   1.98   msaitoh 	if (adapter->hw.mac.type != ixgbe_mac_82598EB) {
   2949   1.99   msaitoh 		if ((adapter->feat_en & IXGBE_FEATURE_FDIR) &&
   2950   1.99   msaitoh 		    (eicr & IXGBE_EICR_FLOW_DIR)) {
   2951   1.98   msaitoh 			/* This is probably overkill :) */
   2952   1.99   msaitoh 			if (!atomic_cas_uint(&adapter->fdir_reinit, 0, 1))
   2953   1.98   msaitoh 				return 1;
   2954   1.98   msaitoh 			/* Disable the interrupt */
   2955   1.99   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
   2956   1.98   msaitoh 			softint_schedule(adapter->fdir_si);
   2957   1.99   msaitoh 		}
   2958   1.99   msaitoh 
   2959   1.99   msaitoh 		if (eicr & IXGBE_EICR_ECC) {
   2960   1.99   msaitoh 			device_printf(adapter->dev,
   2961   1.99   msaitoh 			    "CRITICAL: ECC ERROR!! Please Reboot!!\n");
   2962   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
   2963   1.98   msaitoh 		}
   2964    1.1    dyoung 
   2965   1.98   msaitoh 		/* Check for over temp condition */
   2966   1.99   msaitoh 		if (adapter->feat_en & IXGBE_FEATURE_TEMP_SENSOR) {
   2967   1.99   msaitoh 			switch (adapter->hw.mac.type) {
   2968   1.99   msaitoh 			case ixgbe_mac_X550EM_a:
   2969   1.99   msaitoh 				if (!(eicr & IXGBE_EICR_GPI_SDP0_X550EM_a))
   2970   1.99   msaitoh 					break;
   2971   1.99   msaitoh 				IXGBE_WRITE_REG(hw, IXGBE_EIMC,
   2972   1.99   msaitoh 				    IXGBE_EICR_GPI_SDP0_X550EM_a);
   2973   1.99   msaitoh 				IXGBE_WRITE_REG(hw, IXGBE_EICR,
   2974   1.99   msaitoh 				    IXGBE_EICR_GPI_SDP0_X550EM_a);
   2975   1.99   msaitoh 				retval = hw->phy.ops.check_overtemp(hw);
   2976   1.99   msaitoh 				if (retval != IXGBE_ERR_OVERTEMP)
   2977   1.99   msaitoh 					break;
   2978   1.99   msaitoh 				device_printf(adapter->dev, "CRITICAL: OVER TEMP!! PHY IS SHUT DOWN!!\n");
   2979   1.99   msaitoh 				device_printf(adapter->dev, "System shutdown required!\n");
   2980   1.99   msaitoh 				break;
   2981   1.99   msaitoh 			default:
   2982   1.99   msaitoh 				if (!(eicr & IXGBE_EICR_TS))
   2983   1.99   msaitoh 					break;
   2984   1.99   msaitoh 				retval = hw->phy.ops.check_overtemp(hw);
   2985   1.99   msaitoh 				if (retval != IXGBE_ERR_OVERTEMP)
   2986   1.99   msaitoh 					break;
   2987   1.99   msaitoh 				device_printf(adapter->dev, "CRITICAL: OVER TEMP!! PHY IS SHUT DOWN!!\n");
   2988   1.99   msaitoh 				device_printf(adapter->dev, "System shutdown required!\n");
   2989   1.99   msaitoh 				IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_TS);
   2990   1.99   msaitoh 				break;
   2991   1.99   msaitoh 			}
   2992    1.1    dyoung 		}
   2993   1.99   msaitoh 
   2994   1.99   msaitoh 		/* Check for VF message */
   2995   1.99   msaitoh 		if ((adapter->feat_en & IXGBE_FEATURE_SRIOV) &&
   2996   1.99   msaitoh 		    (eicr & IXGBE_EICR_MAILBOX))
   2997   1.99   msaitoh 			softint_schedule(adapter->mbx_si);
   2998    1.1    dyoung 	}
   2999    1.1    dyoung 
   3000   1.99   msaitoh 	if (ixgbe_is_sfp(hw)) {
   3001   1.99   msaitoh 		/* Pluggable optics-related interrupt */
   3002   1.99   msaitoh 		if (hw->mac.type >= ixgbe_mac_X540)
   3003   1.99   msaitoh 			eicr_mask = IXGBE_EICR_GPI_SDP0_X540;
   3004   1.99   msaitoh 		else
   3005   1.99   msaitoh 			eicr_mask = IXGBE_EICR_GPI_SDP2_BY_MAC(hw);
   3006   1.98   msaitoh 
   3007   1.99   msaitoh 		if (eicr & eicr_mask) {
   3008   1.99   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr_mask);
   3009   1.98   msaitoh 			softint_schedule(adapter->mod_si);
   3010   1.99   msaitoh 		}
   3011   1.99   msaitoh 
   3012   1.99   msaitoh 		if ((hw->mac.type == ixgbe_mac_82599EB) &&
   3013   1.99   msaitoh 		    (eicr & IXGBE_EICR_GPI_SDP1_BY_MAC(hw))) {
   3014   1.99   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EICR,
   3015   1.99   msaitoh 			    IXGBE_EICR_GPI_SDP1_BY_MAC(hw));
   3016   1.98   msaitoh 			softint_schedule(adapter->msf_si);
   3017   1.98   msaitoh 		}
   3018   1.28   msaitoh 	}
   3019   1.28   msaitoh 
   3020   1.98   msaitoh 	/* Check for fan failure */
   3021   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_FAN_FAIL) {
   3022   1.99   msaitoh 		ixgbe_check_fan_failure(adapter, eicr, TRUE);
   3023   1.99   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1_BY_MAC(hw));
   3024   1.28   msaitoh 	}
   3025    1.1    dyoung 
   3026   1.98   msaitoh 	/* External PHY interrupt */
   3027   1.99   msaitoh 	if ((hw->phy.type == ixgbe_phy_x550em_ext_t) &&
   3028   1.99   msaitoh 	    (eicr & IXGBE_EICR_GPI_SDP0_X540)) {
   3029   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP0_X540);
   3030   1.98   msaitoh 		softint_schedule(adapter->phy_si);
   3031   1.98   msaitoh  	}
   3032   1.98   msaitoh 
   3033   1.98   msaitoh 	/* Re-enable other interrupts */
   3034   1.99   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_OTHER);
   3035   1.98   msaitoh 	return 1;
   3036   1.99   msaitoh } /* ixgbe_msix_link */
   3037    1.1    dyoung 
   3038  1.124   msaitoh static void
   3039  1.124   msaitoh ixgbe_eitr_write(struct ix_queue *que, uint32_t itr)
   3040  1.124   msaitoh {
   3041  1.124   msaitoh 	struct adapter *adapter = que->adapter;
   3042  1.124   msaitoh 
   3043  1.124   msaitoh         if (adapter->hw.mac.type == ixgbe_mac_82598EB)
   3044  1.124   msaitoh                 itr |= itr << 16;
   3045  1.124   msaitoh         else
   3046  1.124   msaitoh                 itr |= IXGBE_EITR_CNT_WDIS;
   3047  1.124   msaitoh 
   3048  1.144   msaitoh 	IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(que->msix), itr);
   3049  1.124   msaitoh }
   3050  1.124   msaitoh 
   3051  1.124   msaitoh 
   3052   1.99   msaitoh /************************************************************************
   3053   1.99   msaitoh  * ixgbe_sysctl_interrupt_rate_handler
   3054   1.99   msaitoh  ************************************************************************/
   3055   1.98   msaitoh static int
   3056   1.98   msaitoh ixgbe_sysctl_interrupt_rate_handler(SYSCTLFN_ARGS)
   3057    1.1    dyoung {
   3058   1.98   msaitoh 	struct sysctlnode node = *rnode;
   3059   1.99   msaitoh 	struct ix_queue *que = (struct ix_queue *)node.sysctl_data;
   3060  1.124   msaitoh 	struct adapter  *adapter = que->adapter;
   3061   1.98   msaitoh 	uint32_t reg, usec, rate;
   3062   1.98   msaitoh 	int error;
   3063   1.45   msaitoh 
   3064   1.98   msaitoh 	if (que == NULL)
   3065   1.98   msaitoh 		return 0;
   3066   1.98   msaitoh 	reg = IXGBE_READ_REG(&que->adapter->hw, IXGBE_EITR(que->msix));
   3067   1.98   msaitoh 	usec = ((reg & 0x0FF8) >> 3);
   3068   1.98   msaitoh 	if (usec > 0)
   3069   1.98   msaitoh 		rate = 500000 / usec;
   3070   1.98   msaitoh 	else
   3071   1.98   msaitoh 		rate = 0;
   3072   1.98   msaitoh 	node.sysctl_data = &rate;
   3073   1.98   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   3074   1.98   msaitoh 	if (error || newp == NULL)
   3075   1.98   msaitoh 		return error;
   3076   1.98   msaitoh 	reg &= ~0xfff; /* default, no limitation */
   3077   1.98   msaitoh 	if (rate > 0 && rate < 500000) {
   3078   1.98   msaitoh 		if (rate < 1000)
   3079   1.98   msaitoh 			rate = 1000;
   3080  1.124   msaitoh 		reg |= ((4000000/rate) & 0xff8);
   3081  1.124   msaitoh 		/*
   3082  1.124   msaitoh 		 * When RSC is used, ITR interval must be larger than
   3083  1.124   msaitoh 		 * RSC_DELAY. Currently, we use 2us for RSC_DELAY.
   3084  1.124   msaitoh 		 * The minimum value is always greater than 2us on 100M
   3085  1.124   msaitoh 		 * (and 10M?(not documented)), but it's not on 1G and higher.
   3086  1.124   msaitoh 		 */
   3087  1.124   msaitoh 		if ((adapter->link_speed != IXGBE_LINK_SPEED_100_FULL)
   3088  1.124   msaitoh 		    && (adapter->link_speed != IXGBE_LINK_SPEED_10_FULL)) {
   3089  1.124   msaitoh 			if ((adapter->num_queues > 1)
   3090  1.124   msaitoh 			    && (reg < IXGBE_MIN_RSC_EITR_10G1G))
   3091  1.124   msaitoh 				return EINVAL;
   3092  1.124   msaitoh 		}
   3093   1.98   msaitoh 		ixgbe_max_interrupt_rate = rate;
   3094  1.124   msaitoh 	} else
   3095  1.124   msaitoh 		ixgbe_max_interrupt_rate = 0;
   3096  1.124   msaitoh 	ixgbe_eitr_write(que, reg);
   3097   1.99   msaitoh 
   3098   1.99   msaitoh 	return (0);
   3099   1.99   msaitoh } /* ixgbe_sysctl_interrupt_rate_handler */
   3100   1.45   msaitoh 
   3101   1.98   msaitoh const struct sysctlnode *
   3102   1.98   msaitoh ixgbe_sysctl_instance(struct adapter *adapter)
   3103   1.98   msaitoh {
   3104   1.98   msaitoh 	const char *dvname;
   3105   1.98   msaitoh 	struct sysctllog **log;
   3106   1.98   msaitoh 	int rc;
   3107   1.98   msaitoh 	const struct sysctlnode *rnode;
   3108    1.1    dyoung 
   3109   1.98   msaitoh 	if (adapter->sysctltop != NULL)
   3110   1.98   msaitoh 		return adapter->sysctltop;
   3111    1.1    dyoung 
   3112   1.98   msaitoh 	log = &adapter->sysctllog;
   3113   1.98   msaitoh 	dvname = device_xname(adapter->dev);
   3114    1.1    dyoung 
   3115   1.98   msaitoh 	if ((rc = sysctl_createv(log, 0, NULL, &rnode,
   3116   1.98   msaitoh 	    0, CTLTYPE_NODE, dvname,
   3117   1.98   msaitoh 	    SYSCTL_DESCR("ixgbe information and settings"),
   3118   1.98   msaitoh 	    NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL)) != 0)
   3119   1.98   msaitoh 		goto err;
   3120   1.63   msaitoh 
   3121   1.98   msaitoh 	return rnode;
   3122   1.98   msaitoh err:
   3123   1.98   msaitoh 	printf("%s: sysctl_createv failed, rc = %d\n", __func__, rc);
   3124   1.98   msaitoh 	return NULL;
   3125   1.63   msaitoh }
   3126   1.63   msaitoh 
   3127   1.99   msaitoh /************************************************************************
   3128   1.99   msaitoh  * ixgbe_add_device_sysctls
   3129   1.99   msaitoh  ************************************************************************/
   3130   1.63   msaitoh static void
   3131   1.98   msaitoh ixgbe_add_device_sysctls(struct adapter *adapter)
   3132    1.1    dyoung {
   3133   1.99   msaitoh 	device_t               dev = adapter->dev;
   3134   1.99   msaitoh 	struct ixgbe_hw        *hw = &adapter->hw;
   3135   1.98   msaitoh 	struct sysctllog **log;
   3136   1.98   msaitoh 	const struct sysctlnode *rnode, *cnode;
   3137    1.1    dyoung 
   3138   1.98   msaitoh 	log = &adapter->sysctllog;
   3139    1.1    dyoung 
   3140   1.98   msaitoh 	if ((rnode = ixgbe_sysctl_instance(adapter)) == NULL) {
   3141   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl root\n");
   3142   1.98   msaitoh 		return;
   3143   1.98   msaitoh 	}
   3144    1.1    dyoung 
   3145   1.98   msaitoh 	if (sysctl_createv(log, 0, &rnode, &cnode,
   3146   1.98   msaitoh 	    CTLFLAG_READONLY, CTLTYPE_INT,
   3147   1.98   msaitoh 	    "num_rx_desc", SYSCTL_DESCR("Number of rx descriptors"),
   3148   1.98   msaitoh 	    NULL, 0, &adapter->num_rx_desc, 0, CTL_CREATE, CTL_EOL) != 0)
   3149   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl\n");
   3150    1.1    dyoung 
   3151   1.98   msaitoh 	if (sysctl_createv(log, 0, &rnode, &cnode,
   3152   1.98   msaitoh 	    CTLFLAG_READONLY, CTLTYPE_INT,
   3153   1.98   msaitoh 	    "num_queues", SYSCTL_DESCR("Number of queues"),
   3154   1.98   msaitoh 	    NULL, 0, &adapter->num_queues, 0, CTL_CREATE, CTL_EOL) != 0)
   3155   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl\n");
   3156   1.43   msaitoh 
   3157   1.98   msaitoh 	/* Sysctls for all devices */
   3158   1.99   msaitoh 	if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
   3159   1.99   msaitoh 	    CTLTYPE_INT, "fc", SYSCTL_DESCR(IXGBE_SYSCTL_DESC_SET_FC),
   3160   1.99   msaitoh 	    ixgbe_sysctl_flowcntl, 0, (void *)adapter, 0, CTL_CREATE,
   3161   1.99   msaitoh 	    CTL_EOL) != 0)
   3162   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl\n");
   3163   1.63   msaitoh 
   3164   1.99   msaitoh 	adapter->enable_aim = ixgbe_enable_aim;
   3165   1.99   msaitoh 	if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
   3166   1.99   msaitoh 	    CTLTYPE_BOOL, "enable_aim", SYSCTL_DESCR("Interrupt Moderation"),
   3167   1.98   msaitoh 	    NULL, 0, &adapter->enable_aim, 0, CTL_CREATE, CTL_EOL) != 0)
   3168   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl\n");
   3169    1.1    dyoung 
   3170   1.98   msaitoh 	if (sysctl_createv(log, 0, &rnode, &cnode,
   3171   1.98   msaitoh 	    CTLFLAG_READWRITE, CTLTYPE_INT,
   3172   1.98   msaitoh 	    "advertise_speed", SYSCTL_DESCR(IXGBE_SYSCTL_DESC_ADV_SPEED),
   3173   1.99   msaitoh 	    ixgbe_sysctl_advertise, 0, (void *)adapter, 0, CTL_CREATE,
   3174   1.99   msaitoh 	    CTL_EOL) != 0)
   3175   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl\n");
   3176    1.1    dyoung 
   3177  1.128  knakahar 	adapter->txrx_use_workqueue = ixgbe_txrx_workqueue;
   3178  1.128  knakahar 	if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
   3179  1.128  knakahar 	    CTLTYPE_BOOL, "txrx_workqueue", SYSCTL_DESCR("Use workqueue for packet processing"),
   3180  1.128  knakahar 	    NULL, 0, &adapter->txrx_use_workqueue, 0, CTL_CREATE, CTL_EOL) != 0)
   3181  1.128  knakahar 		aprint_error_dev(dev, "could not create sysctl\n");
   3182  1.128  knakahar 
   3183   1.98   msaitoh #ifdef IXGBE_DEBUG
   3184   1.98   msaitoh 	/* testing sysctls (for all devices) */
   3185   1.99   msaitoh 	if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
   3186   1.99   msaitoh 	    CTLTYPE_INT, "power_state", SYSCTL_DESCR("PCI Power State"),
   3187   1.99   msaitoh 	    ixgbe_sysctl_power_state, 0, (void *)adapter, 0, CTL_CREATE,
   3188   1.99   msaitoh 	    CTL_EOL) != 0)
   3189   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl\n");
   3190   1.45   msaitoh 
   3191   1.99   msaitoh 	if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READONLY,
   3192   1.99   msaitoh 	    CTLTYPE_STRING, "print_rss_config",
   3193   1.99   msaitoh 	    SYSCTL_DESCR("Prints RSS Configuration"),
   3194   1.99   msaitoh 	    ixgbe_sysctl_print_rss_config, 0, (void *)adapter, 0, CTL_CREATE,
   3195   1.99   msaitoh 	    CTL_EOL) != 0)
   3196   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl\n");
   3197   1.98   msaitoh #endif
   3198   1.98   msaitoh 	/* for X550 series devices */
   3199   1.98   msaitoh 	if (hw->mac.type >= ixgbe_mac_X550)
   3200   1.99   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
   3201   1.99   msaitoh 		    CTLTYPE_INT, "dmac", SYSCTL_DESCR("DMA Coalesce"),
   3202   1.99   msaitoh 		    ixgbe_sysctl_dmac, 0, (void *)adapter, 0, CTL_CREATE,
   3203   1.99   msaitoh 		    CTL_EOL) != 0)
   3204   1.98   msaitoh 			aprint_error_dev(dev, "could not create sysctl\n");
   3205    1.1    dyoung 
   3206   1.98   msaitoh 	/* for WoL-capable devices */
   3207   1.98   msaitoh 	if (hw->device_id == IXGBE_DEV_ID_X550EM_X_10G_T) {
   3208   1.99   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
   3209   1.99   msaitoh 		    CTLTYPE_BOOL, "wol_enable",
   3210   1.99   msaitoh 		    SYSCTL_DESCR("Enable/Disable Wake on LAN"),
   3211   1.99   msaitoh 		    ixgbe_sysctl_wol_enable, 0, (void *)adapter, 0, CTL_CREATE,
   3212   1.99   msaitoh 		    CTL_EOL) != 0)
   3213   1.98   msaitoh 			aprint_error_dev(dev, "could not create sysctl\n");
   3214    1.1    dyoung 
   3215   1.99   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
   3216   1.99   msaitoh 		    CTLTYPE_INT, "wufc",
   3217   1.99   msaitoh 		    SYSCTL_DESCR("Enable/Disable Wake Up Filters"),
   3218   1.99   msaitoh 		    ixgbe_sysctl_wufc, 0, (void *)adapter, 0, CTL_CREATE,
   3219   1.99   msaitoh 		    CTL_EOL) != 0)
   3220   1.98   msaitoh 			aprint_error_dev(dev, "could not create sysctl\n");
   3221   1.98   msaitoh 	}
   3222    1.1    dyoung 
   3223   1.98   msaitoh 	/* for X552/X557-AT devices */
   3224   1.98   msaitoh 	if (hw->device_id == IXGBE_DEV_ID_X550EM_X_10G_T) {
   3225   1.98   msaitoh 		const struct sysctlnode *phy_node;
   3226    1.1    dyoung 
   3227   1.99   msaitoh 		if (sysctl_createv(log, 0, &rnode, &phy_node, 0, CTLTYPE_NODE,
   3228   1.98   msaitoh 		    "phy", SYSCTL_DESCR("External PHY sysctls"),
   3229   1.98   msaitoh 		    NULL, 0, NULL, 0, CTL_CREATE, CTL_EOL) != 0) {
   3230   1.98   msaitoh 			aprint_error_dev(dev, "could not create sysctl\n");
   3231   1.98   msaitoh 			return;
   3232   1.98   msaitoh 		}
   3233    1.1    dyoung 
   3234   1.99   msaitoh 		if (sysctl_createv(log, 0, &phy_node, &cnode, CTLFLAG_READONLY,
   3235   1.99   msaitoh 		    CTLTYPE_INT, "temp",
   3236   1.99   msaitoh 		    SYSCTL_DESCR("Current External PHY Temperature (Celsius)"),
   3237   1.99   msaitoh 		    ixgbe_sysctl_phy_temp, 0, (void *)adapter, 0, CTL_CREATE,
   3238   1.99   msaitoh 		    CTL_EOL) != 0)
   3239   1.99   msaitoh 			aprint_error_dev(dev, "could not create sysctl\n");
   3240   1.99   msaitoh 
   3241   1.99   msaitoh 		if (sysctl_createv(log, 0, &phy_node, &cnode, CTLFLAG_READONLY,
   3242   1.99   msaitoh 		    CTLTYPE_INT, "overtemp_occurred",
   3243   1.99   msaitoh 		    SYSCTL_DESCR("External PHY High Temperature Event Occurred"),
   3244   1.99   msaitoh 		    ixgbe_sysctl_phy_overtemp_occurred, 0, (void *)adapter, 0,
   3245   1.99   msaitoh 		    CTL_CREATE, CTL_EOL) != 0)
   3246   1.98   msaitoh 			aprint_error_dev(dev, "could not create sysctl\n");
   3247   1.99   msaitoh 	}
   3248   1.33   msaitoh 
   3249   1.99   msaitoh 	if (adapter->feat_cap & IXGBE_FEATURE_EEE) {
   3250   1.99   msaitoh 		if (sysctl_createv(log, 0, &rnode, &cnode, CTLFLAG_READWRITE,
   3251   1.99   msaitoh 		    CTLTYPE_INT, "eee_state",
   3252   1.99   msaitoh 		    SYSCTL_DESCR("EEE Power Save State"),
   3253   1.99   msaitoh 		    ixgbe_sysctl_eee_state, 0, (void *)adapter, 0, CTL_CREATE,
   3254   1.99   msaitoh 		    CTL_EOL) != 0)
   3255   1.98   msaitoh 			aprint_error_dev(dev, "could not create sysctl\n");
   3256   1.98   msaitoh 	}
   3257   1.99   msaitoh } /* ixgbe_add_device_sysctls */
   3258    1.1    dyoung 
   3259   1.99   msaitoh /************************************************************************
   3260   1.99   msaitoh  * ixgbe_allocate_pci_resources
   3261   1.99   msaitoh  ************************************************************************/
   3262   1.98   msaitoh static int
   3263   1.98   msaitoh ixgbe_allocate_pci_resources(struct adapter *adapter,
   3264   1.98   msaitoh     const struct pci_attach_args *pa)
   3265    1.1    dyoung {
   3266   1.98   msaitoh 	pcireg_t	memtype;
   3267   1.99   msaitoh 	device_t dev = adapter->dev;
   3268   1.98   msaitoh 	bus_addr_t addr;
   3269   1.98   msaitoh 	int flags;
   3270    1.1    dyoung 
   3271   1.98   msaitoh 	memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, PCI_BAR(0));
   3272   1.98   msaitoh 	switch (memtype) {
   3273   1.98   msaitoh 	case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT:
   3274   1.98   msaitoh 	case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT:
   3275   1.98   msaitoh 		adapter->osdep.mem_bus_space_tag = pa->pa_memt;
   3276   1.98   msaitoh 		if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, PCI_BAR(0),
   3277   1.98   msaitoh 	              memtype, &addr, &adapter->osdep.mem_size, &flags) != 0)
   3278   1.98   msaitoh 			goto map_err;
   3279   1.98   msaitoh 		if ((flags & BUS_SPACE_MAP_PREFETCHABLE) != 0) {
   3280   1.98   msaitoh 			aprint_normal_dev(dev, "clearing prefetchable bit\n");
   3281   1.98   msaitoh 			flags &= ~BUS_SPACE_MAP_PREFETCHABLE;
   3282   1.98   msaitoh 		}
   3283   1.98   msaitoh 		if (bus_space_map(adapter->osdep.mem_bus_space_tag, addr,
   3284   1.98   msaitoh 		     adapter->osdep.mem_size, flags,
   3285   1.98   msaitoh 		     &adapter->osdep.mem_bus_space_handle) != 0) {
   3286   1.98   msaitoh map_err:
   3287   1.98   msaitoh 			adapter->osdep.mem_size = 0;
   3288   1.98   msaitoh 			aprint_error_dev(dev, "unable to map BAR0\n");
   3289   1.98   msaitoh 			return ENXIO;
   3290   1.98   msaitoh 		}
   3291   1.98   msaitoh 		break;
   3292   1.98   msaitoh 	default:
   3293   1.98   msaitoh 		aprint_error_dev(dev, "unexpected type on BAR0\n");
   3294   1.98   msaitoh 		return ENXIO;
   3295   1.98   msaitoh 	}
   3296    1.1    dyoung 
   3297   1.98   msaitoh 	return (0);
   3298   1.99   msaitoh } /* ixgbe_allocate_pci_resources */
   3299    1.1    dyoung 
   3300  1.119   msaitoh static void
   3301  1.119   msaitoh ixgbe_free_softint(struct adapter *adapter)
   3302  1.119   msaitoh {
   3303  1.119   msaitoh 	struct ix_queue *que = adapter->queues;
   3304  1.119   msaitoh 	struct tx_ring *txr = adapter->tx_rings;
   3305  1.119   msaitoh 	int i;
   3306  1.119   msaitoh 
   3307  1.119   msaitoh 	for (i = 0; i < adapter->num_queues; i++, que++, txr++) {
   3308  1.119   msaitoh 		if (!(adapter->feat_en & IXGBE_FEATURE_LEGACY_TX)) {
   3309  1.119   msaitoh 			if (txr->txr_si != NULL)
   3310  1.119   msaitoh 				softint_disestablish(txr->txr_si);
   3311  1.119   msaitoh 		}
   3312  1.119   msaitoh 		if (que->que_si != NULL)
   3313  1.119   msaitoh 			softint_disestablish(que->que_si);
   3314  1.119   msaitoh 	}
   3315  1.128  knakahar 	if (adapter->txr_wq != NULL)
   3316  1.128  knakahar 		workqueue_destroy(adapter->txr_wq);
   3317  1.128  knakahar 	if (adapter->txr_wq_enqueued != NULL)
   3318  1.128  knakahar 		percpu_free(adapter->txr_wq_enqueued, sizeof(u_int));
   3319  1.128  knakahar 	if (adapter->que_wq != NULL)
   3320  1.128  knakahar 		workqueue_destroy(adapter->que_wq);
   3321  1.119   msaitoh 
   3322  1.119   msaitoh 	/* Drain the Link queue */
   3323  1.119   msaitoh 	if (adapter->link_si != NULL) {
   3324  1.119   msaitoh 		softint_disestablish(adapter->link_si);
   3325  1.119   msaitoh 		adapter->link_si = NULL;
   3326  1.119   msaitoh 	}
   3327  1.119   msaitoh 	if (adapter->mod_si != NULL) {
   3328  1.119   msaitoh 		softint_disestablish(adapter->mod_si);
   3329  1.119   msaitoh 		adapter->mod_si = NULL;
   3330  1.119   msaitoh 	}
   3331  1.119   msaitoh 	if (adapter->msf_si != NULL) {
   3332  1.119   msaitoh 		softint_disestablish(adapter->msf_si);
   3333  1.119   msaitoh 		adapter->msf_si = NULL;
   3334  1.119   msaitoh 	}
   3335  1.119   msaitoh 	if (adapter->phy_si != NULL) {
   3336  1.119   msaitoh 		softint_disestablish(adapter->phy_si);
   3337  1.119   msaitoh 		adapter->phy_si = NULL;
   3338  1.119   msaitoh 	}
   3339  1.119   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_FDIR) {
   3340  1.119   msaitoh 		if (adapter->fdir_si != NULL) {
   3341  1.119   msaitoh 			softint_disestablish(adapter->fdir_si);
   3342  1.119   msaitoh 			adapter->fdir_si = NULL;
   3343  1.119   msaitoh 		}
   3344  1.119   msaitoh 	}
   3345  1.119   msaitoh 	if (adapter->feat_cap & IXGBE_FEATURE_SRIOV) {
   3346  1.119   msaitoh 		if (adapter->mbx_si != NULL) {
   3347  1.119   msaitoh 			softint_disestablish(adapter->mbx_si);
   3348  1.119   msaitoh 			adapter->mbx_si = NULL;
   3349  1.119   msaitoh 		}
   3350  1.119   msaitoh 	}
   3351  1.119   msaitoh } /* ixgbe_free_softint */
   3352  1.119   msaitoh 
   3353   1.99   msaitoh /************************************************************************
   3354   1.99   msaitoh  * ixgbe_detach - Device removal routine
   3355    1.1    dyoung  *
   3356   1.99   msaitoh  *   Called when the driver is being removed.
   3357   1.99   msaitoh  *   Stops the adapter and deallocates all the resources
   3358   1.99   msaitoh  *   that were allocated for driver operation.
   3359    1.1    dyoung  *
   3360   1.99   msaitoh  *   return 0 on success, positive on failure
   3361   1.99   msaitoh  ************************************************************************/
   3362   1.98   msaitoh static int
   3363   1.98   msaitoh ixgbe_detach(device_t dev, int flags)
   3364    1.1    dyoung {
   3365   1.98   msaitoh 	struct adapter *adapter = device_private(dev);
   3366   1.98   msaitoh 	struct rx_ring *rxr = adapter->rx_rings;
   3367   1.98   msaitoh 	struct tx_ring *txr = adapter->tx_rings;
   3368    1.1    dyoung 	struct ixgbe_hw *hw = &adapter->hw;
   3369   1.98   msaitoh 	struct ixgbe_hw_stats *stats = &adapter->stats.pf;
   3370   1.98   msaitoh 	u32	ctrl_ext;
   3371   1.28   msaitoh 
   3372   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_detach: begin");
   3373   1.98   msaitoh 	if (adapter->osdep.attached == false)
   3374   1.98   msaitoh 		return 0;
   3375   1.26   msaitoh 
   3376   1.99   msaitoh 	if (ixgbe_pci_iov_detach(dev) != 0) {
   3377   1.99   msaitoh 		device_printf(dev, "SR-IOV in use; detach first.\n");
   3378   1.99   msaitoh 		return (EBUSY);
   3379   1.99   msaitoh 	}
   3380   1.99   msaitoh 
   3381   1.98   msaitoh 	/* Stop the interface. Callouts are stopped in it. */
   3382   1.98   msaitoh 	ixgbe_ifstop(adapter->ifp, 1);
   3383   1.98   msaitoh #if NVLAN > 0
   3384   1.98   msaitoh 	/* Make sure VLANs are not using driver */
   3385   1.98   msaitoh 	if (!VLAN_ATTACHED(&adapter->osdep.ec))
   3386   1.98   msaitoh 		;	/* nothing to do: no VLANs */
   3387   1.98   msaitoh 	else if ((flags & (DETACH_SHUTDOWN|DETACH_FORCE)) != 0)
   3388   1.98   msaitoh 		vlan_ifdetach(adapter->ifp);
   3389   1.98   msaitoh 	else {
   3390   1.99   msaitoh 		aprint_error_dev(dev, "VLANs in use, detach first\n");
   3391   1.99   msaitoh 		return (EBUSY);
   3392   1.26   msaitoh 	}
   3393   1.98   msaitoh #endif
   3394   1.24   msaitoh 
   3395   1.98   msaitoh 	pmf_device_deregister(dev);
   3396   1.26   msaitoh 
   3397   1.98   msaitoh 	ether_ifdetach(adapter->ifp);
   3398   1.98   msaitoh 	/* Stop the adapter */
   3399   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   3400   1.98   msaitoh 	ixgbe_setup_low_power_mode(adapter);
   3401   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   3402   1.24   msaitoh 
   3403  1.119   msaitoh 	ixgbe_free_softint(adapter);
   3404  1.119   msaitoh 
   3405   1.98   msaitoh 	/* let hardware know driver is unloading */
   3406   1.98   msaitoh 	ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
   3407   1.98   msaitoh 	ctrl_ext &= ~IXGBE_CTRL_EXT_DRV_LOAD;
   3408   1.98   msaitoh 	IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT, ctrl_ext);
   3409   1.24   msaitoh 
   3410   1.98   msaitoh 	callout_halt(&adapter->timer, NULL);
   3411   1.99   msaitoh 
   3412   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_NETMAP)
   3413   1.99   msaitoh 		netmap_detach(adapter->ifp);
   3414   1.99   msaitoh 
   3415   1.98   msaitoh 	ixgbe_free_pci_resources(adapter);
   3416   1.98   msaitoh #if 0	/* XXX the NetBSD port is probably missing something here */
   3417   1.98   msaitoh 	bus_generic_detach(dev);
   3418   1.98   msaitoh #endif
   3419   1.98   msaitoh 	if_detach(adapter->ifp);
   3420   1.98   msaitoh 	if_percpuq_destroy(adapter->ipq);
   3421   1.24   msaitoh 
   3422   1.98   msaitoh 	sysctl_teardown(&adapter->sysctllog);
   3423   1.98   msaitoh 	evcnt_detach(&adapter->efbig_tx_dma_setup);
   3424   1.98   msaitoh 	evcnt_detach(&adapter->mbuf_defrag_failed);
   3425   1.98   msaitoh 	evcnt_detach(&adapter->efbig2_tx_dma_setup);
   3426   1.98   msaitoh 	evcnt_detach(&adapter->einval_tx_dma_setup);
   3427   1.98   msaitoh 	evcnt_detach(&adapter->other_tx_dma_setup);
   3428   1.98   msaitoh 	evcnt_detach(&adapter->eagain_tx_dma_setup);
   3429   1.98   msaitoh 	evcnt_detach(&adapter->enomem_tx_dma_setup);
   3430   1.98   msaitoh 	evcnt_detach(&adapter->watchdog_events);
   3431   1.98   msaitoh 	evcnt_detach(&adapter->tso_err);
   3432   1.98   msaitoh 	evcnt_detach(&adapter->link_irq);
   3433  1.137   msaitoh 	evcnt_detach(&adapter->link_sicount);
   3434  1.137   msaitoh 	evcnt_detach(&adapter->mod_sicount);
   3435  1.137   msaitoh 	evcnt_detach(&adapter->msf_sicount);
   3436  1.137   msaitoh 	evcnt_detach(&adapter->phy_sicount);
   3437    1.1    dyoung 
   3438   1.98   msaitoh 	txr = adapter->tx_rings;
   3439   1.98   msaitoh 	for (int i = 0; i < adapter->num_queues; i++, rxr++, txr++) {
   3440   1.98   msaitoh 		evcnt_detach(&adapter->queues[i].irqs);
   3441  1.129   msaitoh 		evcnt_detach(&adapter->queues[i].handleq);
   3442  1.129   msaitoh 		evcnt_detach(&adapter->queues[i].req);
   3443   1.98   msaitoh 		evcnt_detach(&txr->no_desc_avail);
   3444   1.98   msaitoh 		evcnt_detach(&txr->total_packets);
   3445   1.98   msaitoh 		evcnt_detach(&txr->tso_tx);
   3446   1.28   msaitoh #ifndef IXGBE_LEGACY_TX
   3447   1.98   msaitoh 		evcnt_detach(&txr->pcq_drops);
   3448   1.26   msaitoh #endif
   3449   1.34   msaitoh 
   3450   1.98   msaitoh 		if (i < __arraycount(stats->mpc)) {
   3451   1.98   msaitoh 			evcnt_detach(&stats->mpc[i]);
   3452   1.98   msaitoh 			if (hw->mac.type == ixgbe_mac_82598EB)
   3453   1.98   msaitoh 				evcnt_detach(&stats->rnbc[i]);
   3454   1.98   msaitoh 		}
   3455   1.98   msaitoh 		if (i < __arraycount(stats->pxontxc)) {
   3456   1.98   msaitoh 			evcnt_detach(&stats->pxontxc[i]);
   3457   1.98   msaitoh 			evcnt_detach(&stats->pxonrxc[i]);
   3458   1.98   msaitoh 			evcnt_detach(&stats->pxofftxc[i]);
   3459   1.98   msaitoh 			evcnt_detach(&stats->pxoffrxc[i]);
   3460   1.98   msaitoh 			evcnt_detach(&stats->pxon2offc[i]);
   3461   1.98   msaitoh 		}
   3462   1.98   msaitoh 		if (i < __arraycount(stats->qprc)) {
   3463   1.98   msaitoh 			evcnt_detach(&stats->qprc[i]);
   3464   1.98   msaitoh 			evcnt_detach(&stats->qptc[i]);
   3465   1.98   msaitoh 			evcnt_detach(&stats->qbrc[i]);
   3466   1.98   msaitoh 			evcnt_detach(&stats->qbtc[i]);
   3467   1.98   msaitoh 			evcnt_detach(&stats->qprdc[i]);
   3468   1.34   msaitoh 		}
   3469   1.98   msaitoh 
   3470   1.98   msaitoh 		evcnt_detach(&rxr->rx_packets);
   3471   1.98   msaitoh 		evcnt_detach(&rxr->rx_bytes);
   3472   1.98   msaitoh 		evcnt_detach(&rxr->rx_copies);
   3473   1.98   msaitoh 		evcnt_detach(&rxr->no_jmbuf);
   3474   1.98   msaitoh 		evcnt_detach(&rxr->rx_discarded);
   3475    1.1    dyoung 	}
   3476   1.98   msaitoh 	evcnt_detach(&stats->ipcs);
   3477   1.98   msaitoh 	evcnt_detach(&stats->l4cs);
   3478   1.98   msaitoh 	evcnt_detach(&stats->ipcs_bad);
   3479   1.98   msaitoh 	evcnt_detach(&stats->l4cs_bad);
   3480   1.98   msaitoh 	evcnt_detach(&stats->intzero);
   3481   1.98   msaitoh 	evcnt_detach(&stats->legint);
   3482   1.98   msaitoh 	evcnt_detach(&stats->crcerrs);
   3483   1.98   msaitoh 	evcnt_detach(&stats->illerrc);
   3484   1.98   msaitoh 	evcnt_detach(&stats->errbc);
   3485   1.98   msaitoh 	evcnt_detach(&stats->mspdc);
   3486   1.98   msaitoh 	if (hw->mac.type >= ixgbe_mac_X550)
   3487   1.98   msaitoh 		evcnt_detach(&stats->mbsdc);
   3488   1.98   msaitoh 	evcnt_detach(&stats->mpctotal);
   3489   1.98   msaitoh 	evcnt_detach(&stats->mlfc);
   3490   1.98   msaitoh 	evcnt_detach(&stats->mrfc);
   3491   1.98   msaitoh 	evcnt_detach(&stats->rlec);
   3492   1.98   msaitoh 	evcnt_detach(&stats->lxontxc);
   3493   1.98   msaitoh 	evcnt_detach(&stats->lxonrxc);
   3494   1.98   msaitoh 	evcnt_detach(&stats->lxofftxc);
   3495   1.98   msaitoh 	evcnt_detach(&stats->lxoffrxc);
   3496   1.98   msaitoh 
   3497   1.98   msaitoh 	/* Packet Reception Stats */
   3498   1.98   msaitoh 	evcnt_detach(&stats->tor);
   3499   1.98   msaitoh 	evcnt_detach(&stats->gorc);
   3500   1.98   msaitoh 	evcnt_detach(&stats->tpr);
   3501   1.98   msaitoh 	evcnt_detach(&stats->gprc);
   3502   1.98   msaitoh 	evcnt_detach(&stats->mprc);
   3503   1.98   msaitoh 	evcnt_detach(&stats->bprc);
   3504   1.98   msaitoh 	evcnt_detach(&stats->prc64);
   3505   1.98   msaitoh 	evcnt_detach(&stats->prc127);
   3506   1.98   msaitoh 	evcnt_detach(&stats->prc255);
   3507   1.98   msaitoh 	evcnt_detach(&stats->prc511);
   3508   1.98   msaitoh 	evcnt_detach(&stats->prc1023);
   3509   1.98   msaitoh 	evcnt_detach(&stats->prc1522);
   3510   1.98   msaitoh 	evcnt_detach(&stats->ruc);
   3511   1.98   msaitoh 	evcnt_detach(&stats->rfc);
   3512   1.98   msaitoh 	evcnt_detach(&stats->roc);
   3513   1.98   msaitoh 	evcnt_detach(&stats->rjc);
   3514   1.98   msaitoh 	evcnt_detach(&stats->mngprc);
   3515   1.98   msaitoh 	evcnt_detach(&stats->mngpdc);
   3516   1.98   msaitoh 	evcnt_detach(&stats->xec);
   3517    1.1    dyoung 
   3518   1.98   msaitoh 	/* Packet Transmission Stats */
   3519   1.98   msaitoh 	evcnt_detach(&stats->gotc);
   3520   1.98   msaitoh 	evcnt_detach(&stats->tpt);
   3521   1.98   msaitoh 	evcnt_detach(&stats->gptc);
   3522   1.98   msaitoh 	evcnt_detach(&stats->bptc);
   3523   1.98   msaitoh 	evcnt_detach(&stats->mptc);
   3524   1.98   msaitoh 	evcnt_detach(&stats->mngptc);
   3525   1.98   msaitoh 	evcnt_detach(&stats->ptc64);
   3526   1.98   msaitoh 	evcnt_detach(&stats->ptc127);
   3527   1.98   msaitoh 	evcnt_detach(&stats->ptc255);
   3528   1.98   msaitoh 	evcnt_detach(&stats->ptc511);
   3529   1.98   msaitoh 	evcnt_detach(&stats->ptc1023);
   3530   1.98   msaitoh 	evcnt_detach(&stats->ptc1522);
   3531    1.1    dyoung 
   3532   1.98   msaitoh 	ixgbe_free_transmit_structures(adapter);
   3533   1.98   msaitoh 	ixgbe_free_receive_structures(adapter);
   3534  1.127  knakahar 	for (int i = 0; i < adapter->num_queues; i++) {
   3535  1.127  knakahar 		struct ix_queue * que = &adapter->queues[i];
   3536  1.139  knakahar 		mutex_destroy(&que->dc_mtx);
   3537  1.127  knakahar 	}
   3538   1.99   msaitoh 	free(adapter->queues, M_DEVBUF);
   3539   1.98   msaitoh 	free(adapter->mta, M_DEVBUF);
   3540    1.1    dyoung 
   3541   1.98   msaitoh 	IXGBE_CORE_LOCK_DESTROY(adapter);
   3542    1.1    dyoung 
   3543    1.1    dyoung 	return (0);
   3544   1.99   msaitoh } /* ixgbe_detach */
   3545    1.1    dyoung 
   3546   1.99   msaitoh /************************************************************************
   3547   1.99   msaitoh  * ixgbe_setup_low_power_mode - LPLU/WoL preparation
   3548   1.99   msaitoh  *
   3549   1.99   msaitoh  *   Prepare the adapter/port for LPLU and/or WoL
   3550   1.99   msaitoh  ************************************************************************/
   3551    1.1    dyoung static int
   3552   1.98   msaitoh ixgbe_setup_low_power_mode(struct adapter *adapter)
   3553    1.1    dyoung {
   3554   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   3555   1.99   msaitoh 	device_t        dev = adapter->dev;
   3556   1.99   msaitoh 	s32             error = 0;
   3557   1.98   msaitoh 
   3558   1.98   msaitoh 	KASSERT(mutex_owned(&adapter->core_mtx));
   3559   1.98   msaitoh 
   3560   1.98   msaitoh 	/* Limit power management flow to X550EM baseT */
   3561   1.99   msaitoh 	if (hw->device_id == IXGBE_DEV_ID_X550EM_X_10G_T &&
   3562   1.99   msaitoh 	    hw->phy.ops.enter_lplu) {
   3563   1.98   msaitoh 		/* X550EM baseT adapters need a special LPLU flow */
   3564   1.98   msaitoh 		hw->phy.reset_disable = true;
   3565   1.98   msaitoh 		ixgbe_stop(adapter);
   3566   1.98   msaitoh 		error = hw->phy.ops.enter_lplu(hw);
   3567   1.98   msaitoh 		if (error)
   3568   1.98   msaitoh 			device_printf(dev,
   3569   1.98   msaitoh 			    "Error entering LPLU: %d\n", error);
   3570   1.98   msaitoh 		hw->phy.reset_disable = false;
   3571   1.98   msaitoh 	} else {
   3572   1.98   msaitoh 		/* Just stop for other adapters */
   3573   1.98   msaitoh 		ixgbe_stop(adapter);
   3574   1.33   msaitoh 	}
   3575    1.1    dyoung 
   3576   1.98   msaitoh 	if (!hw->wol_enabled) {
   3577   1.98   msaitoh 		ixgbe_set_phy_power(hw, FALSE);
   3578   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
   3579   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
   3580   1.98   msaitoh 	} else {
   3581   1.98   msaitoh 		/* Turn off support for APM wakeup. (Using ACPI instead) */
   3582   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_GRC,
   3583   1.98   msaitoh 		    IXGBE_READ_REG(hw, IXGBE_GRC) & ~(u32)2);
   3584   1.34   msaitoh 
   3585   1.35   msaitoh 		/*
   3586   1.98   msaitoh 		 * Clear Wake Up Status register to prevent any previous wakeup
   3587   1.98   msaitoh 		 * events from waking us up immediately after we suspend.
   3588   1.33   msaitoh 		 */
   3589   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_WUS, 0xffffffff);
   3590   1.98   msaitoh 
   3591    1.1    dyoung 		/*
   3592   1.98   msaitoh 		 * Program the Wakeup Filter Control register with user filter
   3593   1.98   msaitoh 		 * settings
   3594   1.33   msaitoh 		 */
   3595   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_WUFC, adapter->wufc);
   3596   1.98   msaitoh 
   3597   1.98   msaitoh 		/* Enable wakeups and power management in Wakeup Control */
   3598   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_WUC,
   3599   1.98   msaitoh 		    IXGBE_WUC_WKEN | IXGBE_WUC_PME_EN);
   3600   1.98   msaitoh 
   3601    1.1    dyoung 	}
   3602    1.1    dyoung 
   3603   1.98   msaitoh 	return error;
   3604   1.99   msaitoh } /* ixgbe_setup_low_power_mode */
   3605   1.98   msaitoh 
   3606   1.99   msaitoh /************************************************************************
   3607   1.99   msaitoh  * ixgbe_shutdown - Shutdown entry point
   3608   1.99   msaitoh  ************************************************************************/
   3609   1.98   msaitoh #if 0 /* XXX NetBSD ought to register something like this through pmf(9) */
   3610   1.98   msaitoh static int
   3611   1.98   msaitoh ixgbe_shutdown(device_t dev)
   3612   1.98   msaitoh {
   3613   1.98   msaitoh 	struct adapter *adapter = device_private(dev);
   3614   1.98   msaitoh 	int error = 0;
   3615   1.34   msaitoh 
   3616   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_shutdown: begin");
   3617   1.34   msaitoh 
   3618   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   3619   1.98   msaitoh 	error = ixgbe_setup_low_power_mode(adapter);
   3620   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   3621    1.1    dyoung 
   3622   1.98   msaitoh 	return (error);
   3623   1.99   msaitoh } /* ixgbe_shutdown */
   3624   1.98   msaitoh #endif
   3625    1.1    dyoung 
   3626   1.99   msaitoh /************************************************************************
   3627   1.99   msaitoh  * ixgbe_suspend
   3628   1.99   msaitoh  *
   3629   1.99   msaitoh  *   From D0 to D3
   3630   1.99   msaitoh  ************************************************************************/
   3631   1.98   msaitoh static bool
   3632   1.98   msaitoh ixgbe_suspend(device_t dev, const pmf_qual_t *qual)
   3633    1.1    dyoung {
   3634   1.98   msaitoh 	struct adapter *adapter = device_private(dev);
   3635   1.99   msaitoh 	int            error = 0;
   3636   1.98   msaitoh 
   3637   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_suspend: begin");
   3638   1.98   msaitoh 
   3639   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   3640    1.1    dyoung 
   3641   1.98   msaitoh 	error = ixgbe_setup_low_power_mode(adapter);
   3642    1.1    dyoung 
   3643   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   3644   1.34   msaitoh 
   3645   1.98   msaitoh 	return (error);
   3646   1.99   msaitoh } /* ixgbe_suspend */
   3647    1.1    dyoung 
   3648   1.99   msaitoh /************************************************************************
   3649   1.99   msaitoh  * ixgbe_resume
   3650   1.99   msaitoh  *
   3651   1.99   msaitoh  *   From D3 to D0
   3652   1.99   msaitoh  ************************************************************************/
   3653   1.98   msaitoh static bool
   3654   1.98   msaitoh ixgbe_resume(device_t dev, const pmf_qual_t *qual)
   3655   1.98   msaitoh {
   3656   1.99   msaitoh 	struct adapter  *adapter = device_private(dev);
   3657   1.99   msaitoh 	struct ifnet    *ifp = adapter->ifp;
   3658   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   3659   1.99   msaitoh 	u32             wus;
   3660    1.1    dyoung 
   3661   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_resume: begin");
   3662   1.33   msaitoh 
   3663   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   3664   1.43   msaitoh 
   3665   1.98   msaitoh 	/* Read & clear WUS register */
   3666   1.98   msaitoh 	wus = IXGBE_READ_REG(hw, IXGBE_WUS);
   3667   1.98   msaitoh 	if (wus)
   3668   1.98   msaitoh 		device_printf(dev, "Woken up by (WUS): %#010x\n",
   3669   1.98   msaitoh 		    IXGBE_READ_REG(hw, IXGBE_WUS));
   3670   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_WUS, 0xffffffff);
   3671   1.98   msaitoh 	/* And clear WUFC until next low-power transition */
   3672   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
   3673    1.1    dyoung 
   3674    1.1    dyoung 	/*
   3675   1.98   msaitoh 	 * Required after D3->D0 transition;
   3676   1.98   msaitoh 	 * will re-advertise all previous advertised speeds
   3677   1.98   msaitoh 	 */
   3678   1.98   msaitoh 	if (ifp->if_flags & IFF_UP)
   3679   1.98   msaitoh 		ixgbe_init_locked(adapter);
   3680   1.34   msaitoh 
   3681   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   3682    1.1    dyoung 
   3683   1.98   msaitoh 	return true;
   3684   1.99   msaitoh } /* ixgbe_resume */
   3685    1.1    dyoung 
   3686   1.98   msaitoh /*
   3687   1.98   msaitoh  * Set the various hardware offload abilities.
   3688   1.98   msaitoh  *
   3689   1.98   msaitoh  * This takes the ifnet's if_capenable flags (e.g. set by the user using
   3690   1.98   msaitoh  * ifconfig) and indicates to the OS via the ifnet's if_hwassist field what
   3691   1.98   msaitoh  * mbuf offload flags the driver will understand.
   3692   1.98   msaitoh  */
   3693    1.1    dyoung static void
   3694   1.98   msaitoh ixgbe_set_if_hwassist(struct adapter *adapter)
   3695    1.1    dyoung {
   3696   1.98   msaitoh 	/* XXX */
   3697    1.1    dyoung }
   3698    1.1    dyoung 
   3699   1.99   msaitoh /************************************************************************
   3700   1.99   msaitoh  * ixgbe_init_locked - Init entry point
   3701   1.99   msaitoh  *
   3702   1.99   msaitoh  *   Used in two ways: It is used by the stack as an init
   3703   1.99   msaitoh  *   entry point in network interface structure. It is also
   3704   1.99   msaitoh  *   used by the driver as a hw/sw initialization routine to
   3705   1.99   msaitoh  *   get to a consistent state.
   3706    1.1    dyoung  *
   3707   1.99   msaitoh  *   return 0 on success, positive on failure
   3708   1.99   msaitoh  ************************************************************************/
   3709   1.98   msaitoh static void
   3710   1.98   msaitoh ixgbe_init_locked(struct adapter *adapter)
   3711    1.1    dyoung {
   3712   1.98   msaitoh 	struct ifnet   *ifp = adapter->ifp;
   3713   1.98   msaitoh 	device_t 	dev = adapter->dev;
   3714   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   3715   1.98   msaitoh 	struct tx_ring  *txr;
   3716   1.98   msaitoh 	struct rx_ring  *rxr;
   3717   1.98   msaitoh 	u32		txdctl, mhadd;
   3718   1.98   msaitoh 	u32		rxdctl, rxctrl;
   3719   1.99   msaitoh 	u32             ctrl_ext;
   3720  1.144   msaitoh 	int             i, j, err;
   3721    1.1    dyoung 
   3722   1.98   msaitoh 	/* XXX check IFF_UP and IFF_RUNNING, power-saving state! */
   3723    1.1    dyoung 
   3724   1.98   msaitoh 	KASSERT(mutex_owned(&adapter->core_mtx));
   3725   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_init_locked: begin");
   3726    1.1    dyoung 
   3727   1.98   msaitoh 	hw->adapter_stopped = FALSE;
   3728   1.98   msaitoh 	ixgbe_stop_adapter(hw);
   3729   1.98   msaitoh         callout_stop(&adapter->timer);
   3730    1.1    dyoung 
   3731   1.98   msaitoh 	/* XXX I moved this here from the SIOCSIFMTU case in ixgbe_ioctl(). */
   3732    1.1    dyoung 	adapter->max_frame_size =
   3733   1.98   msaitoh 		ifp->if_mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
   3734    1.1    dyoung 
   3735   1.98   msaitoh 	/* Queue indices may change with IOV mode */
   3736   1.99   msaitoh 	ixgbe_align_all_queue_indices(adapter);
   3737   1.99   msaitoh 
   3738   1.98   msaitoh 	/* reprogram the RAR[0] in case user changed it. */
   3739   1.98   msaitoh 	ixgbe_set_rar(hw, 0, hw->mac.addr, adapter->pool, IXGBE_RAH_AV);
   3740    1.1    dyoung 
   3741   1.98   msaitoh 	/* Get the latest mac address, User can use a LAA */
   3742   1.98   msaitoh 	memcpy(hw->mac.addr, CLLADDR(ifp->if_sadl),
   3743   1.98   msaitoh 	    IXGBE_ETH_LENGTH_OF_ADDRESS);
   3744   1.98   msaitoh 	ixgbe_set_rar(hw, 0, hw->mac.addr, adapter->pool, 1);
   3745   1.98   msaitoh 	hw->addr_ctrl.rar_used_count = 1;
   3746    1.1    dyoung 
   3747   1.98   msaitoh 	/* Set hardware offload abilities from ifnet flags */
   3748   1.98   msaitoh 	ixgbe_set_if_hwassist(adapter);
   3749   1.48   msaitoh 
   3750   1.98   msaitoh 	/* Prepare transmit descriptors and buffers */
   3751   1.98   msaitoh 	if (ixgbe_setup_transmit_structures(adapter)) {
   3752   1.98   msaitoh 		device_printf(dev, "Could not setup transmit structures\n");
   3753   1.98   msaitoh 		ixgbe_stop(adapter);
   3754   1.98   msaitoh 		return;
   3755   1.98   msaitoh 	}
   3756    1.1    dyoung 
   3757   1.98   msaitoh 	ixgbe_init_hw(hw);
   3758  1.144   msaitoh 
   3759   1.98   msaitoh 	ixgbe_initialize_iov(adapter);
   3760  1.144   msaitoh 
   3761   1.98   msaitoh 	ixgbe_initialize_transmit_units(adapter);
   3762    1.1    dyoung 
   3763   1.98   msaitoh 	/* Setup Multicast table */
   3764   1.98   msaitoh 	ixgbe_set_multi(adapter);
   3765   1.43   msaitoh 
   3766   1.98   msaitoh 	/* Determine the correct mbuf pool, based on frame size */
   3767   1.98   msaitoh 	if (adapter->max_frame_size <= MCLBYTES)
   3768   1.98   msaitoh 		adapter->rx_mbuf_sz = MCLBYTES;
   3769   1.98   msaitoh 	else
   3770   1.98   msaitoh 		adapter->rx_mbuf_sz = MJUMPAGESIZE;
   3771   1.43   msaitoh 
   3772   1.98   msaitoh 	/* Prepare receive descriptors and buffers */
   3773   1.98   msaitoh 	if (ixgbe_setup_receive_structures(adapter)) {
   3774   1.98   msaitoh 		device_printf(dev, "Could not setup receive structures\n");
   3775   1.98   msaitoh 		ixgbe_stop(adapter);
   3776   1.98   msaitoh 		return;
   3777   1.98   msaitoh 	}
   3778   1.43   msaitoh 
   3779   1.98   msaitoh 	/* Configure RX settings */
   3780   1.98   msaitoh 	ixgbe_initialize_receive_units(adapter);
   3781   1.43   msaitoh 
   3782   1.99   msaitoh 	/* Enable SDP & MSI-X interrupts based on adapter */
   3783   1.98   msaitoh 	ixgbe_config_gpie(adapter);
   3784   1.43   msaitoh 
   3785   1.98   msaitoh 	/* Set MTU size */
   3786   1.98   msaitoh 	if (ifp->if_mtu > ETHERMTU) {
   3787   1.98   msaitoh 		/* aka IXGBE_MAXFRS on 82599 and newer */
   3788   1.98   msaitoh 		mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
   3789   1.98   msaitoh 		mhadd &= ~IXGBE_MHADD_MFS_MASK;
   3790   1.98   msaitoh 		mhadd |= adapter->max_frame_size << IXGBE_MHADD_MFS_SHIFT;
   3791   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
   3792   1.55   msaitoh 	}
   3793   1.55   msaitoh 
   3794   1.98   msaitoh 	/* Now enable all the queues */
   3795  1.144   msaitoh 	for (i = 0; i < adapter->num_queues; i++) {
   3796   1.98   msaitoh 		txr = &adapter->tx_rings[i];
   3797   1.98   msaitoh 		txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(txr->me));
   3798   1.98   msaitoh 		txdctl |= IXGBE_TXDCTL_ENABLE;
   3799   1.98   msaitoh 		/* Set WTHRESH to 8, burst writeback */
   3800   1.98   msaitoh 		txdctl |= (8 << 16);
   3801   1.98   msaitoh 		/*
   3802   1.98   msaitoh 		 * When the internal queue falls below PTHRESH (32),
   3803   1.98   msaitoh 		 * start prefetching as long as there are at least
   3804   1.98   msaitoh 		 * HTHRESH (1) buffers ready. The values are taken
   3805   1.98   msaitoh 		 * from the Intel linux driver 3.8.21.
   3806   1.98   msaitoh 		 * Prefetching enables tx line rate even with 1 queue.
   3807   1.98   msaitoh 		 */
   3808   1.98   msaitoh 		txdctl |= (32 << 0) | (1 << 8);
   3809   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(txr->me), txdctl);
   3810   1.55   msaitoh 	}
   3811   1.43   msaitoh 
   3812  1.144   msaitoh 	for (i = 0; i < adapter->num_queues; i++) {
   3813   1.98   msaitoh 		rxr = &adapter->rx_rings[i];
   3814   1.98   msaitoh 		rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxr->me));
   3815   1.98   msaitoh 		if (hw->mac.type == ixgbe_mac_82598EB) {
   3816   1.98   msaitoh 			/*
   3817   1.99   msaitoh 			 * PTHRESH = 21
   3818   1.99   msaitoh 			 * HTHRESH = 4
   3819   1.99   msaitoh 			 * WTHRESH = 8
   3820   1.99   msaitoh 			 */
   3821   1.98   msaitoh 			rxdctl &= ~0x3FFFFF;
   3822   1.98   msaitoh 			rxdctl |= 0x080420;
   3823   1.98   msaitoh 		}
   3824   1.98   msaitoh 		rxdctl |= IXGBE_RXDCTL_ENABLE;
   3825   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxr->me), rxdctl);
   3826  1.144   msaitoh 		for (j = 0; j < 10; j++) {
   3827   1.98   msaitoh 			if (IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxr->me)) &
   3828   1.98   msaitoh 			    IXGBE_RXDCTL_ENABLE)
   3829   1.98   msaitoh 				break;
   3830   1.98   msaitoh 			else
   3831   1.98   msaitoh 				msec_delay(1);
   3832   1.55   msaitoh 		}
   3833   1.98   msaitoh 		wmb();
   3834   1.99   msaitoh 
   3835   1.98   msaitoh 		/*
   3836   1.98   msaitoh 		 * In netmap mode, we must preserve the buffers made
   3837   1.98   msaitoh 		 * available to userspace before the if_init()
   3838   1.98   msaitoh 		 * (this is true by default on the TX side, because
   3839   1.98   msaitoh 		 * init makes all buffers available to userspace).
   3840   1.98   msaitoh 		 *
   3841   1.98   msaitoh 		 * netmap_reset() and the device specific routines
   3842   1.98   msaitoh 		 * (e.g. ixgbe_setup_receive_rings()) map these
   3843   1.98   msaitoh 		 * buffers at the end of the NIC ring, so here we
   3844   1.98   msaitoh 		 * must set the RDT (tail) register to make sure
   3845   1.98   msaitoh 		 * they are not overwritten.
   3846   1.98   msaitoh 		 *
   3847   1.98   msaitoh 		 * In this driver the NIC ring starts at RDH = 0,
   3848   1.98   msaitoh 		 * RDT points to the last slot available for reception (?),
   3849   1.98   msaitoh 		 * so RDT = num_rx_desc - 1 means the whole ring is available.
   3850   1.98   msaitoh 		 */
   3851   1.99   msaitoh #ifdef DEV_NETMAP
   3852   1.99   msaitoh 		if ((adapter->feat_en & IXGBE_FEATURE_NETMAP) &&
   3853   1.99   msaitoh 		    (ifp->if_capenable & IFCAP_NETMAP)) {
   3854   1.98   msaitoh 			struct netmap_adapter *na = NA(adapter->ifp);
   3855   1.98   msaitoh 			struct netmap_kring *kring = &na->rx_rings[i];
   3856   1.98   msaitoh 			int t = na->num_rx_desc - 1 - nm_kr_rxspace(kring);
   3857   1.98   msaitoh 
   3858   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_RDT(rxr->me), t);
   3859   1.98   msaitoh 		} else
   3860   1.98   msaitoh #endif /* DEV_NETMAP */
   3861   1.99   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_RDT(rxr->me),
   3862   1.99   msaitoh 			    adapter->num_rx_desc - 1);
   3863   1.48   msaitoh 	}
   3864   1.98   msaitoh 
   3865   1.98   msaitoh 	/* Enable Receive engine */
   3866   1.98   msaitoh 	rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
   3867   1.98   msaitoh 	if (hw->mac.type == ixgbe_mac_82598EB)
   3868   1.98   msaitoh 		rxctrl |= IXGBE_RXCTRL_DMBYPS;
   3869   1.98   msaitoh 	rxctrl |= IXGBE_RXCTRL_RXEN;
   3870   1.98   msaitoh 	ixgbe_enable_rx_dma(hw, rxctrl);
   3871   1.98   msaitoh 
   3872   1.98   msaitoh 	callout_reset(&adapter->timer, hz, ixgbe_local_timer, adapter);
   3873   1.98   msaitoh 
   3874  1.144   msaitoh 	/* Set up MSI/MSI-X routing */
   3875   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_MSIX) {
   3876   1.98   msaitoh 		ixgbe_configure_ivars(adapter);
   3877   1.98   msaitoh 		/* Set up auto-mask */
   3878   1.98   msaitoh 		if (hw->mac.type == ixgbe_mac_82598EB)
   3879   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
   3880   1.98   msaitoh 		else {
   3881   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
   3882   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
   3883   1.55   msaitoh 		}
   3884   1.98   msaitoh 	} else {  /* Simple settings for Legacy/MSI */
   3885   1.98   msaitoh 		ixgbe_set_ivar(adapter, 0, 0, 0);
   3886   1.98   msaitoh 		ixgbe_set_ivar(adapter, 0, 0, 1);
   3887   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
   3888   1.55   msaitoh 	}
   3889   1.43   msaitoh 
   3890   1.99   msaitoh 	ixgbe_init_fdir(adapter);
   3891   1.98   msaitoh 
   3892   1.98   msaitoh 	/*
   3893   1.98   msaitoh 	 * Check on any SFP devices that
   3894   1.98   msaitoh 	 * need to be kick-started
   3895   1.98   msaitoh 	 */
   3896   1.98   msaitoh 	if (hw->phy.type == ixgbe_phy_none) {
   3897   1.98   msaitoh 		err = hw->phy.ops.identify(hw);
   3898   1.98   msaitoh 		if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
   3899   1.98   msaitoh                 	device_printf(dev,
   3900   1.98   msaitoh 			    "Unsupported SFP+ module type was detected.\n");
   3901   1.98   msaitoh 			return;
   3902   1.98   msaitoh         	}
   3903   1.43   msaitoh 	}
   3904   1.98   msaitoh 
   3905   1.98   msaitoh 	/* Set moderation on the Link interrupt */
   3906   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_EITR(adapter->vector), IXGBE_LINK_ITR);
   3907   1.98   msaitoh 
   3908  1.144   msaitoh 	/* Enable power to the phy. */
   3909  1.144   msaitoh 	ixgbe_set_phy_power(hw, TRUE);
   3910  1.144   msaitoh 
   3911   1.98   msaitoh 	/* Config/Enable Link */
   3912   1.98   msaitoh 	ixgbe_config_link(adapter);
   3913   1.55   msaitoh 
   3914   1.98   msaitoh 	/* Hardware Packet Buffer & Flow Control setup */
   3915   1.98   msaitoh 	ixgbe_config_delay_values(adapter);
   3916    1.1    dyoung 
   3917   1.98   msaitoh 	/* Initialize the FC settings */
   3918   1.98   msaitoh 	ixgbe_start_hw(hw);
   3919    1.1    dyoung 
   3920   1.98   msaitoh 	/* Set up VLAN support and filter */
   3921   1.98   msaitoh 	ixgbe_setup_vlan_hw_support(adapter);
   3922    1.1    dyoung 
   3923   1.98   msaitoh 	/* Setup DMA Coalescing */
   3924   1.98   msaitoh 	ixgbe_config_dmac(adapter);
   3925   1.98   msaitoh 
   3926   1.98   msaitoh 	/* And now turn on interrupts */
   3927   1.98   msaitoh 	ixgbe_enable_intr(adapter);
   3928   1.98   msaitoh 
   3929   1.98   msaitoh 	/* Enable the use of the MBX by the VF's */
   3930   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_SRIOV) {
   3931   1.99   msaitoh 		ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
   3932   1.99   msaitoh 		ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
   3933   1.99   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
   3934    1.1    dyoung 	}
   3935   1.98   msaitoh 
   3936  1.123   msaitoh 	/* Update saved flags. See ixgbe_ifflags_cb() */
   3937  1.123   msaitoh 	adapter->if_flags = ifp->if_flags;
   3938  1.123   msaitoh 
   3939   1.98   msaitoh 	/* Now inform the stack we're ready */
   3940   1.98   msaitoh 	ifp->if_flags |= IFF_RUNNING;
   3941   1.98   msaitoh 
   3942    1.1    dyoung 	return;
   3943   1.99   msaitoh } /* ixgbe_init_locked */
   3944    1.1    dyoung 
   3945   1.99   msaitoh /************************************************************************
   3946   1.99   msaitoh  * ixgbe_init
   3947   1.99   msaitoh  ************************************************************************/
   3948   1.98   msaitoh static int
   3949   1.98   msaitoh ixgbe_init(struct ifnet *ifp)
   3950   1.98   msaitoh {
   3951   1.98   msaitoh 	struct adapter *adapter = ifp->if_softc;
   3952   1.98   msaitoh 
   3953   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   3954   1.98   msaitoh 	ixgbe_init_locked(adapter);
   3955   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   3956   1.98   msaitoh 
   3957   1.98   msaitoh 	return 0;	/* XXX ixgbe_init_locked cannot fail?  really? */
   3958   1.99   msaitoh } /* ixgbe_init */
   3959   1.43   msaitoh 
   3960   1.99   msaitoh /************************************************************************
   3961   1.99   msaitoh  * ixgbe_set_ivar
   3962   1.99   msaitoh  *
   3963   1.99   msaitoh  *   Setup the correct IVAR register for a particular MSI-X interrupt
   3964   1.99   msaitoh  *     (yes this is all very magic and confusing :)
   3965   1.99   msaitoh  *    - entry is the register array entry
   3966   1.99   msaitoh  *    - vector is the MSI-X vector for this queue
   3967   1.99   msaitoh  *    - type is RX/TX/MISC
   3968   1.99   msaitoh  ************************************************************************/
   3969   1.42   msaitoh static void
   3970   1.98   msaitoh ixgbe_set_ivar(struct adapter *adapter, u8 entry, u8 vector, s8 type)
   3971    1.1    dyoung {
   3972   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   3973   1.98   msaitoh 	u32 ivar, index;
   3974   1.98   msaitoh 
   3975   1.98   msaitoh 	vector |= IXGBE_IVAR_ALLOC_VAL;
   3976   1.98   msaitoh 
   3977   1.98   msaitoh 	switch (hw->mac.type) {
   3978   1.98   msaitoh 	case ixgbe_mac_82598EB:
   3979   1.98   msaitoh 		if (type == -1)
   3980   1.98   msaitoh 			entry = IXGBE_IVAR_OTHER_CAUSES_INDEX;
   3981   1.98   msaitoh 		else
   3982   1.98   msaitoh 			entry += (type * 64);
   3983   1.98   msaitoh 		index = (entry >> 2) & 0x1F;
   3984   1.98   msaitoh 		ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
   3985   1.98   msaitoh 		ivar &= ~(0xFF << (8 * (entry & 0x3)));
   3986   1.98   msaitoh 		ivar |= (vector << (8 * (entry & 0x3)));
   3987   1.98   msaitoh 		IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR(index), ivar);
   3988   1.98   msaitoh 		break;
   3989   1.98   msaitoh 	case ixgbe_mac_82599EB:
   3990   1.98   msaitoh 	case ixgbe_mac_X540:
   3991   1.98   msaitoh 	case ixgbe_mac_X550:
   3992   1.98   msaitoh 	case ixgbe_mac_X550EM_x:
   3993   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   3994   1.98   msaitoh 		if (type == -1) { /* MISC IVAR */
   3995   1.98   msaitoh 			index = (entry & 1) * 8;
   3996   1.98   msaitoh 			ivar = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
   3997   1.98   msaitoh 			ivar &= ~(0xFF << index);
   3998   1.98   msaitoh 			ivar |= (vector << index);
   3999   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, ivar);
   4000   1.98   msaitoh 		} else {	/* RX/TX IVARS */
   4001   1.98   msaitoh 			index = (16 * (entry & 1)) + (8 * type);
   4002   1.98   msaitoh 			ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(entry >> 1));
   4003   1.98   msaitoh 			ivar &= ~(0xFF << index);
   4004   1.98   msaitoh 			ivar |= (vector << index);
   4005   1.98   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_IVAR(entry >> 1), ivar);
   4006   1.98   msaitoh 		}
   4007  1.135   msaitoh 		break;
   4008   1.98   msaitoh 	default:
   4009   1.98   msaitoh 		break;
   4010   1.98   msaitoh 	}
   4011   1.99   msaitoh } /* ixgbe_set_ivar */
   4012    1.1    dyoung 
   4013   1.99   msaitoh /************************************************************************
   4014   1.99   msaitoh  * ixgbe_configure_ivars
   4015   1.99   msaitoh  ************************************************************************/
   4016   1.98   msaitoh static void
   4017   1.98   msaitoh ixgbe_configure_ivars(struct adapter *adapter)
   4018   1.98   msaitoh {
   4019   1.99   msaitoh 	struct ix_queue *que = adapter->queues;
   4020   1.99   msaitoh 	u32             newitr;
   4021    1.1    dyoung 
   4022   1.98   msaitoh 	if (ixgbe_max_interrupt_rate > 0)
   4023   1.98   msaitoh 		newitr = (4000000 / ixgbe_max_interrupt_rate) & 0x0FF8;
   4024   1.98   msaitoh 	else {
   4025   1.48   msaitoh 		/*
   4026   1.99   msaitoh 		 * Disable DMA coalescing if interrupt moderation is
   4027   1.99   msaitoh 		 * disabled.
   4028   1.99   msaitoh 		 */
   4029   1.98   msaitoh 		adapter->dmac = 0;
   4030   1.98   msaitoh 		newitr = 0;
   4031   1.98   msaitoh 	}
   4032   1.98   msaitoh 
   4033   1.98   msaitoh         for (int i = 0; i < adapter->num_queues; i++, que++) {
   4034   1.98   msaitoh 		struct rx_ring *rxr = &adapter->rx_rings[i];
   4035   1.98   msaitoh 		struct tx_ring *txr = &adapter->tx_rings[i];
   4036   1.98   msaitoh 		/* First the RX queue entry */
   4037   1.98   msaitoh                 ixgbe_set_ivar(adapter, rxr->me, que->msix, 0);
   4038   1.98   msaitoh 		/* ... and the TX */
   4039   1.98   msaitoh 		ixgbe_set_ivar(adapter, txr->me, que->msix, 1);
   4040   1.98   msaitoh 		/* Set an Initial EITR value */
   4041  1.124   msaitoh 		ixgbe_eitr_write(que, newitr);
   4042  1.138  knakahar 		/*
   4043  1.138  knakahar 		 * To eliminate influence of the previous state.
   4044  1.138  knakahar 		 * At this point, Tx/Rx interrupt handler
   4045  1.138  knakahar 		 * (ixgbe_msix_que()) cannot be called, so  both
   4046  1.138  knakahar 		 * IXGBE_TX_LOCK and IXGBE_RX_LOCK are not required.
   4047  1.138  knakahar 		 */
   4048  1.138  knakahar 		que->eitr_setting = 0;
   4049   1.98   msaitoh 	}
   4050   1.98   msaitoh 
   4051   1.98   msaitoh 	/* For the Link interrupt */
   4052   1.98   msaitoh         ixgbe_set_ivar(adapter, 1, adapter->vector, -1);
   4053   1.99   msaitoh } /* ixgbe_configure_ivars */
   4054   1.98   msaitoh 
   4055   1.99   msaitoh /************************************************************************
   4056   1.99   msaitoh  * ixgbe_config_gpie
   4057   1.99   msaitoh  ************************************************************************/
   4058   1.98   msaitoh static void
   4059   1.98   msaitoh ixgbe_config_gpie(struct adapter *adapter)
   4060   1.98   msaitoh {
   4061   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   4062   1.99   msaitoh 	u32             gpie;
   4063   1.98   msaitoh 
   4064   1.98   msaitoh 	gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
   4065   1.98   msaitoh 
   4066   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_MSIX) {
   4067   1.99   msaitoh 		/* Enable Enhanced MSI-X mode */
   4068   1.99   msaitoh 		gpie |= IXGBE_GPIE_MSIX_MODE
   4069   1.99   msaitoh 		     |  IXGBE_GPIE_EIAME
   4070   1.99   msaitoh 		     |  IXGBE_GPIE_PBA_SUPPORT
   4071   1.99   msaitoh 		     |  IXGBE_GPIE_OCD;
   4072   1.99   msaitoh 	}
   4073   1.99   msaitoh 
   4074   1.98   msaitoh 	/* Fan Failure Interrupt */
   4075   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_FAN_FAIL)
   4076   1.98   msaitoh 		gpie |= IXGBE_SDP1_GPIEN;
   4077    1.1    dyoung 
   4078   1.99   msaitoh 	/* Thermal Sensor Interrupt */
   4079   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_TEMP_SENSOR)
   4080   1.99   msaitoh 		gpie |= IXGBE_SDP0_GPIEN_X540;
   4081    1.1    dyoung 
   4082   1.99   msaitoh 	/* Link detection */
   4083   1.99   msaitoh 	switch (hw->mac.type) {
   4084   1.99   msaitoh 	case ixgbe_mac_82599EB:
   4085   1.99   msaitoh 		gpie |= IXGBE_SDP1_GPIEN | IXGBE_SDP2_GPIEN;
   4086   1.99   msaitoh 		break;
   4087   1.99   msaitoh 	case ixgbe_mac_X550EM_x:
   4088   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   4089   1.98   msaitoh 		gpie |= IXGBE_SDP0_GPIEN_X540;
   4090   1.99   msaitoh 		break;
   4091   1.99   msaitoh 	default:
   4092   1.99   msaitoh 		break;
   4093    1.1    dyoung 	}
   4094    1.1    dyoung 
   4095   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
   4096   1.98   msaitoh 
   4097   1.99   msaitoh } /* ixgbe_config_gpie */
   4098    1.1    dyoung 
   4099   1.99   msaitoh /************************************************************************
   4100   1.99   msaitoh  * ixgbe_config_delay_values
   4101   1.99   msaitoh  *
   4102   1.99   msaitoh  *   Requires adapter->max_frame_size to be set.
   4103   1.99   msaitoh  ************************************************************************/
   4104   1.33   msaitoh static void
   4105   1.98   msaitoh ixgbe_config_delay_values(struct adapter *adapter)
   4106   1.33   msaitoh {
   4107   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   4108   1.99   msaitoh 	u32             rxpb, frame, size, tmp;
   4109   1.33   msaitoh 
   4110   1.98   msaitoh 	frame = adapter->max_frame_size;
   4111   1.33   msaitoh 
   4112   1.98   msaitoh 	/* Calculate High Water */
   4113   1.98   msaitoh 	switch (hw->mac.type) {
   4114   1.98   msaitoh 	case ixgbe_mac_X540:
   4115   1.44   msaitoh 	case ixgbe_mac_X550:
   4116   1.44   msaitoh 	case ixgbe_mac_X550EM_x:
   4117   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   4118   1.98   msaitoh 		tmp = IXGBE_DV_X540(frame, frame);
   4119   1.44   msaitoh 		break;
   4120   1.44   msaitoh 	default:
   4121   1.98   msaitoh 		tmp = IXGBE_DV(frame, frame);
   4122   1.44   msaitoh 		break;
   4123   1.44   msaitoh 	}
   4124   1.98   msaitoh 	size = IXGBE_BT2KB(tmp);
   4125   1.98   msaitoh 	rxpb = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0)) >> 10;
   4126   1.98   msaitoh 	hw->fc.high_water[0] = rxpb - size;
   4127   1.44   msaitoh 
   4128   1.98   msaitoh 	/* Now calculate Low Water */
   4129   1.98   msaitoh 	switch (hw->mac.type) {
   4130   1.98   msaitoh 	case ixgbe_mac_X540:
   4131   1.98   msaitoh 	case ixgbe_mac_X550:
   4132   1.98   msaitoh 	case ixgbe_mac_X550EM_x:
   4133   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   4134   1.98   msaitoh 		tmp = IXGBE_LOW_DV_X540(frame);
   4135   1.98   msaitoh 		break;
   4136   1.98   msaitoh 	default:
   4137   1.98   msaitoh 		tmp = IXGBE_LOW_DV(frame);
   4138   1.98   msaitoh 		break;
   4139   1.33   msaitoh 	}
   4140   1.98   msaitoh 	hw->fc.low_water[0] = IXGBE_BT2KB(tmp);
   4141   1.33   msaitoh 
   4142   1.98   msaitoh 	hw->fc.pause_time = IXGBE_FC_PAUSE;
   4143   1.98   msaitoh 	hw->fc.send_xon = TRUE;
   4144   1.99   msaitoh } /* ixgbe_config_delay_values */
   4145   1.33   msaitoh 
   4146   1.99   msaitoh /************************************************************************
   4147   1.99   msaitoh  * ixgbe_set_multi - Multicast Update
   4148    1.1    dyoung  *
   4149   1.99   msaitoh  *   Called whenever multicast address list is updated.
   4150   1.99   msaitoh  ************************************************************************/
   4151    1.1    dyoung static void
   4152   1.98   msaitoh ixgbe_set_multi(struct adapter *adapter)
   4153    1.1    dyoung {
   4154   1.99   msaitoh 	struct ixgbe_mc_addr	*mta;
   4155   1.99   msaitoh 	struct ifnet		*ifp = adapter->ifp;
   4156   1.98   msaitoh 	u8			*update_ptr;
   4157   1.98   msaitoh 	int			mcnt = 0;
   4158   1.99   msaitoh 	u32			fctrl;
   4159   1.98   msaitoh 	struct ethercom		*ec = &adapter->osdep.ec;
   4160   1.98   msaitoh 	struct ether_multi	*enm;
   4161   1.98   msaitoh 	struct ether_multistep	step;
   4162   1.98   msaitoh 
   4163  1.105   msaitoh 	KASSERT(mutex_owned(&adapter->core_mtx));
   4164   1.98   msaitoh 	IOCTL_DEBUGOUT("ixgbe_set_multi: begin");
   4165   1.98   msaitoh 
   4166   1.98   msaitoh 	mta = adapter->mta;
   4167   1.98   msaitoh 	bzero(mta, sizeof(*mta) * MAX_NUM_MULTICAST_ADDRESSES);
   4168    1.1    dyoung 
   4169   1.98   msaitoh 	ifp->if_flags &= ~IFF_ALLMULTI;
   4170  1.105   msaitoh 	ETHER_LOCK(ec);
   4171   1.98   msaitoh 	ETHER_FIRST_MULTI(step, ec, enm);
   4172   1.98   msaitoh 	while (enm != NULL) {
   4173   1.98   msaitoh 		if ((mcnt == MAX_NUM_MULTICAST_ADDRESSES) ||
   4174   1.98   msaitoh 		    (memcmp(enm->enm_addrlo, enm->enm_addrhi,
   4175   1.98   msaitoh 			ETHER_ADDR_LEN) != 0)) {
   4176   1.98   msaitoh 			ifp->if_flags |= IFF_ALLMULTI;
   4177   1.98   msaitoh 			break;
   4178   1.98   msaitoh 		}
   4179   1.98   msaitoh 		bcopy(enm->enm_addrlo,
   4180   1.98   msaitoh 		    mta[mcnt].addr, IXGBE_ETH_LENGTH_OF_ADDRESS);
   4181   1.98   msaitoh 		mta[mcnt].vmdq = adapter->pool;
   4182   1.98   msaitoh 		mcnt++;
   4183   1.98   msaitoh 		ETHER_NEXT_MULTI(step, enm);
   4184   1.98   msaitoh 	}
   4185  1.105   msaitoh 	ETHER_UNLOCK(ec);
   4186    1.1    dyoung 
   4187   1.98   msaitoh 	fctrl = IXGBE_READ_REG(&adapter->hw, IXGBE_FCTRL);
   4188   1.98   msaitoh 	fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
   4189   1.98   msaitoh 	if (ifp->if_flags & IFF_PROMISC)
   4190   1.98   msaitoh 		fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
   4191   1.98   msaitoh 	else if (ifp->if_flags & IFF_ALLMULTI) {
   4192   1.98   msaitoh 		fctrl |= IXGBE_FCTRL_MPE;
   4193   1.44   msaitoh 	}
   4194    1.1    dyoung 
   4195   1.98   msaitoh 	IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCTRL, fctrl);
   4196    1.1    dyoung 
   4197   1.98   msaitoh 	if (mcnt < MAX_NUM_MULTICAST_ADDRESSES) {
   4198   1.98   msaitoh 		update_ptr = (u8 *)mta;
   4199   1.99   msaitoh 		ixgbe_update_mc_addr_list(&adapter->hw, update_ptr, mcnt,
   4200   1.99   msaitoh 		    ixgbe_mc_array_itr, TRUE);
   4201   1.98   msaitoh 	}
   4202    1.1    dyoung 
   4203   1.99   msaitoh } /* ixgbe_set_multi */
   4204    1.1    dyoung 
   4205   1.99   msaitoh /************************************************************************
   4206   1.99   msaitoh  * ixgbe_mc_array_itr
   4207   1.99   msaitoh  *
   4208   1.99   msaitoh  *   An iterator function needed by the multicast shared code.
   4209   1.99   msaitoh  *   It feeds the shared code routine the addresses in the
   4210   1.99   msaitoh  *   array of ixgbe_set_multi() one by one.
   4211   1.99   msaitoh  ************************************************************************/
   4212   1.98   msaitoh static u8 *
   4213   1.98   msaitoh ixgbe_mc_array_itr(struct ixgbe_hw *hw, u8 **update_ptr, u32 *vmdq)
   4214   1.98   msaitoh {
   4215   1.98   msaitoh 	struct ixgbe_mc_addr *mta;
   4216    1.1    dyoung 
   4217   1.98   msaitoh 	mta = (struct ixgbe_mc_addr *)*update_ptr;
   4218   1.98   msaitoh 	*vmdq = mta->vmdq;
   4219   1.33   msaitoh 
   4220   1.98   msaitoh 	*update_ptr = (u8*)(mta + 1);
   4221   1.99   msaitoh 
   4222   1.98   msaitoh 	return (mta->addr);
   4223   1.99   msaitoh } /* ixgbe_mc_array_itr */
   4224   1.82   msaitoh 
   4225   1.99   msaitoh /************************************************************************
   4226   1.99   msaitoh  * ixgbe_local_timer - Timer routine
   4227   1.98   msaitoh  *
   4228   1.99   msaitoh  *   Checks for link status, updates statistics,
   4229   1.99   msaitoh  *   and runs the watchdog check.
   4230   1.99   msaitoh  ************************************************************************/
   4231   1.98   msaitoh static void
   4232   1.98   msaitoh ixgbe_local_timer(void *arg)
   4233   1.98   msaitoh {
   4234   1.98   msaitoh 	struct adapter *adapter = arg;
   4235    1.1    dyoung 
   4236   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   4237   1.98   msaitoh 	ixgbe_local_timer1(adapter);
   4238   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   4239   1.98   msaitoh }
   4240   1.28   msaitoh 
   4241   1.98   msaitoh static void
   4242   1.98   msaitoh ixgbe_local_timer1(void *arg)
   4243   1.98   msaitoh {
   4244   1.98   msaitoh 	struct adapter	*adapter = arg;
   4245   1.98   msaitoh 	device_t	dev = adapter->dev;
   4246   1.98   msaitoh 	struct ix_queue *que = adapter->queues;
   4247   1.98   msaitoh 	u64		queues = 0;
   4248  1.134   msaitoh 	u64		v0, v1, v2, v3, v4, v5, v6, v7;
   4249   1.98   msaitoh 	int		hung = 0;
   4250  1.134   msaitoh 	int		i;
   4251    1.1    dyoung 
   4252   1.98   msaitoh 	KASSERT(mutex_owned(&adapter->core_mtx));
   4253    1.1    dyoung 
   4254   1.98   msaitoh 	/* Check for pluggable optics */
   4255   1.98   msaitoh 	if (adapter->sfp_probe)
   4256   1.98   msaitoh 		if (!ixgbe_sfp_probe(adapter))
   4257   1.98   msaitoh 			goto out; /* Nothing to do */
   4258    1.1    dyoung 
   4259   1.98   msaitoh 	ixgbe_update_link_status(adapter);
   4260   1.98   msaitoh 	ixgbe_update_stats_counters(adapter);
   4261   1.33   msaitoh 
   4262  1.134   msaitoh 	/* Update some event counters */
   4263  1.134   msaitoh 	v0 = v1 = v2 = v3 = v4 = v5 = v6 = v7 = 0;
   4264  1.134   msaitoh 	que = adapter->queues;
   4265  1.134   msaitoh 	for (i = 0; i < adapter->num_queues; i++, que++) {
   4266  1.134   msaitoh 		struct tx_ring  *txr = que->txr;
   4267  1.134   msaitoh 
   4268  1.134   msaitoh 		v0 += txr->q_efbig_tx_dma_setup;
   4269  1.134   msaitoh 		v1 += txr->q_mbuf_defrag_failed;
   4270  1.134   msaitoh 		v2 += txr->q_efbig2_tx_dma_setup;
   4271  1.134   msaitoh 		v3 += txr->q_einval_tx_dma_setup;
   4272  1.134   msaitoh 		v4 += txr->q_other_tx_dma_setup;
   4273  1.134   msaitoh 		v5 += txr->q_eagain_tx_dma_setup;
   4274  1.134   msaitoh 		v6 += txr->q_enomem_tx_dma_setup;
   4275  1.134   msaitoh 		v7 += txr->q_tso_err;
   4276  1.134   msaitoh 	}
   4277  1.134   msaitoh 	adapter->efbig_tx_dma_setup.ev_count = v0;
   4278  1.134   msaitoh 	adapter->mbuf_defrag_failed.ev_count = v1;
   4279  1.134   msaitoh 	adapter->efbig2_tx_dma_setup.ev_count = v2;
   4280  1.134   msaitoh 	adapter->einval_tx_dma_setup.ev_count = v3;
   4281  1.134   msaitoh 	adapter->other_tx_dma_setup.ev_count = v4;
   4282  1.134   msaitoh 	adapter->eagain_tx_dma_setup.ev_count = v5;
   4283  1.134   msaitoh 	adapter->enomem_tx_dma_setup.ev_count = v6;
   4284  1.134   msaitoh 	adapter->tso_err.ev_count = v7;
   4285  1.134   msaitoh 
   4286   1.98   msaitoh 	/*
   4287   1.99   msaitoh 	 * Check the TX queues status
   4288   1.99   msaitoh 	 *      - mark hung queues so we don't schedule on them
   4289   1.99   msaitoh 	 *      - watchdog only if all queues show hung
   4290   1.99   msaitoh 	 */
   4291  1.134   msaitoh 	que = adapter->queues;
   4292  1.134   msaitoh 	for (i = 0; i < adapter->num_queues; i++, que++) {
   4293   1.98   msaitoh 		/* Keep track of queues with work for soft irq */
   4294   1.98   msaitoh 		if (que->txr->busy)
   4295   1.98   msaitoh 			queues |= ((u64)1 << que->me);
   4296   1.98   msaitoh 		/*
   4297   1.99   msaitoh 		 * Each time txeof runs without cleaning, but there
   4298   1.99   msaitoh 		 * are uncleaned descriptors it increments busy. If
   4299   1.99   msaitoh 		 * we get to the MAX we declare it hung.
   4300   1.99   msaitoh 		 */
   4301   1.98   msaitoh 		if (que->busy == IXGBE_QUEUE_HUNG) {
   4302   1.98   msaitoh 			++hung;
   4303   1.98   msaitoh 			/* Mark the queue as inactive */
   4304   1.98   msaitoh 			adapter->active_queues &= ~((u64)1 << que->me);
   4305   1.98   msaitoh 			continue;
   4306   1.98   msaitoh 		} else {
   4307   1.98   msaitoh 			/* Check if we've come back from hung */
   4308   1.98   msaitoh 			if ((adapter->active_queues & ((u64)1 << que->me)) == 0)
   4309   1.98   msaitoh 				adapter->active_queues |= ((u64)1 << que->me);
   4310   1.98   msaitoh 		}
   4311   1.98   msaitoh 		if (que->busy >= IXGBE_MAX_TX_BUSY) {
   4312   1.99   msaitoh 			device_printf(dev,
   4313   1.99   msaitoh 			    "Warning queue %d appears to be hung!\n", i);
   4314   1.98   msaitoh 			que->txr->busy = IXGBE_QUEUE_HUNG;
   4315   1.98   msaitoh 			++hung;
   4316   1.98   msaitoh 		}
   4317    1.1    dyoung 	}
   4318    1.1    dyoung 
   4319   1.98   msaitoh 	/* Only truely watchdog if all queues show hung */
   4320   1.98   msaitoh 	if (hung == adapter->num_queues)
   4321   1.98   msaitoh 		goto watchdog;
   4322   1.98   msaitoh 	else if (queues != 0) { /* Force an IRQ on queues with work */
   4323  1.131  knakahar 		que = adapter->queues;
   4324  1.134   msaitoh 		for (i = 0; i < adapter->num_queues; i++, que++) {
   4325  1.139  knakahar 			mutex_enter(&que->dc_mtx);
   4326  1.139  knakahar 			if (que->disabled_count == 0)
   4327  1.131  knakahar 				ixgbe_rearm_queues(adapter,
   4328  1.131  knakahar 				    queues & ((u64)1 << i));
   4329  1.139  knakahar 			mutex_exit(&que->dc_mtx);
   4330  1.131  knakahar 		}
   4331   1.98   msaitoh 	}
   4332    1.1    dyoung 
   4333   1.98   msaitoh out:
   4334   1.98   msaitoh 	callout_reset(&adapter->timer, hz, ixgbe_local_timer, adapter);
   4335   1.98   msaitoh 	return;
   4336    1.1    dyoung 
   4337   1.98   msaitoh watchdog:
   4338   1.98   msaitoh 	device_printf(adapter->dev, "Watchdog timeout -- resetting\n");
   4339   1.98   msaitoh 	adapter->ifp->if_flags &= ~IFF_RUNNING;
   4340   1.98   msaitoh 	adapter->watchdog_events.ev_count++;
   4341   1.98   msaitoh 	ixgbe_init_locked(adapter);
   4342   1.99   msaitoh } /* ixgbe_local_timer */
   4343   1.43   msaitoh 
   4344   1.99   msaitoh /************************************************************************
   4345   1.99   msaitoh  * ixgbe_sfp_probe
   4346   1.98   msaitoh  *
   4347   1.99   msaitoh  *   Determine if a port had optics inserted.
   4348   1.99   msaitoh  ************************************************************************/
   4349   1.98   msaitoh static bool
   4350   1.98   msaitoh ixgbe_sfp_probe(struct adapter *adapter)
   4351   1.98   msaitoh {
   4352   1.98   msaitoh 	struct ixgbe_hw	*hw = &adapter->hw;
   4353   1.98   msaitoh 	device_t	dev = adapter->dev;
   4354   1.98   msaitoh 	bool		result = FALSE;
   4355    1.1    dyoung 
   4356   1.98   msaitoh 	if ((hw->phy.type == ixgbe_phy_nl) &&
   4357   1.98   msaitoh 	    (hw->phy.sfp_type == ixgbe_sfp_type_not_present)) {
   4358   1.98   msaitoh 		s32 ret = hw->phy.ops.identify_sfp(hw);
   4359   1.98   msaitoh 		if (ret)
   4360   1.98   msaitoh 			goto out;
   4361   1.98   msaitoh 		ret = hw->phy.ops.reset(hw);
   4362   1.99   msaitoh 		adapter->sfp_probe = FALSE;
   4363   1.98   msaitoh 		if (ret == IXGBE_ERR_SFP_NOT_SUPPORTED) {
   4364   1.98   msaitoh 			device_printf(dev,"Unsupported SFP+ module detected!");
   4365   1.99   msaitoh 			device_printf(dev,
   4366   1.99   msaitoh 			    "Reload driver with supported module.\n");
   4367   1.98   msaitoh                         goto out;
   4368   1.98   msaitoh 		} else
   4369   1.98   msaitoh 			device_printf(dev, "SFP+ module detected!\n");
   4370   1.98   msaitoh 		/* We now have supported optics */
   4371   1.98   msaitoh 		result = TRUE;
   4372   1.98   msaitoh 	}
   4373   1.98   msaitoh out:
   4374   1.99   msaitoh 
   4375   1.98   msaitoh 	return (result);
   4376   1.99   msaitoh } /* ixgbe_sfp_probe */
   4377    1.1    dyoung 
   4378   1.99   msaitoh /************************************************************************
   4379   1.99   msaitoh  * ixgbe_handle_mod - Tasklet for SFP module interrupts
   4380   1.99   msaitoh  ************************************************************************/
   4381    1.1    dyoung static void
   4382   1.98   msaitoh ixgbe_handle_mod(void *context)
   4383    1.1    dyoung {
   4384   1.98   msaitoh 	struct adapter  *adapter = context;
   4385    1.1    dyoung 	struct ixgbe_hw *hw = &adapter->hw;
   4386   1.98   msaitoh 	device_t	dev = adapter->dev;
   4387   1.99   msaitoh 	u32             err, cage_full = 0;
   4388   1.98   msaitoh 
   4389  1.137   msaitoh 	++adapter->mod_sicount.ev_count;
   4390   1.99   msaitoh 	if (adapter->hw.need_crosstalk_fix) {
   4391   1.99   msaitoh 		switch (hw->mac.type) {
   4392   1.99   msaitoh 		case ixgbe_mac_82599EB:
   4393   1.99   msaitoh 			cage_full = IXGBE_READ_REG(hw, IXGBE_ESDP) &
   4394   1.99   msaitoh 			    IXGBE_ESDP_SDP2;
   4395   1.99   msaitoh 			break;
   4396   1.99   msaitoh 		case ixgbe_mac_X550EM_x:
   4397   1.99   msaitoh 		case ixgbe_mac_X550EM_a:
   4398   1.99   msaitoh 			cage_full = IXGBE_READ_REG(hw, IXGBE_ESDP) &
   4399   1.99   msaitoh 			    IXGBE_ESDP_SDP0;
   4400   1.99   msaitoh 			break;
   4401   1.99   msaitoh 		default:
   4402   1.99   msaitoh 			break;
   4403   1.33   msaitoh 		}
   4404   1.98   msaitoh 
   4405   1.99   msaitoh 		if (!cage_full)
   4406   1.99   msaitoh 			return;
   4407   1.98   msaitoh 	}
   4408   1.98   msaitoh 
   4409   1.98   msaitoh 	err = hw->phy.ops.identify_sfp(hw);
   4410   1.98   msaitoh 	if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
   4411   1.98   msaitoh 		device_printf(dev,
   4412   1.98   msaitoh 		    "Unsupported SFP+ module type was detected.\n");
   4413   1.99   msaitoh 		return;
   4414   1.33   msaitoh 	}
   4415   1.33   msaitoh 
   4416  1.142   msaitoh 	if (hw->mac.type == ixgbe_mac_82598EB)
   4417  1.142   msaitoh 		err = hw->phy.ops.reset(hw);
   4418  1.142   msaitoh 	else
   4419  1.142   msaitoh 		err = hw->mac.ops.setup_sfp(hw);
   4420  1.142   msaitoh 
   4421   1.98   msaitoh 	if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
   4422   1.98   msaitoh 		device_printf(dev,
   4423   1.98   msaitoh 		    "Setup failure - unsupported SFP+ module type.\n");
   4424   1.99   msaitoh 		return;
   4425    1.1    dyoung 	}
   4426   1.98   msaitoh 	softint_schedule(adapter->msf_si);
   4427   1.99   msaitoh } /* ixgbe_handle_mod */
   4428    1.1    dyoung 
   4429    1.1    dyoung 
   4430   1.99   msaitoh /************************************************************************
   4431   1.99   msaitoh  * ixgbe_handle_msf - Tasklet for MSF (multispeed fiber) interrupts
   4432   1.99   msaitoh  ************************************************************************/
   4433   1.33   msaitoh static void
   4434   1.98   msaitoh ixgbe_handle_msf(void *context)
   4435   1.33   msaitoh {
   4436   1.98   msaitoh 	struct adapter  *adapter = context;
   4437   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   4438   1.99   msaitoh 	u32             autoneg;
   4439   1.99   msaitoh 	bool            negotiate;
   4440   1.33   msaitoh 
   4441  1.137   msaitoh 	++adapter->msf_sicount.ev_count;
   4442   1.99   msaitoh 	/* get_supported_phy_layer will call hw->phy.ops.identify_sfp() */
   4443   1.99   msaitoh 	adapter->phy_layer = ixgbe_get_supported_physical_layer(hw);
   4444   1.33   msaitoh 
   4445   1.98   msaitoh 	autoneg = hw->phy.autoneg_advertised;
   4446   1.98   msaitoh 	if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
   4447   1.98   msaitoh 		hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiate);
   4448   1.98   msaitoh 	else
   4449   1.98   msaitoh 		negotiate = 0;
   4450   1.98   msaitoh 	if (hw->mac.ops.setup_link)
   4451   1.98   msaitoh 		hw->mac.ops.setup_link(hw, autoneg, TRUE);
   4452   1.33   msaitoh 
   4453   1.99   msaitoh 	/* Adjust media types shown in ifconfig */
   4454   1.99   msaitoh 	ifmedia_removeall(&adapter->media);
   4455   1.99   msaitoh 	ixgbe_add_media_types(adapter);
   4456   1.99   msaitoh 	ifmedia_set(&adapter->media, IFM_ETHER | IFM_AUTO);
   4457   1.99   msaitoh } /* ixgbe_handle_msf */
   4458   1.33   msaitoh 
   4459   1.99   msaitoh /************************************************************************
   4460   1.99   msaitoh  * ixgbe_handle_phy - Tasklet for external PHY interrupts
   4461   1.99   msaitoh  ************************************************************************/
   4462    1.1    dyoung static void
   4463   1.98   msaitoh ixgbe_handle_phy(void *context)
   4464    1.1    dyoung {
   4465   1.98   msaitoh 	struct adapter  *adapter = context;
   4466    1.1    dyoung 	struct ixgbe_hw *hw = &adapter->hw;
   4467   1.98   msaitoh 	int error;
   4468    1.1    dyoung 
   4469  1.137   msaitoh 	++adapter->phy_sicount.ev_count;
   4470   1.98   msaitoh 	error = hw->phy.ops.handle_lasi(hw);
   4471   1.98   msaitoh 	if (error == IXGBE_ERR_OVERTEMP)
   4472   1.98   msaitoh 		device_printf(adapter->dev,
   4473   1.98   msaitoh 		    "CRITICAL: EXTERNAL PHY OVER TEMP!! "
   4474   1.98   msaitoh 		    " PHY will downshift to lower power state!\n");
   4475   1.98   msaitoh 	else if (error)
   4476   1.98   msaitoh 		device_printf(adapter->dev,
   4477   1.99   msaitoh 		    "Error handling LASI interrupt: %d\n", error);
   4478   1.99   msaitoh } /* ixgbe_handle_phy */
   4479    1.1    dyoung 
   4480   1.98   msaitoh static void
   4481   1.98   msaitoh ixgbe_ifstop(struct ifnet *ifp, int disable)
   4482   1.98   msaitoh {
   4483   1.98   msaitoh 	struct adapter *adapter = ifp->if_softc;
   4484    1.1    dyoung 
   4485   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   4486   1.98   msaitoh 	ixgbe_stop(adapter);
   4487   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   4488   1.98   msaitoh }
   4489    1.1    dyoung 
   4490   1.99   msaitoh /************************************************************************
   4491   1.99   msaitoh  * ixgbe_stop - Stop the hardware
   4492   1.98   msaitoh  *
   4493   1.99   msaitoh  *   Disables all traffic on the adapter by issuing a
   4494   1.99   msaitoh  *   global reset on the MAC and deallocates TX/RX buffers.
   4495   1.99   msaitoh  ************************************************************************/
   4496    1.1    dyoung static void
   4497   1.98   msaitoh ixgbe_stop(void *arg)
   4498    1.1    dyoung {
   4499   1.99   msaitoh 	struct ifnet    *ifp;
   4500   1.99   msaitoh 	struct adapter  *adapter = arg;
   4501   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   4502   1.99   msaitoh 
   4503   1.98   msaitoh 	ifp = adapter->ifp;
   4504   1.98   msaitoh 
   4505   1.98   msaitoh 	KASSERT(mutex_owned(&adapter->core_mtx));
   4506   1.98   msaitoh 
   4507   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_stop: begin\n");
   4508   1.98   msaitoh 	ixgbe_disable_intr(adapter);
   4509   1.98   msaitoh 	callout_stop(&adapter->timer);
   4510   1.98   msaitoh 
   4511   1.98   msaitoh 	/* Let the stack know...*/
   4512   1.98   msaitoh 	ifp->if_flags &= ~IFF_RUNNING;
   4513   1.98   msaitoh 
   4514   1.98   msaitoh 	ixgbe_reset_hw(hw);
   4515   1.98   msaitoh 	hw->adapter_stopped = FALSE;
   4516   1.98   msaitoh 	ixgbe_stop_adapter(hw);
   4517   1.98   msaitoh 	if (hw->mac.type == ixgbe_mac_82599EB)
   4518   1.98   msaitoh 		ixgbe_stop_mac_link_on_d3_82599(hw);
   4519   1.98   msaitoh 	/* Turn off the laser - noop with no optics */
   4520   1.98   msaitoh 	ixgbe_disable_tx_laser(hw);
   4521    1.1    dyoung 
   4522   1.98   msaitoh 	/* Update the stack */
   4523   1.98   msaitoh 	adapter->link_up = FALSE;
   4524   1.98   msaitoh 	ixgbe_update_link_status(adapter);
   4525    1.1    dyoung 
   4526   1.98   msaitoh 	/* reprogram the RAR[0] in case user changed it. */
   4527   1.98   msaitoh 	ixgbe_set_rar(&adapter->hw, 0, adapter->hw.mac.addr, 0, IXGBE_RAH_AV);
   4528    1.1    dyoung 
   4529   1.98   msaitoh 	return;
   4530   1.99   msaitoh } /* ixgbe_stop */
   4531    1.1    dyoung 
   4532   1.99   msaitoh /************************************************************************
   4533   1.99   msaitoh  * ixgbe_update_link_status - Update OS on link state
   4534   1.99   msaitoh  *
   4535   1.99   msaitoh  * Note: Only updates the OS on the cached link state.
   4536   1.99   msaitoh  *       The real check of the hardware only happens with
   4537   1.99   msaitoh  *       a link interrupt.
   4538   1.99   msaitoh  ************************************************************************/
   4539   1.98   msaitoh static void
   4540   1.98   msaitoh ixgbe_update_link_status(struct adapter *adapter)
   4541    1.1    dyoung {
   4542   1.98   msaitoh 	struct ifnet	*ifp = adapter->ifp;
   4543   1.99   msaitoh 	device_t        dev = adapter->dev;
   4544   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   4545   1.98   msaitoh 
   4546  1.136  knakahar 	KASSERT(mutex_owned(&adapter->core_mtx));
   4547  1.136  knakahar 
   4548   1.98   msaitoh 	if (adapter->link_up) {
   4549   1.98   msaitoh 		if (adapter->link_active == FALSE) {
   4550  1.138  knakahar 			/*
   4551  1.138  knakahar 			 * To eliminate influence of the previous state
   4552  1.138  knakahar 			 * in the same way as ixgbe_init_locked().
   4553  1.138  knakahar 			 */
   4554  1.138  knakahar 			struct ix_queue	*que = adapter->queues;
   4555  1.138  knakahar 			for (int i = 0; i < adapter->num_queues; i++, que++)
   4556  1.138  knakahar 				que->eitr_setting = 0;
   4557  1.138  knakahar 
   4558   1.98   msaitoh 			if (adapter->link_speed == IXGBE_LINK_SPEED_10GB_FULL){
   4559   1.98   msaitoh 				/*
   4560   1.98   msaitoh 				 *  Discard count for both MAC Local Fault and
   4561   1.98   msaitoh 				 * Remote Fault because those registers are
   4562   1.98   msaitoh 				 * valid only when the link speed is up and
   4563   1.98   msaitoh 				 * 10Gbps.
   4564   1.98   msaitoh 				 */
   4565   1.98   msaitoh 				IXGBE_READ_REG(hw, IXGBE_MLFC);
   4566   1.98   msaitoh 				IXGBE_READ_REG(hw, IXGBE_MRFC);
   4567   1.98   msaitoh 			}
   4568   1.98   msaitoh 
   4569   1.98   msaitoh 			if (bootverbose) {
   4570   1.98   msaitoh 				const char *bpsmsg;
   4571    1.1    dyoung 
   4572   1.98   msaitoh 				switch (adapter->link_speed) {
   4573   1.98   msaitoh 				case IXGBE_LINK_SPEED_10GB_FULL:
   4574   1.98   msaitoh 					bpsmsg = "10 Gbps";
   4575   1.98   msaitoh 					break;
   4576   1.98   msaitoh 				case IXGBE_LINK_SPEED_5GB_FULL:
   4577   1.98   msaitoh 					bpsmsg = "5 Gbps";
   4578   1.98   msaitoh 					break;
   4579   1.98   msaitoh 				case IXGBE_LINK_SPEED_2_5GB_FULL:
   4580   1.98   msaitoh 					bpsmsg = "2.5 Gbps";
   4581   1.98   msaitoh 					break;
   4582   1.98   msaitoh 				case IXGBE_LINK_SPEED_1GB_FULL:
   4583   1.98   msaitoh 					bpsmsg = "1 Gbps";
   4584   1.98   msaitoh 					break;
   4585   1.98   msaitoh 				case IXGBE_LINK_SPEED_100_FULL:
   4586   1.98   msaitoh 					bpsmsg = "100 Mbps";
   4587   1.98   msaitoh 					break;
   4588   1.99   msaitoh 				case IXGBE_LINK_SPEED_10_FULL:
   4589   1.99   msaitoh 					bpsmsg = "10 Mbps";
   4590   1.99   msaitoh 					break;
   4591   1.98   msaitoh 				default:
   4592   1.98   msaitoh 					bpsmsg = "unknown speed";
   4593   1.98   msaitoh 					break;
   4594   1.98   msaitoh 				}
   4595   1.98   msaitoh 				device_printf(dev, "Link is up %s %s \n",
   4596   1.98   msaitoh 				    bpsmsg, "Full Duplex");
   4597   1.98   msaitoh 			}
   4598   1.98   msaitoh 			adapter->link_active = TRUE;
   4599   1.98   msaitoh 			/* Update any Flow Control changes */
   4600   1.98   msaitoh 			ixgbe_fc_enable(&adapter->hw);
   4601   1.98   msaitoh 			/* Update DMA coalescing config */
   4602   1.98   msaitoh 			ixgbe_config_dmac(adapter);
   4603   1.98   msaitoh 			if_link_state_change(ifp, LINK_STATE_UP);
   4604  1.144   msaitoh 
   4605   1.99   msaitoh 			if (adapter->feat_en & IXGBE_FEATURE_SRIOV)
   4606   1.99   msaitoh 				ixgbe_ping_all_vfs(adapter);
   4607   1.98   msaitoh 		}
   4608   1.98   msaitoh 	} else { /* Link down */
   4609   1.98   msaitoh 		if (adapter->link_active == TRUE) {
   4610   1.98   msaitoh 			if (bootverbose)
   4611   1.98   msaitoh 				device_printf(dev, "Link is Down\n");
   4612   1.98   msaitoh 			if_link_state_change(ifp, LINK_STATE_DOWN);
   4613   1.98   msaitoh 			adapter->link_active = FALSE;
   4614   1.99   msaitoh 			if (adapter->feat_en & IXGBE_FEATURE_SRIOV)
   4615   1.99   msaitoh 				ixgbe_ping_all_vfs(adapter);
   4616  1.141  knakahar 			ixgbe_drain_all(adapter);
   4617   1.98   msaitoh 		}
   4618    1.1    dyoung 	}
   4619   1.99   msaitoh } /* ixgbe_update_link_status */
   4620    1.1    dyoung 
   4621   1.99   msaitoh /************************************************************************
   4622   1.99   msaitoh  * ixgbe_config_dmac - Configure DMA Coalescing
   4623   1.99   msaitoh  ************************************************************************/
   4624    1.1    dyoung static void
   4625   1.98   msaitoh ixgbe_config_dmac(struct adapter *adapter)
   4626    1.1    dyoung {
   4627    1.1    dyoung 	struct ixgbe_hw *hw = &adapter->hw;
   4628   1.98   msaitoh 	struct ixgbe_dmac_config *dcfg = &hw->mac.dmac_config;
   4629    1.1    dyoung 
   4630   1.99   msaitoh 	if (hw->mac.type < ixgbe_mac_X550 || !hw->mac.ops.dmac_config)
   4631   1.98   msaitoh 		return;
   4632   1.65   msaitoh 
   4633   1.98   msaitoh 	if (dcfg->watchdog_timer ^ adapter->dmac ||
   4634   1.98   msaitoh 	    dcfg->link_speed ^ adapter->link_speed) {
   4635   1.98   msaitoh 		dcfg->watchdog_timer = adapter->dmac;
   4636   1.98   msaitoh 		dcfg->fcoe_en = false;
   4637   1.98   msaitoh 		dcfg->link_speed = adapter->link_speed;
   4638   1.98   msaitoh 		dcfg->num_tcs = 1;
   4639   1.51   msaitoh 
   4640   1.98   msaitoh 		INIT_DEBUGOUT2("dmac settings: watchdog %d, link speed %d\n",
   4641   1.98   msaitoh 		    dcfg->watchdog_timer, dcfg->link_speed);
   4642   1.51   msaitoh 
   4643   1.98   msaitoh 		hw->mac.ops.dmac_config(hw);
   4644   1.98   msaitoh 	}
   4645   1.99   msaitoh } /* ixgbe_config_dmac */
   4646   1.51   msaitoh 
   4647   1.99   msaitoh /************************************************************************
   4648   1.99   msaitoh  * ixgbe_enable_intr
   4649   1.99   msaitoh  ************************************************************************/
   4650   1.98   msaitoh static void
   4651   1.98   msaitoh ixgbe_enable_intr(struct adapter *adapter)
   4652   1.98   msaitoh {
   4653   1.98   msaitoh 	struct ixgbe_hw	*hw = &adapter->hw;
   4654   1.98   msaitoh 	struct ix_queue	*que = adapter->queues;
   4655   1.98   msaitoh 	u32		mask, fwsm;
   4656   1.51   msaitoh 
   4657   1.98   msaitoh 	mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
   4658   1.45   msaitoh 
   4659   1.98   msaitoh 	switch (adapter->hw.mac.type) {
   4660   1.99   msaitoh 	case ixgbe_mac_82599EB:
   4661   1.99   msaitoh 		mask |= IXGBE_EIMS_ECC;
   4662   1.99   msaitoh 		/* Temperature sensor on some adapters */
   4663   1.99   msaitoh 		mask |= IXGBE_EIMS_GPI_SDP0;
   4664   1.99   msaitoh 		/* SFP+ (RX_LOS_N & MOD_ABS_N) */
   4665   1.99   msaitoh 		mask |= IXGBE_EIMS_GPI_SDP1;
   4666   1.99   msaitoh 		mask |= IXGBE_EIMS_GPI_SDP2;
   4667   1.99   msaitoh 		break;
   4668   1.99   msaitoh 	case ixgbe_mac_X540:
   4669   1.99   msaitoh 		/* Detect if Thermal Sensor is enabled */
   4670   1.99   msaitoh 		fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM);
   4671   1.99   msaitoh 		if (fwsm & IXGBE_FWSM_TS_ENABLED)
   4672   1.98   msaitoh 			mask |= IXGBE_EIMS_TS;
   4673   1.99   msaitoh 		mask |= IXGBE_EIMS_ECC;
   4674   1.99   msaitoh 		break;
   4675   1.99   msaitoh 	case ixgbe_mac_X550:
   4676   1.99   msaitoh 		/* MAC thermal sensor is automatically enabled */
   4677   1.99   msaitoh 		mask |= IXGBE_EIMS_TS;
   4678   1.99   msaitoh 		mask |= IXGBE_EIMS_ECC;
   4679   1.99   msaitoh 		break;
   4680   1.99   msaitoh 	case ixgbe_mac_X550EM_x:
   4681   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   4682   1.99   msaitoh 		/* Some devices use SDP0 for important information */
   4683   1.99   msaitoh 		if (hw->device_id == IXGBE_DEV_ID_X550EM_X_SFP ||
   4684   1.99   msaitoh 		    hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP ||
   4685   1.99   msaitoh 		    hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP_N ||
   4686   1.99   msaitoh 		    hw->device_id == IXGBE_DEV_ID_X550EM_X_10G_T)
   4687   1.99   msaitoh 			mask |= IXGBE_EIMS_GPI_SDP0_BY_MAC(hw);
   4688   1.99   msaitoh 		if (hw->phy.type == ixgbe_phy_x550em_ext_t)
   4689   1.99   msaitoh 			mask |= IXGBE_EICR_GPI_SDP0_X540;
   4690   1.99   msaitoh 		mask |= IXGBE_EIMS_ECC;
   4691   1.99   msaitoh 		break;
   4692   1.99   msaitoh 	default:
   4693   1.99   msaitoh 		break;
   4694    1.1    dyoung 	}
   4695   1.51   msaitoh 
   4696   1.99   msaitoh 	/* Enable Fan Failure detection */
   4697   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_FAN_FAIL)
   4698   1.99   msaitoh 		mask |= IXGBE_EIMS_GPI_SDP1;
   4699   1.99   msaitoh 	/* Enable SR-IOV */
   4700   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_SRIOV)
   4701   1.99   msaitoh 		mask |= IXGBE_EIMS_MAILBOX;
   4702   1.99   msaitoh 	/* Enable Flow Director */
   4703   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_FDIR)
   4704   1.99   msaitoh 		mask |= IXGBE_EIMS_FLOW_DIR;
   4705   1.99   msaitoh 
   4706   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
   4707   1.64   msaitoh 
   4708   1.98   msaitoh 	/* With MSI-X we use auto clear */
   4709   1.98   msaitoh 	if (adapter->msix_mem) {
   4710   1.98   msaitoh 		mask = IXGBE_EIMS_ENABLE_MASK;
   4711   1.98   msaitoh 		/* Don't autoclear Link */
   4712   1.98   msaitoh 		mask &= ~IXGBE_EIMS_OTHER;
   4713   1.98   msaitoh 		mask &= ~IXGBE_EIMS_LSC;
   4714   1.99   msaitoh 		if (adapter->feat_cap & IXGBE_FEATURE_SRIOV)
   4715   1.99   msaitoh 			mask &= ~IXGBE_EIMS_MAILBOX;
   4716   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
   4717   1.98   msaitoh 	}
   4718    1.1    dyoung 
   4719   1.98   msaitoh 	/*
   4720   1.99   msaitoh 	 * Now enable all queues, this is done separately to
   4721   1.99   msaitoh 	 * allow for handling the extended (beyond 32) MSI-X
   4722   1.99   msaitoh 	 * vectors that can be used by 82599
   4723   1.99   msaitoh 	 */
   4724   1.98   msaitoh         for (int i = 0; i < adapter->num_queues; i++, que++)
   4725   1.98   msaitoh                 ixgbe_enable_queue(adapter, que->msix);
   4726    1.1    dyoung 
   4727   1.98   msaitoh 	IXGBE_WRITE_FLUSH(hw);
   4728   1.43   msaitoh 
   4729   1.99   msaitoh } /* ixgbe_enable_intr */
   4730    1.1    dyoung 
   4731   1.99   msaitoh /************************************************************************
   4732  1.139  knakahar  * ixgbe_disable_intr_internal
   4733   1.99   msaitoh  ************************************************************************/
   4734   1.44   msaitoh static void
   4735  1.139  knakahar ixgbe_disable_intr_internal(struct adapter *adapter, bool nestok)
   4736   1.44   msaitoh {
   4737  1.127  knakahar 	struct ix_queue	*que = adapter->queues;
   4738  1.127  knakahar 
   4739  1.127  knakahar 	/* disable interrupts other than queues */
   4740  1.127  knakahar 	IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~IXGBE_EIMC_RTX_QUEUE);
   4741  1.127  knakahar 
   4742   1.98   msaitoh 	if (adapter->msix_mem)
   4743   1.98   msaitoh 		IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, 0);
   4744  1.127  knakahar 
   4745  1.127  knakahar 	for (int i = 0; i < adapter->num_queues; i++, que++)
   4746  1.139  knakahar 		ixgbe_disable_queue_internal(adapter, que->msix, nestok);
   4747  1.127  knakahar 
   4748   1.98   msaitoh 	IXGBE_WRITE_FLUSH(&adapter->hw);
   4749   1.99   msaitoh 
   4750  1.139  knakahar } /* ixgbe_do_disable_intr_internal */
   4751  1.139  knakahar 
   4752  1.139  knakahar /************************************************************************
   4753  1.139  knakahar  * ixgbe_disable_intr
   4754  1.139  knakahar  ************************************************************************/
   4755  1.139  knakahar static void
   4756  1.139  knakahar ixgbe_disable_intr(struct adapter *adapter)
   4757  1.139  knakahar {
   4758  1.139  knakahar 
   4759  1.139  knakahar 	ixgbe_disable_intr_internal(adapter, true);
   4760   1.99   msaitoh } /* ixgbe_disable_intr */
   4761   1.98   msaitoh 
   4762   1.99   msaitoh /************************************************************************
   4763  1.139  knakahar  * ixgbe_ensure_disabled_intr
   4764  1.139  knakahar  ************************************************************************/
   4765  1.139  knakahar void
   4766  1.139  knakahar ixgbe_ensure_disabled_intr(struct adapter *adapter)
   4767  1.139  knakahar {
   4768  1.139  knakahar 
   4769  1.139  knakahar 	ixgbe_disable_intr_internal(adapter, false);
   4770  1.139  knakahar } /* ixgbe_ensure_disabled_intr */
   4771  1.139  knakahar 
   4772  1.139  knakahar /************************************************************************
   4773   1.99   msaitoh  * ixgbe_legacy_irq - Legacy Interrupt Service routine
   4774   1.99   msaitoh  ************************************************************************/
   4775   1.98   msaitoh static int
   4776   1.98   msaitoh ixgbe_legacy_irq(void *arg)
   4777    1.1    dyoung {
   4778   1.98   msaitoh 	struct ix_queue *que = arg;
   4779   1.98   msaitoh 	struct adapter	*adapter = que->adapter;
   4780   1.98   msaitoh 	struct ixgbe_hw	*hw = &adapter->hw;
   4781   1.98   msaitoh 	struct ifnet    *ifp = adapter->ifp;
   4782   1.98   msaitoh 	struct 		tx_ring *txr = adapter->tx_rings;
   4783   1.98   msaitoh 	bool		more = false;
   4784   1.99   msaitoh 	u32             eicr, eicr_mask;
   4785   1.98   msaitoh 
   4786   1.99   msaitoh 	/* Silicon errata #26 on 82598 */
   4787   1.99   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
   4788   1.98   msaitoh 
   4789   1.99   msaitoh 	eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
   4790   1.44   msaitoh 
   4791   1.98   msaitoh 	adapter->stats.pf.legint.ev_count++;
   4792   1.98   msaitoh 	++que->irqs.ev_count;
   4793   1.99   msaitoh 	if (eicr == 0) {
   4794   1.98   msaitoh 		adapter->stats.pf.intzero.ev_count++;
   4795   1.98   msaitoh 		if ((ifp->if_flags & IFF_UP) != 0)
   4796   1.98   msaitoh 			ixgbe_enable_intr(adapter);
   4797   1.98   msaitoh 		return 0;
   4798   1.98   msaitoh 	}
   4799   1.44   msaitoh 
   4800   1.98   msaitoh 	if ((ifp->if_flags & IFF_RUNNING) != 0) {
   4801   1.98   msaitoh #ifdef __NetBSD__
   4802   1.98   msaitoh 		/* Don't run ixgbe_rxeof in interrupt context */
   4803   1.98   msaitoh 		more = true;
   4804   1.98   msaitoh #else
   4805   1.98   msaitoh 		more = ixgbe_rxeof(que);
   4806   1.98   msaitoh #endif
   4807   1.44   msaitoh 
   4808   1.98   msaitoh 		IXGBE_TX_LOCK(txr);
   4809   1.98   msaitoh 		ixgbe_txeof(txr);
   4810   1.99   msaitoh #ifdef notyet
   4811   1.99   msaitoh 		if (!ixgbe_ring_empty(ifp, txr->br))
   4812   1.99   msaitoh 			ixgbe_start_locked(ifp, txr);
   4813   1.99   msaitoh #endif
   4814   1.98   msaitoh 		IXGBE_TX_UNLOCK(txr);
   4815   1.44   msaitoh 	}
   4816   1.44   msaitoh 
   4817   1.98   msaitoh 	/* Check for fan failure */
   4818   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_FAN_FAIL) {
   4819   1.99   msaitoh 		ixgbe_check_fan_failure(adapter, eicr, true);
   4820   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EICR_GPI_SDP1_BY_MAC(hw));
   4821   1.98   msaitoh 	}
   4822   1.44   msaitoh 
   4823   1.98   msaitoh 	/* Link status change */
   4824   1.99   msaitoh 	if (eicr & IXGBE_EICR_LSC)
   4825   1.98   msaitoh 		softint_schedule(adapter->link_si);
   4826   1.44   msaitoh 
   4827   1.99   msaitoh 	if (ixgbe_is_sfp(hw)) {
   4828   1.99   msaitoh 		/* Pluggable optics-related interrupt */
   4829   1.99   msaitoh 		if (hw->mac.type >= ixgbe_mac_X540)
   4830   1.99   msaitoh 			eicr_mask = IXGBE_EICR_GPI_SDP0_X540;
   4831   1.99   msaitoh 		else
   4832   1.99   msaitoh 			eicr_mask = IXGBE_EICR_GPI_SDP2_BY_MAC(hw);
   4833   1.99   msaitoh 
   4834   1.99   msaitoh 		if (eicr & eicr_mask) {
   4835   1.99   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr_mask);
   4836   1.99   msaitoh 			softint_schedule(adapter->mod_si);
   4837   1.99   msaitoh 		}
   4838   1.99   msaitoh 
   4839   1.99   msaitoh 		if ((hw->mac.type == ixgbe_mac_82599EB) &&
   4840   1.99   msaitoh 		    (eicr & IXGBE_EICR_GPI_SDP1_BY_MAC(hw))) {
   4841   1.99   msaitoh 			IXGBE_WRITE_REG(hw, IXGBE_EICR,
   4842   1.99   msaitoh 			    IXGBE_EICR_GPI_SDP1_BY_MAC(hw));
   4843   1.99   msaitoh 			softint_schedule(adapter->msf_si);
   4844   1.99   msaitoh 		}
   4845   1.99   msaitoh 	}
   4846   1.99   msaitoh 
   4847   1.98   msaitoh 	/* External PHY interrupt */
   4848   1.99   msaitoh 	if ((hw->phy.type == ixgbe_phy_x550em_ext_t) &&
   4849   1.99   msaitoh 	    (eicr & IXGBE_EICR_GPI_SDP0_X540))
   4850   1.98   msaitoh 		softint_schedule(adapter->phy_si);
   4851   1.44   msaitoh 
   4852  1.129   msaitoh 	if (more) {
   4853  1.129   msaitoh 		que->req.ev_count++;
   4854  1.133  knakahar 		ixgbe_sched_handle_que(adapter, que);
   4855  1.129   msaitoh 	} else
   4856   1.98   msaitoh 		ixgbe_enable_intr(adapter);
   4857   1.99   msaitoh 
   4858   1.98   msaitoh 	return 1;
   4859   1.99   msaitoh } /* ixgbe_legacy_irq */
   4860   1.98   msaitoh 
   4861   1.99   msaitoh /************************************************************************
   4862  1.119   msaitoh  * ixgbe_free_pciintr_resources
   4863   1.99   msaitoh  ************************************************************************/
   4864   1.98   msaitoh static void
   4865  1.119   msaitoh ixgbe_free_pciintr_resources(struct adapter *adapter)
   4866   1.44   msaitoh {
   4867   1.99   msaitoh 	struct ix_queue *que = adapter->queues;
   4868   1.98   msaitoh 	int		rid;
   4869   1.44   msaitoh 
   4870   1.98   msaitoh 	/*
   4871   1.99   msaitoh 	 * Release all msix queue resources:
   4872   1.99   msaitoh 	 */
   4873   1.98   msaitoh 	for (int i = 0; i < adapter->num_queues; i++, que++) {
   4874  1.119   msaitoh 		if (que->res != NULL) {
   4875   1.98   msaitoh 			pci_intr_disestablish(adapter->osdep.pc,
   4876   1.98   msaitoh 			    adapter->osdep.ihs[i]);
   4877  1.119   msaitoh 			adapter->osdep.ihs[i] = NULL;
   4878  1.119   msaitoh 		}
   4879   1.58   msaitoh 	}
   4880   1.58   msaitoh 
   4881   1.98   msaitoh 	/* Clean the Legacy or Link interrupt last */
   4882   1.98   msaitoh 	if (adapter->vector) /* we are doing MSIX */
   4883   1.98   msaitoh 		rid = adapter->vector;
   4884   1.98   msaitoh 	else
   4885   1.98   msaitoh 		rid = 0;
   4886   1.44   msaitoh 
   4887   1.98   msaitoh 	if (adapter->osdep.ihs[rid] != NULL) {
   4888   1.98   msaitoh 		pci_intr_disestablish(adapter->osdep.pc,
   4889   1.98   msaitoh 		    adapter->osdep.ihs[rid]);
   4890   1.98   msaitoh 		adapter->osdep.ihs[rid] = NULL;
   4891   1.98   msaitoh 	}
   4892   1.44   msaitoh 
   4893  1.119   msaitoh 	if (adapter->osdep.intrs != NULL) {
   4894  1.119   msaitoh 		pci_intr_release(adapter->osdep.pc, adapter->osdep.intrs,
   4895  1.119   msaitoh 		    adapter->osdep.nintrs);
   4896  1.119   msaitoh 		adapter->osdep.intrs = NULL;
   4897  1.119   msaitoh 	}
   4898  1.119   msaitoh } /* ixgbe_free_pciintr_resources */
   4899  1.119   msaitoh 
   4900  1.119   msaitoh /************************************************************************
   4901  1.119   msaitoh  * ixgbe_free_pci_resources
   4902  1.119   msaitoh  ************************************************************************/
   4903  1.119   msaitoh static void
   4904  1.119   msaitoh ixgbe_free_pci_resources(struct adapter *adapter)
   4905  1.119   msaitoh {
   4906  1.119   msaitoh 
   4907  1.119   msaitoh 	ixgbe_free_pciintr_resources(adapter);
   4908   1.44   msaitoh 
   4909   1.98   msaitoh 	if (adapter->osdep.mem_size != 0) {
   4910   1.98   msaitoh 		bus_space_unmap(adapter->osdep.mem_bus_space_tag,
   4911   1.98   msaitoh 		    adapter->osdep.mem_bus_space_handle,
   4912   1.98   msaitoh 		    adapter->osdep.mem_size);
   4913   1.44   msaitoh 	}
   4914   1.44   msaitoh 
   4915   1.99   msaitoh } /* ixgbe_free_pci_resources */
   4916   1.44   msaitoh 
   4917   1.99   msaitoh /************************************************************************
   4918   1.99   msaitoh  * ixgbe_set_sysctl_value
   4919   1.99   msaitoh  ************************************************************************/
   4920   1.44   msaitoh static void
   4921   1.98   msaitoh ixgbe_set_sysctl_value(struct adapter *adapter, const char *name,
   4922   1.98   msaitoh     const char *description, int *limit, int value)
   4923   1.44   msaitoh {
   4924   1.98   msaitoh 	device_t dev =  adapter->dev;
   4925   1.98   msaitoh 	struct sysctllog **log;
   4926   1.98   msaitoh 	const struct sysctlnode *rnode, *cnode;
   4927    1.1    dyoung 
   4928   1.98   msaitoh 	log = &adapter->sysctllog;
   4929   1.98   msaitoh 	if ((rnode = ixgbe_sysctl_instance(adapter)) == NULL) {
   4930   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl root\n");
   4931   1.98   msaitoh 		return;
   4932   1.98   msaitoh 	}
   4933   1.98   msaitoh 	if (sysctl_createv(log, 0, &rnode, &cnode,
   4934   1.98   msaitoh 	    CTLFLAG_READWRITE, CTLTYPE_INT,
   4935   1.98   msaitoh 	    name, SYSCTL_DESCR(description),
   4936   1.98   msaitoh 		NULL, 0, limit, 0, CTL_CREATE, CTL_EOL) != 0)
   4937   1.98   msaitoh 		aprint_error_dev(dev, "could not create sysctl\n");
   4938   1.98   msaitoh 	*limit = value;
   4939   1.99   msaitoh } /* ixgbe_set_sysctl_value */
   4940    1.1    dyoung 
   4941   1.99   msaitoh /************************************************************************
   4942   1.99   msaitoh  * ixgbe_sysctl_flowcntl
   4943   1.99   msaitoh  *
   4944   1.99   msaitoh  *   SYSCTL wrapper around setting Flow Control
   4945   1.99   msaitoh  ************************************************************************/
   4946   1.98   msaitoh static int
   4947   1.98   msaitoh ixgbe_sysctl_flowcntl(SYSCTLFN_ARGS)
   4948   1.98   msaitoh {
   4949   1.98   msaitoh 	struct sysctlnode node = *rnode;
   4950   1.98   msaitoh 	struct adapter *adapter = (struct adapter *)node.sysctl_data;
   4951   1.99   msaitoh 	int error, fc;
   4952   1.82   msaitoh 
   4953   1.99   msaitoh 	fc = adapter->hw.fc.current_mode;
   4954   1.98   msaitoh 	node.sysctl_data = &fc;
   4955   1.98   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   4956   1.98   msaitoh 	if (error != 0 || newp == NULL)
   4957   1.98   msaitoh 		return error;
   4958   1.82   msaitoh 
   4959   1.98   msaitoh 	/* Don't bother if it's not changed */
   4960   1.99   msaitoh 	if (fc == adapter->hw.fc.current_mode)
   4961   1.98   msaitoh 		return (0);
   4962   1.83   msaitoh 
   4963   1.98   msaitoh 	return ixgbe_set_flowcntl(adapter, fc);
   4964   1.99   msaitoh } /* ixgbe_sysctl_flowcntl */
   4965    1.1    dyoung 
   4966   1.99   msaitoh /************************************************************************
   4967   1.99   msaitoh  * ixgbe_set_flowcntl - Set flow control
   4968   1.99   msaitoh  *
   4969   1.99   msaitoh  *   Flow control values:
   4970   1.99   msaitoh  *     0 - off
   4971   1.99   msaitoh  *     1 - rx pause
   4972   1.99   msaitoh  *     2 - tx pause
   4973   1.99   msaitoh  *     3 - full
   4974   1.99   msaitoh  ************************************************************************/
   4975   1.98   msaitoh static int
   4976   1.98   msaitoh ixgbe_set_flowcntl(struct adapter *adapter, int fc)
   4977   1.98   msaitoh {
   4978   1.98   msaitoh 	switch (fc) {
   4979   1.98   msaitoh 		case ixgbe_fc_rx_pause:
   4980   1.98   msaitoh 		case ixgbe_fc_tx_pause:
   4981   1.98   msaitoh 		case ixgbe_fc_full:
   4982   1.99   msaitoh 			adapter->hw.fc.requested_mode = fc;
   4983   1.98   msaitoh 			if (adapter->num_queues > 1)
   4984   1.98   msaitoh 				ixgbe_disable_rx_drop(adapter);
   4985   1.98   msaitoh 			break;
   4986   1.98   msaitoh 		case ixgbe_fc_none:
   4987   1.98   msaitoh 			adapter->hw.fc.requested_mode = ixgbe_fc_none;
   4988   1.98   msaitoh 			if (adapter->num_queues > 1)
   4989   1.98   msaitoh 				ixgbe_enable_rx_drop(adapter);
   4990   1.98   msaitoh 			break;
   4991   1.98   msaitoh 		default:
   4992   1.98   msaitoh 			return (EINVAL);
   4993    1.1    dyoung 	}
   4994   1.99   msaitoh 
   4995   1.98   msaitoh #if 0 /* XXX NetBSD */
   4996   1.98   msaitoh 	/* Don't autoneg if forcing a value */
   4997   1.98   msaitoh 	adapter->hw.fc.disable_fc_autoneg = TRUE;
   4998   1.98   msaitoh #endif
   4999   1.98   msaitoh 	ixgbe_fc_enable(&adapter->hw);
   5000   1.99   msaitoh 
   5001   1.98   msaitoh 	return (0);
   5002   1.99   msaitoh } /* ixgbe_set_flowcntl */
   5003    1.1    dyoung 
   5004   1.99   msaitoh /************************************************************************
   5005   1.99   msaitoh  * ixgbe_enable_rx_drop
   5006   1.99   msaitoh  *
   5007   1.99   msaitoh  *   Enable the hardware to drop packets when the buffer is
   5008   1.99   msaitoh  *   full. This is useful with multiqueue, so that no single
   5009   1.99   msaitoh  *   queue being full stalls the entire RX engine. We only
   5010   1.99   msaitoh  *   enable this when Multiqueue is enabled AND Flow Control
   5011   1.99   msaitoh  *   is disabled.
   5012   1.99   msaitoh  ************************************************************************/
   5013   1.98   msaitoh static void
   5014   1.98   msaitoh ixgbe_enable_rx_drop(struct adapter *adapter)
   5015   1.98   msaitoh {
   5016   1.99   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   5017   1.99   msaitoh 	struct rx_ring  *rxr;
   5018   1.99   msaitoh 	u32             srrctl;
   5019    1.1    dyoung 
   5020   1.98   msaitoh 	for (int i = 0; i < adapter->num_queues; i++) {
   5021   1.99   msaitoh 		rxr = &adapter->rx_rings[i];
   5022   1.99   msaitoh 		srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(rxr->me));
   5023   1.99   msaitoh 		srrctl |= IXGBE_SRRCTL_DROP_EN;
   5024   1.99   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(rxr->me), srrctl);
   5025   1.98   msaitoh 	}
   5026   1.99   msaitoh 
   5027   1.98   msaitoh 	/* enable drop for each vf */
   5028   1.98   msaitoh 	for (int i = 0; i < adapter->num_vfs; i++) {
   5029   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_QDE,
   5030   1.98   msaitoh 		    (IXGBE_QDE_WRITE | (i << IXGBE_QDE_IDX_SHIFT) |
   5031   1.98   msaitoh 		    IXGBE_QDE_ENABLE));
   5032   1.98   msaitoh 	}
   5033   1.99   msaitoh } /* ixgbe_enable_rx_drop */
   5034   1.43   msaitoh 
   5035   1.99   msaitoh /************************************************************************
   5036   1.99   msaitoh  * ixgbe_disable_rx_drop
   5037   1.99   msaitoh  ************************************************************************/
   5038   1.98   msaitoh static void
   5039   1.98   msaitoh ixgbe_disable_rx_drop(struct adapter *adapter)
   5040   1.98   msaitoh {
   5041   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   5042   1.99   msaitoh 	struct rx_ring  *rxr;
   5043   1.99   msaitoh 	u32             srrctl;
   5044   1.43   msaitoh 
   5045   1.98   msaitoh 	for (int i = 0; i < adapter->num_queues; i++) {
   5046   1.99   msaitoh 		rxr = &adapter->rx_rings[i];
   5047   1.99   msaitoh         	srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(rxr->me));
   5048   1.98   msaitoh         	srrctl &= ~IXGBE_SRRCTL_DROP_EN;
   5049   1.98   msaitoh         	IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(rxr->me), srrctl);
   5050   1.98   msaitoh 	}
   5051   1.99   msaitoh 
   5052   1.98   msaitoh 	/* disable drop for each vf */
   5053   1.98   msaitoh 	for (int i = 0; i < adapter->num_vfs; i++) {
   5054   1.98   msaitoh 		IXGBE_WRITE_REG(hw, IXGBE_QDE,
   5055   1.98   msaitoh 		    (IXGBE_QDE_WRITE | (i << IXGBE_QDE_IDX_SHIFT)));
   5056    1.1    dyoung 	}
   5057   1.99   msaitoh } /* ixgbe_disable_rx_drop */
   5058   1.98   msaitoh 
   5059   1.99   msaitoh /************************************************************************
   5060   1.99   msaitoh  * ixgbe_sysctl_advertise
   5061   1.99   msaitoh  *
   5062   1.99   msaitoh  *   SYSCTL wrapper around setting advertised speed
   5063   1.99   msaitoh  ************************************************************************/
   5064   1.98   msaitoh static int
   5065   1.98   msaitoh ixgbe_sysctl_advertise(SYSCTLFN_ARGS)
   5066   1.98   msaitoh {
   5067   1.99   msaitoh 	struct sysctlnode node = *rnode;
   5068   1.99   msaitoh 	struct adapter *adapter = (struct adapter *)node.sysctl_data;
   5069   1.99   msaitoh 	int            error = 0, advertise;
   5070    1.1    dyoung 
   5071   1.98   msaitoh 	advertise = adapter->advertise;
   5072   1.98   msaitoh 	node.sysctl_data = &advertise;
   5073   1.98   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   5074   1.98   msaitoh 	if (error != 0 || newp == NULL)
   5075   1.98   msaitoh 		return error;
   5076   1.28   msaitoh 
   5077   1.98   msaitoh 	return ixgbe_set_advertise(adapter, advertise);
   5078   1.99   msaitoh } /* ixgbe_sysctl_advertise */
   5079    1.1    dyoung 
   5080   1.99   msaitoh /************************************************************************
   5081   1.99   msaitoh  * ixgbe_set_advertise - Control advertised link speed
   5082   1.99   msaitoh  *
   5083   1.99   msaitoh  *   Flags:
   5084  1.103   msaitoh  *     0x00 - Default (all capable link speed)
   5085  1.103   msaitoh  *     0x01 - advertise 100 Mb
   5086  1.103   msaitoh  *     0x02 - advertise 1G
   5087  1.103   msaitoh  *     0x04 - advertise 10G
   5088  1.103   msaitoh  *     0x08 - advertise 10 Mb
   5089  1.103   msaitoh  *     0x10 - advertise 2.5G
   5090  1.103   msaitoh  *     0x20 - advertise 5G
   5091   1.99   msaitoh  ************************************************************************/
   5092   1.98   msaitoh static int
   5093   1.98   msaitoh ixgbe_set_advertise(struct adapter *adapter, int advertise)
   5094    1.1    dyoung {
   5095   1.99   msaitoh 	device_t         dev;
   5096   1.99   msaitoh 	struct ixgbe_hw  *hw;
   5097   1.99   msaitoh 	ixgbe_link_speed speed = 0;
   5098   1.99   msaitoh 	ixgbe_link_speed link_caps = 0;
   5099   1.99   msaitoh 	s32              err = IXGBE_NOT_IMPLEMENTED;
   5100   1.99   msaitoh 	bool             negotiate = FALSE;
   5101   1.98   msaitoh 
   5102   1.98   msaitoh 	/* Checks to validate new value */
   5103   1.98   msaitoh 	if (adapter->advertise == advertise) /* no change */
   5104   1.98   msaitoh 		return (0);
   5105   1.98   msaitoh 
   5106   1.99   msaitoh 	dev = adapter->dev;
   5107   1.98   msaitoh 	hw = &adapter->hw;
   5108   1.98   msaitoh 
   5109   1.98   msaitoh 	/* No speed changes for backplane media */
   5110   1.98   msaitoh 	if (hw->phy.media_type == ixgbe_media_type_backplane)
   5111   1.98   msaitoh 		return (ENODEV);
   5112   1.98   msaitoh 
   5113   1.98   msaitoh 	if (!((hw->phy.media_type == ixgbe_media_type_copper) ||
   5114   1.98   msaitoh 	    (hw->phy.multispeed_fiber))) {
   5115   1.98   msaitoh 		device_printf(dev,
   5116   1.98   msaitoh 		    "Advertised speed can only be set on copper or "
   5117   1.98   msaitoh 		    "multispeed fiber media types.\n");
   5118   1.98   msaitoh 		return (EINVAL);
   5119   1.98   msaitoh 	}
   5120   1.98   msaitoh 
   5121  1.109   msaitoh 	if (advertise < 0x0 || advertise > 0x2f) {
   5122   1.98   msaitoh 		device_printf(dev,
   5123   1.98   msaitoh 		    "Invalid advertised speed; valid modes are 0x0 through 0x7\n");
   5124   1.98   msaitoh 		return (EINVAL);
   5125   1.98   msaitoh 	}
   5126    1.1    dyoung 
   5127   1.99   msaitoh 	if (hw->mac.ops.get_link_capabilities) {
   5128   1.99   msaitoh 		err = hw->mac.ops.get_link_capabilities(hw, &link_caps,
   5129   1.99   msaitoh 		    &negotiate);
   5130   1.99   msaitoh 		if (err != IXGBE_SUCCESS) {
   5131   1.99   msaitoh 			device_printf(dev, "Unable to determine supported advertise speeds\n");
   5132   1.99   msaitoh 			return (ENODEV);
   5133   1.99   msaitoh 		}
   5134   1.99   msaitoh 	}
   5135   1.99   msaitoh 
   5136   1.98   msaitoh 	/* Set new value and report new advertised mode */
   5137   1.99   msaitoh 	if (advertise & 0x1) {
   5138   1.99   msaitoh 		if (!(link_caps & IXGBE_LINK_SPEED_100_FULL)) {
   5139   1.99   msaitoh 			device_printf(dev, "Interface does not support 100Mb advertised speed\n");
   5140   1.98   msaitoh 			return (EINVAL);
   5141   1.98   msaitoh 		}
   5142   1.98   msaitoh 		speed |= IXGBE_LINK_SPEED_100_FULL;
   5143   1.99   msaitoh 	}
   5144   1.99   msaitoh 	if (advertise & 0x2) {
   5145   1.99   msaitoh 		if (!(link_caps & IXGBE_LINK_SPEED_1GB_FULL)) {
   5146   1.99   msaitoh 			device_printf(dev, "Interface does not support 1Gb advertised speed\n");
   5147   1.99   msaitoh 			return (EINVAL);
   5148   1.99   msaitoh 		}
   5149   1.98   msaitoh 		speed |= IXGBE_LINK_SPEED_1GB_FULL;
   5150   1.99   msaitoh 	}
   5151   1.99   msaitoh 	if (advertise & 0x4) {
   5152   1.99   msaitoh 		if (!(link_caps & IXGBE_LINK_SPEED_10GB_FULL)) {
   5153   1.99   msaitoh 			device_printf(dev, "Interface does not support 10Gb advertised speed\n");
   5154   1.99   msaitoh 			return (EINVAL);
   5155   1.99   msaitoh 		}
   5156   1.98   msaitoh 		speed |= IXGBE_LINK_SPEED_10GB_FULL;
   5157   1.99   msaitoh 	}
   5158   1.99   msaitoh 	if (advertise & 0x8) {
   5159   1.99   msaitoh 		if (!(link_caps & IXGBE_LINK_SPEED_10_FULL)) {
   5160   1.99   msaitoh 			device_printf(dev, "Interface does not support 10Mb advertised speed\n");
   5161   1.99   msaitoh 			return (EINVAL);
   5162   1.99   msaitoh 		}
   5163   1.99   msaitoh 		speed |= IXGBE_LINK_SPEED_10_FULL;
   5164   1.99   msaitoh 	}
   5165  1.103   msaitoh 	if (advertise & 0x10) {
   5166  1.103   msaitoh 		if (!(link_caps & IXGBE_LINK_SPEED_2_5GB_FULL)) {
   5167  1.103   msaitoh 			device_printf(dev, "Interface does not support 2.5Gb advertised speed\n");
   5168  1.103   msaitoh 			return (EINVAL);
   5169  1.103   msaitoh 		}
   5170  1.103   msaitoh 		speed |= IXGBE_LINK_SPEED_2_5GB_FULL;
   5171  1.103   msaitoh 	}
   5172  1.103   msaitoh 	if (advertise & 0x20) {
   5173  1.103   msaitoh 		if (!(link_caps & IXGBE_LINK_SPEED_5GB_FULL)) {
   5174  1.103   msaitoh 			device_printf(dev, "Interface does not support 5Gb advertised speed\n");
   5175  1.103   msaitoh 			return (EINVAL);
   5176  1.103   msaitoh 		}
   5177  1.103   msaitoh 		speed |= IXGBE_LINK_SPEED_5GB_FULL;
   5178  1.103   msaitoh 	}
   5179   1.99   msaitoh 	if (advertise == 0)
   5180   1.99   msaitoh 		speed = link_caps; /* All capable link speed */
   5181    1.1    dyoung 
   5182   1.98   msaitoh 	hw->mac.autotry_restart = TRUE;
   5183   1.98   msaitoh 	hw->mac.ops.setup_link(hw, speed, TRUE);
   5184   1.99   msaitoh 	adapter->advertise = advertise;
   5185    1.1    dyoung 
   5186   1.99   msaitoh 	return (0);
   5187   1.99   msaitoh } /* ixgbe_set_advertise */
   5188    1.1    dyoung 
   5189   1.99   msaitoh /************************************************************************
   5190   1.99   msaitoh  * ixgbe_get_advertise - Get current advertised speed settings
   5191   1.99   msaitoh  *
   5192   1.99   msaitoh  *   Formatted for sysctl usage.
   5193   1.99   msaitoh  *   Flags:
   5194  1.103   msaitoh  *     0x01 - advertise 100 Mb
   5195  1.103   msaitoh  *     0x02 - advertise 1G
   5196  1.103   msaitoh  *     0x04 - advertise 10G
   5197  1.103   msaitoh  *     0x08 - advertise 10 Mb (yes, Mb)
   5198  1.103   msaitoh  *     0x10 - advertise 2.5G
   5199  1.103   msaitoh  *     0x20 - advertise 5G
   5200   1.99   msaitoh  ************************************************************************/
   5201   1.98   msaitoh static int
   5202   1.99   msaitoh ixgbe_get_advertise(struct adapter *adapter)
   5203    1.1    dyoung {
   5204   1.99   msaitoh 	struct ixgbe_hw  *hw = &adapter->hw;
   5205   1.99   msaitoh 	int              speed;
   5206   1.99   msaitoh 	ixgbe_link_speed link_caps = 0;
   5207   1.99   msaitoh 	s32              err;
   5208   1.99   msaitoh 	bool             negotiate = FALSE;
   5209   1.98   msaitoh 
   5210   1.99   msaitoh 	/*
   5211   1.99   msaitoh 	 * Advertised speed means nothing unless it's copper or
   5212   1.99   msaitoh 	 * multi-speed fiber
   5213   1.99   msaitoh 	 */
   5214   1.99   msaitoh 	if (!(hw->phy.media_type == ixgbe_media_type_copper) &&
   5215   1.99   msaitoh 	    !(hw->phy.multispeed_fiber))
   5216   1.99   msaitoh 		return (0);
   5217    1.1    dyoung 
   5218   1.99   msaitoh 	err = hw->mac.ops.get_link_capabilities(hw, &link_caps, &negotiate);
   5219   1.99   msaitoh 	if (err != IXGBE_SUCCESS)
   5220   1.99   msaitoh 		return (0);
   5221    1.1    dyoung 
   5222   1.99   msaitoh 	speed =
   5223  1.103   msaitoh 	    ((link_caps & IXGBE_LINK_SPEED_10GB_FULL)  ? 0x04 : 0) |
   5224  1.103   msaitoh 	    ((link_caps & IXGBE_LINK_SPEED_1GB_FULL)   ? 0x02 : 0) |
   5225  1.103   msaitoh 	    ((link_caps & IXGBE_LINK_SPEED_100_FULL)   ? 0x01 : 0) |
   5226  1.103   msaitoh 	    ((link_caps & IXGBE_LINK_SPEED_10_FULL)    ? 0x08 : 0) |
   5227  1.103   msaitoh 	    ((link_caps & IXGBE_LINK_SPEED_2_5GB_FULL) ? 0x10 : 0) |
   5228  1.103   msaitoh 	    ((link_caps & IXGBE_LINK_SPEED_5GB_FULL)   ? 0x20 : 0);
   5229   1.99   msaitoh 
   5230   1.99   msaitoh 	return speed;
   5231   1.99   msaitoh } /* ixgbe_get_advertise */
   5232   1.99   msaitoh 
   5233   1.99   msaitoh /************************************************************************
   5234   1.99   msaitoh  * ixgbe_sysctl_dmac - Manage DMA Coalescing
   5235   1.99   msaitoh  *
   5236   1.99   msaitoh  *   Control values:
   5237   1.99   msaitoh  *     0/1 - off / on (use default value of 1000)
   5238   1.99   msaitoh  *
   5239   1.99   msaitoh  *     Legal timer values are:
   5240   1.99   msaitoh  *     50,100,250,500,1000,2000,5000,10000
   5241   1.99   msaitoh  *
   5242   1.99   msaitoh  *     Turning off interrupt moderation will also turn this off.
   5243   1.99   msaitoh  ************************************************************************/
   5244    1.1    dyoung static int
   5245   1.98   msaitoh ixgbe_sysctl_dmac(SYSCTLFN_ARGS)
   5246    1.1    dyoung {
   5247   1.44   msaitoh 	struct sysctlnode node = *rnode;
   5248   1.98   msaitoh 	struct adapter *adapter = (struct adapter *)node.sysctl_data;
   5249   1.99   msaitoh 	struct ifnet   *ifp = adapter->ifp;
   5250   1.99   msaitoh 	int            error;
   5251   1.99   msaitoh 	int            newval;
   5252    1.1    dyoung 
   5253   1.99   msaitoh 	newval = adapter->dmac;
   5254   1.98   msaitoh 	node.sysctl_data = &newval;
   5255   1.22   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   5256   1.98   msaitoh 	if ((error) || (newp == NULL))
   5257   1.98   msaitoh 		return (error);
   5258   1.98   msaitoh 
   5259   1.98   msaitoh 	switch (newval) {
   5260   1.98   msaitoh 	case 0:
   5261   1.98   msaitoh 		/* Disabled */
   5262   1.98   msaitoh 		adapter->dmac = 0;
   5263   1.98   msaitoh 		break;
   5264   1.98   msaitoh 	case 1:
   5265   1.98   msaitoh 		/* Enable and use default */
   5266   1.98   msaitoh 		adapter->dmac = 1000;
   5267   1.98   msaitoh 		break;
   5268   1.98   msaitoh 	case 50:
   5269   1.98   msaitoh 	case 100:
   5270   1.98   msaitoh 	case 250:
   5271   1.98   msaitoh 	case 500:
   5272   1.98   msaitoh 	case 1000:
   5273   1.98   msaitoh 	case 2000:
   5274   1.98   msaitoh 	case 5000:
   5275   1.98   msaitoh 	case 10000:
   5276   1.98   msaitoh 		/* Legal values - allow */
   5277   1.98   msaitoh 		adapter->dmac = newval;
   5278   1.98   msaitoh 		break;
   5279   1.98   msaitoh 	default:
   5280   1.98   msaitoh 		/* Do nothing, illegal value */
   5281   1.98   msaitoh 		return (EINVAL);
   5282   1.22   msaitoh 	}
   5283    1.1    dyoung 
   5284   1.98   msaitoh 	/* Re-initialize hardware if it's already running */
   5285   1.98   msaitoh 	if (ifp->if_flags & IFF_RUNNING)
   5286  1.135   msaitoh 		ifp->if_init(ifp);
   5287    1.1    dyoung 
   5288   1.98   msaitoh 	return (0);
   5289    1.1    dyoung }
   5290    1.1    dyoung 
   5291   1.98   msaitoh #ifdef IXGBE_DEBUG
   5292   1.99   msaitoh /************************************************************************
   5293   1.99   msaitoh  * ixgbe_sysctl_power_state
   5294   1.99   msaitoh  *
   5295   1.99   msaitoh  *   Sysctl to test power states
   5296   1.99   msaitoh  *   Values:
   5297   1.99   msaitoh  *     0      - set device to D0
   5298   1.99   msaitoh  *     3      - set device to D3
   5299   1.99   msaitoh  *     (none) - get current device power state
   5300   1.99   msaitoh  ************************************************************************/
   5301   1.98   msaitoh static int
   5302   1.98   msaitoh ixgbe_sysctl_power_state(SYSCTLFN_ARGS)
   5303   1.44   msaitoh {
   5304   1.99   msaitoh #ifdef notyet
   5305   1.98   msaitoh 	struct sysctlnode node = *rnode;
   5306   1.98   msaitoh 	struct adapter *adapter = (struct adapter *)node.sysctl_data;
   5307   1.99   msaitoh 	device_t       dev =  adapter->dev;
   5308   1.99   msaitoh 	int            curr_ps, new_ps, error = 0;
   5309   1.44   msaitoh 
   5310   1.98   msaitoh 	curr_ps = new_ps = pci_get_powerstate(dev);
   5311   1.44   msaitoh 
   5312   1.98   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   5313   1.98   msaitoh 	if ((error) || (req->newp == NULL))
   5314   1.98   msaitoh 		return (error);
   5315   1.44   msaitoh 
   5316   1.98   msaitoh 	if (new_ps == curr_ps)
   5317   1.98   msaitoh 		return (0);
   5318   1.44   msaitoh 
   5319   1.98   msaitoh 	if (new_ps == 3 && curr_ps == 0)
   5320   1.98   msaitoh 		error = DEVICE_SUSPEND(dev);
   5321   1.98   msaitoh 	else if (new_ps == 0 && curr_ps == 3)
   5322   1.98   msaitoh 		error = DEVICE_RESUME(dev);
   5323   1.98   msaitoh 	else
   5324   1.98   msaitoh 		return (EINVAL);
   5325   1.44   msaitoh 
   5326   1.98   msaitoh 	device_printf(dev, "New state: %d\n", pci_get_powerstate(dev));
   5327   1.44   msaitoh 
   5328   1.98   msaitoh 	return (error);
   5329   1.98   msaitoh #else
   5330   1.98   msaitoh 	return 0;
   5331   1.98   msaitoh #endif
   5332   1.99   msaitoh } /* ixgbe_sysctl_power_state */
   5333   1.98   msaitoh #endif
   5334   1.99   msaitoh 
   5335   1.99   msaitoh /************************************************************************
   5336   1.99   msaitoh  * ixgbe_sysctl_wol_enable
   5337   1.99   msaitoh  *
   5338   1.99   msaitoh  *   Sysctl to enable/disable the WoL capability,
   5339   1.99   msaitoh  *   if supported by the adapter.
   5340   1.99   msaitoh  *
   5341   1.99   msaitoh  *   Values:
   5342   1.99   msaitoh  *     0 - disabled
   5343   1.99   msaitoh  *     1 - enabled
   5344   1.99   msaitoh  ************************************************************************/
   5345   1.98   msaitoh static int
   5346   1.98   msaitoh ixgbe_sysctl_wol_enable(SYSCTLFN_ARGS)
   5347   1.98   msaitoh {
   5348   1.98   msaitoh 	struct sysctlnode node = *rnode;
   5349   1.99   msaitoh 	struct adapter  *adapter = (struct adapter *)node.sysctl_data;
   5350   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   5351   1.99   msaitoh 	bool            new_wol_enabled;
   5352   1.99   msaitoh 	int             error = 0;
   5353   1.44   msaitoh 
   5354   1.98   msaitoh 	new_wol_enabled = hw->wol_enabled;
   5355   1.98   msaitoh 	node.sysctl_data = &new_wol_enabled;
   5356   1.98   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   5357   1.98   msaitoh 	if ((error) || (newp == NULL))
   5358   1.98   msaitoh 		return (error);
   5359   1.98   msaitoh 	if (new_wol_enabled == hw->wol_enabled)
   5360   1.98   msaitoh 		return (0);
   5361   1.44   msaitoh 
   5362   1.98   msaitoh 	if (new_wol_enabled && !adapter->wol_support)
   5363   1.98   msaitoh 		return (ENODEV);
   5364   1.98   msaitoh 	else
   5365   1.98   msaitoh 		hw->wol_enabled = new_wol_enabled;
   5366   1.44   msaitoh 
   5367   1.98   msaitoh 	return (0);
   5368   1.99   msaitoh } /* ixgbe_sysctl_wol_enable */
   5369   1.48   msaitoh 
   5370   1.99   msaitoh /************************************************************************
   5371   1.99   msaitoh  * ixgbe_sysctl_wufc - Wake Up Filter Control
   5372   1.99   msaitoh  *
   5373   1.99   msaitoh  *   Sysctl to enable/disable the types of packets that the
   5374   1.99   msaitoh  *   adapter will wake up on upon receipt.
   5375   1.99   msaitoh  *   Flags:
   5376   1.99   msaitoh  *     0x1  - Link Status Change
   5377   1.99   msaitoh  *     0x2  - Magic Packet
   5378   1.99   msaitoh  *     0x4  - Direct Exact
   5379   1.99   msaitoh  *     0x8  - Directed Multicast
   5380   1.99   msaitoh  *     0x10 - Broadcast
   5381   1.99   msaitoh  *     0x20 - ARP/IPv4 Request Packet
   5382   1.99   msaitoh  *     0x40 - Direct IPv4 Packet
   5383   1.99   msaitoh  *     0x80 - Direct IPv6 Packet
   5384   1.98   msaitoh  *
   5385   1.99   msaitoh  *   Settings not listed above will cause the sysctl to return an error.
   5386   1.99   msaitoh  ************************************************************************/
   5387    1.1    dyoung static int
   5388   1.98   msaitoh ixgbe_sysctl_wufc(SYSCTLFN_ARGS)
   5389    1.1    dyoung {
   5390   1.98   msaitoh 	struct sysctlnode node = *rnode;
   5391   1.98   msaitoh 	struct adapter *adapter = (struct adapter *)node.sysctl_data;
   5392   1.98   msaitoh 	int error = 0;
   5393   1.98   msaitoh 	u32 new_wufc;
   5394   1.52   msaitoh 
   5395   1.98   msaitoh 	new_wufc = adapter->wufc;
   5396   1.98   msaitoh 	node.sysctl_data = &new_wufc;
   5397   1.52   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   5398   1.98   msaitoh 	if ((error) || (newp == NULL))
   5399   1.98   msaitoh 		return (error);
   5400   1.98   msaitoh 	if (new_wufc == adapter->wufc)
   5401   1.98   msaitoh 		return (0);
   5402   1.98   msaitoh 
   5403   1.98   msaitoh 	if (new_wufc & 0xffffff00)
   5404   1.98   msaitoh 		return (EINVAL);
   5405   1.99   msaitoh 
   5406   1.99   msaitoh 	new_wufc &= 0xff;
   5407   1.99   msaitoh 	new_wufc |= (0xffffff & adapter->wufc);
   5408   1.99   msaitoh 	adapter->wufc = new_wufc;
   5409   1.52   msaitoh 
   5410   1.98   msaitoh 	return (0);
   5411   1.99   msaitoh } /* ixgbe_sysctl_wufc */
   5412   1.52   msaitoh 
   5413   1.98   msaitoh #ifdef IXGBE_DEBUG
   5414   1.99   msaitoh /************************************************************************
   5415   1.99   msaitoh  * ixgbe_sysctl_print_rss_config
   5416   1.99   msaitoh  ************************************************************************/
   5417   1.52   msaitoh static int
   5418   1.98   msaitoh ixgbe_sysctl_print_rss_config(SYSCTLFN_ARGS)
   5419   1.52   msaitoh {
   5420   1.99   msaitoh #ifdef notyet
   5421   1.99   msaitoh 	struct sysctlnode node = *rnode;
   5422   1.99   msaitoh 	struct adapter  *adapter = (struct adapter *)node.sysctl_data;
   5423   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   5424   1.99   msaitoh 	device_t        dev = adapter->dev;
   5425   1.99   msaitoh 	struct sbuf     *buf;
   5426   1.99   msaitoh 	int             error = 0, reta_size;
   5427   1.99   msaitoh 	u32             reg;
   5428    1.1    dyoung 
   5429   1.98   msaitoh 	buf = sbuf_new_for_sysctl(NULL, NULL, 128, req);
   5430   1.98   msaitoh 	if (!buf) {
   5431   1.98   msaitoh 		device_printf(dev, "Could not allocate sbuf for output.\n");
   5432   1.98   msaitoh 		return (ENOMEM);
   5433   1.98   msaitoh 	}
   5434   1.52   msaitoh 
   5435   1.98   msaitoh 	// TODO: use sbufs to make a string to print out
   5436   1.98   msaitoh 	/* Set multiplier for RETA setup and table size based on MAC */
   5437   1.98   msaitoh 	switch (adapter->hw.mac.type) {
   5438   1.98   msaitoh 	case ixgbe_mac_X550:
   5439   1.98   msaitoh 	case ixgbe_mac_X550EM_x:
   5440   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   5441   1.98   msaitoh 		reta_size = 128;
   5442   1.98   msaitoh 		break;
   5443   1.98   msaitoh 	default:
   5444   1.98   msaitoh 		reta_size = 32;
   5445   1.98   msaitoh 		break;
   5446   1.43   msaitoh 	}
   5447    1.1    dyoung 
   5448   1.98   msaitoh 	/* Print out the redirection table */
   5449   1.98   msaitoh 	sbuf_cat(buf, "\n");
   5450   1.98   msaitoh 	for (int i = 0; i < reta_size; i++) {
   5451   1.98   msaitoh 		if (i < 32) {
   5452   1.98   msaitoh 			reg = IXGBE_READ_REG(hw, IXGBE_RETA(i));
   5453   1.98   msaitoh 			sbuf_printf(buf, "RETA(%2d): 0x%08x\n", i, reg);
   5454   1.98   msaitoh 		} else {
   5455   1.98   msaitoh 			reg = IXGBE_READ_REG(hw, IXGBE_ERETA(i - 32));
   5456   1.98   msaitoh 			sbuf_printf(buf, "ERETA(%2d): 0x%08x\n", i - 32, reg);
   5457   1.98   msaitoh 		}
   5458   1.28   msaitoh 	}
   5459    1.1    dyoung 
   5460   1.98   msaitoh 	// TODO: print more config
   5461   1.43   msaitoh 
   5462   1.98   msaitoh 	error = sbuf_finish(buf);
   5463   1.98   msaitoh 	if (error)
   5464   1.98   msaitoh 		device_printf(dev, "Error finishing sbuf: %d\n", error);
   5465    1.1    dyoung 
   5466   1.98   msaitoh 	sbuf_delete(buf);
   5467   1.99   msaitoh #endif
   5468   1.98   msaitoh 	return (0);
   5469   1.99   msaitoh } /* ixgbe_sysctl_print_rss_config */
   5470   1.98   msaitoh #endif /* IXGBE_DEBUG */
   5471   1.24   msaitoh 
   5472   1.99   msaitoh /************************************************************************
   5473   1.99   msaitoh  * ixgbe_sysctl_phy_temp - Retrieve temperature of PHY
   5474   1.99   msaitoh  *
   5475   1.99   msaitoh  *   For X552/X557-AT devices using an external PHY
   5476   1.99   msaitoh  ************************************************************************/
   5477   1.44   msaitoh static int
   5478   1.44   msaitoh ixgbe_sysctl_phy_temp(SYSCTLFN_ARGS)
   5479   1.44   msaitoh {
   5480   1.44   msaitoh 	struct sysctlnode node = *rnode;
   5481   1.44   msaitoh 	struct adapter	*adapter = (struct adapter *)node.sysctl_data;
   5482   1.44   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   5483   1.44   msaitoh 	int val;
   5484   1.44   msaitoh 	u16 reg;
   5485   1.44   msaitoh 	int		error;
   5486   1.44   msaitoh 
   5487   1.44   msaitoh 	if (hw->device_id != IXGBE_DEV_ID_X550EM_X_10G_T) {
   5488   1.44   msaitoh 		device_printf(adapter->dev,
   5489   1.44   msaitoh 		    "Device has no supported external thermal sensor.\n");
   5490   1.44   msaitoh 		return (ENODEV);
   5491   1.44   msaitoh 	}
   5492   1.44   msaitoh 
   5493   1.44   msaitoh 	if (hw->phy.ops.read_reg(hw, IXGBE_PHY_CURRENT_TEMP,
   5494   1.99   msaitoh 		IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE, &reg)) {
   5495   1.44   msaitoh 		device_printf(adapter->dev,
   5496   1.44   msaitoh 		    "Error reading from PHY's current temperature register\n");
   5497   1.44   msaitoh 		return (EAGAIN);
   5498   1.44   msaitoh 	}
   5499   1.44   msaitoh 
   5500   1.44   msaitoh 	node.sysctl_data = &val;
   5501   1.44   msaitoh 
   5502   1.44   msaitoh 	/* Shift temp for output */
   5503   1.44   msaitoh 	val = reg >> 8;
   5504   1.44   msaitoh 
   5505   1.44   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   5506   1.44   msaitoh 	if ((error) || (newp == NULL))
   5507   1.44   msaitoh 		return (error);
   5508   1.44   msaitoh 
   5509   1.44   msaitoh 	return (0);
   5510   1.99   msaitoh } /* ixgbe_sysctl_phy_temp */
   5511   1.44   msaitoh 
   5512   1.99   msaitoh /************************************************************************
   5513   1.99   msaitoh  * ixgbe_sysctl_phy_overtemp_occurred
   5514   1.99   msaitoh  *
   5515   1.99   msaitoh  *   Reports (directly from the PHY) whether the current PHY
   5516   1.99   msaitoh  *   temperature is over the overtemp threshold.
   5517   1.99   msaitoh  ************************************************************************/
   5518   1.44   msaitoh static int
   5519   1.44   msaitoh ixgbe_sysctl_phy_overtemp_occurred(SYSCTLFN_ARGS)
   5520   1.44   msaitoh {
   5521   1.44   msaitoh 	struct sysctlnode node = *rnode;
   5522   1.44   msaitoh 	struct adapter	*adapter = (struct adapter *)node.sysctl_data;
   5523   1.44   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   5524   1.44   msaitoh 	int val, error;
   5525   1.44   msaitoh 	u16 reg;
   5526   1.44   msaitoh 
   5527   1.44   msaitoh 	if (hw->device_id != IXGBE_DEV_ID_X550EM_X_10G_T) {
   5528   1.44   msaitoh 		device_printf(adapter->dev,
   5529   1.44   msaitoh 		    "Device has no supported external thermal sensor.\n");
   5530   1.44   msaitoh 		return (ENODEV);
   5531   1.44   msaitoh 	}
   5532   1.44   msaitoh 
   5533   1.44   msaitoh 	if (hw->phy.ops.read_reg(hw, IXGBE_PHY_OVERTEMP_STATUS,
   5534   1.99   msaitoh 		IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE, &reg)) {
   5535   1.44   msaitoh 		device_printf(adapter->dev,
   5536   1.44   msaitoh 		    "Error reading from PHY's temperature status register\n");
   5537   1.44   msaitoh 		return (EAGAIN);
   5538   1.44   msaitoh 	}
   5539   1.44   msaitoh 
   5540   1.44   msaitoh 	node.sysctl_data = &val;
   5541   1.44   msaitoh 
   5542   1.44   msaitoh 	/* Get occurrence bit */
   5543   1.44   msaitoh 	val = !!(reg & 0x4000);
   5544   1.44   msaitoh 
   5545   1.44   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   5546   1.44   msaitoh 	if ((error) || (newp == NULL))
   5547   1.44   msaitoh 		return (error);
   5548   1.44   msaitoh 
   5549   1.44   msaitoh 	return (0);
   5550   1.99   msaitoh } /* ixgbe_sysctl_phy_overtemp_occurred */
   5551   1.99   msaitoh 
   5552   1.99   msaitoh /************************************************************************
   5553   1.99   msaitoh  * ixgbe_sysctl_eee_state
   5554   1.99   msaitoh  *
   5555   1.99   msaitoh  *   Sysctl to set EEE power saving feature
   5556   1.99   msaitoh  *   Values:
   5557   1.99   msaitoh  *     0      - disable EEE
   5558   1.99   msaitoh  *     1      - enable EEE
   5559   1.99   msaitoh  *     (none) - get current device EEE state
   5560   1.99   msaitoh  ************************************************************************/
   5561   1.99   msaitoh static int
   5562   1.99   msaitoh ixgbe_sysctl_eee_state(SYSCTLFN_ARGS)
   5563   1.99   msaitoh {
   5564   1.99   msaitoh 	struct sysctlnode node = *rnode;
   5565   1.99   msaitoh 	struct adapter *adapter = (struct adapter *)node.sysctl_data;
   5566   1.99   msaitoh 	struct ifnet   *ifp = adapter->ifp;
   5567   1.99   msaitoh 	device_t       dev = adapter->dev;
   5568   1.99   msaitoh 	int            curr_eee, new_eee, error = 0;
   5569   1.99   msaitoh 	s32            retval;
   5570   1.99   msaitoh 
   5571   1.99   msaitoh 	curr_eee = new_eee = !!(adapter->feat_en & IXGBE_FEATURE_EEE);
   5572   1.99   msaitoh 	node.sysctl_data = &new_eee;
   5573   1.99   msaitoh 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
   5574   1.99   msaitoh 	if ((error) || (newp == NULL))
   5575   1.99   msaitoh 		return (error);
   5576   1.99   msaitoh 
   5577   1.99   msaitoh 	/* Nothing to do */
   5578   1.99   msaitoh 	if (new_eee == curr_eee)
   5579   1.99   msaitoh 		return (0);
   5580   1.99   msaitoh 
   5581   1.99   msaitoh 	/* Not supported */
   5582   1.99   msaitoh 	if (!(adapter->feat_cap & IXGBE_FEATURE_EEE))
   5583   1.99   msaitoh 		return (EINVAL);
   5584   1.99   msaitoh 
   5585   1.99   msaitoh 	/* Bounds checking */
   5586   1.99   msaitoh 	if ((new_eee < 0) || (new_eee > 1))
   5587   1.99   msaitoh 		return (EINVAL);
   5588   1.99   msaitoh 
   5589   1.99   msaitoh 	retval = adapter->hw.mac.ops.setup_eee(&adapter->hw, new_eee);
   5590   1.99   msaitoh 	if (retval) {
   5591   1.99   msaitoh 		device_printf(dev, "Error in EEE setup: 0x%08X\n", retval);
   5592   1.99   msaitoh 		return (EINVAL);
   5593   1.99   msaitoh 	}
   5594   1.99   msaitoh 
   5595   1.99   msaitoh 	/* Restart auto-neg */
   5596  1.135   msaitoh 	ifp->if_init(ifp);
   5597   1.99   msaitoh 
   5598   1.99   msaitoh 	device_printf(dev, "New EEE state: %d\n", new_eee);
   5599   1.99   msaitoh 
   5600   1.99   msaitoh 	/* Cache new value */
   5601   1.99   msaitoh 	if (new_eee)
   5602   1.99   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_EEE;
   5603   1.99   msaitoh 	else
   5604   1.99   msaitoh 		adapter->feat_en &= ~IXGBE_FEATURE_EEE;
   5605   1.99   msaitoh 
   5606   1.99   msaitoh 	return (error);
   5607   1.99   msaitoh } /* ixgbe_sysctl_eee_state */
   5608   1.99   msaitoh 
   5609   1.99   msaitoh /************************************************************************
   5610   1.99   msaitoh  * ixgbe_init_device_features
   5611   1.99   msaitoh  ************************************************************************/
   5612   1.99   msaitoh static void
   5613   1.99   msaitoh ixgbe_init_device_features(struct adapter *adapter)
   5614   1.99   msaitoh {
   5615   1.99   msaitoh 	adapter->feat_cap = IXGBE_FEATURE_NETMAP
   5616   1.99   msaitoh 	                  | IXGBE_FEATURE_RSS
   5617   1.99   msaitoh 	                  | IXGBE_FEATURE_MSI
   5618   1.99   msaitoh 	                  | IXGBE_FEATURE_MSIX
   5619   1.99   msaitoh 	                  | IXGBE_FEATURE_LEGACY_IRQ
   5620   1.99   msaitoh 	                  | IXGBE_FEATURE_LEGACY_TX;
   5621   1.99   msaitoh 
   5622   1.99   msaitoh 	/* Set capabilities first... */
   5623   1.99   msaitoh 	switch (adapter->hw.mac.type) {
   5624   1.99   msaitoh 	case ixgbe_mac_82598EB:
   5625   1.99   msaitoh 		if (adapter->hw.device_id == IXGBE_DEV_ID_82598AT)
   5626   1.99   msaitoh 			adapter->feat_cap |= IXGBE_FEATURE_FAN_FAIL;
   5627   1.99   msaitoh 		break;
   5628   1.99   msaitoh 	case ixgbe_mac_X540:
   5629   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_SRIOV;
   5630   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_FDIR;
   5631   1.99   msaitoh 		if ((adapter->hw.device_id == IXGBE_DEV_ID_X540_BYPASS) &&
   5632   1.99   msaitoh 		    (adapter->hw.bus.func == 0))
   5633   1.99   msaitoh 			adapter->feat_cap |= IXGBE_FEATURE_BYPASS;
   5634   1.99   msaitoh 		break;
   5635   1.99   msaitoh 	case ixgbe_mac_X550:
   5636   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_TEMP_SENSOR;
   5637   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_SRIOV;
   5638   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_FDIR;
   5639   1.99   msaitoh 		break;
   5640   1.99   msaitoh 	case ixgbe_mac_X550EM_x:
   5641   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_SRIOV;
   5642   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_FDIR;
   5643   1.99   msaitoh 		if (adapter->hw.device_id == IXGBE_DEV_ID_X550EM_X_KR)
   5644   1.99   msaitoh 			adapter->feat_cap |= IXGBE_FEATURE_EEE;
   5645   1.99   msaitoh 		break;
   5646   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   5647   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_SRIOV;
   5648   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_FDIR;
   5649   1.99   msaitoh 		adapter->feat_cap &= ~IXGBE_FEATURE_LEGACY_IRQ;
   5650   1.99   msaitoh 		if ((adapter->hw.device_id == IXGBE_DEV_ID_X550EM_A_1G_T) ||
   5651   1.99   msaitoh 		    (adapter->hw.device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L)) {
   5652   1.99   msaitoh 			adapter->feat_cap |= IXGBE_FEATURE_TEMP_SENSOR;
   5653   1.99   msaitoh 			adapter->feat_cap |= IXGBE_FEATURE_EEE;
   5654   1.99   msaitoh 		}
   5655   1.99   msaitoh 		break;
   5656   1.99   msaitoh 	case ixgbe_mac_82599EB:
   5657   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_SRIOV;
   5658   1.99   msaitoh 		adapter->feat_cap |= IXGBE_FEATURE_FDIR;
   5659   1.99   msaitoh 		if ((adapter->hw.device_id == IXGBE_DEV_ID_82599_BYPASS) &&
   5660   1.99   msaitoh 		    (adapter->hw.bus.func == 0))
   5661   1.99   msaitoh 			adapter->feat_cap |= IXGBE_FEATURE_BYPASS;
   5662   1.99   msaitoh 		if (adapter->hw.device_id == IXGBE_DEV_ID_82599_QSFP_SF_QP)
   5663   1.99   msaitoh 			adapter->feat_cap &= ~IXGBE_FEATURE_LEGACY_IRQ;
   5664   1.99   msaitoh 		break;
   5665   1.99   msaitoh 	default:
   5666   1.99   msaitoh 		break;
   5667   1.99   msaitoh 	}
   5668   1.99   msaitoh 
   5669   1.99   msaitoh 	/* Enabled by default... */
   5670   1.99   msaitoh 	/* Fan failure detection */
   5671   1.99   msaitoh 	if (adapter->feat_cap & IXGBE_FEATURE_FAN_FAIL)
   5672   1.99   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_FAN_FAIL;
   5673   1.99   msaitoh 	/* Netmap */
   5674   1.99   msaitoh 	if (adapter->feat_cap & IXGBE_FEATURE_NETMAP)
   5675   1.99   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_NETMAP;
   5676   1.99   msaitoh 	/* EEE */
   5677   1.99   msaitoh 	if (adapter->feat_cap & IXGBE_FEATURE_EEE)
   5678   1.99   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_EEE;
   5679   1.99   msaitoh 	/* Thermal Sensor */
   5680   1.99   msaitoh 	if (adapter->feat_cap & IXGBE_FEATURE_TEMP_SENSOR)
   5681   1.99   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_TEMP_SENSOR;
   5682   1.99   msaitoh 
   5683   1.99   msaitoh 	/* Enabled via global sysctl... */
   5684   1.99   msaitoh 	/* Flow Director */
   5685   1.99   msaitoh 	if (ixgbe_enable_fdir) {
   5686   1.99   msaitoh 		if (adapter->feat_cap & IXGBE_FEATURE_FDIR)
   5687   1.99   msaitoh 			adapter->feat_en |= IXGBE_FEATURE_FDIR;
   5688   1.99   msaitoh 		else
   5689   1.99   msaitoh 			device_printf(adapter->dev, "Device does not support Flow Director. Leaving disabled.");
   5690   1.99   msaitoh 	}
   5691   1.99   msaitoh 	/* Legacy (single queue) transmit */
   5692   1.99   msaitoh 	if ((adapter->feat_cap & IXGBE_FEATURE_LEGACY_TX) &&
   5693   1.99   msaitoh 	    ixgbe_enable_legacy_tx)
   5694   1.99   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_LEGACY_TX;
   5695   1.99   msaitoh 	/*
   5696   1.99   msaitoh 	 * Message Signal Interrupts - Extended (MSI-X)
   5697   1.99   msaitoh 	 * Normal MSI is only enabled if MSI-X calls fail.
   5698   1.99   msaitoh 	 */
   5699   1.99   msaitoh 	if (!ixgbe_enable_msix)
   5700   1.99   msaitoh 		adapter->feat_cap &= ~IXGBE_FEATURE_MSIX;
   5701   1.99   msaitoh 	/* Receive-Side Scaling (RSS) */
   5702   1.99   msaitoh 	if ((adapter->feat_cap & IXGBE_FEATURE_RSS) && ixgbe_enable_rss)
   5703   1.99   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_RSS;
   5704   1.99   msaitoh 
   5705   1.99   msaitoh 	/* Disable features with unmet dependencies... */
   5706   1.99   msaitoh 	/* No MSI-X */
   5707   1.99   msaitoh 	if (!(adapter->feat_cap & IXGBE_FEATURE_MSIX)) {
   5708   1.99   msaitoh 		adapter->feat_cap &= ~IXGBE_FEATURE_RSS;
   5709   1.99   msaitoh 		adapter->feat_cap &= ~IXGBE_FEATURE_SRIOV;
   5710   1.99   msaitoh 		adapter->feat_en &= ~IXGBE_FEATURE_RSS;
   5711   1.99   msaitoh 		adapter->feat_en &= ~IXGBE_FEATURE_SRIOV;
   5712   1.99   msaitoh 	}
   5713   1.99   msaitoh } /* ixgbe_init_device_features */
   5714   1.44   msaitoh 
   5715   1.99   msaitoh /************************************************************************
   5716   1.99   msaitoh  * ixgbe_probe - Device identification routine
   5717   1.98   msaitoh  *
   5718   1.99   msaitoh  *   Determines if the driver should be loaded on
   5719   1.99   msaitoh  *   adapter based on its PCI vendor/device ID.
   5720   1.98   msaitoh  *
   5721   1.99   msaitoh  *   return BUS_PROBE_DEFAULT on success, positive on failure
   5722   1.99   msaitoh  ************************************************************************/
   5723   1.98   msaitoh static int
   5724   1.98   msaitoh ixgbe_probe(device_t dev, cfdata_t cf, void *aux)
   5725   1.98   msaitoh {
   5726   1.98   msaitoh 	const struct pci_attach_args *pa = aux;
   5727   1.98   msaitoh 
   5728   1.98   msaitoh 	return (ixgbe_lookup(pa) != NULL) ? 1 : 0;
   5729   1.98   msaitoh }
   5730   1.98   msaitoh 
   5731   1.98   msaitoh static ixgbe_vendor_info_t *
   5732   1.98   msaitoh ixgbe_lookup(const struct pci_attach_args *pa)
   5733   1.98   msaitoh {
   5734   1.99   msaitoh 	ixgbe_vendor_info_t *ent;
   5735   1.98   msaitoh 	pcireg_t subid;
   5736   1.98   msaitoh 
   5737   1.98   msaitoh 	INIT_DEBUGOUT("ixgbe_lookup: begin");
   5738   1.98   msaitoh 
   5739   1.98   msaitoh 	if (PCI_VENDOR(pa->pa_id) != IXGBE_INTEL_VENDOR_ID)
   5740   1.98   msaitoh 		return NULL;
   5741   1.98   msaitoh 
   5742   1.98   msaitoh 	subid = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_SUBSYS_ID_REG);
   5743   1.98   msaitoh 
   5744   1.98   msaitoh 	for (ent = ixgbe_vendor_info_array; ent->vendor_id != 0; ent++) {
   5745   1.99   msaitoh 		if ((PCI_VENDOR(pa->pa_id) == ent->vendor_id) &&
   5746   1.99   msaitoh 		    (PCI_PRODUCT(pa->pa_id) == ent->device_id) &&
   5747   1.99   msaitoh 		    ((PCI_SUBSYS_VENDOR(subid) == ent->subvendor_id) ||
   5748   1.99   msaitoh 			(ent->subvendor_id == 0)) &&
   5749   1.99   msaitoh 		    ((PCI_SUBSYS_ID(subid) == ent->subdevice_id) ||
   5750   1.99   msaitoh 			(ent->subdevice_id == 0))) {
   5751   1.98   msaitoh 			++ixgbe_total_ports;
   5752   1.98   msaitoh 			return ent;
   5753   1.98   msaitoh 		}
   5754   1.98   msaitoh 	}
   5755   1.98   msaitoh 	return NULL;
   5756   1.98   msaitoh }
   5757   1.98   msaitoh 
   5758   1.98   msaitoh static int
   5759   1.98   msaitoh ixgbe_ifflags_cb(struct ethercom *ec)
   5760   1.98   msaitoh {
   5761   1.98   msaitoh 	struct ifnet *ifp = &ec->ec_if;
   5762   1.98   msaitoh 	struct adapter *adapter = ifp->if_softc;
   5763   1.98   msaitoh 	int change = ifp->if_flags ^ adapter->if_flags, rc = 0;
   5764   1.98   msaitoh 
   5765   1.98   msaitoh 	IXGBE_CORE_LOCK(adapter);
   5766   1.98   msaitoh 
   5767   1.98   msaitoh 	if (change != 0)
   5768   1.98   msaitoh 		adapter->if_flags = ifp->if_flags;
   5769   1.98   msaitoh 
   5770   1.98   msaitoh 	if ((change & ~(IFF_CANTCHANGE | IFF_DEBUG)) != 0)
   5771   1.98   msaitoh 		rc = ENETRESET;
   5772   1.98   msaitoh 	else if ((change & (IFF_PROMISC | IFF_ALLMULTI)) != 0)
   5773   1.98   msaitoh 		ixgbe_set_promisc(adapter);
   5774   1.98   msaitoh 
   5775   1.98   msaitoh 	/* Set up VLAN support and filter */
   5776   1.98   msaitoh 	ixgbe_setup_vlan_hw_support(adapter);
   5777   1.98   msaitoh 
   5778   1.98   msaitoh 	IXGBE_CORE_UNLOCK(adapter);
   5779   1.98   msaitoh 
   5780   1.98   msaitoh 	return rc;
   5781   1.98   msaitoh }
   5782   1.98   msaitoh 
   5783   1.99   msaitoh /************************************************************************
   5784   1.99   msaitoh  * ixgbe_ioctl - Ioctl entry point
   5785   1.98   msaitoh  *
   5786   1.99   msaitoh  *   Called when the user wants to configure the interface.
   5787   1.98   msaitoh  *
   5788   1.99   msaitoh  *   return 0 on success, positive on failure
   5789   1.99   msaitoh  ************************************************************************/
   5790   1.98   msaitoh static int
   5791   1.98   msaitoh ixgbe_ioctl(struct ifnet * ifp, u_long command, void *data)
   5792   1.98   msaitoh {
   5793   1.98   msaitoh 	struct adapter	*adapter = ifp->if_softc;
   5794   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   5795   1.98   msaitoh 	struct ifcapreq *ifcr = data;
   5796   1.98   msaitoh 	struct ifreq	*ifr = data;
   5797   1.98   msaitoh 	int             error = 0;
   5798   1.98   msaitoh 	int l4csum_en;
   5799   1.98   msaitoh 	const int l4csum = IFCAP_CSUM_TCPv4_Rx|IFCAP_CSUM_UDPv4_Rx|
   5800   1.98   msaitoh 	     IFCAP_CSUM_TCPv6_Rx|IFCAP_CSUM_UDPv6_Rx;
   5801   1.98   msaitoh 
   5802   1.98   msaitoh 	switch (command) {
   5803   1.98   msaitoh 	case SIOCSIFFLAGS:
   5804   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCSIFFLAGS (Set Interface Flags)");
   5805   1.98   msaitoh 		break;
   5806   1.98   msaitoh 	case SIOCADDMULTI:
   5807   1.98   msaitoh 	case SIOCDELMULTI:
   5808   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOC(ADD|DEL)MULTI");
   5809   1.98   msaitoh 		break;
   5810   1.98   msaitoh 	case SIOCSIFMEDIA:
   5811   1.98   msaitoh 	case SIOCGIFMEDIA:
   5812   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCxIFMEDIA (Get/Set Interface Media)");
   5813   1.98   msaitoh 		break;
   5814   1.98   msaitoh 	case SIOCSIFCAP:
   5815   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCSIFCAP (Set Capabilities)");
   5816   1.98   msaitoh 		break;
   5817   1.98   msaitoh 	case SIOCSIFMTU:
   5818   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCSIFMTU (Set Interface MTU)");
   5819   1.98   msaitoh 		break;
   5820   1.98   msaitoh #ifdef __NetBSD__
   5821   1.98   msaitoh 	case SIOCINITIFADDR:
   5822   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCINITIFADDR");
   5823   1.98   msaitoh 		break;
   5824   1.98   msaitoh 	case SIOCGIFFLAGS:
   5825   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCGIFFLAGS");
   5826   1.98   msaitoh 		break;
   5827   1.98   msaitoh 	case SIOCGIFAFLAG_IN:
   5828   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCGIFAFLAG_IN");
   5829   1.98   msaitoh 		break;
   5830   1.98   msaitoh 	case SIOCGIFADDR:
   5831   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCGIFADDR");
   5832   1.98   msaitoh 		break;
   5833   1.98   msaitoh 	case SIOCGIFMTU:
   5834   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCGIFMTU (Get Interface MTU)");
   5835   1.98   msaitoh 		break;
   5836   1.98   msaitoh 	case SIOCGIFCAP:
   5837   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCGIFCAP (Get IF cap)");
   5838   1.98   msaitoh 		break;
   5839   1.98   msaitoh 	case SIOCGETHERCAP:
   5840   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCGETHERCAP (Get ethercap)");
   5841   1.98   msaitoh 		break;
   5842   1.98   msaitoh 	case SIOCGLIFADDR:
   5843   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCGLIFADDR (Get Interface addr)");
   5844   1.98   msaitoh 		break;
   5845   1.98   msaitoh 	case SIOCZIFDATA:
   5846   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCZIFDATA (Zero counter)");
   5847   1.98   msaitoh 		hw->mac.ops.clear_hw_cntrs(hw);
   5848   1.98   msaitoh 		ixgbe_clear_evcnt(adapter);
   5849   1.98   msaitoh 		break;
   5850   1.98   msaitoh 	case SIOCAIFADDR:
   5851   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCAIFADDR (add/chg IF alias)");
   5852   1.98   msaitoh 		break;
   5853   1.98   msaitoh #endif
   5854   1.98   msaitoh 	default:
   5855   1.98   msaitoh 		IOCTL_DEBUGOUT1("ioctl: UNKNOWN (0x%X)", (int)command);
   5856   1.98   msaitoh 		break;
   5857   1.98   msaitoh 	}
   5858   1.24   msaitoh 
   5859   1.98   msaitoh 	switch (command) {
   5860   1.98   msaitoh 	case SIOCSIFMEDIA:
   5861   1.98   msaitoh 	case SIOCGIFMEDIA:
   5862   1.98   msaitoh 		return ifmedia_ioctl(ifp, ifr, &adapter->media, command);
   5863   1.98   msaitoh 	case SIOCGI2C:
   5864   1.98   msaitoh 	{
   5865   1.98   msaitoh 		struct ixgbe_i2c_req	i2c;
   5866   1.24   msaitoh 
   5867   1.98   msaitoh 		IOCTL_DEBUGOUT("ioctl: SIOCGI2C (Get I2C Data)");
   5868   1.98   msaitoh 		error = copyin(ifr->ifr_data, &i2c, sizeof(i2c));
   5869   1.98   msaitoh 		if (error != 0)
   5870   1.98   msaitoh 			break;
   5871   1.98   msaitoh 		if (i2c.dev_addr != 0xA0 && i2c.dev_addr != 0xA2) {
   5872   1.98   msaitoh 			error = EINVAL;
   5873   1.98   msaitoh 			break;
   5874   1.98   msaitoh 		}
   5875   1.98   msaitoh 		if (i2c.len > sizeof(i2c.data)) {
   5876   1.98   msaitoh 			error = EINVAL;
   5877   1.98   msaitoh 			break;
   5878   1.98   msaitoh 		}
   5879   1.24   msaitoh 
   5880   1.98   msaitoh 		hw->phy.ops.read_i2c_byte(hw, i2c.offset,
   5881   1.98   msaitoh 		    i2c.dev_addr, i2c.data);
   5882   1.98   msaitoh 		error = copyout(&i2c, ifr->ifr_data, sizeof(i2c));
   5883   1.98   msaitoh 		break;
   5884   1.98   msaitoh 	}
   5885   1.98   msaitoh 	case SIOCSIFCAP:
   5886   1.98   msaitoh 		/* Layer-4 Rx checksum offload has to be turned on and
   5887   1.98   msaitoh 		 * off as a unit.
   5888   1.98   msaitoh 		 */
   5889   1.98   msaitoh 		l4csum_en = ifcr->ifcr_capenable & l4csum;
   5890   1.98   msaitoh 		if (l4csum_en != l4csum && l4csum_en != 0)
   5891   1.98   msaitoh 			return EINVAL;
   5892   1.98   msaitoh 		/*FALLTHROUGH*/
   5893   1.98   msaitoh 	case SIOCADDMULTI:
   5894   1.98   msaitoh 	case SIOCDELMULTI:
   5895   1.98   msaitoh 	case SIOCSIFFLAGS:
   5896   1.98   msaitoh 	case SIOCSIFMTU:
   5897   1.98   msaitoh 	default:
   5898   1.98   msaitoh 		if ((error = ether_ioctl(ifp, command, data)) != ENETRESET)
   5899   1.98   msaitoh 			return error;
   5900   1.98   msaitoh 		if ((ifp->if_flags & IFF_RUNNING) == 0)
   5901   1.98   msaitoh 			;
   5902   1.98   msaitoh 		else if (command == SIOCSIFCAP || command == SIOCSIFMTU) {
   5903   1.98   msaitoh 			IXGBE_CORE_LOCK(adapter);
   5904  1.135   msaitoh 			if ((ifp->if_flags & IFF_RUNNING) != 0)
   5905  1.135   msaitoh 				ixgbe_init_locked(adapter);
   5906   1.98   msaitoh 			ixgbe_recalculate_max_frame(adapter);
   5907   1.98   msaitoh 			IXGBE_CORE_UNLOCK(adapter);
   5908   1.98   msaitoh 		} else if (command == SIOCADDMULTI || command == SIOCDELMULTI) {
   5909   1.98   msaitoh 			/*
   5910   1.98   msaitoh 			 * Multicast list has changed; set the hardware filter
   5911   1.98   msaitoh 			 * accordingly.
   5912   1.98   msaitoh 			 */
   5913   1.98   msaitoh 			IXGBE_CORE_LOCK(adapter);
   5914   1.98   msaitoh 			ixgbe_disable_intr(adapter);
   5915   1.98   msaitoh 			ixgbe_set_multi(adapter);
   5916   1.98   msaitoh 			ixgbe_enable_intr(adapter);
   5917   1.98   msaitoh 			IXGBE_CORE_UNLOCK(adapter);
   5918   1.98   msaitoh 		}
   5919   1.98   msaitoh 		return 0;
   5920   1.24   msaitoh 	}
   5921   1.24   msaitoh 
   5922   1.98   msaitoh 	return error;
   5923   1.99   msaitoh } /* ixgbe_ioctl */
   5924   1.99   msaitoh 
   5925   1.99   msaitoh /************************************************************************
   5926   1.99   msaitoh  * ixgbe_check_fan_failure
   5927   1.99   msaitoh  ************************************************************************/
   5928   1.99   msaitoh static void
   5929   1.99   msaitoh ixgbe_check_fan_failure(struct adapter *adapter, u32 reg, bool in_interrupt)
   5930   1.99   msaitoh {
   5931   1.99   msaitoh 	u32 mask;
   5932   1.99   msaitoh 
   5933   1.99   msaitoh 	mask = (in_interrupt) ? IXGBE_EICR_GPI_SDP1_BY_MAC(&adapter->hw) :
   5934   1.99   msaitoh 	    IXGBE_ESDP_SDP1;
   5935   1.26   msaitoh 
   5936   1.99   msaitoh 	if (reg & mask)
   5937   1.99   msaitoh 		device_printf(adapter->dev, "\nCRITICAL: FAN FAILURE!! REPLACE IMMEDIATELY!!\n");
   5938   1.99   msaitoh } /* ixgbe_check_fan_failure */
   5939   1.99   msaitoh 
   5940   1.99   msaitoh /************************************************************************
   5941   1.99   msaitoh  * ixgbe_handle_que
   5942   1.99   msaitoh  ************************************************************************/
   5943   1.98   msaitoh static void
   5944   1.98   msaitoh ixgbe_handle_que(void *context)
   5945   1.44   msaitoh {
   5946   1.98   msaitoh 	struct ix_queue *que = context;
   5947   1.98   msaitoh 	struct adapter  *adapter = que->adapter;
   5948   1.98   msaitoh 	struct tx_ring  *txr = que->txr;
   5949   1.98   msaitoh 	struct ifnet    *ifp = adapter->ifp;
   5950  1.121   msaitoh 	bool		more = false;
   5951   1.44   msaitoh 
   5952  1.129   msaitoh 	que->handleq.ev_count++;
   5953   1.44   msaitoh 
   5954   1.98   msaitoh 	if (ifp->if_flags & IFF_RUNNING) {
   5955  1.121   msaitoh 		more = ixgbe_rxeof(que);
   5956   1.98   msaitoh 		IXGBE_TX_LOCK(txr);
   5957  1.126   msaitoh 		more |= ixgbe_txeof(txr);
   5958   1.99   msaitoh 		if (!(adapter->feat_en & IXGBE_FEATURE_LEGACY_TX))
   5959   1.99   msaitoh 			if (!ixgbe_mq_ring_empty(ifp, txr->txr_interq))
   5960   1.99   msaitoh 				ixgbe_mq_start_locked(ifp, txr);
   5961   1.98   msaitoh 		/* Only for queue 0 */
   5962   1.99   msaitoh 		/* NetBSD still needs this for CBQ */
   5963   1.98   msaitoh 		if ((&adapter->queues[0] == que)
   5964   1.99   msaitoh 		    && (!ixgbe_legacy_ring_empty(ifp, NULL)))
   5965   1.99   msaitoh 			ixgbe_legacy_start_locked(ifp, txr);
   5966   1.98   msaitoh 		IXGBE_TX_UNLOCK(txr);
   5967   1.44   msaitoh 	}
   5968   1.44   msaitoh 
   5969  1.128  knakahar 	if (more) {
   5970  1.129   msaitoh 		que->req.ev_count++;
   5971  1.133  knakahar 		ixgbe_sched_handle_que(adapter, que);
   5972  1.128  knakahar 	} else if (que->res != NULL) {
   5973  1.121   msaitoh 		/* Re-enable this interrupt */
   5974   1.98   msaitoh 		ixgbe_enable_queue(adapter, que->msix);
   5975  1.121   msaitoh 	} else
   5976   1.98   msaitoh 		ixgbe_enable_intr(adapter);
   5977   1.99   msaitoh 
   5978   1.98   msaitoh 	return;
   5979   1.99   msaitoh } /* ixgbe_handle_que */
   5980   1.44   msaitoh 
   5981   1.99   msaitoh /************************************************************************
   5982  1.128  knakahar  * ixgbe_handle_que_work
   5983  1.128  knakahar  ************************************************************************/
   5984  1.128  knakahar static void
   5985  1.128  knakahar ixgbe_handle_que_work(struct work *wk, void *context)
   5986  1.128  knakahar {
   5987  1.128  knakahar 	struct ix_queue *que = container_of(wk, struct ix_queue, wq_cookie);
   5988  1.128  knakahar 
   5989  1.128  knakahar 	/*
   5990  1.128  knakahar 	 * "enqueued flag" is not required here.
   5991  1.128  knakahar 	 * See ixgbe_msix_que().
   5992  1.128  knakahar 	 */
   5993  1.128  knakahar 	ixgbe_handle_que(que);
   5994  1.128  knakahar }
   5995  1.128  knakahar 
   5996  1.128  knakahar /************************************************************************
   5997   1.99   msaitoh  * ixgbe_allocate_legacy - Setup the Legacy or MSI Interrupt handler
   5998   1.99   msaitoh  ************************************************************************/
   5999   1.48   msaitoh static int
   6000   1.98   msaitoh ixgbe_allocate_legacy(struct adapter *adapter,
   6001   1.98   msaitoh     const struct pci_attach_args *pa)
   6002   1.48   msaitoh {
   6003   1.98   msaitoh 	device_t	dev = adapter->dev;
   6004   1.99   msaitoh 	struct ix_queue *que = adapter->queues;
   6005   1.99   msaitoh 	struct tx_ring  *txr = adapter->tx_rings;
   6006   1.98   msaitoh 	int		counts[PCI_INTR_TYPE_SIZE];
   6007   1.98   msaitoh 	pci_intr_type_t intr_type, max_type;
   6008   1.99   msaitoh 	char            intrbuf[PCI_INTRSTR_LEN];
   6009   1.98   msaitoh 	const char	*intrstr = NULL;
   6010   1.98   msaitoh 
   6011   1.99   msaitoh 	/* We allocate a single interrupt resource */
   6012   1.98   msaitoh 	max_type = PCI_INTR_TYPE_MSI;
   6013   1.98   msaitoh 	counts[PCI_INTR_TYPE_MSIX] = 0;
   6014   1.99   msaitoh 	counts[PCI_INTR_TYPE_MSI] =
   6015   1.99   msaitoh 	    (adapter->feat_en & IXGBE_FEATURE_MSI) ? 1 : 0;
   6016  1.118   msaitoh 	/* Check not feat_en but feat_cap to fallback to INTx */
   6017   1.99   msaitoh 	counts[PCI_INTR_TYPE_INTX] =
   6018  1.118   msaitoh 	    (adapter->feat_cap & IXGBE_FEATURE_LEGACY_IRQ) ? 1 : 0;
   6019   1.48   msaitoh 
   6020   1.98   msaitoh alloc_retry:
   6021   1.98   msaitoh 	if (pci_intr_alloc(pa, &adapter->osdep.intrs, counts, max_type) != 0) {
   6022   1.98   msaitoh 		aprint_error_dev(dev, "couldn't alloc interrupt\n");
   6023   1.98   msaitoh 		return ENXIO;
   6024   1.98   msaitoh 	}
   6025   1.98   msaitoh 	adapter->osdep.nintrs = 1;
   6026   1.98   msaitoh 	intrstr = pci_intr_string(adapter->osdep.pc, adapter->osdep.intrs[0],
   6027   1.98   msaitoh 	    intrbuf, sizeof(intrbuf));
   6028   1.98   msaitoh 	adapter->osdep.ihs[0] = pci_intr_establish_xname(adapter->osdep.pc,
   6029   1.98   msaitoh 	    adapter->osdep.intrs[0], IPL_NET, ixgbe_legacy_irq, que,
   6030   1.98   msaitoh 	    device_xname(dev));
   6031  1.119   msaitoh 	intr_type = pci_intr_type(adapter->osdep.pc, adapter->osdep.intrs[0]);
   6032   1.98   msaitoh 	if (adapter->osdep.ihs[0] == NULL) {
   6033   1.98   msaitoh 		aprint_error_dev(dev,"unable to establish %s\n",
   6034   1.98   msaitoh 		    (intr_type == PCI_INTR_TYPE_MSI) ? "MSI" : "INTx");
   6035   1.98   msaitoh 		pci_intr_release(adapter->osdep.pc, adapter->osdep.intrs, 1);
   6036  1.119   msaitoh 		adapter->osdep.intrs = NULL;
   6037   1.98   msaitoh 		switch (intr_type) {
   6038   1.98   msaitoh 		case PCI_INTR_TYPE_MSI:
   6039   1.98   msaitoh 			/* The next try is for INTx: Disable MSI */
   6040   1.98   msaitoh 			max_type = PCI_INTR_TYPE_INTX;
   6041   1.98   msaitoh 			counts[PCI_INTR_TYPE_INTX] = 1;
   6042  1.118   msaitoh 			adapter->feat_en &= ~IXGBE_FEATURE_MSI;
   6043  1.118   msaitoh 			if (adapter->feat_cap & IXGBE_FEATURE_LEGACY_IRQ) {
   6044  1.118   msaitoh 				adapter->feat_en |= IXGBE_FEATURE_LEGACY_IRQ;
   6045  1.118   msaitoh 				goto alloc_retry;
   6046  1.118   msaitoh 			} else
   6047  1.118   msaitoh 				break;
   6048   1.98   msaitoh 		case PCI_INTR_TYPE_INTX:
   6049   1.98   msaitoh 		default:
   6050   1.98   msaitoh 			/* See below */
   6051   1.98   msaitoh 			break;
   6052   1.98   msaitoh 		}
   6053   1.98   msaitoh 	}
   6054  1.119   msaitoh 	if (intr_type == PCI_INTR_TYPE_INTX) {
   6055  1.119   msaitoh 		adapter->feat_en &= ~IXGBE_FEATURE_MSI;
   6056  1.119   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_LEGACY_IRQ;
   6057  1.119   msaitoh 	}
   6058   1.98   msaitoh 	if (adapter->osdep.ihs[0] == NULL) {
   6059   1.98   msaitoh 		aprint_error_dev(dev,
   6060   1.98   msaitoh 		    "couldn't establish interrupt%s%s\n",
   6061   1.98   msaitoh 		    intrstr ? " at " : "", intrstr ? intrstr : "");
   6062   1.98   msaitoh 		pci_intr_release(adapter->osdep.pc, adapter->osdep.intrs, 1);
   6063  1.119   msaitoh 		adapter->osdep.intrs = NULL;
   6064   1.98   msaitoh 		return ENXIO;
   6065   1.98   msaitoh 	}
   6066   1.98   msaitoh 	aprint_normal_dev(dev, "interrupting at %s\n", intrstr);
   6067   1.98   msaitoh 	/*
   6068   1.98   msaitoh 	 * Try allocating a fast interrupt and the associated deferred
   6069   1.98   msaitoh 	 * processing contexts.
   6070   1.98   msaitoh 	 */
   6071   1.99   msaitoh 	if (!(adapter->feat_en & IXGBE_FEATURE_LEGACY_TX))
   6072   1.99   msaitoh 		txr->txr_si =
   6073   1.99   msaitoh 		    softint_establish(SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   6074   1.99   msaitoh 			ixgbe_deferred_mq_start, txr);
   6075   1.98   msaitoh 	que->que_si = softint_establish(SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   6076   1.98   msaitoh 	    ixgbe_handle_que, que);
   6077   1.48   msaitoh 
   6078  1.119   msaitoh 	if ((!(adapter->feat_en & IXGBE_FEATURE_LEGACY_TX)
   6079  1.119   msaitoh 		& (txr->txr_si == NULL)) || (que->que_si == NULL)) {
   6080   1.98   msaitoh 		aprint_error_dev(dev,
   6081   1.98   msaitoh 		    "could not establish software interrupts\n");
   6082   1.99   msaitoh 
   6083   1.98   msaitoh 		return ENXIO;
   6084   1.98   msaitoh 	}
   6085   1.98   msaitoh 	/* For simplicity in the handlers */
   6086   1.98   msaitoh 	adapter->active_queues = IXGBE_EIMS_ENABLE_MASK;
   6087   1.44   msaitoh 
   6088   1.44   msaitoh 	return (0);
   6089   1.99   msaitoh } /* ixgbe_allocate_legacy */
   6090   1.44   msaitoh 
   6091   1.99   msaitoh /************************************************************************
   6092   1.99   msaitoh  * ixgbe_allocate_msix - Setup MSI-X Interrupt resources and handlers
   6093   1.99   msaitoh  ************************************************************************/
   6094   1.44   msaitoh static int
   6095   1.98   msaitoh ixgbe_allocate_msix(struct adapter *adapter, const struct pci_attach_args *pa)
   6096   1.44   msaitoh {
   6097   1.98   msaitoh 	device_t        dev = adapter->dev;
   6098   1.98   msaitoh 	struct 		ix_queue *que = adapter->queues;
   6099   1.98   msaitoh 	struct  	tx_ring *txr = adapter->tx_rings;
   6100   1.98   msaitoh 	pci_chipset_tag_t pc;
   6101   1.98   msaitoh 	char		intrbuf[PCI_INTRSTR_LEN];
   6102   1.98   msaitoh 	char		intr_xname[32];
   6103  1.128  knakahar 	char		wqname[MAXCOMLEN];
   6104   1.98   msaitoh 	const char	*intrstr = NULL;
   6105   1.98   msaitoh 	int 		error, vector = 0;
   6106   1.98   msaitoh 	int		cpu_id = 0;
   6107   1.98   msaitoh 	kcpuset_t	*affinity;
   6108   1.99   msaitoh #ifdef RSS
   6109   1.99   msaitoh 	unsigned int    rss_buckets = 0;
   6110   1.99   msaitoh 	kcpuset_t	cpu_mask;
   6111   1.98   msaitoh #endif
   6112   1.98   msaitoh 
   6113   1.98   msaitoh 	pc = adapter->osdep.pc;
   6114   1.98   msaitoh #ifdef	RSS
   6115   1.98   msaitoh 	/*
   6116   1.98   msaitoh 	 * If we're doing RSS, the number of queues needs to
   6117   1.98   msaitoh 	 * match the number of RSS buckets that are configured.
   6118   1.98   msaitoh 	 *
   6119   1.98   msaitoh 	 * + If there's more queues than RSS buckets, we'll end
   6120   1.98   msaitoh 	 *   up with queues that get no traffic.
   6121   1.98   msaitoh 	 *
   6122   1.98   msaitoh 	 * + If there's more RSS buckets than queues, we'll end
   6123   1.98   msaitoh 	 *   up having multiple RSS buckets map to the same queue,
   6124   1.98   msaitoh 	 *   so there'll be some contention.
   6125   1.98   msaitoh 	 */
   6126   1.99   msaitoh 	rss_buckets = rss_getnumbuckets();
   6127   1.99   msaitoh 	if ((adapter->feat_en & IXGBE_FEATURE_RSS) &&
   6128   1.99   msaitoh 	    (adapter->num_queues != rss_buckets)) {
   6129   1.98   msaitoh 		device_printf(dev,
   6130   1.98   msaitoh 		    "%s: number of queues (%d) != number of RSS buckets (%d)"
   6131   1.98   msaitoh 		    "; performance will be impacted.\n",
   6132   1.99   msaitoh 		    __func__, adapter->num_queues, rss_buckets);
   6133   1.98   msaitoh 	}
   6134   1.98   msaitoh #endif
   6135   1.98   msaitoh 
   6136   1.98   msaitoh 	adapter->osdep.nintrs = adapter->num_queues + 1;
   6137   1.98   msaitoh 	if (pci_msix_alloc_exact(pa, &adapter->osdep.intrs,
   6138   1.98   msaitoh 	    adapter->osdep.nintrs) != 0) {
   6139   1.98   msaitoh 		aprint_error_dev(dev,
   6140   1.98   msaitoh 		    "failed to allocate MSI-X interrupt\n");
   6141   1.98   msaitoh 		return (ENXIO);
   6142   1.98   msaitoh 	}
   6143   1.98   msaitoh 
   6144   1.98   msaitoh 	kcpuset_create(&affinity, false);
   6145   1.98   msaitoh 	for (int i = 0; i < adapter->num_queues; i++, vector++, que++, txr++) {
   6146   1.98   msaitoh 		snprintf(intr_xname, sizeof(intr_xname), "%s TXRX%d",
   6147   1.98   msaitoh 		    device_xname(dev), i);
   6148   1.98   msaitoh 		intrstr = pci_intr_string(pc, adapter->osdep.intrs[i], intrbuf,
   6149   1.98   msaitoh 		    sizeof(intrbuf));
   6150   1.98   msaitoh #ifdef IXGBE_MPSAFE
   6151   1.98   msaitoh 		pci_intr_setattr(pc, &adapter->osdep.intrs[i], PCI_INTR_MPSAFE,
   6152   1.98   msaitoh 		    true);
   6153   1.98   msaitoh #endif
   6154   1.98   msaitoh 		/* Set the handler function */
   6155   1.98   msaitoh 		que->res = adapter->osdep.ihs[i] = pci_intr_establish_xname(pc,
   6156   1.98   msaitoh 		    adapter->osdep.intrs[i], IPL_NET, ixgbe_msix_que, que,
   6157   1.98   msaitoh 		    intr_xname);
   6158   1.98   msaitoh 		if (que->res == NULL) {
   6159   1.98   msaitoh 			aprint_error_dev(dev,
   6160   1.98   msaitoh 			    "Failed to register QUE handler\n");
   6161  1.119   msaitoh 			error = ENXIO;
   6162  1.119   msaitoh 			goto err_out;
   6163   1.98   msaitoh 		}
   6164   1.98   msaitoh 		que->msix = vector;
   6165   1.98   msaitoh 		adapter->active_queues |= (u64)(1 << que->msix);
   6166   1.99   msaitoh 
   6167   1.99   msaitoh 		if (adapter->feat_en & IXGBE_FEATURE_RSS) {
   6168   1.98   msaitoh #ifdef	RSS
   6169   1.99   msaitoh 			/*
   6170   1.99   msaitoh 			 * The queue ID is used as the RSS layer bucket ID.
   6171   1.99   msaitoh 			 * We look up the queue ID -> RSS CPU ID and select
   6172   1.99   msaitoh 			 * that.
   6173   1.99   msaitoh 			 */
   6174   1.99   msaitoh 			cpu_id = rss_getcpu(i % rss_getnumbuckets());
   6175   1.99   msaitoh 			CPU_SETOF(cpu_id, &cpu_mask);
   6176   1.98   msaitoh #endif
   6177   1.99   msaitoh 		} else {
   6178   1.99   msaitoh 			/*
   6179   1.99   msaitoh 			 * Bind the MSI-X vector, and thus the
   6180   1.99   msaitoh 			 * rings to the corresponding CPU.
   6181   1.99   msaitoh 			 *
   6182   1.99   msaitoh 			 * This just happens to match the default RSS
   6183   1.99   msaitoh 			 * round-robin bucket -> queue -> CPU allocation.
   6184   1.99   msaitoh 			 */
   6185   1.99   msaitoh 			if (adapter->num_queues > 1)
   6186   1.99   msaitoh 				cpu_id = i;
   6187   1.99   msaitoh 		}
   6188   1.98   msaitoh 		/* Round-robin affinity */
   6189   1.98   msaitoh 		kcpuset_zero(affinity);
   6190   1.98   msaitoh 		kcpuset_set(affinity, cpu_id % ncpu);
   6191   1.98   msaitoh 		error = interrupt_distribute(adapter->osdep.ihs[i], affinity,
   6192   1.98   msaitoh 		    NULL);
   6193   1.98   msaitoh 		aprint_normal_dev(dev, "for TX/RX, interrupting at %s",
   6194   1.98   msaitoh 		    intrstr);
   6195   1.98   msaitoh 		if (error == 0) {
   6196   1.98   msaitoh #if 1 /* def IXGBE_DEBUG */
   6197   1.98   msaitoh #ifdef	RSS
   6198   1.99   msaitoh 			aprintf_normal(", bound RSS bucket %d to CPU %d", i,
   6199   1.99   msaitoh 			    cpu_id % ncpu);
   6200   1.98   msaitoh #else
   6201   1.99   msaitoh 			aprint_normal(", bound queue %d to cpu %d", i,
   6202   1.99   msaitoh 			    cpu_id % ncpu);
   6203   1.98   msaitoh #endif
   6204   1.98   msaitoh #endif /* IXGBE_DEBUG */
   6205   1.98   msaitoh 		}
   6206   1.98   msaitoh 		aprint_normal("\n");
   6207   1.99   msaitoh 
   6208  1.119   msaitoh 		if (!(adapter->feat_en & IXGBE_FEATURE_LEGACY_TX)) {
   6209   1.99   msaitoh 			txr->txr_si = softint_establish(
   6210   1.99   msaitoh 				SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   6211   1.99   msaitoh 				ixgbe_deferred_mq_start, txr);
   6212  1.119   msaitoh 			if (txr->txr_si == NULL) {
   6213  1.119   msaitoh 				aprint_error_dev(dev,
   6214  1.119   msaitoh 				    "couldn't establish software interrupt\n");
   6215  1.119   msaitoh 				error = ENXIO;
   6216  1.119   msaitoh 				goto err_out;
   6217  1.119   msaitoh 			}
   6218  1.119   msaitoh 		}
   6219   1.98   msaitoh 		que->que_si
   6220   1.98   msaitoh 		    = softint_establish(SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   6221   1.98   msaitoh 			ixgbe_handle_que, que);
   6222   1.98   msaitoh 		if (que->que_si == NULL) {
   6223   1.98   msaitoh 			aprint_error_dev(dev,
   6224  1.119   msaitoh 			    "couldn't establish software interrupt\n");
   6225  1.119   msaitoh 			error = ENXIO;
   6226  1.119   msaitoh 			goto err_out;
   6227   1.98   msaitoh 		}
   6228   1.98   msaitoh 	}
   6229  1.128  knakahar 	snprintf(wqname, sizeof(wqname), "%sdeferTx", device_xname(dev));
   6230  1.128  knakahar 	error = workqueue_create(&adapter->txr_wq, wqname,
   6231  1.128  knakahar 	    ixgbe_deferred_mq_start_work, adapter, IXGBE_WORKQUEUE_PRI, IPL_NET,
   6232  1.128  knakahar 	    IXGBE_WORKQUEUE_FLAGS);
   6233  1.128  knakahar 	if (error) {
   6234  1.128  knakahar 		aprint_error_dev(dev, "couldn't create workqueue for deferred Tx\n");
   6235  1.128  knakahar 		goto err_out;
   6236  1.128  knakahar 	}
   6237  1.128  knakahar 	adapter->txr_wq_enqueued = percpu_alloc(sizeof(u_int));
   6238  1.128  knakahar 
   6239  1.128  knakahar 	snprintf(wqname, sizeof(wqname), "%sTxRx", device_xname(dev));
   6240  1.128  knakahar 	error = workqueue_create(&adapter->que_wq, wqname,
   6241  1.128  knakahar 	    ixgbe_handle_que_work, adapter, IXGBE_WORKQUEUE_PRI, IPL_NET,
   6242  1.128  knakahar 	    IXGBE_WORKQUEUE_FLAGS);
   6243  1.128  knakahar 	if (error) {
   6244  1.128  knakahar 		aprint_error_dev(dev, "couldn't create workqueue for Tx/Rx\n");
   6245  1.128  knakahar 		goto err_out;
   6246  1.128  knakahar 	}
   6247   1.44   msaitoh 
   6248   1.98   msaitoh 	/* and Link */
   6249   1.98   msaitoh 	cpu_id++;
   6250   1.98   msaitoh 	snprintf(intr_xname, sizeof(intr_xname), "%s link", device_xname(dev));
   6251  1.117   msaitoh 	adapter->vector = vector;
   6252   1.98   msaitoh 	intrstr = pci_intr_string(pc, adapter->osdep.intrs[vector], intrbuf,
   6253   1.98   msaitoh 	    sizeof(intrbuf));
   6254   1.98   msaitoh #ifdef IXGBE_MPSAFE
   6255   1.98   msaitoh 	pci_intr_setattr(pc, &adapter->osdep.intrs[vector], PCI_INTR_MPSAFE,
   6256   1.98   msaitoh 	    true);
   6257   1.98   msaitoh #endif
   6258   1.98   msaitoh 	/* Set the link handler function */
   6259   1.98   msaitoh 	adapter->osdep.ihs[vector] = pci_intr_establish_xname(pc,
   6260   1.98   msaitoh 	    adapter->osdep.intrs[vector], IPL_NET, ixgbe_msix_link, adapter,
   6261   1.98   msaitoh 	    intr_xname);
   6262   1.98   msaitoh 	if (adapter->osdep.ihs[vector] == NULL) {
   6263   1.98   msaitoh 		adapter->res = NULL;
   6264   1.98   msaitoh 		aprint_error_dev(dev, "Failed to register LINK handler\n");
   6265  1.119   msaitoh 		error = ENXIO;
   6266  1.119   msaitoh 		goto err_out;
   6267   1.98   msaitoh 	}
   6268   1.98   msaitoh 	/* Round-robin affinity */
   6269   1.98   msaitoh 	kcpuset_zero(affinity);
   6270   1.98   msaitoh 	kcpuset_set(affinity, cpu_id % ncpu);
   6271  1.119   msaitoh 	error = interrupt_distribute(adapter->osdep.ihs[vector], affinity,
   6272  1.119   msaitoh 	    NULL);
   6273   1.44   msaitoh 
   6274   1.98   msaitoh 	aprint_normal_dev(dev,
   6275   1.98   msaitoh 	    "for link, interrupting at %s", intrstr);
   6276   1.98   msaitoh 	if (error == 0)
   6277   1.98   msaitoh 		aprint_normal(", affinity to cpu %d\n", cpu_id % ncpu);
   6278   1.44   msaitoh 	else
   6279   1.98   msaitoh 		aprint_normal("\n");
   6280   1.44   msaitoh 
   6281  1.119   msaitoh 	if (adapter->feat_cap & IXGBE_FEATURE_SRIOV) {
   6282   1.99   msaitoh 		adapter->mbx_si =
   6283   1.99   msaitoh 		    softint_establish(SOFTINT_NET | IXGBE_SOFTINFT_FLAGS,
   6284   1.99   msaitoh 			ixgbe_handle_mbx, adapter);
   6285  1.119   msaitoh 		if (adapter->mbx_si == NULL) {
   6286  1.119   msaitoh 			aprint_error_dev(dev,
   6287  1.119   msaitoh 			    "could not establish software interrupts\n");
   6288  1.119   msaitoh 
   6289  1.119   msaitoh 			error = ENXIO;
   6290  1.119   msaitoh 			goto err_out;
   6291  1.119   msaitoh 		}
   6292  1.119   msaitoh 	}
   6293   1.44   msaitoh 
   6294   1.98   msaitoh 	kcpuset_destroy(affinity);
   6295  1.119   msaitoh 	aprint_normal_dev(dev,
   6296  1.119   msaitoh 	    "Using MSI-X interrupts with %d vectors\n", vector + 1);
   6297   1.99   msaitoh 
   6298   1.44   msaitoh 	return (0);
   6299  1.119   msaitoh 
   6300  1.119   msaitoh err_out:
   6301  1.119   msaitoh 	kcpuset_destroy(affinity);
   6302  1.119   msaitoh 	ixgbe_free_softint(adapter);
   6303  1.119   msaitoh 	ixgbe_free_pciintr_resources(adapter);
   6304  1.119   msaitoh 	return (error);
   6305   1.99   msaitoh } /* ixgbe_allocate_msix */
   6306   1.44   msaitoh 
   6307   1.99   msaitoh /************************************************************************
   6308   1.99   msaitoh  * ixgbe_configure_interrupts
   6309   1.99   msaitoh  *
   6310   1.99   msaitoh  *   Setup MSI-X, MSI, or legacy interrupts (in that order).
   6311   1.99   msaitoh  *   This will also depend on user settings.
   6312   1.99   msaitoh  ************************************************************************/
   6313   1.44   msaitoh static int
   6314   1.99   msaitoh ixgbe_configure_interrupts(struct adapter *adapter)
   6315   1.44   msaitoh {
   6316   1.98   msaitoh 	device_t dev = adapter->dev;
   6317   1.98   msaitoh 	struct ixgbe_mac_info *mac = &adapter->hw.mac;
   6318   1.98   msaitoh 	int want, queues, msgs;
   6319   1.44   msaitoh 
   6320   1.99   msaitoh 	/* Default to 1 queue if MSI-X setup fails */
   6321   1.99   msaitoh 	adapter->num_queues = 1;
   6322   1.99   msaitoh 
   6323   1.98   msaitoh 	/* Override by tuneable */
   6324   1.99   msaitoh 	if (!(adapter->feat_cap & IXGBE_FEATURE_MSIX))
   6325   1.98   msaitoh 		goto msi;
   6326   1.44   msaitoh 
   6327  1.118   msaitoh 	/*
   6328  1.118   msaitoh 	 *  NetBSD only: Use single vector MSI when number of CPU is 1 to save
   6329  1.118   msaitoh 	 * interrupt slot.
   6330  1.118   msaitoh 	 */
   6331  1.118   msaitoh 	if (ncpu == 1)
   6332  1.118   msaitoh 		goto msi;
   6333  1.118   msaitoh 
   6334   1.99   msaitoh 	/* First try MSI-X */
   6335   1.98   msaitoh 	msgs = pci_msix_count(adapter->osdep.pc, adapter->osdep.tag);
   6336   1.98   msaitoh 	msgs = MIN(msgs, IXG_MAX_NINTR);
   6337   1.98   msaitoh 	if (msgs < 2)
   6338   1.98   msaitoh 		goto msi;
   6339   1.44   msaitoh 
   6340   1.98   msaitoh 	adapter->msix_mem = (void *)1; /* XXX */
   6341   1.44   msaitoh 
   6342   1.98   msaitoh 	/* Figure out a reasonable auto config value */
   6343   1.98   msaitoh 	queues = (ncpu > (msgs - 1)) ? (msgs - 1) : ncpu;
   6344   1.44   msaitoh 
   6345   1.98   msaitoh #ifdef	RSS
   6346   1.98   msaitoh 	/* If we're doing RSS, clamp at the number of RSS buckets */
   6347   1.99   msaitoh 	if (adapter->feat_en & IXGBE_FEATURE_RSS)
   6348   1.99   msaitoh 		queues = min(queues, rss_getnumbuckets());
   6349   1.98   msaitoh #endif
   6350   1.99   msaitoh 	if (ixgbe_num_queues > queues) {
   6351   1.99   msaitoh 		aprint_error_dev(adapter->dev, "ixgbe_num_queues (%d) is too large, using reduced amount (%d).\n", ixgbe_num_queues, queues);
   6352   1.99   msaitoh 		ixgbe_num_queues = queues;
   6353   1.99   msaitoh 	}
   6354   1.44   msaitoh 
   6355   1.98   msaitoh 	if (ixgbe_num_queues != 0)
   6356   1.98   msaitoh 		queues = ixgbe_num_queues;
   6357   1.98   msaitoh 	else
   6358   1.98   msaitoh 		queues = min(queues,
   6359   1.98   msaitoh 		    min(mac->max_tx_queues, mac->max_rx_queues));
   6360   1.44   msaitoh 
   6361   1.98   msaitoh 	/* reflect correct sysctl value */
   6362   1.98   msaitoh 	ixgbe_num_queues = queues;
   6363   1.44   msaitoh 
   6364   1.98   msaitoh 	/*
   6365   1.99   msaitoh 	 * Want one vector (RX/TX pair) per queue
   6366   1.99   msaitoh 	 * plus an additional for Link.
   6367   1.99   msaitoh 	 */
   6368   1.98   msaitoh 	want = queues + 1;
   6369   1.98   msaitoh 	if (msgs >= want)
   6370   1.98   msaitoh 		msgs = want;
   6371   1.44   msaitoh 	else {
   6372   1.99   msaitoh                	aprint_error_dev(dev, "MSI-X Configuration Problem, "
   6373   1.98   msaitoh 		    "%d vectors but %d queues wanted!\n",
   6374   1.98   msaitoh 		    msgs, want);
   6375   1.98   msaitoh 		goto msi;
   6376   1.44   msaitoh 	}
   6377   1.98   msaitoh 	adapter->num_queues = queues;
   6378   1.99   msaitoh 	adapter->feat_en |= IXGBE_FEATURE_MSIX;
   6379   1.99   msaitoh 	return (0);
   6380   1.44   msaitoh 
   6381   1.98   msaitoh 	/*
   6382   1.99   msaitoh 	 * MSI-X allocation failed or provided us with
   6383   1.99   msaitoh 	 * less vectors than needed. Free MSI-X resources
   6384   1.99   msaitoh 	 * and we'll try enabling MSI.
   6385   1.99   msaitoh 	 */
   6386   1.98   msaitoh msi:
   6387   1.99   msaitoh 	/* Without MSI-X, some features are no longer supported */
   6388   1.99   msaitoh 	adapter->feat_cap &= ~IXGBE_FEATURE_RSS;
   6389   1.99   msaitoh 	adapter->feat_en  &= ~IXGBE_FEATURE_RSS;
   6390   1.99   msaitoh 	adapter->feat_cap &= ~IXGBE_FEATURE_SRIOV;
   6391   1.99   msaitoh 	adapter->feat_en  &= ~IXGBE_FEATURE_SRIOV;
   6392   1.99   msaitoh 
   6393   1.98   msaitoh        	msgs = pci_msi_count(adapter->osdep.pc, adapter->osdep.tag);
   6394   1.98   msaitoh 	adapter->msix_mem = NULL; /* XXX */
   6395   1.99   msaitoh 	if (msgs > 1)
   6396   1.99   msaitoh 		msgs = 1;
   6397   1.99   msaitoh 	if (msgs != 0) {
   6398   1.99   msaitoh 		msgs = 1;
   6399   1.99   msaitoh 		adapter->feat_en |= IXGBE_FEATURE_MSI;
   6400   1.99   msaitoh 		return (0);
   6401   1.99   msaitoh 	}
   6402   1.99   msaitoh 
   6403   1.99   msaitoh 	if (!(adapter->feat_cap & IXGBE_FEATURE_LEGACY_IRQ)) {
   6404   1.99   msaitoh 		aprint_error_dev(dev,
   6405   1.99   msaitoh 		    "Device does not support legacy interrupts.\n");
   6406   1.99   msaitoh 		return 1;
   6407   1.99   msaitoh 	}
   6408   1.99   msaitoh 
   6409   1.99   msaitoh 	adapter->feat_en |= IXGBE_FEATURE_LEGACY_IRQ;
   6410   1.99   msaitoh 
   6411   1.99   msaitoh 	return (0);
   6412   1.99   msaitoh } /* ixgbe_configure_interrupts */
   6413   1.44   msaitoh 
   6414   1.48   msaitoh 
   6415   1.99   msaitoh /************************************************************************
   6416   1.99   msaitoh  * ixgbe_handle_link - Tasklet for MSI-X Link interrupts
   6417   1.99   msaitoh  *
   6418   1.99   msaitoh  *   Done outside of interrupt context since the driver might sleep
   6419   1.99   msaitoh  ************************************************************************/
   6420   1.26   msaitoh static void
   6421   1.98   msaitoh ixgbe_handle_link(void *context)
   6422   1.26   msaitoh {
   6423   1.98   msaitoh 	struct adapter  *adapter = context;
   6424   1.98   msaitoh 	struct ixgbe_hw *hw = &adapter->hw;
   6425   1.26   msaitoh 
   6426  1.136  knakahar 	IXGBE_CORE_LOCK(adapter);
   6427  1.137   msaitoh 	++adapter->link_sicount.ev_count;
   6428   1.99   msaitoh 	ixgbe_check_link(hw, &adapter->link_speed, &adapter->link_up, 0);
   6429   1.98   msaitoh 	ixgbe_update_link_status(adapter);
   6430   1.26   msaitoh 
   6431   1.98   msaitoh 	/* Re-enable link interrupts */
   6432   1.98   msaitoh 	IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_LSC);
   6433  1.136  knakahar 
   6434  1.136  knakahar 	IXGBE_CORE_UNLOCK(adapter);
   6435   1.99   msaitoh } /* ixgbe_handle_link */
   6436   1.45   msaitoh 
   6437   1.99   msaitoh /************************************************************************
   6438   1.99   msaitoh  * ixgbe_rearm_queues
   6439   1.99   msaitoh  ************************************************************************/
   6440   1.63   msaitoh static void
   6441   1.63   msaitoh ixgbe_rearm_queues(struct adapter *adapter, u64 queues)
   6442   1.63   msaitoh {
   6443   1.63   msaitoh 	u32 mask;
   6444   1.63   msaitoh 
   6445   1.63   msaitoh 	switch (adapter->hw.mac.type) {
   6446   1.63   msaitoh 	case ixgbe_mac_82598EB:
   6447   1.63   msaitoh 		mask = (IXGBE_EIMS_RTX_QUEUE & queues);
   6448   1.63   msaitoh 		IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
   6449   1.63   msaitoh 		break;
   6450   1.63   msaitoh 	case ixgbe_mac_82599EB:
   6451   1.63   msaitoh 	case ixgbe_mac_X540:
   6452   1.63   msaitoh 	case ixgbe_mac_X550:
   6453   1.63   msaitoh 	case ixgbe_mac_X550EM_x:
   6454   1.99   msaitoh 	case ixgbe_mac_X550EM_a:
   6455   1.63   msaitoh 		mask = (queues & 0xFFFFFFFF);
   6456   1.63   msaitoh 		IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
   6457   1.63   msaitoh 		mask = (queues >> 32);
   6458   1.63   msaitoh 		IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
   6459   1.63   msaitoh 		break;
   6460   1.63   msaitoh 	default:
   6461   1.63   msaitoh 		break;
   6462   1.63   msaitoh 	}
   6463   1.99   msaitoh } /* ixgbe_rearm_queues */
   6464