xref: /freebsd/sys/dev/ixgbe/if_ix.c (revision 51e235148a4becba94e824a44bd69687644a7f56)
1758cc3dcSJack F Vogel /******************************************************************************
2758cc3dcSJack F Vogel 
38eb6488eSEric Joyner   Copyright (c) 2001-2017, Intel Corporation
4758cc3dcSJack F Vogel   All rights reserved.
5758cc3dcSJack F Vogel 
6758cc3dcSJack F Vogel   Redistribution and use in source and binary forms, with or without
7758cc3dcSJack F Vogel   modification, are permitted provided that the following conditions are met:
8758cc3dcSJack F Vogel 
9758cc3dcSJack F Vogel    1. Redistributions of source code must retain the above copyright notice,
10758cc3dcSJack F Vogel       this list of conditions and the following disclaimer.
11758cc3dcSJack F Vogel 
12758cc3dcSJack F Vogel    2. Redistributions in binary form must reproduce the above copyright
13758cc3dcSJack F Vogel       notice, this list of conditions and the following disclaimer in the
14758cc3dcSJack F Vogel       documentation and/or other materials provided with the distribution.
15758cc3dcSJack F Vogel 
16758cc3dcSJack F Vogel    3. Neither the name of the Intel Corporation nor the names of its
17758cc3dcSJack F Vogel       contributors may be used to endorse or promote products derived from
18758cc3dcSJack F Vogel       this software without specific prior written permission.
19758cc3dcSJack F Vogel 
20758cc3dcSJack F Vogel   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21758cc3dcSJack F Vogel   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22758cc3dcSJack F Vogel   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23758cc3dcSJack F Vogel   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24758cc3dcSJack F Vogel   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25758cc3dcSJack F Vogel   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26758cc3dcSJack F Vogel   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27758cc3dcSJack F Vogel   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28758cc3dcSJack F Vogel   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29758cc3dcSJack F Vogel   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30758cc3dcSJack F Vogel   POSSIBILITY OF SUCH DAMAGE.
31758cc3dcSJack F Vogel 
32758cc3dcSJack F Vogel ******************************************************************************/
33758cc3dcSJack F Vogel 
34758cc3dcSJack F Vogel #include "opt_inet.h"
35758cc3dcSJack F Vogel #include "opt_inet6.h"
36758cc3dcSJack F Vogel #include "opt_rss.h"
37758cc3dcSJack F Vogel 
38758cc3dcSJack F Vogel #include "ixgbe.h"
39c19c7afeSEric Joyner #include "ixgbe_sriov.h"
40c19c7afeSEric Joyner #include "ifdi_if.h"
41c19c7afeSEric Joyner 
42c19c7afeSEric Joyner #include <net/netmap.h>
43c19c7afeSEric Joyner #include <dev/netmap/netmap_kern.h>
44758cc3dcSJack F Vogel 
458eb6488eSEric Joyner /************************************************************************
46758cc3dcSJack F Vogel  * Driver version
478eb6488eSEric Joyner  ************************************************************************/
48*51e23514SMarius Strobl static const char ixgbe_driver_version[] = "4.0.1-k";
49a9ca1c79SSean Bruno 
508eb6488eSEric Joyner /************************************************************************
51758cc3dcSJack F Vogel  * PCI Device ID Table
52758cc3dcSJack F Vogel  *
53758cc3dcSJack F Vogel  *   Used by probe to select devices to load on
54758cc3dcSJack F Vogel  *   Last field stores an index into ixgbe_strings
55758cc3dcSJack F Vogel  *   Last entry must be all 0s
56758cc3dcSJack F Vogel  *
57758cc3dcSJack F Vogel  *   { Vendor ID, Device ID, SubVendor ID, SubDevice ID, String Index }
588eb6488eSEric Joyner  ************************************************************************/
59*51e23514SMarius Strobl static const pci_vendor_info_t ixgbe_vendor_info_array[] =
60758cc3dcSJack F Vogel {
61fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_DUAL_PORT,  "Intel(R) 82598EB AF (Dual Fiber)"),
62fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_SINGLE_PORT,  "Intel(R) 82598EB AF (Fiber)"),
63fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_CX4,  "Intel(R) 82598EB AT (CX4)"),
64fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT,  "Intel(R) 82598EB AT"),
65fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT2,  "Intel(R) 82598EB AT2"),
66fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598,  "Intel(R) 82598"),
67fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_DA_DUAL_PORT,  "Intel(R) 82598EB AF DA (Dual Fiber)"),
68fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_CX4_DUAL_PORT,  "Intel(R) 82598EB AT (Dual CX4)"),
69fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_XF_LR,  "Intel(R) 82598EB AF (Dual Fiber LR)"),
70fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM,  "Intel(R) 82598EB AF (Dual Fiber SR)"),
71fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_SFP_LOM,  "Intel(R) 82598EB LOM"),
72fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4,  "Intel(R) X520 82599 (KX4)"),
73fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4_MEZZ,  "Intel(R) X520 82599 (KX4 Mezzanine)"),
74fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP,  "Intel(R) X520 82599ES (SFI/SFP+)"),
75fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_XAUI_LOM,  "Intel(R) X520 82599 (XAUI/BX4)"),
76fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_CX4,  "Intel(R) X520 82599 (Dual CX4)"),
77fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_T3_LOM,  "Intel(R) X520-T 82599 LOM"),
789228ac3aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_LS,  "Intel(R) X520 82599 LS"),
79fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_COMBO_BACKPLANE,  "Intel(R) X520 82599 (Combined Backplane)"),
80fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BACKPLANE_FCOE,  "Intel(R) X520 82599 (Backplane w/FCoE)"),
81fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF2,  "Intel(R) X520 82599 (Dual SFP+)"),
82fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_FCOE,  "Intel(R) X520 82599 (Dual SFP+ w/FCoE)"),
83fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599EN_SFP,  "Intel(R) X520-1 82599EN (SFP+)"),
84fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF_QP,  "Intel(R) X520-4 82599 (Quad SFP+)"),
85fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_QSFP_SF_QP,  "Intel(R) X520-Q1 82599 (QSFP+)"),
86fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T,  "Intel(R) X540-AT2"),
87fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T1,  "Intel(R) X540-T1"),
88fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T,  "Intel(R) X550-T2"),
89fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T1, "Intel(R) X550-T1"),
90fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KR,  "Intel(R) X552 (KR Backplane)"),
91fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KX4,  "Intel(R) X552 (KX4 Backplane)"),
92fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_10G_T,  "Intel(R) X552/X557-AT (10GBASE-T)"),
93fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_1G_T,  "Intel(R) X552 (1000BASE-T)"),
94fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_SFP, "Intel(R) X552 (SFP+)"),
95fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR, "Intel(R) X553 (KR Backplane)"),
96fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR_L, "Intel(R) X553 L (KR Backplane)"),
97fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP, "Intel(R) X553 (SFP+)"),
98fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP_N, "Intel(R) X553 N (SFP+)"),
99fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII, "Intel(R) X553 (1GbE SGMII)"),
100fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII_L, "Intel(R) X553 L (1GbE SGMII)"),
101fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_10G_T, "Intel(R) X553/X557-AT (10GBASE-T)"),
102fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T, "Intel(R) X553 (1GbE)"),
103fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T_L, "Intel(R) X553 L (1GbE)"),
104fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_BYPASS, "Intel(R) X540-T2 (Bypass)"),
105fdbcd35aSKevin Bowling   PVID(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BYPASS, "Intel(R) X520 82599 (Bypass)"),
106758cc3dcSJack F Vogel 	/* required last entry */
107c19c7afeSEric Joyner   PVID_END
108758cc3dcSJack F Vogel };
109758cc3dcSJack F Vogel 
110b1d5caf3SKevin Bowling static void *ixgbe_register(device_t);
111b1d5caf3SKevin Bowling static int  ixgbe_if_attach_pre(if_ctx_t);
112b1d5caf3SKevin Bowling static int  ixgbe_if_attach_post(if_ctx_t);
113b1d5caf3SKevin Bowling static int  ixgbe_if_detach(if_ctx_t);
114b1d5caf3SKevin Bowling static int  ixgbe_if_shutdown(if_ctx_t);
115b1d5caf3SKevin Bowling static int  ixgbe_if_suspend(if_ctx_t);
116b1d5caf3SKevin Bowling static int  ixgbe_if_resume(if_ctx_t);
117c19c7afeSEric Joyner 
118b1d5caf3SKevin Bowling static void ixgbe_if_stop(if_ctx_t);
119b1d5caf3SKevin Bowling void ixgbe_if_enable_intr(if_ctx_t);
120b1d5caf3SKevin Bowling static void ixgbe_if_disable_intr(if_ctx_t);
121b1d5caf3SKevin Bowling static void ixgbe_link_intr_enable(if_ctx_t);
122b1d5caf3SKevin Bowling static int  ixgbe_if_rx_queue_intr_enable(if_ctx_t, uint16_t);
123b1d5caf3SKevin Bowling static void ixgbe_if_media_status(if_ctx_t, struct ifmediareq *);
124b1d5caf3SKevin Bowling static int  ixgbe_if_media_change(if_ctx_t);
125c19c7afeSEric Joyner static int  ixgbe_if_msix_intr_assign(if_ctx_t, int);
126b1d5caf3SKevin Bowling static int  ixgbe_if_mtu_set(if_ctx_t, uint32_t);
127b1d5caf3SKevin Bowling static void ixgbe_if_crcstrip_set(if_ctx_t, int, int);
128b1d5caf3SKevin Bowling static void ixgbe_if_multi_set(if_ctx_t);
129b1d5caf3SKevin Bowling static int  ixgbe_if_promisc_set(if_ctx_t, int);
130b1d5caf3SKevin Bowling static int  ixgbe_if_tx_queues_alloc(if_ctx_t, caddr_t *, uint64_t *, int, int);
131b1d5caf3SKevin Bowling static int  ixgbe_if_rx_queues_alloc(if_ctx_t, caddr_t *, uint64_t *, int, int);
132b1d5caf3SKevin Bowling static void ixgbe_if_queues_free(if_ctx_t);
133b1d5caf3SKevin Bowling static void ixgbe_if_timer(if_ctx_t, uint16_t);
134b1d5caf3SKevin Bowling static void ixgbe_if_update_admin_status(if_ctx_t);
135b1d5caf3SKevin Bowling static void ixgbe_if_vlan_register(if_ctx_t, u16);
136b1d5caf3SKevin Bowling static void ixgbe_if_vlan_unregister(if_ctx_t, u16);
137b1d5caf3SKevin Bowling static int  ixgbe_if_i2c_req(if_ctx_t, struct ifi2creq *);
138b1d5caf3SKevin Bowling static bool ixgbe_if_needs_restart(if_ctx_t, enum iflib_restart_event);
139b1d5caf3SKevin Bowling int ixgbe_intr(void *);
140758cc3dcSJack F Vogel 
1418eb6488eSEric Joyner /************************************************************************
142758cc3dcSJack F Vogel  * Function prototypes
1438eb6488eSEric Joyner  ************************************************************************/
144c19c7afeSEric Joyner static uint64_t ixgbe_if_get_counter(if_ctx_t, ift_counter);
145758cc3dcSJack F Vogel 
146b1d5caf3SKevin Bowling static void ixgbe_enable_queue(struct ixgbe_softc *, u32);
147b1d5caf3SKevin Bowling static void ixgbe_disable_queue(struct ixgbe_softc *, u32);
148b1d5caf3SKevin Bowling static void ixgbe_add_device_sysctls(if_ctx_t);
149b1d5caf3SKevin Bowling static int  ixgbe_allocate_pci_resources(if_ctx_t);
150b1d5caf3SKevin Bowling static int  ixgbe_setup_low_power_mode(if_ctx_t);
151c19c7afeSEric Joyner 
152b1d5caf3SKevin Bowling static void ixgbe_config_dmac(struct ixgbe_softc *);
153b1d5caf3SKevin Bowling static void ixgbe_configure_ivars(struct ixgbe_softc *);
154b1d5caf3SKevin Bowling static void ixgbe_set_ivar(struct ixgbe_softc *, u8, u8, s8);
155c19c7afeSEric Joyner static u8   *ixgbe_mc_array_itr(struct ixgbe_hw *, u8 **, u32 *);
156b1d5caf3SKevin Bowling static bool ixgbe_sfp_probe(if_ctx_t);
157c19c7afeSEric Joyner 
158b1d5caf3SKevin Bowling static void ixgbe_free_pci_resources(if_ctx_t);
159c19c7afeSEric Joyner 
160b1d5caf3SKevin Bowling static int  ixgbe_msix_link(void *);
161b1d5caf3SKevin Bowling static int  ixgbe_msix_que(void *);
162b1d5caf3SKevin Bowling static void ixgbe_initialize_rss_mapping(struct ixgbe_softc *);
163b1d5caf3SKevin Bowling static void ixgbe_initialize_receive_units(if_ctx_t);
164b1d5caf3SKevin Bowling static void ixgbe_initialize_transmit_units(if_ctx_t);
165c19c7afeSEric Joyner 
166b1d5caf3SKevin Bowling static int  ixgbe_setup_interface(if_ctx_t);
167b1d5caf3SKevin Bowling static void ixgbe_init_device_features(struct ixgbe_softc *);
168b1d5caf3SKevin Bowling static void ixgbe_check_fan_failure(struct ixgbe_softc *, u32, bool);
1697660e4eaSKevin Bowling static void ixgbe_sbuf_fw_version(struct ixgbe_hw *, struct sbuf *);
170b1d5caf3SKevin Bowling static void ixgbe_print_fw_version(if_ctx_t);
171b1d5caf3SKevin Bowling static void ixgbe_add_media_types(if_ctx_t);
172b1d5caf3SKevin Bowling static void ixgbe_update_stats_counters(struct ixgbe_softc *);
173b1d5caf3SKevin Bowling static void ixgbe_config_link(if_ctx_t);
174b1d5caf3SKevin Bowling static void ixgbe_get_slot_info(struct ixgbe_softc *);
175b1d5caf3SKevin Bowling static void ixgbe_check_wol_support(struct ixgbe_softc *);
176b1d5caf3SKevin Bowling static void ixgbe_enable_rx_drop(struct ixgbe_softc *);
177b1d5caf3SKevin Bowling static void ixgbe_disable_rx_drop(struct ixgbe_softc *);
178758cc3dcSJack F Vogel 
179b1d5caf3SKevin Bowling static void ixgbe_add_hw_stats(struct ixgbe_softc *);
180b1d5caf3SKevin Bowling static int  ixgbe_set_flowcntl(struct ixgbe_softc *, int);
181b1d5caf3SKevin Bowling static int  ixgbe_set_advertise(struct ixgbe_softc *, int);
182d381c807SPiotr Pietruszewski static int  ixgbe_get_default_advertise(struct ixgbe_softc *);
183b1d5caf3SKevin Bowling static void ixgbe_setup_vlan_hw_support(if_ctx_t);
184b1d5caf3SKevin Bowling static void ixgbe_config_gpie(struct ixgbe_softc *);
185b1d5caf3SKevin Bowling static void ixgbe_config_delay_values(struct ixgbe_softc *);
1866f37f232SEric Joyner 
1876f37f232SEric Joyner /* Sysctl handlers */
188f2c4db54SSteven Hartland static int  ixgbe_sysctl_flowcntl(SYSCTL_HANDLER_ARGS);
189f2c4db54SSteven Hartland static int  ixgbe_sysctl_advertise(SYSCTL_HANDLER_ARGS);
1908eb6488eSEric Joyner static int  ixgbe_sysctl_interrupt_rate_handler(SYSCTL_HANDLER_ARGS);
1916f37f232SEric Joyner static int  ixgbe_sysctl_dmac(SYSCTL_HANDLER_ARGS);
1926f37f232SEric Joyner static int  ixgbe_sysctl_phy_temp(SYSCTL_HANDLER_ARGS);
1936f37f232SEric Joyner static int  ixgbe_sysctl_phy_overtemp_occurred(SYSCTL_HANDLER_ARGS);
1947660e4eaSKevin Bowling static int  ixgbe_sysctl_print_fw_version(SYSCTL_HANDLER_ARGS);
195a9ca1c79SSean Bruno #ifdef IXGBE_DEBUG
196a9ca1c79SSean Bruno static int  ixgbe_sysctl_power_state(SYSCTL_HANDLER_ARGS);
197a9ca1c79SSean Bruno static int  ixgbe_sysctl_print_rss_config(SYSCTL_HANDLER_ARGS);
198a9ca1c79SSean Bruno #endif
1998eb6488eSEric Joyner static int  ixgbe_sysctl_rdh_handler(SYSCTL_HANDLER_ARGS);
2008eb6488eSEric Joyner static int  ixgbe_sysctl_rdt_handler(SYSCTL_HANDLER_ARGS);
2018eb6488eSEric Joyner static int  ixgbe_sysctl_tdt_handler(SYSCTL_HANDLER_ARGS);
2028eb6488eSEric Joyner static int  ixgbe_sysctl_tdh_handler(SYSCTL_HANDLER_ARGS);
2038eb6488eSEric Joyner static int  ixgbe_sysctl_eee_state(SYSCTL_HANDLER_ARGS);
2046f37f232SEric Joyner static int  ixgbe_sysctl_wol_enable(SYSCTL_HANDLER_ARGS);
2056f37f232SEric Joyner static int  ixgbe_sysctl_wufc(SYSCTL_HANDLER_ARGS);
206758cc3dcSJack F Vogel 
207758cc3dcSJack F Vogel /* Deferred interrupt tasklets */
208c19c7afeSEric Joyner static void ixgbe_handle_msf(void *);
209c19c7afeSEric Joyner static void ixgbe_handle_mod(void *);
210c19c7afeSEric Joyner static void ixgbe_handle_phy(void *);
211758cc3dcSJack F Vogel 
2128eb6488eSEric Joyner /************************************************************************
213758cc3dcSJack F Vogel  *  FreeBSD Device Interface Entry Points
2148eb6488eSEric Joyner  ************************************************************************/
215a1edda90SAdrian Chadd static device_method_t ix_methods[] = {
216758cc3dcSJack F Vogel 	/* Device interface */
217c19c7afeSEric Joyner 	DEVMETHOD(device_register, ixgbe_register),
218c19c7afeSEric Joyner 	DEVMETHOD(device_probe, iflib_device_probe),
219c19c7afeSEric Joyner 	DEVMETHOD(device_attach, iflib_device_attach),
220c19c7afeSEric Joyner 	DEVMETHOD(device_detach, iflib_device_detach),
221c19c7afeSEric Joyner 	DEVMETHOD(device_shutdown, iflib_device_shutdown),
222c19c7afeSEric Joyner 	DEVMETHOD(device_suspend, iflib_device_suspend),
223c19c7afeSEric Joyner 	DEVMETHOD(device_resume, iflib_device_resume),
22448056c88SJack F Vogel #ifdef PCI_IOV
225c19c7afeSEric Joyner 	DEVMETHOD(pci_iov_init, iflib_device_iov_init),
226c19c7afeSEric Joyner 	DEVMETHOD(pci_iov_uninit, iflib_device_iov_uninit),
227c19c7afeSEric Joyner 	DEVMETHOD(pci_iov_add_vf, iflib_device_iov_add_vf),
22848056c88SJack F Vogel #endif /* PCI_IOV */
229758cc3dcSJack F Vogel 	DEVMETHOD_END
230758cc3dcSJack F Vogel };
231758cc3dcSJack F Vogel 
232a1edda90SAdrian Chadd static driver_t ix_driver = {
233b1d5caf3SKevin Bowling 	"ix", ix_methods, sizeof(struct ixgbe_softc),
234758cc3dcSJack F Vogel };
235758cc3dcSJack F Vogel 
236964c2b3aSJohn Baldwin DRIVER_MODULE(ix, pci, ix_driver, 0, 0);
237937b0f25SYuri Pankov IFLIB_PNP_INFO(pci, ix_driver, ixgbe_vendor_info_array);
238a1edda90SAdrian Chadd MODULE_DEPEND(ix, pci, 1, 1, 1);
239a1edda90SAdrian Chadd MODULE_DEPEND(ix, ether, 1, 1, 1);
240c19c7afeSEric Joyner MODULE_DEPEND(ix, iflib, 1, 1, 1);
241c19c7afeSEric Joyner 
242c19c7afeSEric Joyner static device_method_t ixgbe_if_methods[] = {
243c19c7afeSEric Joyner 	DEVMETHOD(ifdi_attach_pre, ixgbe_if_attach_pre),
244c19c7afeSEric Joyner 	DEVMETHOD(ifdi_attach_post, ixgbe_if_attach_post),
245c19c7afeSEric Joyner 	DEVMETHOD(ifdi_detach, ixgbe_if_detach),
246c19c7afeSEric Joyner 	DEVMETHOD(ifdi_shutdown, ixgbe_if_shutdown),
247c19c7afeSEric Joyner 	DEVMETHOD(ifdi_suspend, ixgbe_if_suspend),
248c19c7afeSEric Joyner 	DEVMETHOD(ifdi_resume, ixgbe_if_resume),
249c19c7afeSEric Joyner 	DEVMETHOD(ifdi_init, ixgbe_if_init),
250c19c7afeSEric Joyner 	DEVMETHOD(ifdi_stop, ixgbe_if_stop),
251c19c7afeSEric Joyner 	DEVMETHOD(ifdi_msix_intr_assign, ixgbe_if_msix_intr_assign),
252c19c7afeSEric Joyner 	DEVMETHOD(ifdi_intr_enable, ixgbe_if_enable_intr),
253c19c7afeSEric Joyner 	DEVMETHOD(ifdi_intr_disable, ixgbe_if_disable_intr),
254b2c1e8e6SEric Joyner 	DEVMETHOD(ifdi_link_intr_enable, ixgbe_link_intr_enable),
255c19c7afeSEric Joyner 	DEVMETHOD(ifdi_tx_queue_intr_enable, ixgbe_if_rx_queue_intr_enable),
256c19c7afeSEric Joyner 	DEVMETHOD(ifdi_rx_queue_intr_enable, ixgbe_if_rx_queue_intr_enable),
257c19c7afeSEric Joyner 	DEVMETHOD(ifdi_tx_queues_alloc, ixgbe_if_tx_queues_alloc),
258c19c7afeSEric Joyner 	DEVMETHOD(ifdi_rx_queues_alloc, ixgbe_if_rx_queues_alloc),
259c19c7afeSEric Joyner 	DEVMETHOD(ifdi_queues_free, ixgbe_if_queues_free),
260c19c7afeSEric Joyner 	DEVMETHOD(ifdi_update_admin_status, ixgbe_if_update_admin_status),
261c19c7afeSEric Joyner 	DEVMETHOD(ifdi_multi_set, ixgbe_if_multi_set),
262c19c7afeSEric Joyner 	DEVMETHOD(ifdi_mtu_set, ixgbe_if_mtu_set),
263c19c7afeSEric Joyner 	DEVMETHOD(ifdi_crcstrip_set, ixgbe_if_crcstrip_set),
264c19c7afeSEric Joyner 	DEVMETHOD(ifdi_media_status, ixgbe_if_media_status),
265c19c7afeSEric Joyner 	DEVMETHOD(ifdi_media_change, ixgbe_if_media_change),
266c19c7afeSEric Joyner 	DEVMETHOD(ifdi_promisc_set, ixgbe_if_promisc_set),
267c19c7afeSEric Joyner 	DEVMETHOD(ifdi_timer, ixgbe_if_timer),
268c19c7afeSEric Joyner 	DEVMETHOD(ifdi_vlan_register, ixgbe_if_vlan_register),
269c19c7afeSEric Joyner 	DEVMETHOD(ifdi_vlan_unregister, ixgbe_if_vlan_unregister),
270c19c7afeSEric Joyner 	DEVMETHOD(ifdi_get_counter, ixgbe_if_get_counter),
271bca38080SAndrew Gallatin 	DEVMETHOD(ifdi_i2c_req, ixgbe_if_i2c_req),
272cf150917SEric Joyner 	DEVMETHOD(ifdi_needs_restart, ixgbe_if_needs_restart),
273c19c7afeSEric Joyner #ifdef PCI_IOV
274c19c7afeSEric Joyner 	DEVMETHOD(ifdi_iov_init, ixgbe_if_iov_init),
275c19c7afeSEric Joyner 	DEVMETHOD(ifdi_iov_uninit, ixgbe_if_iov_uninit),
276c19c7afeSEric Joyner 	DEVMETHOD(ifdi_iov_vf_add, ixgbe_if_iov_vf_add),
277c19c7afeSEric Joyner #endif /* PCI_IOV */
278c19c7afeSEric Joyner 	DEVMETHOD_END
279c19c7afeSEric Joyner };
280758cc3dcSJack F Vogel 
281758cc3dcSJack F Vogel /*
2828eb6488eSEric Joyner  * TUNEABLE PARAMETERS:
283758cc3dcSJack F Vogel  */
284758cc3dcSJack F Vogel 
28520b91f0aSPawel Biernacki static SYSCTL_NODE(_hw, OID_AUTO, ix, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
28620b91f0aSPawel Biernacki     "IXGBE driver parameters");
287c19c7afeSEric Joyner static driver_t ixgbe_if_driver = {
288b1d5caf3SKevin Bowling   "ixgbe_if", ixgbe_if_methods, sizeof(struct ixgbe_softc)
289c19c7afeSEric Joyner };
290758cc3dcSJack F Vogel 
291758cc3dcSJack F Vogel static int ixgbe_max_interrupt_rate = (4000000 / IXGBE_LOW_LATENCY);
292758cc3dcSJack F Vogel SYSCTL_INT(_hw_ix, OID_AUTO, max_interrupt_rate, CTLFLAG_RDTUN,
293758cc3dcSJack F Vogel     &ixgbe_max_interrupt_rate, 0, "Maximum interrupts per second");
294758cc3dcSJack F Vogel 
295f2c4db54SSteven Hartland /* Flow control setting, default to full */
296f2c4db54SSteven Hartland static int ixgbe_flow_control = ixgbe_fc_full;
297f2c4db54SSteven Hartland SYSCTL_INT(_hw_ix, OID_AUTO, flow_control, CTLFLAG_RDTUN,
298f2c4db54SSteven Hartland     &ixgbe_flow_control, 0, "Default flow control used for all adapters");
299f2c4db54SSteven Hartland 
300f2c4db54SSteven Hartland /* Advertise Speed, default to 0 (auto) */
301f2c4db54SSteven Hartland static int ixgbe_advertise_speed = 0;
302f2c4db54SSteven Hartland SYSCTL_INT(_hw_ix, OID_AUTO, advertise_speed, CTLFLAG_RDTUN,
303f2c4db54SSteven Hartland     &ixgbe_advertise_speed, 0, "Default advertised speed for all adapters");
304f2c4db54SSteven Hartland 
305758cc3dcSJack F Vogel /*
3068eb6488eSEric Joyner  * Smart speed setting, default to on
3078eb6488eSEric Joyner  * this only works as a compile option
3088eb6488eSEric Joyner  * right now as its during attach, set
3098eb6488eSEric Joyner  * this to 'ixgbe_smart_speed_off' to
3108eb6488eSEric Joyner  * disable.
311758cc3dcSJack F Vogel  */
312758cc3dcSJack F Vogel static int ixgbe_smart_speed = ixgbe_smart_speed_on;
313758cc3dcSJack F Vogel 
314758cc3dcSJack F Vogel /*
3158eb6488eSEric Joyner  * MSI-X should be the default for best performance,
316758cc3dcSJack F Vogel  * but this allows it to be forced off for testing.
317758cc3dcSJack F Vogel  */
318758cc3dcSJack F Vogel static int ixgbe_enable_msix = 1;
319758cc3dcSJack F Vogel SYSCTL_INT(_hw_ix, OID_AUTO, enable_msix, CTLFLAG_RDTUN, &ixgbe_enable_msix, 0,
320758cc3dcSJack F Vogel     "Enable MSI-X interrupts");
321758cc3dcSJack F Vogel 
322758cc3dcSJack F Vogel /*
3238eb6488eSEric Joyner  * Defining this on will allow the use
3248eb6488eSEric Joyner  * of unsupported SFP+ modules, note that
3258eb6488eSEric Joyner  * doing so you are on your own :)
326758cc3dcSJack F Vogel  */
32779b36ec9SKevin Bowling static int allow_unsupported_sfp = false;
328fb6aa95dSSean Bruno SYSCTL_INT(_hw_ix, OID_AUTO, unsupported_sfp, CTLFLAG_RDTUN,
3298eb6488eSEric Joyner     &allow_unsupported_sfp, 0,
3308eb6488eSEric Joyner     "Allow unsupported SFP modules...use at your own risk");
3318eb6488eSEric Joyner 
3328eb6488eSEric Joyner /*
3338eb6488eSEric Joyner  * Not sure if Flow Director is fully baked,
3348eb6488eSEric Joyner  * so we'll default to turning it off.
3358eb6488eSEric Joyner  */
3368eb6488eSEric Joyner static int ixgbe_enable_fdir = 0;
3378eb6488eSEric Joyner SYSCTL_INT(_hw_ix, OID_AUTO, enable_fdir, CTLFLAG_RDTUN, &ixgbe_enable_fdir, 0,
3388eb6488eSEric Joyner     "Enable Flow Director");
3398eb6488eSEric Joyner 
3408eb6488eSEric Joyner /* Receive-Side Scaling */
3418eb6488eSEric Joyner static int ixgbe_enable_rss = 1;
3428eb6488eSEric Joyner SYSCTL_INT(_hw_ix, OID_AUTO, enable_rss, CTLFLAG_RDTUN, &ixgbe_enable_rss, 0,
3438eb6488eSEric Joyner     "Enable Receive-Side Scaling (RSS)");
344758cc3dcSJack F Vogel 
34564881da4SSai Rajesh Tallamraju /*
34664881da4SSai Rajesh Tallamraju  * AIM: Adaptive Interrupt Moderation
34764881da4SSai Rajesh Tallamraju  * which means that the interrupt rate
34864881da4SSai Rajesh Tallamraju  * is varied over time based on the
34964881da4SSai Rajesh Tallamraju  * traffic for that interrupt vector
35064881da4SSai Rajesh Tallamraju  */
35179b36ec9SKevin Bowling static int ixgbe_enable_aim = false;
35264881da4SSai Rajesh Tallamraju SYSCTL_INT(_hw_ix, OID_AUTO, enable_aim, CTLFLAG_RWTUN, &ixgbe_enable_aim, 0,
35364881da4SSai Rajesh Tallamraju     "Enable adaptive interrupt moderation");
35464881da4SSai Rajesh Tallamraju 
355c19c7afeSEric Joyner #if 0
356758cc3dcSJack F Vogel /* Keep running tab on them for sanity check */
357758cc3dcSJack F Vogel static int ixgbe_total_ports;
358c19c7afeSEric Joyner #endif
359758cc3dcSJack F Vogel 
3608eb6488eSEric Joyner MALLOC_DEFINE(M_IXGBE, "ix", "ix driver allocations");
361758cc3dcSJack F Vogel 
362c19c7afeSEric Joyner /*
363c19c7afeSEric Joyner  * For Flow Director: this is the number of TX packets we sample
364c19c7afeSEric Joyner  * for the filter pool, this means every 20th packet will be probed.
365c19c7afeSEric Joyner  *
366c19c7afeSEric Joyner  * This feature can be disabled by setting this to 0.
367c19c7afeSEric Joyner  */
368c19c7afeSEric Joyner static int atr_sample_rate = 20;
369c19c7afeSEric Joyner 
370c19c7afeSEric Joyner extern struct if_txrx ixgbe_txrx;
371c19c7afeSEric Joyner 
372c19c7afeSEric Joyner static struct if_shared_ctx ixgbe_sctx_init = {
373c19c7afeSEric Joyner 	.isc_magic = IFLIB_MAGIC,
374c19c7afeSEric Joyner 	.isc_q_align = PAGE_SIZE,/* max(DBA_ALIGN, PAGE_SIZE) */
3757f87c040SMarius Strobl 	.isc_tx_maxsize = IXGBE_TSO_SIZE + sizeof(struct ether_vlan_header),
376c19c7afeSEric Joyner 	.isc_tx_maxsegsize = PAGE_SIZE,
3777f87c040SMarius Strobl 	.isc_tso_maxsize = IXGBE_TSO_SIZE + sizeof(struct ether_vlan_header),
3787f87c040SMarius Strobl 	.isc_tso_maxsegsize = PAGE_SIZE,
379c19c7afeSEric Joyner 	.isc_rx_maxsize = PAGE_SIZE*4,
380c19c7afeSEric Joyner 	.isc_rx_nsegments = 1,
381c19c7afeSEric Joyner 	.isc_rx_maxsegsize = PAGE_SIZE*4,
382c19c7afeSEric Joyner 	.isc_nfl = 1,
383c19c7afeSEric Joyner 	.isc_ntxqs = 1,
384c19c7afeSEric Joyner 	.isc_nrxqs = 1,
385c19c7afeSEric Joyner 
386c19c7afeSEric Joyner 	.isc_admin_intrcnt = 1,
387c19c7afeSEric Joyner 	.isc_vendor_info = ixgbe_vendor_info_array,
388c19c7afeSEric Joyner 	.isc_driver_version = ixgbe_driver_version,
389c19c7afeSEric Joyner 	.isc_driver = &ixgbe_if_driver,
3907aad1f4eSEric Joyner 	.isc_flags = IFLIB_TSO_INIT_IP,
391c19c7afeSEric Joyner 
392c19c7afeSEric Joyner 	.isc_nrxd_min = {MIN_RXD},
393c19c7afeSEric Joyner 	.isc_ntxd_min = {MIN_TXD},
394c19c7afeSEric Joyner 	.isc_nrxd_max = {MAX_RXD},
395c19c7afeSEric Joyner 	.isc_ntxd_max = {MAX_TXD},
396c19c7afeSEric Joyner 	.isc_nrxd_default = {DEFAULT_RXD},
397c19c7afeSEric Joyner 	.isc_ntxd_default = {DEFAULT_TXD},
398c19c7afeSEric Joyner };
399c19c7afeSEric Joyner 
400c19c7afeSEric Joyner /************************************************************************
401c19c7afeSEric Joyner  * ixgbe_if_tx_queues_alloc
402c19c7afeSEric Joyner  ************************************************************************/
403c19c7afeSEric Joyner static int
404c19c7afeSEric Joyner ixgbe_if_tx_queues_alloc(if_ctx_t ctx, caddr_t *vaddrs, uint64_t *paddrs,
405c19c7afeSEric Joyner     int ntxqs, int ntxqsets)
406c19c7afeSEric Joyner {
407b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
408b1d5caf3SKevin Bowling 	if_softc_ctx_t     scctx = sc->shared;
409c19c7afeSEric Joyner 	struct ix_tx_queue *que;
410c19c7afeSEric Joyner 	int                i, j, error;
411c19c7afeSEric Joyner 
412b1d5caf3SKevin Bowling 	MPASS(sc->num_tx_queues > 0);
413b1d5caf3SKevin Bowling 	MPASS(sc->num_tx_queues == ntxqsets);
414c19c7afeSEric Joyner 	MPASS(ntxqs == 1);
415c19c7afeSEric Joyner 
416c19c7afeSEric Joyner 	/* Allocate queue structure memory */
417b1d5caf3SKevin Bowling 	sc->tx_queues =
418c19c7afeSEric Joyner 	    (struct ix_tx_queue *)malloc(sizeof(struct ix_tx_queue) * ntxqsets,
419c19c7afeSEric Joyner 	                                 M_IXGBE, M_NOWAIT | M_ZERO);
420b1d5caf3SKevin Bowling 	if (!sc->tx_queues) {
421c19c7afeSEric Joyner 		device_printf(iflib_get_dev(ctx),
422c19c7afeSEric Joyner 		    "Unable to allocate TX ring memory\n");
423c19c7afeSEric Joyner 		return (ENOMEM);
424c19c7afeSEric Joyner 	}
425c19c7afeSEric Joyner 
426b1d5caf3SKevin Bowling 	for (i = 0, que = sc->tx_queues; i < ntxqsets; i++, que++) {
427c19c7afeSEric Joyner 		struct tx_ring *txr = &que->txr;
428c19c7afeSEric Joyner 
429c19c7afeSEric Joyner 		/* In case SR-IOV is enabled, align the index properly */
430b1d5caf3SKevin Bowling 		txr->me = ixgbe_vf_que_index(sc->iov_mode, sc->pool,
431c19c7afeSEric Joyner 		    i);
432c19c7afeSEric Joyner 
433b1d5caf3SKevin Bowling 		txr->sc = que->sc = sc;
434c19c7afeSEric Joyner 
435c19c7afeSEric Joyner 		/* Allocate report status array */
436c19c7afeSEric Joyner 		txr->tx_rsq = (qidx_t *)malloc(sizeof(qidx_t) * scctx->isc_ntxd[0], M_IXGBE, M_NOWAIT | M_ZERO);
437c19c7afeSEric Joyner 		if (txr->tx_rsq == NULL) {
438c19c7afeSEric Joyner 			error = ENOMEM;
439c19c7afeSEric Joyner 			goto fail;
440c19c7afeSEric Joyner 		}
441c19c7afeSEric Joyner 		for (j = 0; j < scctx->isc_ntxd[0]; j++)
442c19c7afeSEric Joyner 			txr->tx_rsq[j] = QIDX_INVALID;
443c19c7afeSEric Joyner 		/* get the virtual and physical address of the hardware queues */
444c19c7afeSEric Joyner 		txr->tail = IXGBE_TDT(txr->me);
445c19c7afeSEric Joyner 		txr->tx_base = (union ixgbe_adv_tx_desc *)vaddrs[i];
446c19c7afeSEric Joyner 		txr->tx_paddr = paddrs[i];
447c19c7afeSEric Joyner 
448c19c7afeSEric Joyner 		txr->bytes = 0;
449c19c7afeSEric Joyner 		txr->total_packets = 0;
450c19c7afeSEric Joyner 
451c19c7afeSEric Joyner 		/* Set the rate at which we sample packets */
452b1d5caf3SKevin Bowling 		if (sc->feat_en & IXGBE_FEATURE_FDIR)
453c19c7afeSEric Joyner 			txr->atr_sample = atr_sample_rate;
454c19c7afeSEric Joyner 
455c19c7afeSEric Joyner 	}
456c19c7afeSEric Joyner 
457c19c7afeSEric Joyner 	device_printf(iflib_get_dev(ctx), "allocated for %d queues\n",
458b1d5caf3SKevin Bowling 	    sc->num_tx_queues);
459c19c7afeSEric Joyner 
460c19c7afeSEric Joyner 	return (0);
461c19c7afeSEric Joyner 
462c19c7afeSEric Joyner fail:
463c19c7afeSEric Joyner 	ixgbe_if_queues_free(ctx);
464c19c7afeSEric Joyner 
465c19c7afeSEric Joyner 	return (error);
466c19c7afeSEric Joyner } /* ixgbe_if_tx_queues_alloc */
467c19c7afeSEric Joyner 
468c19c7afeSEric Joyner /************************************************************************
469c19c7afeSEric Joyner  * ixgbe_if_rx_queues_alloc
470c19c7afeSEric Joyner  ************************************************************************/
471c19c7afeSEric Joyner static int
472c19c7afeSEric Joyner ixgbe_if_rx_queues_alloc(if_ctx_t ctx, caddr_t *vaddrs, uint64_t *paddrs,
473c19c7afeSEric Joyner     int nrxqs, int nrxqsets)
474c19c7afeSEric Joyner {
475b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = iflib_get_softc(ctx);
476c19c7afeSEric Joyner 	struct ix_rx_queue *que;
477c19c7afeSEric Joyner 	int                i;
478c19c7afeSEric Joyner 
479b1d5caf3SKevin Bowling 	MPASS(sc->num_rx_queues > 0);
480b1d5caf3SKevin Bowling 	MPASS(sc->num_rx_queues == nrxqsets);
481c19c7afeSEric Joyner 	MPASS(nrxqs == 1);
482c19c7afeSEric Joyner 
483c19c7afeSEric Joyner 	/* Allocate queue structure memory */
484b1d5caf3SKevin Bowling 	sc->rx_queues =
485c19c7afeSEric Joyner 	    (struct ix_rx_queue *)malloc(sizeof(struct ix_rx_queue)*nrxqsets,
486c19c7afeSEric Joyner 	                                 M_IXGBE, M_NOWAIT | M_ZERO);
487b1d5caf3SKevin Bowling 	if (!sc->rx_queues) {
488c19c7afeSEric Joyner 		device_printf(iflib_get_dev(ctx),
489c19c7afeSEric Joyner 		    "Unable to allocate TX ring memory\n");
490c19c7afeSEric Joyner 		return (ENOMEM);
491c19c7afeSEric Joyner 	}
492c19c7afeSEric Joyner 
493b1d5caf3SKevin Bowling 	for (i = 0, que = sc->rx_queues; i < nrxqsets; i++, que++) {
494c19c7afeSEric Joyner 		struct rx_ring *rxr = &que->rxr;
495c19c7afeSEric Joyner 
496c19c7afeSEric Joyner 		/* In case SR-IOV is enabled, align the index properly */
497b1d5caf3SKevin Bowling 		rxr->me = ixgbe_vf_que_index(sc->iov_mode, sc->pool,
498c19c7afeSEric Joyner 		    i);
499c19c7afeSEric Joyner 
500b1d5caf3SKevin Bowling 		rxr->sc = que->sc = sc;
501c19c7afeSEric Joyner 
502c19c7afeSEric Joyner 		/* get the virtual and physical address of the hw queues */
503c19c7afeSEric Joyner 		rxr->tail = IXGBE_RDT(rxr->me);
504c19c7afeSEric Joyner 		rxr->rx_base = (union ixgbe_adv_rx_desc *)vaddrs[i];
505c19c7afeSEric Joyner 		rxr->rx_paddr = paddrs[i];
506c19c7afeSEric Joyner 		rxr->bytes = 0;
507c19c7afeSEric Joyner 		rxr->que = que;
508c19c7afeSEric Joyner 	}
509c19c7afeSEric Joyner 
510c19c7afeSEric Joyner 	device_printf(iflib_get_dev(ctx), "allocated for %d rx queues\n",
511b1d5caf3SKevin Bowling 	    sc->num_rx_queues);
512c19c7afeSEric Joyner 
513c19c7afeSEric Joyner 	return (0);
514c19c7afeSEric Joyner } /* ixgbe_if_rx_queues_alloc */
515c19c7afeSEric Joyner 
516c19c7afeSEric Joyner /************************************************************************
517c19c7afeSEric Joyner  * ixgbe_if_queues_free
518c19c7afeSEric Joyner  ************************************************************************/
519c19c7afeSEric Joyner static void
520c19c7afeSEric Joyner ixgbe_if_queues_free(if_ctx_t ctx)
521c19c7afeSEric Joyner {
522b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = iflib_get_softc(ctx);
523b1d5caf3SKevin Bowling 	struct ix_tx_queue *tx_que = sc->tx_queues;
524b1d5caf3SKevin Bowling 	struct ix_rx_queue *rx_que = sc->rx_queues;
525c19c7afeSEric Joyner 	int                i;
526c19c7afeSEric Joyner 
527c19c7afeSEric Joyner 	if (tx_que != NULL) {
528b1d5caf3SKevin Bowling 		for (i = 0; i < sc->num_tx_queues; i++, tx_que++) {
529c19c7afeSEric Joyner 			struct tx_ring *txr = &tx_que->txr;
530c19c7afeSEric Joyner 			if (txr->tx_rsq == NULL)
531c19c7afeSEric Joyner 				break;
532c19c7afeSEric Joyner 
533c19c7afeSEric Joyner 			free(txr->tx_rsq, M_IXGBE);
534c19c7afeSEric Joyner 			txr->tx_rsq = NULL;
535c19c7afeSEric Joyner 		}
536c19c7afeSEric Joyner 
537b1d5caf3SKevin Bowling 		free(sc->tx_queues, M_IXGBE);
538b1d5caf3SKevin Bowling 		sc->tx_queues = NULL;
539c19c7afeSEric Joyner 	}
540c19c7afeSEric Joyner 	if (rx_que != NULL) {
541b1d5caf3SKevin Bowling 		free(sc->rx_queues, M_IXGBE);
542b1d5caf3SKevin Bowling 		sc->rx_queues = NULL;
543c19c7afeSEric Joyner 	}
544c19c7afeSEric Joyner } /* ixgbe_if_queues_free */
545c19c7afeSEric Joyner 
5468eb6488eSEric Joyner /************************************************************************
5478eb6488eSEric Joyner  * ixgbe_initialize_rss_mapping
5488eb6488eSEric Joyner  ************************************************************************/
5498eb6488eSEric Joyner static void
550b1d5caf3SKevin Bowling ixgbe_initialize_rss_mapping(struct ixgbe_softc *sc)
551758cc3dcSJack F Vogel {
552b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
5538eb6488eSEric Joyner 	u32             reta = 0, mrqc, rss_key[10];
5548eb6488eSEric Joyner 	int             queue_id, table_size, index_mult;
5558eb6488eSEric Joyner 	int             i, j;
5568eb6488eSEric Joyner 	u32             rss_hash_config;
5576f37f232SEric Joyner 
558b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_RSS) {
5598eb6488eSEric Joyner 		/* Fetch the configured RSS key */
5608eb6488eSEric Joyner 		rss_getkey((uint8_t *)&rss_key);
561758cc3dcSJack F Vogel 	} else {
5628eb6488eSEric Joyner 		/* set up random bits */
5638eb6488eSEric Joyner 		arc4rand(&rss_key, sizeof(rss_key), 0);
564758cc3dcSJack F Vogel 	}
565758cc3dcSJack F Vogel 
5668eb6488eSEric Joyner 	/* Set multiplier for RETA setup and table size based on MAC */
5678eb6488eSEric Joyner 	index_mult = 0x1;
5688eb6488eSEric Joyner 	table_size = 128;
569b1d5caf3SKevin Bowling 	switch (sc->hw.mac.type) {
5708eb6488eSEric Joyner 	case ixgbe_mac_82598EB:
5718eb6488eSEric Joyner 		index_mult = 0x11;
572758cc3dcSJack F Vogel 		break;
5738eb6488eSEric Joyner 	case ixgbe_mac_X550:
5748eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
5758eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
5768eb6488eSEric Joyner 		table_size = 512;
5778eb6488eSEric Joyner 		break;
578758cc3dcSJack F Vogel 	default:
579758cc3dcSJack F Vogel 		break;
580758cc3dcSJack F Vogel 	}
581758cc3dcSJack F Vogel 
5828eb6488eSEric Joyner 	/* Set up the redirection table */
5838eb6488eSEric Joyner 	for (i = 0, j = 0; i < table_size; i++, j++) {
584b1d5caf3SKevin Bowling 		if (j == sc->num_rx_queues)
5858eb6488eSEric Joyner 			j = 0;
586758cc3dcSJack F Vogel 
587b1d5caf3SKevin Bowling 		if (sc->feat_en & IXGBE_FEATURE_RSS) {
588a9ca1c79SSean Bruno 			/*
5898eb6488eSEric Joyner 			 * Fetch the RSS bucket id for the given indirection
5908eb6488eSEric Joyner 			 * entry. Cap it at the number of configured buckets
591c19c7afeSEric Joyner 			 * (which is num_rx_queues.)
592a9ca1c79SSean Bruno 			 */
5938eb6488eSEric Joyner 			queue_id = rss_get_indirection_to_bucket(i);
594b1d5caf3SKevin Bowling 			queue_id = queue_id % sc->num_rx_queues;
595758cc3dcSJack F Vogel 		} else
5968eb6488eSEric Joyner 			queue_id = (j * index_mult);
5978eb6488eSEric Joyner 
5988eb6488eSEric Joyner 		/*
5998eb6488eSEric Joyner 		 * The low 8 bits are for hash value (n+0);
6008eb6488eSEric Joyner 		 * The next 8 bits are for hash value (n+1), etc.
6018eb6488eSEric Joyner 		 */
6028eb6488eSEric Joyner 		reta = reta >> 8;
6038eb6488eSEric Joyner 		reta = reta | (((uint32_t)queue_id) << 24);
6048eb6488eSEric Joyner 		if ((i & 3) == 3) {
6058eb6488eSEric Joyner 			if (i < 128)
6068eb6488eSEric Joyner 				IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
6078eb6488eSEric Joyner 			else
6088eb6488eSEric Joyner 				IXGBE_WRITE_REG(hw, IXGBE_ERETA((i >> 2) - 32),
6098eb6488eSEric Joyner 				    reta);
6108eb6488eSEric Joyner 			reta = 0;
6118eb6488eSEric Joyner 		}
612758cc3dcSJack F Vogel 	}
613758cc3dcSJack F Vogel 
6148eb6488eSEric Joyner 	/* Now fill our hash function seeds */
6158eb6488eSEric Joyner 	for (i = 0; i < 10; i++)
6168eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), rss_key[i]);
617758cc3dcSJack F Vogel 
6188eb6488eSEric Joyner 	/* Perform hash on these packet types */
619b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_RSS)
6208eb6488eSEric Joyner 		rss_hash_config = rss_gethashconfig();
621758cc3dcSJack F Vogel 	else {
622758cc3dcSJack F Vogel 		/*
6238eb6488eSEric Joyner 		 * Disable UDP - IP fragments aren't currently being handled
6248eb6488eSEric Joyner 		 * and so we end up with a mix of 2-tuple and 4-tuple
6258eb6488eSEric Joyner 		 * traffic.
626758cc3dcSJack F Vogel 		 */
6278eb6488eSEric Joyner 		rss_hash_config = RSS_HASHTYPE_RSS_IPV4
6288eb6488eSEric Joyner 		                | RSS_HASHTYPE_RSS_TCP_IPV4
6298eb6488eSEric Joyner 		                | RSS_HASHTYPE_RSS_IPV6
6308eb6488eSEric Joyner 		                | RSS_HASHTYPE_RSS_TCP_IPV6
6318eb6488eSEric Joyner 		                | RSS_HASHTYPE_RSS_IPV6_EX
6328eb6488eSEric Joyner 		                | RSS_HASHTYPE_RSS_TCP_IPV6_EX;
633758cc3dcSJack F Vogel 	}
634758cc3dcSJack F Vogel 
6358eb6488eSEric Joyner 	mrqc = IXGBE_MRQC_RSSEN;
6368eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_IPV4)
6378eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4;
6388eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_TCP_IPV4)
6398eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_TCP;
6408eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_IPV6)
6418eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6;
6428eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_TCP_IPV6)
6438eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
6448eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_IPV6_EX)
6458eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX;
6468eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_TCP_IPV6_EX)
6478eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_TCP;
6488eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV4)
6498eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
6508eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6)
6518eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
6528eb6488eSEric Joyner 	if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6_EX)
6538eb6488eSEric Joyner 		mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_UDP;
654b1d5caf3SKevin Bowling 	mrqc |= ixgbe_get_mrqc(sc->iov_mode);
6558eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
6568eb6488eSEric Joyner } /* ixgbe_initialize_rss_mapping */
657758cc3dcSJack F Vogel 
6588eb6488eSEric Joyner /************************************************************************
6598eb6488eSEric Joyner  * ixgbe_initialize_receive_units - Setup receive registers and features.
6608eb6488eSEric Joyner  ************************************************************************/
6618eb6488eSEric Joyner #define BSIZEPKT_ROUNDUP ((1<<IXGBE_SRRCTL_BSIZEPKT_SHIFT)-1)
662758cc3dcSJack F Vogel 
663758cc3dcSJack F Vogel static void
664c19c7afeSEric Joyner ixgbe_initialize_receive_units(if_ctx_t ctx)
665758cc3dcSJack F Vogel {
666b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = iflib_get_softc(ctx);
667b1d5caf3SKevin Bowling 	if_softc_ctx_t     scctx = sc->shared;
668b1d5caf3SKevin Bowling 	struct ixgbe_hw    *hw = &sc->hw;
669ff06a8dbSJustin Hibbits 	if_t               ifp = iflib_get_ifp(ctx);
670c19c7afeSEric Joyner 	struct ix_rx_queue *que;
6718eb6488eSEric Joyner 	int                i, j;
6728eb6488eSEric Joyner 	u32                bufsz, fctrl, srrctl, rxcsum;
6738eb6488eSEric Joyner 	u32                hlreg;
67448056c88SJack F Vogel 
67548056c88SJack F Vogel 	/*
6768eb6488eSEric Joyner 	 * Make sure receives are disabled while
6778eb6488eSEric Joyner 	 * setting up the descriptor ring
67848056c88SJack F Vogel 	 */
6798eb6488eSEric Joyner 	ixgbe_disable_rx(hw);
6808eb6488eSEric Joyner 
6818eb6488eSEric Joyner 	/* Enable broadcasts */
6828eb6488eSEric Joyner 	fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6838eb6488eSEric Joyner 	fctrl |= IXGBE_FCTRL_BAM;
684b1d5caf3SKevin Bowling 	if (sc->hw.mac.type == ixgbe_mac_82598EB) {
6858eb6488eSEric Joyner 		fctrl |= IXGBE_FCTRL_DPF;
6868eb6488eSEric Joyner 		fctrl |= IXGBE_FCTRL_PMCF;
68748056c88SJack F Vogel 	}
6888eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
6898eb6488eSEric Joyner 
6908eb6488eSEric Joyner 	/* Set for Jumbo Frames? */
6918eb6488eSEric Joyner 	hlreg = IXGBE_READ_REG(hw, IXGBE_HLREG0);
692ff06a8dbSJustin Hibbits 	if (if_getmtu(ifp) > ETHERMTU)
6938eb6488eSEric Joyner 		hlreg |= IXGBE_HLREG0_JUMBOEN;
6948eb6488eSEric Joyner 	else
6958eb6488eSEric Joyner 		hlreg &= ~IXGBE_HLREG0_JUMBOEN;
6968eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg);
6978eb6488eSEric Joyner 
698b1d5caf3SKevin Bowling 	bufsz = (sc->rx_mbuf_sz + BSIZEPKT_ROUNDUP) >>
6998eb6488eSEric Joyner 	    IXGBE_SRRCTL_BSIZEPKT_SHIFT;
7008eb6488eSEric Joyner 
701c19c7afeSEric Joyner 	/* Setup the Base and Length of the Rx Descriptor Ring */
702b1d5caf3SKevin Bowling 	for (i = 0, que = sc->rx_queues; i < sc->num_rx_queues; i++, que++) {
703c19c7afeSEric Joyner 		struct rx_ring *rxr = &que->rxr;
704c19c7afeSEric Joyner 		u64            rdba = rxr->rx_paddr;
705c19c7afeSEric Joyner 
7068eb6488eSEric Joyner 		j = rxr->me;
7078eb6488eSEric Joyner 
7088eb6488eSEric Joyner 		/* Setup the Base and Length of the Rx Descriptor Ring */
7098eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_RDBAL(j),
7108eb6488eSEric Joyner 		    (rdba & 0x00000000ffffffffULL));
7118eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_RDBAH(j), (rdba >> 32));
7128eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_RDLEN(j),
713c19c7afeSEric Joyner 		     scctx->isc_nrxd[0] * sizeof(union ixgbe_adv_rx_desc));
7148eb6488eSEric Joyner 
7158eb6488eSEric Joyner 		/* Set up the SRRCTL register */
7168eb6488eSEric Joyner 		srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(j));
7178eb6488eSEric Joyner 		srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
7188eb6488eSEric Joyner 		srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
7198eb6488eSEric Joyner 		srrctl |= bufsz;
7208eb6488eSEric Joyner 		srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
72148056c88SJack F Vogel 
72248056c88SJack F Vogel 		/*
7238eb6488eSEric Joyner 		 * Set DROP_EN iff we have no flow control and >1 queue.
7248eb6488eSEric Joyner 		 * Note that srrctl was cleared shortly before during reset,
7258eb6488eSEric Joyner 		 * so we do not need to clear the bit, but do it just in case
7268eb6488eSEric Joyner 		 * this code is moved elsewhere.
72748056c88SJack F Vogel 		 */
728b1d5caf3SKevin Bowling 		if (sc->num_rx_queues > 1 &&
729b1d5caf3SKevin Bowling 		    sc->hw.fc.requested_mode == ixgbe_fc_none) {
7308eb6488eSEric Joyner 			srrctl |= IXGBE_SRRCTL_DROP_EN;
731758cc3dcSJack F Vogel 		} else {
7328eb6488eSEric Joyner 			srrctl &= ~IXGBE_SRRCTL_DROP_EN;
733758cc3dcSJack F Vogel 		}
734758cc3dcSJack F Vogel 
7358eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(j), srrctl);
736758cc3dcSJack F Vogel 
7378eb6488eSEric Joyner 		/* Setup the HW Rx Head and Tail Descriptor Pointers */
7388eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_RDH(j), 0);
7398eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_RDT(j), 0);
740758cc3dcSJack F Vogel 
7418eb6488eSEric Joyner 		/* Set the driver rx tail address */
7428eb6488eSEric Joyner 		rxr->tail =  IXGBE_RDT(rxr->me);
743a9ca1c79SSean Bruno 	}
744758cc3dcSJack F Vogel 
745b1d5caf3SKevin Bowling 	if (sc->hw.mac.type != ixgbe_mac_82598EB) {
7468eb6488eSEric Joyner 		u32 psrtype = IXGBE_PSRTYPE_TCPHDR
7478eb6488eSEric Joyner 		            | IXGBE_PSRTYPE_UDPHDR
7488eb6488eSEric Joyner 		            | IXGBE_PSRTYPE_IPV4HDR
7498eb6488eSEric Joyner 		            | IXGBE_PSRTYPE_IPV6HDR;
7508eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(0), psrtype);
7516f37f232SEric Joyner 	}
7526f37f232SEric Joyner 
7538eb6488eSEric Joyner 	rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
7548eb6488eSEric Joyner 
755b1d5caf3SKevin Bowling 	ixgbe_initialize_rss_mapping(sc);
7568eb6488eSEric Joyner 
757156424fcSPrzemyslaw Lewandowski 	if (sc->feat_en & IXGBE_FEATURE_RSS) {
7588eb6488eSEric Joyner 		/* RSS and RX IPP Checksum are mutually exclusive */
7598eb6488eSEric Joyner 		rxcsum |= IXGBE_RXCSUM_PCSD;
7606f37f232SEric Joyner 	}
7616f37f232SEric Joyner 
762ff06a8dbSJustin Hibbits 	if (if_getcapenable(ifp) & IFCAP_RXCSUM)
7638eb6488eSEric Joyner 		rxcsum |= IXGBE_RXCSUM_PCSD;
764758cc3dcSJack F Vogel 
7658eb6488eSEric Joyner 	/* This is useful for calculating UDP/IP fragment checksums */
7668eb6488eSEric Joyner 	if (!(rxcsum & IXGBE_RXCSUM_PCSD))
7678eb6488eSEric Joyner 		rxcsum |= IXGBE_RXCSUM_IPPCSE;
768758cc3dcSJack F Vogel 
7698eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
770758cc3dcSJack F Vogel 
7718eb6488eSEric Joyner } /* ixgbe_initialize_receive_units */
772758cc3dcSJack F Vogel 
7738eb6488eSEric Joyner /************************************************************************
7748eb6488eSEric Joyner  * ixgbe_initialize_transmit_units - Enable transmit units.
7758eb6488eSEric Joyner  ************************************************************************/
776758cc3dcSJack F Vogel static void
777c19c7afeSEric Joyner ixgbe_initialize_transmit_units(if_ctx_t ctx)
778758cc3dcSJack F Vogel {
779b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = iflib_get_softc(ctx);
780b1d5caf3SKevin Bowling 	struct ixgbe_hw    *hw = &sc->hw;
781b1d5caf3SKevin Bowling 	if_softc_ctx_t     scctx = sc->shared;
782c19c7afeSEric Joyner 	struct ix_tx_queue *que;
783c19c7afeSEric Joyner 	int i;
784758cc3dcSJack F Vogel 
785758cc3dcSJack F Vogel 	/* Setup the Base and Length of the Tx Descriptor Ring */
786b1d5caf3SKevin Bowling 	for (i = 0, que = sc->tx_queues; i < sc->num_tx_queues;
787c19c7afeSEric Joyner 	    i++, que++) {
788c19c7afeSEric Joyner 		struct tx_ring	   *txr = &que->txr;
789c19c7afeSEric Joyner 		u64 tdba = txr->tx_paddr;
790758cc3dcSJack F Vogel 		u32 txctrl = 0;
79148056c88SJack F Vogel 		int j = txr->me;
792758cc3dcSJack F Vogel 
79348056c88SJack F Vogel 		IXGBE_WRITE_REG(hw, IXGBE_TDBAL(j),
794758cc3dcSJack F Vogel 		    (tdba & 0x00000000ffffffffULL));
79548056c88SJack F Vogel 		IXGBE_WRITE_REG(hw, IXGBE_TDBAH(j), (tdba >> 32));
79648056c88SJack F Vogel 		IXGBE_WRITE_REG(hw, IXGBE_TDLEN(j),
797c19c7afeSEric Joyner 		    scctx->isc_ntxd[0] * sizeof(union ixgbe_adv_tx_desc));
798758cc3dcSJack F Vogel 
799758cc3dcSJack F Vogel 		/* Setup the HW Tx Head and Tail descriptor pointers */
80048056c88SJack F Vogel 		IXGBE_WRITE_REG(hw, IXGBE_TDH(j), 0);
80148056c88SJack F Vogel 		IXGBE_WRITE_REG(hw, IXGBE_TDT(j), 0);
802758cc3dcSJack F Vogel 
803758cc3dcSJack F Vogel 		/* Cache the tail address */
8042dc2d580SEric Joyner 		txr->tail = IXGBE_TDT(txr->me);
8052dc2d580SEric Joyner 
806088a0b27SEric Joyner 		txr->tx_rs_cidx = txr->tx_rs_pidx;
807088a0b27SEric Joyner 		txr->tx_cidx_processed = scctx->isc_ntxd[0] - 1;
808c19c7afeSEric Joyner 		for (int k = 0; k < scctx->isc_ntxd[0]; k++)
809c19c7afeSEric Joyner 			txr->tx_rsq[k] = QIDX_INVALID;
810758cc3dcSJack F Vogel 
811758cc3dcSJack F Vogel 		/* Disable Head Writeback */
812a9ca1c79SSean Bruno 		/*
813a9ca1c79SSean Bruno 		 * Note: for X550 series devices, these registers are actually
814a9ca1c79SSean Bruno 		 * prefixed with TPH_ isntead of DCA_, but the addresses and
815a9ca1c79SSean Bruno 		 * fields remain the same.
816a9ca1c79SSean Bruno 		 */
817758cc3dcSJack F Vogel 		switch (hw->mac.type) {
818758cc3dcSJack F Vogel 		case ixgbe_mac_82598EB:
81948056c88SJack F Vogel 			txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(j));
820758cc3dcSJack F Vogel 			break;
821758cc3dcSJack F Vogel 		default:
82248056c88SJack F Vogel 			txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(j));
823758cc3dcSJack F Vogel 			break;
824758cc3dcSJack F Vogel 		}
825758cc3dcSJack F Vogel 		txctrl &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
826758cc3dcSJack F Vogel 		switch (hw->mac.type) {
827758cc3dcSJack F Vogel 		case ixgbe_mac_82598EB:
82848056c88SJack F Vogel 			IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(j), txctrl);
829758cc3dcSJack F Vogel 			break;
830758cc3dcSJack F Vogel 		default:
83148056c88SJack F Vogel 			IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(j), txctrl);
832758cc3dcSJack F Vogel 			break;
833758cc3dcSJack F Vogel 		}
834758cc3dcSJack F Vogel 
835758cc3dcSJack F Vogel 	}
836758cc3dcSJack F Vogel 
837758cc3dcSJack F Vogel 	if (hw->mac.type != ixgbe_mac_82598EB) {
838758cc3dcSJack F Vogel 		u32 dmatxctl, rttdcs;
8398eb6488eSEric Joyner 
840758cc3dcSJack F Vogel 		dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
841758cc3dcSJack F Vogel 		dmatxctl |= IXGBE_DMATXCTL_TE;
842758cc3dcSJack F Vogel 		IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
843758cc3dcSJack F Vogel 		/* Disable arbiter to set MTQC */
844758cc3dcSJack F Vogel 		rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
845758cc3dcSJack F Vogel 		rttdcs |= IXGBE_RTTDCS_ARBDIS;
846758cc3dcSJack F Vogel 		IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
8478eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_MTQC,
848b1d5caf3SKevin Bowling 		    ixgbe_get_mtqc(sc->iov_mode));
849758cc3dcSJack F Vogel 		rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
850758cc3dcSJack F Vogel 		IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
851758cc3dcSJack F Vogel 	}
852758cc3dcSJack F Vogel 
8538eb6488eSEric Joyner } /* ixgbe_initialize_transmit_units */
854758cc3dcSJack F Vogel 
8558eb6488eSEric Joyner /************************************************************************
856c19c7afeSEric Joyner  * ixgbe_register
857c19c7afeSEric Joyner  ************************************************************************/
858c19c7afeSEric Joyner static void *
859c19c7afeSEric Joyner ixgbe_register(device_t dev)
860c19c7afeSEric Joyner {
861ffe3def9SMark Johnston 	return (&ixgbe_sctx_init);
862c19c7afeSEric Joyner } /* ixgbe_register */
863c19c7afeSEric Joyner 
864c19c7afeSEric Joyner /************************************************************************
865c19c7afeSEric Joyner  * ixgbe_if_attach_pre - Device initialization routine, part 1
866758cc3dcSJack F Vogel  *
8678eb6488eSEric Joyner  *   Called when the driver is being loaded.
868c19c7afeSEric Joyner  *   Identifies the type of hardware, initializes the hardware,
869c19c7afeSEric Joyner  *   and initializes iflib structures.
870758cc3dcSJack F Vogel  *
8718eb6488eSEric Joyner  *   return 0 on success, positive on failure
8728eb6488eSEric Joyner  ************************************************************************/
8738eb6488eSEric Joyner static int
874c19c7afeSEric Joyner ixgbe_if_attach_pre(if_ctx_t ctx)
875758cc3dcSJack F Vogel {
876b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc;
877c19c7afeSEric Joyner 	device_t        dev;
878c19c7afeSEric Joyner 	if_softc_ctx_t  scctx;
8798eb6488eSEric Joyner 	struct ixgbe_hw *hw;
8808eb6488eSEric Joyner 	int             error = 0;
8818eb6488eSEric Joyner 	u32             ctrl_ext;
8828eb6488eSEric Joyner 
8838eb6488eSEric Joyner 	INIT_DEBUGOUT("ixgbe_attach: begin");
8848eb6488eSEric Joyner 
8858eb6488eSEric Joyner 	/* Allocate, clear, and link in our adapter structure */
886c19c7afeSEric Joyner 	dev = iflib_get_dev(ctx);
887b1d5caf3SKevin Bowling 	sc = iflib_get_softc(ctx);
888b1d5caf3SKevin Bowling 	sc->hw.back = sc;
889b1d5caf3SKevin Bowling 	sc->ctx = ctx;
890b1d5caf3SKevin Bowling 	sc->dev = dev;
891b1d5caf3SKevin Bowling 	scctx = sc->shared = iflib_get_softc_ctx(ctx);
892b1d5caf3SKevin Bowling 	sc->media = iflib_get_media(ctx);
893b1d5caf3SKevin Bowling 	hw = &sc->hw;
8948eb6488eSEric Joyner 
8958eb6488eSEric Joyner 	/* Determine hardware revision */
8968eb6488eSEric Joyner 	hw->vendor_id = pci_get_vendor(dev);
8978eb6488eSEric Joyner 	hw->device_id = pci_get_device(dev);
8988eb6488eSEric Joyner 	hw->revision_id = pci_get_revid(dev);
8998eb6488eSEric Joyner 	hw->subsystem_vendor_id = pci_get_subvendor(dev);
9008eb6488eSEric Joyner 	hw->subsystem_device_id = pci_get_subdevice(dev);
901758cc3dcSJack F Vogel 
9028eb6488eSEric Joyner 	/* Do base PCI setup - map BAR0 */
903c19c7afeSEric Joyner 	if (ixgbe_allocate_pci_resources(ctx)) {
9048eb6488eSEric Joyner 		device_printf(dev, "Allocation of PCI resources failed\n");
905c19c7afeSEric Joyner 		return (ENXIO);
9066f37f232SEric Joyner 	}
907758cc3dcSJack F Vogel 
9088eb6488eSEric Joyner 	/* let hardware know driver is loaded */
9098eb6488eSEric Joyner 	ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
9108eb6488eSEric Joyner 	ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
9118eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
912758cc3dcSJack F Vogel 
913758cc3dcSJack F Vogel 	/*
9148eb6488eSEric Joyner 	 * Initialize the shared code
915758cc3dcSJack F Vogel 	 */
916c19c7afeSEric Joyner 	if (ixgbe_init_shared_code(hw) != 0) {
9178eb6488eSEric Joyner 		device_printf(dev, "Unable to initialize the shared code\n");
9188eb6488eSEric Joyner 		error = ENXIO;
919c19c7afeSEric Joyner 		goto err_pci;
92030126537SJack F Vogel 	}
921758cc3dcSJack F Vogel 
9228b4a3fbdSKevin Bowling 	if (hw->mac.ops.fw_recovery_mode && hw->mac.ops.fw_recovery_mode(hw)) {
9238b4a3fbdSKevin Bowling 		device_printf(dev, "Firmware recovery mode detected. Limiting "
9248b4a3fbdSKevin Bowling 		    "functionality.\nRefer to the Intel(R) Ethernet Adapters "
9258b4a3fbdSKevin Bowling 		    "and Devices User Guide for details on firmware recovery "
9268b4a3fbdSKevin Bowling 		    "mode.");
9278b4a3fbdSKevin Bowling 		error = ENOSYS;
9288b4a3fbdSKevin Bowling 		goto err_pci;
9298b4a3fbdSKevin Bowling 	}
9308b4a3fbdSKevin Bowling 
9318eb6488eSEric Joyner 	if (hw->mbx.ops.init_params)
9328eb6488eSEric Joyner 		hw->mbx.ops.init_params(hw);
933758cc3dcSJack F Vogel 
9348eb6488eSEric Joyner 	hw->allow_unsupported_sfp = allow_unsupported_sfp;
935758cc3dcSJack F Vogel 
936c19c7afeSEric Joyner 	if (hw->mac.type != ixgbe_mac_82598EB)
9378eb6488eSEric Joyner 		hw->phy.smart_speed = ixgbe_smart_speed;
9388eb6488eSEric Joyner 
939b1d5caf3SKevin Bowling 	ixgbe_init_device_features(sc);
9408eb6488eSEric Joyner 
9418eb6488eSEric Joyner 	/* Enable WoL (if supported) */
942b1d5caf3SKevin Bowling 	ixgbe_check_wol_support(sc);
9438eb6488eSEric Joyner 
9448eb6488eSEric Joyner 	/* Verify adapter fan is still functional (if applicable) */
945b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_FAN_FAIL) {
9468eb6488eSEric Joyner 		u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
947b1d5caf3SKevin Bowling 		ixgbe_check_fan_failure(sc, esdp, false);
9488eb6488eSEric Joyner 	}
9498eb6488eSEric Joyner 
9508eb6488eSEric Joyner 	/* Ensure SW/FW semaphore is free */
9518eb6488eSEric Joyner 	ixgbe_init_swfw_semaphore(hw);
9528eb6488eSEric Joyner 
9538eb6488eSEric Joyner 	/* Set an initial default flow control value */
9548eb6488eSEric Joyner 	hw->fc.requested_mode = ixgbe_flow_control;
9558eb6488eSEric Joyner 
95679b36ec9SKevin Bowling 	hw->phy.reset_if_overtemp = true;
9578eb6488eSEric Joyner 	error = ixgbe_reset_hw(hw);
95879b36ec9SKevin Bowling 	hw->phy.reset_if_overtemp = false;
9598eb6488eSEric Joyner 	if (error == IXGBE_ERR_SFP_NOT_PRESENT) {
960758cc3dcSJack F Vogel 		/*
9618eb6488eSEric Joyner 		 * No optics in this port, set up
9628eb6488eSEric Joyner 		 * so the timer routine will probe
9638eb6488eSEric Joyner 		 * for later insertion.
964758cc3dcSJack F Vogel 		 */
965b1d5caf3SKevin Bowling 		sc->sfp_probe = true;
966c19c7afeSEric Joyner 		error = 0;
9678eb6488eSEric Joyner 	} else if (error == IXGBE_ERR_SFP_NOT_SUPPORTED) {
9688eb6488eSEric Joyner 		device_printf(dev, "Unsupported SFP+ module detected!\n");
9698eb6488eSEric Joyner 		error = EIO;
970c19c7afeSEric Joyner 		goto err_pci;
9718eb6488eSEric Joyner 	} else if (error) {
9728eb6488eSEric Joyner 		device_printf(dev, "Hardware initialization failed\n");
9738eb6488eSEric Joyner 		error = EIO;
974c19c7afeSEric Joyner 		goto err_pci;
97597f9586eSSean Bruno 	}
97697f9586eSSean Bruno 
9778eb6488eSEric Joyner 	/* Make sure we have a good EEPROM before we read from it */
978b1d5caf3SKevin Bowling 	if (ixgbe_validate_eeprom_checksum(&sc->hw, NULL) < 0) {
9798eb6488eSEric Joyner 		device_printf(dev, "The EEPROM Checksum Is Not Valid\n");
9808eb6488eSEric Joyner 		error = EIO;
981c19c7afeSEric Joyner 		goto err_pci;
98297f9586eSSean Bruno 	}
98397f9586eSSean Bruno 
9848eb6488eSEric Joyner 	error = ixgbe_start_hw(hw);
9858eb6488eSEric Joyner 	switch (error) {
9868eb6488eSEric Joyner 	case IXGBE_ERR_EEPROM_VERSION:
9878eb6488eSEric Joyner 		device_printf(dev, "This device is a pre-production adapter/LOM.  Please be aware there may be issues associated with your hardware.\nIf you are experiencing problems please contact your Intel or hardware representative who provided you with this hardware.\n");
98897f9586eSSean Bruno 		break;
9898eb6488eSEric Joyner 	case IXGBE_ERR_SFP_NOT_SUPPORTED:
9908eb6488eSEric Joyner 		device_printf(dev, "Unsupported SFP+ Module\n");
9918eb6488eSEric Joyner 		error = EIO;
992c19c7afeSEric Joyner 		goto err_pci;
9938eb6488eSEric Joyner 	case IXGBE_ERR_SFP_NOT_PRESENT:
9948eb6488eSEric Joyner 		device_printf(dev, "No SFP+ Module found\n");
9958eb6488eSEric Joyner 		/* falls thru */
99697f9586eSSean Bruno 	default:
99797f9586eSSean Bruno 		break;
99897f9586eSSean Bruno 	}
99997f9586eSSean Bruno 
1000c19c7afeSEric Joyner 	/* Most of the iflib initialization... */
1001c19c7afeSEric Joyner 
1002c19c7afeSEric Joyner 	iflib_set_mac(ctx, hw->mac.addr);
1003b1d5caf3SKevin Bowling 	switch (sc->hw.mac.type) {
1004c19c7afeSEric Joyner 	case ixgbe_mac_X550:
1005c19c7afeSEric Joyner 	case ixgbe_mac_X550EM_x:
1006c19c7afeSEric Joyner 	case ixgbe_mac_X550EM_a:
1007c19c7afeSEric Joyner 		scctx->isc_rss_table_size = 512;
1008c19c7afeSEric Joyner 		scctx->isc_ntxqsets_max = scctx->isc_nrxqsets_max = 64;
1009c19c7afeSEric Joyner 		break;
1010c19c7afeSEric Joyner 	default:
1011c19c7afeSEric Joyner 		scctx->isc_rss_table_size = 128;
1012c19c7afeSEric Joyner 		scctx->isc_ntxqsets_max = scctx->isc_nrxqsets_max = 16;
1013c19c7afeSEric Joyner 	}
1014c19c7afeSEric Joyner 
1015c19c7afeSEric Joyner 	/* Allow legacy interrupts */
1016c19c7afeSEric Joyner 	ixgbe_txrx.ift_legacy_intr = ixgbe_intr;
1017c19c7afeSEric Joyner 
1018c19c7afeSEric Joyner 	scctx->isc_txqsizes[0] =
1019c19c7afeSEric Joyner 	    roundup2(scctx->isc_ntxd[0] * sizeof(union ixgbe_adv_tx_desc) +
1020c19c7afeSEric Joyner 	    sizeof(u32), DBA_ALIGN),
1021c19c7afeSEric Joyner 	scctx->isc_rxqsizes[0] =
1022c19c7afeSEric Joyner 	    roundup2(scctx->isc_nrxd[0] * sizeof(union ixgbe_adv_rx_desc),
1023c19c7afeSEric Joyner 	    DBA_ALIGN);
1024c19c7afeSEric Joyner 
1025c19c7afeSEric Joyner 	/* XXX */
1026c19c7afeSEric Joyner 	scctx->isc_tx_csum_flags = CSUM_IP | CSUM_TCP | CSUM_UDP | CSUM_TSO |
1027c19c7afeSEric Joyner 	    CSUM_IP6_TCP | CSUM_IP6_UDP | CSUM_IP6_TSO;
1028b1d5caf3SKevin Bowling 	if (sc->hw.mac.type == ixgbe_mac_82598EB) {
1029c19c7afeSEric Joyner 		scctx->isc_tx_nsegments = IXGBE_82598_SCATTER;
1030c19c7afeSEric Joyner 	} else {
1031c19c7afeSEric Joyner 		scctx->isc_tx_csum_flags |= CSUM_SCTP |CSUM_IP6_SCTP;
1032c19c7afeSEric Joyner 		scctx->isc_tx_nsegments = IXGBE_82599_SCATTER;
1033c19c7afeSEric Joyner 	}
1034749597dcSEric Joyner 
1035749597dcSEric Joyner 	scctx->isc_msix_bar = pci_msix_table_bar(dev);
1036749597dcSEric Joyner 
1037c19c7afeSEric Joyner 	scctx->isc_tx_tso_segments_max = scctx->isc_tx_nsegments;
1038c19c7afeSEric Joyner 	scctx->isc_tx_tso_size_max = IXGBE_TSO_SIZE;
1039c19c7afeSEric Joyner 	scctx->isc_tx_tso_segsize_max = PAGE_SIZE;
1040c19c7afeSEric Joyner 
1041c19c7afeSEric Joyner 	scctx->isc_txrx = &ixgbe_txrx;
1042c19c7afeSEric Joyner 
10437f87c040SMarius Strobl 	scctx->isc_capabilities = scctx->isc_capenable = IXGBE_CAPS;
1044c19c7afeSEric Joyner 
1045c19c7afeSEric Joyner 	return (0);
1046c19c7afeSEric Joyner 
1047c19c7afeSEric Joyner err_pci:
1048b1d5caf3SKevin Bowling 	ctrl_ext = IXGBE_READ_REG(&sc->hw, IXGBE_CTRL_EXT);
1049c19c7afeSEric Joyner 	ctrl_ext &= ~IXGBE_CTRL_EXT_DRV_LOAD;
1050b1d5caf3SKevin Bowling 	IXGBE_WRITE_REG(&sc->hw, IXGBE_CTRL_EXT, ctrl_ext);
1051c19c7afeSEric Joyner 	ixgbe_free_pci_resources(ctx);
1052c19c7afeSEric Joyner 
1053c19c7afeSEric Joyner 	return (error);
1054c19c7afeSEric Joyner } /* ixgbe_if_attach_pre */
1055c19c7afeSEric Joyner 
1056c19c7afeSEric Joyner  /*********************************************************************
1057c19c7afeSEric Joyner  * ixgbe_if_attach_post - Device initialization routine, part 2
1058c19c7afeSEric Joyner  *
1059c19c7afeSEric Joyner  *   Called during driver load, but after interrupts and
1060c19c7afeSEric Joyner  *   resources have been allocated and configured.
1061c19c7afeSEric Joyner  *   Sets up some data structures not relevant to iflib.
1062c19c7afeSEric Joyner  *
1063c19c7afeSEric Joyner  *   return 0 on success, positive on failure
1064c19c7afeSEric Joyner  *********************************************************************/
1065c19c7afeSEric Joyner static int
1066c19c7afeSEric Joyner ixgbe_if_attach_post(if_ctx_t ctx)
1067c19c7afeSEric Joyner {
1068c19c7afeSEric Joyner 	device_t dev;
1069b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc;
1070c19c7afeSEric Joyner 	struct ixgbe_hw *hw;
1071c19c7afeSEric Joyner 	int             error = 0;
1072c19c7afeSEric Joyner 
1073c19c7afeSEric Joyner 	dev = iflib_get_dev(ctx);
1074b1d5caf3SKevin Bowling 	sc = iflib_get_softc(ctx);
1075b1d5caf3SKevin Bowling 	hw = &sc->hw;
1076c19c7afeSEric Joyner 
1077c19c7afeSEric Joyner 
1078b1d5caf3SKevin Bowling 	if (sc->intr_type == IFLIB_INTR_LEGACY &&
1079b1d5caf3SKevin Bowling 		(sc->feat_cap & IXGBE_FEATURE_LEGACY_IRQ) == 0) {
1080c19c7afeSEric Joyner 		device_printf(dev, "Device does not support legacy interrupts");
1081c19c7afeSEric Joyner 		error = ENXIO;
1082c19c7afeSEric Joyner 		goto err;
1083c19c7afeSEric Joyner 	}
1084c19c7afeSEric Joyner 
1085c19c7afeSEric Joyner 	/* Allocate multicast array memory. */
1086b1d5caf3SKevin Bowling 	sc->mta = malloc(sizeof(*sc->mta) *
1087c19c7afeSEric Joyner 	                      MAX_NUM_MULTICAST_ADDRESSES, M_IXGBE, M_NOWAIT);
1088b1d5caf3SKevin Bowling 	if (sc->mta == NULL) {
1089c19c7afeSEric Joyner 		device_printf(dev, "Can not allocate multicast setup array\n");
1090c19c7afeSEric Joyner 		error = ENOMEM;
1091c19c7afeSEric Joyner 		goto err;
1092c19c7afeSEric Joyner 	}
1093c19c7afeSEric Joyner 
1094c19c7afeSEric Joyner 	/* hw.ix defaults init */
1095b1d5caf3SKevin Bowling 	ixgbe_set_advertise(sc, ixgbe_advertise_speed);
1096c19c7afeSEric Joyner 
10978eb6488eSEric Joyner 	/* Enable the optics for 82599 SFP+ fiber */
10988eb6488eSEric Joyner 	ixgbe_enable_tx_laser(hw);
1099758cc3dcSJack F Vogel 
11008eb6488eSEric Joyner 	/* Enable power to the phy. */
110179b36ec9SKevin Bowling 	ixgbe_set_phy_power(hw, true);
11028eb6488eSEric Joyner 
1103b1d5caf3SKevin Bowling 	ixgbe_initialize_iov(sc);
1104c19c7afeSEric Joyner 
1105c19c7afeSEric Joyner 	error = ixgbe_setup_interface(ctx);
1106c19c7afeSEric Joyner 	if (error) {
1107c19c7afeSEric Joyner 		device_printf(dev, "Interface setup failed: %d\n", error);
1108c19c7afeSEric Joyner 		goto err;
1109c19c7afeSEric Joyner 	}
1110c19c7afeSEric Joyner 
1111c19c7afeSEric Joyner 	ixgbe_if_update_admin_status(ctx);
1112c19c7afeSEric Joyner 
11138eb6488eSEric Joyner 	/* Initialize statistics */
1114b1d5caf3SKevin Bowling 	ixgbe_update_stats_counters(sc);
1115b1d5caf3SKevin Bowling 	ixgbe_add_hw_stats(sc);
11168eb6488eSEric Joyner 
11178eb6488eSEric Joyner 	/* Check PCIE slot type/speed/width */
1118b1d5caf3SKevin Bowling 	ixgbe_get_slot_info(sc);
1119758cc3dcSJack F Vogel 
1120758cc3dcSJack F Vogel 	/*
11218eb6488eSEric Joyner 	 * Do time init and sysctl init here, but
1122b1d5caf3SKevin Bowling 	 * only on the first port of a bypass sc.
1123758cc3dcSJack F Vogel 	 */
1124b1d5caf3SKevin Bowling 	ixgbe_bypass_init(sc);
1125758cc3dcSJack F Vogel 
11267660e4eaSKevin Bowling 	/* Display NVM and Option ROM versions */
11277660e4eaSKevin Bowling 	ixgbe_print_fw_version(ctx);
11287660e4eaSKevin Bowling 
11298eb6488eSEric Joyner 	/* Set an initial dmac value */
1130b1d5caf3SKevin Bowling 	sc->dmac = 0;
11318eb6488eSEric Joyner 	/* Set initial advertised speeds (if applicable) */
1132d381c807SPiotr Pietruszewski 	sc->advertise = ixgbe_get_default_advertise(sc);
1133758cc3dcSJack F Vogel 
1134b1d5caf3SKevin Bowling 	if (sc->feat_cap & IXGBE_FEATURE_SRIOV)
11358eb6488eSEric Joyner 		ixgbe_define_iov_schemas(dev, &error);
1136758cc3dcSJack F Vogel 
11378eb6488eSEric Joyner 	/* Add sysctls */
1138c19c7afeSEric Joyner 	ixgbe_add_device_sysctls(ctx);
1139758cc3dcSJack F Vogel 
11408eb6488eSEric Joyner 	return (0);
1141c19c7afeSEric Joyner err:
11428eb6488eSEric Joyner 	return (error);
1143c19c7afeSEric Joyner } /* ixgbe_if_attach_post */
11448eb6488eSEric Joyner 
11458eb6488eSEric Joyner /************************************************************************
11468eb6488eSEric Joyner  * ixgbe_check_wol_support
11476f37f232SEric Joyner  *
11486f37f232SEric Joyner  *   Checks whether the adapter's ports are capable of
11496f37f232SEric Joyner  *   Wake On LAN by reading the adapter's NVM.
11506f37f232SEric Joyner  *
11516f37f232SEric Joyner  *   Sets each port's hw->wol_enabled value depending
11526f37f232SEric Joyner  *   on the value read here.
11538eb6488eSEric Joyner  ************************************************************************/
11546f37f232SEric Joyner static void
1155b1d5caf3SKevin Bowling ixgbe_check_wol_support(struct ixgbe_softc *sc)
11566f37f232SEric Joyner {
1157b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
11586f37f232SEric Joyner 	u16             dev_caps = 0;
11596f37f232SEric Joyner 
11606f37f232SEric Joyner 	/* Find out WoL support for port */
1161b1d5caf3SKevin Bowling 	sc->wol_support = hw->wol_enabled = 0;
11626f37f232SEric Joyner 	ixgbe_get_device_caps(hw, &dev_caps);
11636f37f232SEric Joyner 	if ((dev_caps & IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
11646f37f232SEric Joyner 	    ((dev_caps & IXGBE_DEVICE_CAPS_WOL_PORT0) &&
11656f37f232SEric Joyner 	     hw->bus.func == 0))
1166b1d5caf3SKevin Bowling 		sc->wol_support = hw->wol_enabled = 1;
11676f37f232SEric Joyner 
11686f37f232SEric Joyner 	/* Save initial wake up filter configuration */
1169b1d5caf3SKevin Bowling 	sc->wufc = IXGBE_READ_REG(hw, IXGBE_WUFC);
11706f37f232SEric Joyner 
11716f37f232SEric Joyner 	return;
11728eb6488eSEric Joyner } /* ixgbe_check_wol_support */
11736f37f232SEric Joyner 
11748eb6488eSEric Joyner /************************************************************************
11758eb6488eSEric Joyner  * ixgbe_setup_interface
11768eb6488eSEric Joyner  *
11778eb6488eSEric Joyner  *   Setup networking device structure and register an interface.
11788eb6488eSEric Joyner  ************************************************************************/
11796f37f232SEric Joyner static int
1180c19c7afeSEric Joyner ixgbe_setup_interface(if_ctx_t ctx)
11816f37f232SEric Joyner {
1182ff06a8dbSJustin Hibbits 	if_t               ifp = iflib_get_ifp(ctx);
1183b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
11846f37f232SEric Joyner 
11858eb6488eSEric Joyner 	INIT_DEBUGOUT("ixgbe_setup_interface: begin");
11866f37f232SEric Joyner 
1187c19c7afeSEric Joyner 	if_setbaudrate(ifp, IF_Gbps(10));
11886f37f232SEric Joyner 
1189ff06a8dbSJustin Hibbits 	sc->max_frame_size = if_getmtu(ifp) + ETHER_HDR_LEN + ETHER_CRC_LEN;
1190758cc3dcSJack F Vogel 
1191b1d5caf3SKevin Bowling 	sc->phy_layer = ixgbe_get_supported_physical_layer(&sc->hw);
11928eb6488eSEric Joyner 
1193c19c7afeSEric Joyner 	ixgbe_add_media_types(ctx);
1194c19c7afeSEric Joyner 
1195c19c7afeSEric Joyner 	/* Autoselect media by default */
1196b1d5caf3SKevin Bowling 	ifmedia_set(sc->media, IFM_ETHER | IFM_AUTO);
11978eb6488eSEric Joyner 
11988eb6488eSEric Joyner 	return (0);
11998eb6488eSEric Joyner } /* ixgbe_setup_interface */
1200758cc3dcSJack F Vogel 
12018eb6488eSEric Joyner /************************************************************************
1202c19c7afeSEric Joyner  * ixgbe_if_get_counter
12038eb6488eSEric Joyner  ************************************************************************/
1204758cc3dcSJack F Vogel static uint64_t
1205c19c7afeSEric Joyner ixgbe_if_get_counter(if_ctx_t ctx, ift_counter cnt)
1206758cc3dcSJack F Vogel {
1207b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
1208c19c7afeSEric Joyner 	if_t           ifp = iflib_get_ifp(ctx);
1209758cc3dcSJack F Vogel 
1210758cc3dcSJack F Vogel 	switch (cnt) {
1211758cc3dcSJack F Vogel 	case IFCOUNTER_IPACKETS:
1212b1d5caf3SKevin Bowling 		return (sc->ipackets);
1213758cc3dcSJack F Vogel 	case IFCOUNTER_OPACKETS:
1214b1d5caf3SKevin Bowling 		return (sc->opackets);
1215758cc3dcSJack F Vogel 	case IFCOUNTER_IBYTES:
1216b1d5caf3SKevin Bowling 		return (sc->ibytes);
1217758cc3dcSJack F Vogel 	case IFCOUNTER_OBYTES:
1218b1d5caf3SKevin Bowling 		return (sc->obytes);
1219758cc3dcSJack F Vogel 	case IFCOUNTER_IMCASTS:
1220b1d5caf3SKevin Bowling 		return (sc->imcasts);
1221758cc3dcSJack F Vogel 	case IFCOUNTER_OMCASTS:
1222b1d5caf3SKevin Bowling 		return (sc->omcasts);
1223758cc3dcSJack F Vogel 	case IFCOUNTER_COLLISIONS:
1224758cc3dcSJack F Vogel 		return (0);
1225758cc3dcSJack F Vogel 	case IFCOUNTER_IQDROPS:
1226b1d5caf3SKevin Bowling 		return (sc->iqdrops);
1227625d12c6SJohn Baldwin 	case IFCOUNTER_OQDROPS:
1228c19c7afeSEric Joyner 		return (0);
1229758cc3dcSJack F Vogel 	case IFCOUNTER_IERRORS:
1230b1d5caf3SKevin Bowling 		return (sc->ierrors);
1231758cc3dcSJack F Vogel 	default:
1232758cc3dcSJack F Vogel 		return (if_get_counter_default(ifp, cnt));
1233758cc3dcSJack F Vogel 	}
1234c19c7afeSEric Joyner } /* ixgbe_if_get_counter */
1235758cc3dcSJack F Vogel 
12368eb6488eSEric Joyner /************************************************************************
1237bca38080SAndrew Gallatin  * ixgbe_if_i2c_req
1238bca38080SAndrew Gallatin  ************************************************************************/
1239bca38080SAndrew Gallatin static int
1240bca38080SAndrew Gallatin ixgbe_if_i2c_req(if_ctx_t ctx, struct ifi2creq *req)
1241bca38080SAndrew Gallatin {
1242b1d5caf3SKevin Bowling 	struct ixgbe_softc		*sc = iflib_get_softc(ctx);
1243b1d5caf3SKevin Bowling 	struct ixgbe_hw 	*hw = &sc->hw;
1244bca38080SAndrew Gallatin 	int 			i;
1245bca38080SAndrew Gallatin 
1246bca38080SAndrew Gallatin 
1247bca38080SAndrew Gallatin 	if (hw->phy.ops.read_i2c_byte == NULL)
1248bca38080SAndrew Gallatin 		return (ENXIO);
1249bca38080SAndrew Gallatin 	for (i = 0; i < req->len; i++)
1250bca38080SAndrew Gallatin 		hw->phy.ops.read_i2c_byte(hw, req->offset + i,
1251bca38080SAndrew Gallatin 		    req->dev_addr, &req->data[i]);
1252bca38080SAndrew Gallatin 	return (0);
1253bca38080SAndrew Gallatin } /* ixgbe_if_i2c_req */
1254bca38080SAndrew Gallatin 
1255cf150917SEric Joyner /* ixgbe_if_needs_restart - Tell iflib when the driver needs to be reinitialized
1256cf150917SEric Joyner  * @ctx: iflib context
1257cf150917SEric Joyner  * @event: event code to check
1258cf150917SEric Joyner  *
1259cf150917SEric Joyner  * Defaults to returning true for unknown events.
1260cf150917SEric Joyner  *
1261cf150917SEric Joyner  * @returns true if iflib needs to reinit the interface
1262cf150917SEric Joyner  */
1263cf150917SEric Joyner static bool
1264cf150917SEric Joyner ixgbe_if_needs_restart(if_ctx_t ctx __unused, enum iflib_restart_event event)
1265cf150917SEric Joyner {
1266cf150917SEric Joyner 	switch (event) {
1267cf150917SEric Joyner 	case IFLIB_RESTART_VLAN_CONFIG:
1268cf150917SEric Joyner 		return (false);
1269cf150917SEric Joyner 	default:
1270cf150917SEric Joyner 		return (true);
1271cf150917SEric Joyner 	}
1272cf150917SEric Joyner }
1273cf150917SEric Joyner 
1274bca38080SAndrew Gallatin /************************************************************************
12758eb6488eSEric Joyner  * ixgbe_add_media_types
12768eb6488eSEric Joyner  ************************************************************************/
12778eb6488eSEric Joyner static void
1278c19c7afeSEric Joyner ixgbe_add_media_types(if_ctx_t ctx)
12798eb6488eSEric Joyner {
1280b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
1281b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
1282c19c7afeSEric Joyner 	device_t        dev = iflib_get_dev(ctx);
12838eb6488eSEric Joyner 	u64             layer;
12848eb6488eSEric Joyner 
1285b1d5caf3SKevin Bowling 	layer = sc->phy_layer = ixgbe_get_supported_physical_layer(hw);
12868eb6488eSEric Joyner 
12878eb6488eSEric Joyner 	/* Media types with matching FreeBSD media defines */
12888eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_T)
1289b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10G_T, 0, NULL);
12908eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_T)
1291b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_1000_T, 0, NULL);
12928eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_100BASE_TX)
1293b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_100_TX, 0, NULL);
12948eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10BASE_T)
1295b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10_T, 0, NULL);
12968eb6488eSEric Joyner 
1297d381c807SPiotr Pietruszewski 	if (hw->mac.type == ixgbe_mac_X550) {
1298d381c807SPiotr Pietruszewski 		ifmedia_add(sc->media, IFM_ETHER | IFM_2500_T, 0, NULL);
1299d381c807SPiotr Pietruszewski 		ifmedia_add(sc->media, IFM_ETHER | IFM_5000_T, 0, NULL);
1300d381c807SPiotr Pietruszewski 	}
1301d381c807SPiotr Pietruszewski 
13028eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU ||
13038eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_SFP_ACTIVE_DA)
1304b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10G_TWINAX, 0,
13058eb6488eSEric Joyner 		    NULL);
13068eb6488eSEric Joyner 
13078eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LR) {
1308b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10G_LR, 0, NULL);
13098eb6488eSEric Joyner 		if (hw->phy.multispeed_fiber)
1310b1d5caf3SKevin Bowling 			ifmedia_add(sc->media, IFM_ETHER | IFM_1000_LX, 0,
13118eb6488eSEric Joyner 			    NULL);
13128eb6488eSEric Joyner 	}
13138eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_SR) {
1314b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10G_SR, 0, NULL);
13158eb6488eSEric Joyner 		if (hw->phy.multispeed_fiber)
1316b1d5caf3SKevin Bowling 			ifmedia_add(sc->media, IFM_ETHER | IFM_1000_SX, 0,
13178eb6488eSEric Joyner 			    NULL);
13188eb6488eSEric Joyner 	} else if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_SX)
1319b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_1000_SX, 0, NULL);
13208eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_CX4)
1321b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10G_CX4, 0, NULL);
13228eb6488eSEric Joyner 
13238eb6488eSEric Joyner #ifdef IFM_ETH_XTYPE
13248eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR)
1325b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10G_KR, 0, NULL);
13268eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KX4)
1327b1d5caf3SKevin Bowling 		ifmedia_add( sc->media, IFM_ETHER | IFM_10G_KX4, 0, NULL);
13288eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_KX)
1329b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_1000_KX, 0, NULL);
13308eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_2500BASE_KX)
1331b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_2500_KX, 0, NULL);
13328eb6488eSEric Joyner #else
13338eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR) {
13348eb6488eSEric Joyner 		device_printf(dev, "Media supported: 10GbaseKR\n");
13358eb6488eSEric Joyner 		device_printf(dev, "10GbaseKR mapped to 10GbaseSR\n");
1336b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10G_SR, 0, NULL);
13378eb6488eSEric Joyner 	}
13388eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KX4) {
13398eb6488eSEric Joyner 		device_printf(dev, "Media supported: 10GbaseKX4\n");
13408eb6488eSEric Joyner 		device_printf(dev, "10GbaseKX4 mapped to 10GbaseCX4\n");
1341b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_10G_CX4, 0, NULL);
13428eb6488eSEric Joyner 	}
13438eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_KX) {
13448eb6488eSEric Joyner 		device_printf(dev, "Media supported: 1000baseKX\n");
13458eb6488eSEric Joyner 		device_printf(dev, "1000baseKX mapped to 1000baseCX\n");
1346b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_1000_CX, 0, NULL);
13478eb6488eSEric Joyner 	}
13488eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_2500BASE_KX) {
13498eb6488eSEric Joyner 		device_printf(dev, "Media supported: 2500baseKX\n");
13508eb6488eSEric Joyner 		device_printf(dev, "2500baseKX mapped to 2500baseSX\n");
1351b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_2500_SX, 0, NULL);
13528eb6488eSEric Joyner 	}
13538eb6488eSEric Joyner #endif
13548eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_1000BASE_BX)
13558eb6488eSEric Joyner 		device_printf(dev, "Media supported: 1000baseBX\n");
13568eb6488eSEric Joyner 
13578eb6488eSEric Joyner 	if (hw->device_id == IXGBE_DEV_ID_82598AT) {
1358b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_1000_T | IFM_FDX,
13598eb6488eSEric Joyner 		    0, NULL);
1360b1d5caf3SKevin Bowling 		ifmedia_add(sc->media, IFM_ETHER | IFM_1000_T, 0, NULL);
13618eb6488eSEric Joyner 	}
13628eb6488eSEric Joyner 
1363b1d5caf3SKevin Bowling 	ifmedia_add(sc->media, IFM_ETHER | IFM_AUTO, 0, NULL);
13648eb6488eSEric Joyner } /* ixgbe_add_media_types */
13658eb6488eSEric Joyner 
13668eb6488eSEric Joyner /************************************************************************
13678eb6488eSEric Joyner  * ixgbe_is_sfp
13688eb6488eSEric Joyner  ************************************************************************/
13698eb6488eSEric Joyner static inline bool
13708eb6488eSEric Joyner ixgbe_is_sfp(struct ixgbe_hw *hw)
13718eb6488eSEric Joyner {
13728eb6488eSEric Joyner 	switch (hw->mac.type) {
13738eb6488eSEric Joyner 	case ixgbe_mac_82598EB:
13748eb6488eSEric Joyner 		if (hw->phy.type == ixgbe_phy_nl)
137579b36ec9SKevin Bowling 			return (true);
137679b36ec9SKevin Bowling 		return (false);
13778eb6488eSEric Joyner 	case ixgbe_mac_82599EB:
13788eb6488eSEric Joyner 		switch (hw->mac.ops.get_media_type(hw)) {
13798eb6488eSEric Joyner 		case ixgbe_media_type_fiber:
13808eb6488eSEric Joyner 		case ixgbe_media_type_fiber_qsfp:
138179b36ec9SKevin Bowling 			return (true);
13828eb6488eSEric Joyner 		default:
138379b36ec9SKevin Bowling 			return (false);
13848eb6488eSEric Joyner 		}
13858eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
13868eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
13878eb6488eSEric Joyner 		if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber)
138879b36ec9SKevin Bowling 			return (true);
138979b36ec9SKevin Bowling 		return (false);
13908eb6488eSEric Joyner 	default:
139179b36ec9SKevin Bowling 		return (false);
13928eb6488eSEric Joyner 	}
13938eb6488eSEric Joyner } /* ixgbe_is_sfp */
13948eb6488eSEric Joyner 
13958eb6488eSEric Joyner /************************************************************************
13968eb6488eSEric Joyner  * ixgbe_config_link
13978eb6488eSEric Joyner  ************************************************************************/
13988eb6488eSEric Joyner static void
1399b2c1e8e6SEric Joyner ixgbe_config_link(if_ctx_t ctx)
14008eb6488eSEric Joyner {
1401b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
1402b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
14038eb6488eSEric Joyner 	u32             autoneg, err = 0;
14048eb6488eSEric Joyner 	bool            sfp, negotiate;
14058eb6488eSEric Joyner 
14068eb6488eSEric Joyner 	sfp = ixgbe_is_sfp(hw);
14078eb6488eSEric Joyner 
14088eb6488eSEric Joyner 	if (sfp) {
1409b1d5caf3SKevin Bowling 		sc->task_requests |= IXGBE_REQUEST_TASK_MOD;
1410b2c1e8e6SEric Joyner 		iflib_admin_intr_deferred(ctx);
14118eb6488eSEric Joyner 	} else {
14128eb6488eSEric Joyner 		if (hw->mac.ops.check_link)
1413b1d5caf3SKevin Bowling 			err = ixgbe_check_link(hw, &sc->link_speed,
1414b1d5caf3SKevin Bowling 			    &sc->link_up, false);
14158eb6488eSEric Joyner 		if (err)
1416c19c7afeSEric Joyner 			return;
14178eb6488eSEric Joyner 		autoneg = hw->phy.autoneg_advertised;
14188eb6488eSEric Joyner 		if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
14198eb6488eSEric Joyner 			err = hw->mac.ops.get_link_capabilities(hw, &autoneg,
14208eb6488eSEric Joyner 			    &negotiate);
14218eb6488eSEric Joyner 		if (err)
1422c19c7afeSEric Joyner 			return;
1423d381c807SPiotr Pietruszewski 
1424d381c807SPiotr Pietruszewski 		if (hw->mac.type == ixgbe_mac_X550 &&
1425d381c807SPiotr Pietruszewski 		    hw->phy.autoneg_advertised == 0) {
1426d381c807SPiotr Pietruszewski 			/*
1427d381c807SPiotr Pietruszewski 			 * 2.5G and 5G autonegotiation speeds on X550
1428d381c807SPiotr Pietruszewski 			 * are disabled by default due to reported
1429d381c807SPiotr Pietruszewski 			 * interoperability issues with some switches.
1430d381c807SPiotr Pietruszewski 			 *
1431d381c807SPiotr Pietruszewski 			 * The second condition checks if any operations
1432d381c807SPiotr Pietruszewski 			 * involving setting autonegotiation speeds have
1433d381c807SPiotr Pietruszewski 			 * been performed prior to this ixgbe_config_link()
1434d381c807SPiotr Pietruszewski 			 * call.
1435d381c807SPiotr Pietruszewski 			 *
1436d381c807SPiotr Pietruszewski 			 * If hw->phy.autoneg_advertised does not
1437d381c807SPiotr Pietruszewski 			 * equal 0, this means that the user might have
1438d381c807SPiotr Pietruszewski 			 * set autonegotiation speeds via the sysctl
1439d381c807SPiotr Pietruszewski 			 * before bringing the interface up. In this
1440d381c807SPiotr Pietruszewski 			 * case, we should not disable 2.5G and 5G
1441d381c807SPiotr Pietruszewski 			 * since that speeds might be selected by the
1442d381c807SPiotr Pietruszewski 			 * user.
1443d381c807SPiotr Pietruszewski 			 *
1444d381c807SPiotr Pietruszewski 			 * Otherwise (i.e. if hw->phy.autoneg_advertised
1445d381c807SPiotr Pietruszewski 			 * is set to 0), it is the first time we set
1446d381c807SPiotr Pietruszewski 			 * autonegotiation preferences and the default
1447d381c807SPiotr Pietruszewski 			 * set of speeds should exclude 2.5G and 5G.
1448d381c807SPiotr Pietruszewski 			 */
1449d381c807SPiotr Pietruszewski 			autoneg &= ~(IXGBE_LINK_SPEED_2_5GB_FULL |
1450d381c807SPiotr Pietruszewski 			    IXGBE_LINK_SPEED_5GB_FULL);
1451d381c807SPiotr Pietruszewski 		}
1452d381c807SPiotr Pietruszewski 
14538eb6488eSEric Joyner 		if (hw->mac.ops.setup_link)
14548eb6488eSEric Joyner 			err = hw->mac.ops.setup_link(hw, autoneg,
1455b1d5caf3SKevin Bowling 			    sc->link_up);
14568eb6488eSEric Joyner 	}
14578eb6488eSEric Joyner } /* ixgbe_config_link */
14588eb6488eSEric Joyner 
14598eb6488eSEric Joyner /************************************************************************
14608eb6488eSEric Joyner  * ixgbe_update_stats_counters - Update board statistics counters.
14618eb6488eSEric Joyner  ************************************************************************/
14628eb6488eSEric Joyner static void
1463b1d5caf3SKevin Bowling ixgbe_update_stats_counters(struct ixgbe_softc *sc)
14648eb6488eSEric Joyner {
1465b1d5caf3SKevin Bowling 	struct ixgbe_hw       *hw = &sc->hw;
1466b1d5caf3SKevin Bowling 	struct ixgbe_hw_stats *stats = &sc->stats.pf;
14678eb6488eSEric Joyner 	u32                   missed_rx = 0, bprc, lxon, lxoff, total;
1468e37d3dc1SEric Joyner 	u32                   lxoffrxc;
14698eb6488eSEric Joyner 	u64                   total_missed_rx = 0;
14708eb6488eSEric Joyner 
14718eb6488eSEric Joyner 	stats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
14728eb6488eSEric Joyner 	stats->illerrc += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
14738eb6488eSEric Joyner 	stats->errbc += IXGBE_READ_REG(hw, IXGBE_ERRBC);
14748eb6488eSEric Joyner 	stats->mspdc += IXGBE_READ_REG(hw, IXGBE_MSPDC);
14758eb6488eSEric Joyner 	stats->mpc[0] += IXGBE_READ_REG(hw, IXGBE_MPC(0));
14768eb6488eSEric Joyner 
14778eb6488eSEric Joyner 	for (int i = 0; i < 16; i++) {
14788eb6488eSEric Joyner 		stats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
14798eb6488eSEric Joyner 		stats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
14808eb6488eSEric Joyner 		stats->qprdc[i] += IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
14818eb6488eSEric Joyner 	}
14828eb6488eSEric Joyner 	stats->mlfc += IXGBE_READ_REG(hw, IXGBE_MLFC);
14838eb6488eSEric Joyner 	stats->mrfc += IXGBE_READ_REG(hw, IXGBE_MRFC);
14848eb6488eSEric Joyner 	stats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
14858eb6488eSEric Joyner 
14868eb6488eSEric Joyner 	/* Hardware workaround, gprc counts missed packets */
14878eb6488eSEric Joyner 	stats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
14888eb6488eSEric Joyner 	stats->gprc -= missed_rx;
14898eb6488eSEric Joyner 
14908eb6488eSEric Joyner 	if (hw->mac.type != ixgbe_mac_82598EB) {
14918eb6488eSEric Joyner 		stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL) +
14928eb6488eSEric Joyner 		    ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
14938eb6488eSEric Joyner 		stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL) +
14948eb6488eSEric Joyner 		    ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
14958eb6488eSEric Joyner 		stats->tor += IXGBE_READ_REG(hw, IXGBE_TORL) +
14968eb6488eSEric Joyner 		    ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
14978eb6488eSEric Joyner 		stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
1498e37d3dc1SEric Joyner 		lxoffrxc = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
1499e37d3dc1SEric Joyner 		stats->lxoffrxc += lxoffrxc;
15008eb6488eSEric Joyner 	} else {
15018eb6488eSEric Joyner 		stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
1502e37d3dc1SEric Joyner 		lxoffrxc = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
1503e37d3dc1SEric Joyner 		stats->lxoffrxc += lxoffrxc;
15048eb6488eSEric Joyner 		/* 82598 only has a counter in the high register */
15058eb6488eSEric Joyner 		stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
15068eb6488eSEric Joyner 		stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
15078eb6488eSEric Joyner 		stats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
15088eb6488eSEric Joyner 	}
15098eb6488eSEric Joyner 
15108eb6488eSEric Joyner 	/*
1511e37d3dc1SEric Joyner 	 * For watchdog management we need to know if we have been paused
1512e37d3dc1SEric Joyner 	 * during the last interval, so capture that here.
1513e37d3dc1SEric Joyner 	*/
1514e37d3dc1SEric Joyner 	if (lxoffrxc)
1515b1d5caf3SKevin Bowling 		sc->shared->isc_pause_frames = 1;
1516e37d3dc1SEric Joyner 
1517e37d3dc1SEric Joyner 	/*
15188eb6488eSEric Joyner 	 * Workaround: mprc hardware is incorrectly counting
15198eb6488eSEric Joyner 	 * broadcasts, so for now we subtract those.
1520758cc3dcSJack F Vogel 	 */
15218eb6488eSEric Joyner 	bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
15228eb6488eSEric Joyner 	stats->bprc += bprc;
15238eb6488eSEric Joyner 	stats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
15248eb6488eSEric Joyner 	if (hw->mac.type == ixgbe_mac_82598EB)
15258eb6488eSEric Joyner 		stats->mprc -= bprc;
15268eb6488eSEric Joyner 
15278eb6488eSEric Joyner 	stats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
15288eb6488eSEric Joyner 	stats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
15298eb6488eSEric Joyner 	stats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
15308eb6488eSEric Joyner 	stats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
15318eb6488eSEric Joyner 	stats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
15328eb6488eSEric Joyner 	stats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
15338eb6488eSEric Joyner 
15348eb6488eSEric Joyner 	lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
15358eb6488eSEric Joyner 	stats->lxontxc += lxon;
15368eb6488eSEric Joyner 	lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
15378eb6488eSEric Joyner 	stats->lxofftxc += lxoff;
15388eb6488eSEric Joyner 	total = lxon + lxoff;
15398eb6488eSEric Joyner 
15408eb6488eSEric Joyner 	stats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
15418eb6488eSEric Joyner 	stats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
15428eb6488eSEric Joyner 	stats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
15438eb6488eSEric Joyner 	stats->gptc -= total;
15448eb6488eSEric Joyner 	stats->mptc -= total;
15458eb6488eSEric Joyner 	stats->ptc64 -= total;
15468eb6488eSEric Joyner 	stats->gotc -= total * ETHER_MIN_LEN;
15478eb6488eSEric Joyner 
15488eb6488eSEric Joyner 	stats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
15498eb6488eSEric Joyner 	stats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
15508eb6488eSEric Joyner 	stats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
15518eb6488eSEric Joyner 	stats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
15528eb6488eSEric Joyner 	stats->mngprc += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
15538eb6488eSEric Joyner 	stats->mngpdc += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
15548eb6488eSEric Joyner 	stats->mngptc += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
15558eb6488eSEric Joyner 	stats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
15568eb6488eSEric Joyner 	stats->tpt += IXGBE_READ_REG(hw, IXGBE_TPT);
15578eb6488eSEric Joyner 	stats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
15588eb6488eSEric Joyner 	stats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
15598eb6488eSEric Joyner 	stats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
15608eb6488eSEric Joyner 	stats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
15618eb6488eSEric Joyner 	stats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
15628eb6488eSEric Joyner 	stats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
15638eb6488eSEric Joyner 	stats->xec += IXGBE_READ_REG(hw, IXGBE_XEC);
15648eb6488eSEric Joyner 	stats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
15658eb6488eSEric Joyner 	stats->fclast += IXGBE_READ_REG(hw, IXGBE_FCLAST);
15668eb6488eSEric Joyner 	/* Only read FCOE on 82599 */
15678eb6488eSEric Joyner 	if (hw->mac.type != ixgbe_mac_82598EB) {
15688eb6488eSEric Joyner 		stats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
15698eb6488eSEric Joyner 		stats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
15708eb6488eSEric Joyner 		stats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
15718eb6488eSEric Joyner 		stats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
15728eb6488eSEric Joyner 		stats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
15738eb6488eSEric Joyner 	}
15748eb6488eSEric Joyner 
15758eb6488eSEric Joyner 	/* Fill out the OS statistics structure */
1576b1d5caf3SKevin Bowling 	IXGBE_SET_IPACKETS(sc, stats->gprc);
1577b1d5caf3SKevin Bowling 	IXGBE_SET_OPACKETS(sc, stats->gptc);
1578b1d5caf3SKevin Bowling 	IXGBE_SET_IBYTES(sc, stats->gorc);
1579b1d5caf3SKevin Bowling 	IXGBE_SET_OBYTES(sc, stats->gotc);
1580b1d5caf3SKevin Bowling 	IXGBE_SET_IMCASTS(sc, stats->mprc);
1581b1d5caf3SKevin Bowling 	IXGBE_SET_OMCASTS(sc, stats->mptc);
1582b1d5caf3SKevin Bowling 	IXGBE_SET_COLLISIONS(sc, 0);
1583b1d5caf3SKevin Bowling 	IXGBE_SET_IQDROPS(sc, total_missed_rx);
1584afb1aa4eSPiotr Pietruszewski 
1585afb1aa4eSPiotr Pietruszewski 	/*
1586afb1aa4eSPiotr Pietruszewski 	 * Aggregate following types of errors as RX errors:
1587afb1aa4eSPiotr Pietruszewski 	 * - CRC error count,
1588afb1aa4eSPiotr Pietruszewski 	 * - illegal byte error count,
1589afb1aa4eSPiotr Pietruszewski 	 * - missed packets count,
1590afb1aa4eSPiotr Pietruszewski 	 * - length error count,
1591afb1aa4eSPiotr Pietruszewski 	 * - undersized packets count,
1592afb1aa4eSPiotr Pietruszewski 	 * - fragmented packets count,
1593afb1aa4eSPiotr Pietruszewski 	 * - oversized packets count,
1594afb1aa4eSPiotr Pietruszewski 	 * - jabber count.
1595afb1aa4eSPiotr Pietruszewski 	 */
15968526120aSAndrey V. Elsukov 	IXGBE_SET_IERRORS(sc, stats->crcerrs + stats->illerrc +
1597afb1aa4eSPiotr Pietruszewski 	    stats->mpc[0] + stats->rlec + stats->ruc + stats->rfc + stats->roc +
1598afb1aa4eSPiotr Pietruszewski 	    stats->rjc);
15998eb6488eSEric Joyner } /* ixgbe_update_stats_counters */
16008eb6488eSEric Joyner 
16018eb6488eSEric Joyner /************************************************************************
16028eb6488eSEric Joyner  * ixgbe_add_hw_stats
16038eb6488eSEric Joyner  *
16048eb6488eSEric Joyner  *   Add sysctl variables, one per statistic, to the system.
16058eb6488eSEric Joyner  ************************************************************************/
16068eb6488eSEric Joyner static void
1607b1d5caf3SKevin Bowling ixgbe_add_hw_stats(struct ixgbe_softc *sc)
16088eb6488eSEric Joyner {
1609b1d5caf3SKevin Bowling 	device_t               dev = iflib_get_dev(sc->ctx);
1610c19c7afeSEric Joyner 	struct ix_rx_queue     *rx_que;
1611c19c7afeSEric Joyner 	struct ix_tx_queue     *tx_que;
16128eb6488eSEric Joyner 	struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(dev);
16138eb6488eSEric Joyner 	struct sysctl_oid      *tree = device_get_sysctl_tree(dev);
16148eb6488eSEric Joyner 	struct sysctl_oid_list *child = SYSCTL_CHILDREN(tree);
1615b1d5caf3SKevin Bowling 	struct ixgbe_hw_stats  *stats = &sc->stats.pf;
16168eb6488eSEric Joyner 	struct sysctl_oid      *stat_node, *queue_node;
16178eb6488eSEric Joyner 	struct sysctl_oid_list *stat_list, *queue_list;
1618c19c7afeSEric Joyner 	int                    i;
16198eb6488eSEric Joyner 
16208eb6488eSEric Joyner #define QUEUE_NAME_LEN 32
16218eb6488eSEric Joyner 	char                   namebuf[QUEUE_NAME_LEN];
16228eb6488eSEric Joyner 
16238eb6488eSEric Joyner 	/* Driver Statistics */
16248eb6488eSEric Joyner 	SYSCTL_ADD_ULONG(ctx, child, OID_AUTO, "dropped",
1625b1d5caf3SKevin Bowling 	    CTLFLAG_RD, &sc->dropped_pkts, "Driver dropped packets");
16268eb6488eSEric Joyner 	SYSCTL_ADD_ULONG(ctx, child, OID_AUTO, "watchdog_events",
1627b1d5caf3SKevin Bowling 	    CTLFLAG_RD, &sc->watchdog_events, "Watchdog timeouts");
16288eb6488eSEric Joyner 	SYSCTL_ADD_ULONG(ctx, child, OID_AUTO, "link_irq",
1629b1d5caf3SKevin Bowling 	    CTLFLAG_RD, &sc->link_irq, "Link MSI-X IRQ Handled");
16308eb6488eSEric Joyner 
1631b1d5caf3SKevin Bowling 	for (i = 0, tx_que = sc->tx_queues; i < sc->num_tx_queues; i++, tx_que++) {
1632c19c7afeSEric Joyner 		struct tx_ring *txr = &tx_que->txr;
16338eb6488eSEric Joyner 		snprintf(namebuf, QUEUE_NAME_LEN, "queue%d", i);
16348eb6488eSEric Joyner 		queue_node = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, namebuf,
163520b91f0aSPawel Biernacki 		    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "Queue Name");
16368eb6488eSEric Joyner 		queue_list = SYSCTL_CHILDREN(queue_node);
16378eb6488eSEric Joyner 
16388eb6488eSEric Joyner 		SYSCTL_ADD_PROC(ctx, queue_list, OID_AUTO, "txd_head",
163920b91f0aSPawel Biernacki 		    CTLTYPE_UINT | CTLFLAG_RD | CTLFLAG_NEEDGIANT, txr, 0,
16408eb6488eSEric Joyner 		    ixgbe_sysctl_tdh_handler, "IU", "Transmit Descriptor Head");
16418eb6488eSEric Joyner 		SYSCTL_ADD_PROC(ctx, queue_list, OID_AUTO, "txd_tail",
164220b91f0aSPawel Biernacki 		    CTLTYPE_UINT | CTLFLAG_RD | CTLFLAG_NEEDGIANT, txr, 0,
16438eb6488eSEric Joyner 		    ixgbe_sysctl_tdt_handler, "IU", "Transmit Descriptor Tail");
16448eb6488eSEric Joyner 		SYSCTL_ADD_UQUAD(ctx, queue_list, OID_AUTO, "tso_tx",
16458eb6488eSEric Joyner 		    CTLFLAG_RD, &txr->tso_tx, "TSO");
16468eb6488eSEric Joyner 		SYSCTL_ADD_UQUAD(ctx, queue_list, OID_AUTO, "tx_packets",
16478eb6488eSEric Joyner 		    CTLFLAG_RD, &txr->total_packets,
16488eb6488eSEric Joyner 		    "Queue Packets Transmitted");
16498eb6488eSEric Joyner 	}
16508eb6488eSEric Joyner 
1651b1d5caf3SKevin Bowling 	for (i = 0, rx_que = sc->rx_queues; i < sc->num_rx_queues; i++, rx_que++) {
1652c19c7afeSEric Joyner 		struct rx_ring *rxr = &rx_que->rxr;
16538eb6488eSEric Joyner 		snprintf(namebuf, QUEUE_NAME_LEN, "queue%d", i);
16548eb6488eSEric Joyner 		queue_node = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, namebuf,
165520b91f0aSPawel Biernacki 		    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "Queue Name");
16568eb6488eSEric Joyner 		queue_list = SYSCTL_CHILDREN(queue_node);
16578eb6488eSEric Joyner 
1658c19c7afeSEric Joyner 		SYSCTL_ADD_PROC(ctx, queue_list, OID_AUTO, "interrupt_rate",
165920b91f0aSPawel Biernacki 		    CTLTYPE_UINT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
1660b1d5caf3SKevin Bowling 		    &sc->rx_queues[i], 0,
1661c19c7afeSEric Joyner 		    ixgbe_sysctl_interrupt_rate_handler, "IU",
1662c19c7afeSEric Joyner 		    "Interrupt Rate");
1663c19c7afeSEric Joyner 		SYSCTL_ADD_UQUAD(ctx, queue_list, OID_AUTO, "irqs",
1664b1d5caf3SKevin Bowling 		    CTLFLAG_RD, &(sc->rx_queues[i].irqs),
1665c19c7afeSEric Joyner 		    "irqs on this queue");
16668eb6488eSEric Joyner 		SYSCTL_ADD_PROC(ctx, queue_list, OID_AUTO, "rxd_head",
166720b91f0aSPawel Biernacki 		    CTLTYPE_UINT | CTLFLAG_RD | CTLFLAG_NEEDGIANT, rxr, 0,
16688eb6488eSEric Joyner 		    ixgbe_sysctl_rdh_handler, "IU", "Receive Descriptor Head");
16698eb6488eSEric Joyner 		SYSCTL_ADD_PROC(ctx, queue_list, OID_AUTO, "rxd_tail",
167020b91f0aSPawel Biernacki 		    CTLTYPE_UINT | CTLFLAG_RD | CTLFLAG_NEEDGIANT, rxr, 0,
16718eb6488eSEric Joyner 		    ixgbe_sysctl_rdt_handler, "IU", "Receive Descriptor Tail");
16728eb6488eSEric Joyner 		SYSCTL_ADD_UQUAD(ctx, queue_list, OID_AUTO, "rx_packets",
16738eb6488eSEric Joyner 		    CTLFLAG_RD, &rxr->rx_packets, "Queue Packets Received");
16748eb6488eSEric Joyner 		SYSCTL_ADD_UQUAD(ctx, queue_list, OID_AUTO, "rx_bytes",
16758eb6488eSEric Joyner 		    CTLFLAG_RD, &rxr->rx_bytes, "Queue Bytes Received");
16768eb6488eSEric Joyner 		SYSCTL_ADD_UQUAD(ctx, queue_list, OID_AUTO, "rx_copies",
16778eb6488eSEric Joyner 		    CTLFLAG_RD, &rxr->rx_copies, "Copied RX Frames");
16788eb6488eSEric Joyner 		SYSCTL_ADD_UQUAD(ctx, queue_list, OID_AUTO, "rx_discarded",
16798eb6488eSEric Joyner 		    CTLFLAG_RD, &rxr->rx_discarded, "Discarded RX packets");
16808eb6488eSEric Joyner 	}
16818eb6488eSEric Joyner 
16828eb6488eSEric Joyner 	/* MAC stats get their own sub node */
16838eb6488eSEric Joyner 
16848eb6488eSEric Joyner 	stat_node = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "mac_stats",
168520b91f0aSPawel Biernacki 	    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "MAC Statistics");
16868eb6488eSEric Joyner 	stat_list = SYSCTL_CHILDREN(stat_node);
16878eb6488eSEric Joyner 
1688afb1aa4eSPiotr Pietruszewski 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rx_errs",
1689b1d5caf3SKevin Bowling 	    CTLFLAG_RD, &sc->ierrors, IXGBE_SYSCTL_DESC_RX_ERRS);
16908eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "crc_errs",
16918eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->crcerrs, "CRC Errors");
16928eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "ill_errs",
16938eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->illerrc, "Illegal Byte Errors");
16948eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "byte_errs",
16958eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->errbc, "Byte Errors");
16968eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "short_discards",
16978eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mspdc, "MAC Short Packets Discarded");
16988eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "local_faults",
16998eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mlfc, "MAC Local Faults");
17008eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "remote_faults",
17018eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mrfc, "MAC Remote Faults");
17028eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rec_len_errs",
17038eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->rlec, "Receive Length Errors");
17048eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rx_missed_packets",
17058eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mpc[0], "RX Missed Packet Count");
17068eb6488eSEric Joyner 
17078eb6488eSEric Joyner 	/* Flow Control stats */
17088eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "xon_txd",
17098eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->lxontxc, "Link XON Transmitted");
17108eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "xon_recvd",
17118eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->lxonrxc, "Link XON Received");
17128eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "xoff_txd",
17138eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->lxofftxc, "Link XOFF Transmitted");
17148eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "xoff_recvd",
17158eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->lxoffrxc, "Link XOFF Received");
17168eb6488eSEric Joyner 
17178eb6488eSEric Joyner 	/* Packet Reception Stats */
17188eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "total_octets_rcvd",
17198eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->tor, "Total Octets Received");
17208eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "good_octets_rcvd",
17218eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->gorc, "Good Octets Received");
17228eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "total_pkts_rcvd",
17238eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->tpr, "Total Packets Received");
17248eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "good_pkts_rcvd",
17258eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->gprc, "Good Packets Received");
17268eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "mcast_pkts_rcvd",
17278eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mprc, "Multicast Packets Received");
17288eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "bcast_pkts_rcvd",
17298eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->bprc, "Broadcast Packets Received");
17308eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rx_frames_64",
17318eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->prc64, "64 byte frames received ");
17328eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rx_frames_65_127",
17338eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->prc127, "65-127 byte frames received");
17348eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rx_frames_128_255",
17358eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->prc255, "128-255 byte frames received");
17368eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rx_frames_256_511",
17378eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->prc511, "256-511 byte frames received");
17388eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rx_frames_512_1023",
17398eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->prc1023, "512-1023 byte frames received");
17408eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "rx_frames_1024_1522",
17418eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->prc1522, "1023-1522 byte frames received");
17428eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "recv_undersized",
17438eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->ruc, "Receive Undersized");
17448eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "recv_fragmented",
17458eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->rfc, "Fragmented Packets Received ");
17468eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "recv_oversized",
17478eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->roc, "Oversized Packets Received");
17488eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "recv_jabberd",
17498eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->rjc, "Received Jabber");
17508eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "management_pkts_rcvd",
17518eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mngprc, "Management Packets Received");
17528eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "management_pkts_drpd",
17538eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mngptc, "Management Packets Dropped");
17548eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "checksum_errs",
17558eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->xec, "Checksum Errors");
17568eb6488eSEric Joyner 
17578eb6488eSEric Joyner 	/* Packet Transmission Stats */
17588eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "good_octets_txd",
17598eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->gotc, "Good Octets Transmitted");
17608eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "total_pkts_txd",
17618eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->tpt, "Total Packets Transmitted");
17628eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "good_pkts_txd",
17638eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->gptc, "Good Packets Transmitted");
17648eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "bcast_pkts_txd",
17658eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->bptc, "Broadcast Packets Transmitted");
17668eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "mcast_pkts_txd",
17678eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mptc, "Multicast Packets Transmitted");
17688eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "management_pkts_txd",
17698eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->mngptc, "Management Packets Transmitted");
17708eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "tx_frames_64",
17718eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->ptc64, "64 byte frames transmitted ");
17728eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "tx_frames_65_127",
17738eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->ptc127, "65-127 byte frames transmitted");
17748eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "tx_frames_128_255",
17758eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->ptc255, "128-255 byte frames transmitted");
17768eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "tx_frames_256_511",
17778eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->ptc511, "256-511 byte frames transmitted");
17788eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "tx_frames_512_1023",
17798eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->ptc1023, "512-1023 byte frames transmitted");
17808eb6488eSEric Joyner 	SYSCTL_ADD_UQUAD(ctx, stat_list, OID_AUTO, "tx_frames_1024_1522",
17818eb6488eSEric Joyner 	    CTLFLAG_RD, &stats->ptc1522, "1024-1522 byte frames transmitted");
17828eb6488eSEric Joyner } /* ixgbe_add_hw_stats */
17838eb6488eSEric Joyner 
17848eb6488eSEric Joyner /************************************************************************
17858eb6488eSEric Joyner  * ixgbe_sysctl_tdh_handler - Transmit Descriptor Head handler function
17868eb6488eSEric Joyner  *
17878eb6488eSEric Joyner  *   Retrieves the TDH value from the hardware
17888eb6488eSEric Joyner  ************************************************************************/
1789758cc3dcSJack F Vogel static int
1790758cc3dcSJack F Vogel ixgbe_sysctl_tdh_handler(SYSCTL_HANDLER_ARGS)
1791758cc3dcSJack F Vogel {
1792758cc3dcSJack F Vogel 	struct tx_ring *txr = ((struct tx_ring *)oidp->oid_arg1);
17938eb6488eSEric Joyner 	int            error;
17948eb6488eSEric Joyner 	unsigned int   val;
1795758cc3dcSJack F Vogel 
17968eb6488eSEric Joyner 	if (!txr)
17978eb6488eSEric Joyner 		return (0);
17988eb6488eSEric Joyner 
1799b1d5caf3SKevin Bowling 	val = IXGBE_READ_REG(&txr->sc->hw, IXGBE_TDH(txr->me));
1800758cc3dcSJack F Vogel 	error = sysctl_handle_int(oidp, &val, 0, req);
1801758cc3dcSJack F Vogel 	if (error || !req->newptr)
1802758cc3dcSJack F Vogel 		return error;
1803758cc3dcSJack F Vogel 
18048eb6488eSEric Joyner 	return (0);
18058eb6488eSEric Joyner } /* ixgbe_sysctl_tdh_handler */
18068eb6488eSEric Joyner 
18078eb6488eSEric Joyner /************************************************************************
18088eb6488eSEric Joyner  * ixgbe_sysctl_tdt_handler - Transmit Descriptor Tail handler function
18098eb6488eSEric Joyner  *
1810758cc3dcSJack F Vogel  *   Retrieves the TDT value from the hardware
18118eb6488eSEric Joyner  ************************************************************************/
1812758cc3dcSJack F Vogel static int
1813758cc3dcSJack F Vogel ixgbe_sysctl_tdt_handler(SYSCTL_HANDLER_ARGS)
1814758cc3dcSJack F Vogel {
1815758cc3dcSJack F Vogel 	struct tx_ring *txr = ((struct tx_ring *)oidp->oid_arg1);
18168eb6488eSEric Joyner 	int            error;
18178eb6488eSEric Joyner 	unsigned int   val;
1818758cc3dcSJack F Vogel 
18198eb6488eSEric Joyner 	if (!txr)
18208eb6488eSEric Joyner 		return (0);
18218eb6488eSEric Joyner 
1822b1d5caf3SKevin Bowling 	val = IXGBE_READ_REG(&txr->sc->hw, IXGBE_TDT(txr->me));
1823758cc3dcSJack F Vogel 	error = sysctl_handle_int(oidp, &val, 0, req);
1824758cc3dcSJack F Vogel 	if (error || !req->newptr)
1825758cc3dcSJack F Vogel 		return error;
1826758cc3dcSJack F Vogel 
18278eb6488eSEric Joyner 	return (0);
18288eb6488eSEric Joyner } /* ixgbe_sysctl_tdt_handler */
18298eb6488eSEric Joyner 
18308eb6488eSEric Joyner /************************************************************************
18318eb6488eSEric Joyner  * ixgbe_sysctl_rdh_handler - Receive Descriptor Head handler function
18328eb6488eSEric Joyner  *
1833758cc3dcSJack F Vogel  *   Retrieves the RDH value from the hardware
18348eb6488eSEric Joyner  ************************************************************************/
1835758cc3dcSJack F Vogel static int
1836758cc3dcSJack F Vogel ixgbe_sysctl_rdh_handler(SYSCTL_HANDLER_ARGS)
1837758cc3dcSJack F Vogel {
1838758cc3dcSJack F Vogel 	struct rx_ring *rxr = ((struct rx_ring *)oidp->oid_arg1);
18398eb6488eSEric Joyner 	int            error;
18408eb6488eSEric Joyner 	unsigned int   val;
1841758cc3dcSJack F Vogel 
18428eb6488eSEric Joyner 	if (!rxr)
18438eb6488eSEric Joyner 		return (0);
18448eb6488eSEric Joyner 
1845b1d5caf3SKevin Bowling 	val = IXGBE_READ_REG(&rxr->sc->hw, IXGBE_RDH(rxr->me));
1846758cc3dcSJack F Vogel 	error = sysctl_handle_int(oidp, &val, 0, req);
1847758cc3dcSJack F Vogel 	if (error || !req->newptr)
1848758cc3dcSJack F Vogel 		return error;
1849758cc3dcSJack F Vogel 
18508eb6488eSEric Joyner 	return (0);
18518eb6488eSEric Joyner } /* ixgbe_sysctl_rdh_handler */
18528eb6488eSEric Joyner 
18538eb6488eSEric Joyner /************************************************************************
18548eb6488eSEric Joyner  * ixgbe_sysctl_rdt_handler - Receive Descriptor Tail handler function
18558eb6488eSEric Joyner  *
1856758cc3dcSJack F Vogel  *   Retrieves the RDT value from the hardware
18578eb6488eSEric Joyner  ************************************************************************/
1858758cc3dcSJack F Vogel static int
1859758cc3dcSJack F Vogel ixgbe_sysctl_rdt_handler(SYSCTL_HANDLER_ARGS)
1860758cc3dcSJack F Vogel {
1861758cc3dcSJack F Vogel 	struct rx_ring *rxr = ((struct rx_ring *)oidp->oid_arg1);
18628eb6488eSEric Joyner 	int            error;
18638eb6488eSEric Joyner 	unsigned int   val;
1864758cc3dcSJack F Vogel 
18658eb6488eSEric Joyner 	if (!rxr)
18668eb6488eSEric Joyner 		return (0);
18678eb6488eSEric Joyner 
1868b1d5caf3SKevin Bowling 	val = IXGBE_READ_REG(&rxr->sc->hw, IXGBE_RDT(rxr->me));
1869758cc3dcSJack F Vogel 	error = sysctl_handle_int(oidp, &val, 0, req);
1870758cc3dcSJack F Vogel 	if (error || !req->newptr)
1871758cc3dcSJack F Vogel 		return error;
18728eb6488eSEric Joyner 
18738eb6488eSEric Joyner 	return (0);
18748eb6488eSEric Joyner } /* ixgbe_sysctl_rdt_handler */
18758eb6488eSEric Joyner 
18768eb6488eSEric Joyner /************************************************************************
1877c19c7afeSEric Joyner  * ixgbe_if_vlan_register
18788eb6488eSEric Joyner  *
18798eb6488eSEric Joyner  *   Run via vlan config EVENT, it enables us to use the
18808eb6488eSEric Joyner  *   HW Filter table since we can get the vlan id. This
18818eb6488eSEric Joyner  *   just creates the entry in the soft version of the
18828eb6488eSEric Joyner  *   VFTA, init will repopulate the real table.
18838eb6488eSEric Joyner  ************************************************************************/
18848eb6488eSEric Joyner static void
1885c19c7afeSEric Joyner ixgbe_if_vlan_register(if_ctx_t ctx, u16 vtag)
18868eb6488eSEric Joyner {
1887b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
18888eb6488eSEric Joyner 	u16            index, bit;
18898eb6488eSEric Joyner 
18908eb6488eSEric Joyner 	index = (vtag >> 5) & 0x7F;
18918eb6488eSEric Joyner 	bit = vtag & 0x1F;
1892b1d5caf3SKevin Bowling 	sc->shadow_vfta[index] |= (1 << bit);
1893b1d5caf3SKevin Bowling 	++sc->num_vlans;
1894c19c7afeSEric Joyner 	ixgbe_setup_vlan_hw_support(ctx);
1895c19c7afeSEric Joyner } /* ixgbe_if_vlan_register */
18968eb6488eSEric Joyner 
18978eb6488eSEric Joyner /************************************************************************
1898c19c7afeSEric Joyner  * ixgbe_if_vlan_unregister
18998eb6488eSEric Joyner  *
19008eb6488eSEric Joyner  *   Run via vlan unconfig EVENT, remove our entry in the soft vfta.
19018eb6488eSEric Joyner  ************************************************************************/
19028eb6488eSEric Joyner static void
1903c19c7afeSEric Joyner ixgbe_if_vlan_unregister(if_ctx_t ctx, u16 vtag)
19048eb6488eSEric Joyner {
1905b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
19068eb6488eSEric Joyner 	u16            index, bit;
19078eb6488eSEric Joyner 
19088eb6488eSEric Joyner 	index = (vtag >> 5) & 0x7F;
19098eb6488eSEric Joyner 	bit = vtag & 0x1F;
1910b1d5caf3SKevin Bowling 	sc->shadow_vfta[index] &= ~(1 << bit);
1911b1d5caf3SKevin Bowling 	--sc->num_vlans;
19128eb6488eSEric Joyner 	/* Re-init to load the changes */
1913c19c7afeSEric Joyner 	ixgbe_setup_vlan_hw_support(ctx);
1914c19c7afeSEric Joyner } /* ixgbe_if_vlan_unregister */
19158eb6488eSEric Joyner 
19168eb6488eSEric Joyner /************************************************************************
19178eb6488eSEric Joyner  * ixgbe_setup_vlan_hw_support
19188eb6488eSEric Joyner  ************************************************************************/
19198eb6488eSEric Joyner static void
1920c19c7afeSEric Joyner ixgbe_setup_vlan_hw_support(if_ctx_t ctx)
19218eb6488eSEric Joyner {
1922ff06a8dbSJustin Hibbits 	if_t            ifp = iflib_get_ifp(ctx);
1923b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
1924b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
19258eb6488eSEric Joyner 	struct rx_ring  *rxr;
19268eb6488eSEric Joyner 	int             i;
19278eb6488eSEric Joyner 	u32             ctrl;
19288eb6488eSEric Joyner 
19298eb6488eSEric Joyner 
19308eb6488eSEric Joyner 	/*
19318eb6488eSEric Joyner 	 * We get here thru init_locked, meaning
19328eb6488eSEric Joyner 	 * a soft reset, this has already cleared
19338eb6488eSEric Joyner 	 * the VFTA and other state, so if there
19348eb6488eSEric Joyner 	 * have been no vlan's registered do nothing.
19358eb6488eSEric Joyner 	 */
1936ff06a8dbSJustin Hibbits 	if (sc->num_vlans == 0 || (if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) == 0) {
1937e7abb897SKristof Provost 		/* Clear the vlan hw flag */
1938e7abb897SKristof Provost 		for (i = 0; i < sc->num_rx_queues; i++) {
1939e7abb897SKristof Provost 			rxr = &sc->rx_queues[i].rxr;
1940e7abb897SKristof Provost 			/* On 82599 the VLAN enable is per/queue in RXDCTL */
1941e7abb897SKristof Provost 			if (hw->mac.type != ixgbe_mac_82598EB) {
1942e7abb897SKristof Provost 				ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxr->me));
1943e7abb897SKristof Provost 				ctrl &= ~IXGBE_RXDCTL_VME;
1944e7abb897SKristof Provost 				IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxr->me), ctrl);
1945e7abb897SKristof Provost 			}
1946e7abb897SKristof Provost 			rxr->vtag_strip = false;
1947e7abb897SKristof Provost 		}
1948e7abb897SKristof Provost 		ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1949e7abb897SKristof Provost 		/* Enable the Filter Table if enabled */
1950e7abb897SKristof Provost 		ctrl |= IXGBE_VLNCTRL_CFIEN;
1951e7abb897SKristof Provost 		ctrl &= ~IXGBE_VLNCTRL_VFE;
1952e7abb897SKristof Provost 		if (hw->mac.type == ixgbe_mac_82598EB)
1953e7abb897SKristof Provost 			ctrl &= ~IXGBE_VLNCTRL_VME;
1954e7abb897SKristof Provost 		IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
19558eb6488eSEric Joyner 		return;
1956e7abb897SKristof Provost 	}
19578eb6488eSEric Joyner 
19588eb6488eSEric Joyner 	/* Setup the queues for vlans */
1959ff06a8dbSJustin Hibbits 	if (if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) {
1960b1d5caf3SKevin Bowling 		for (i = 0; i < sc->num_rx_queues; i++) {
1961b1d5caf3SKevin Bowling 			rxr = &sc->rx_queues[i].rxr;
19628eb6488eSEric Joyner 			/* On 82599 the VLAN enable is per/queue in RXDCTL */
19638eb6488eSEric Joyner 			if (hw->mac.type != ixgbe_mac_82598EB) {
19648eb6488eSEric Joyner 				ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxr->me));
19658eb6488eSEric Joyner 				ctrl |= IXGBE_RXDCTL_VME;
19668eb6488eSEric Joyner 				IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxr->me), ctrl);
19678eb6488eSEric Joyner 			}
196879b36ec9SKevin Bowling 			rxr->vtag_strip = true;
1969758cc3dcSJack F Vogel 		}
19709c92bb71SSean Bruno 	}
1971758cc3dcSJack F Vogel 
1972ff06a8dbSJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_VLAN_HWFILTER) == 0)
19738eb6488eSEric Joyner 		return;
19748eb6488eSEric Joyner 	/*
19758eb6488eSEric Joyner 	 * A soft reset zero's out the VFTA, so
19768eb6488eSEric Joyner 	 * we need to repopulate it now.
19778eb6488eSEric Joyner 	 */
19788eb6488eSEric Joyner 	for (i = 0; i < IXGBE_VFTA_SIZE; i++)
1979b1d5caf3SKevin Bowling 		if (sc->shadow_vfta[i] != 0)
19808eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_VFTA(i),
1981b1d5caf3SKevin Bowling 			    sc->shadow_vfta[i]);
19828eb6488eSEric Joyner 
19838eb6488eSEric Joyner 	ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
19848eb6488eSEric Joyner 	/* Enable the Filter Table if enabled */
1985ff06a8dbSJustin Hibbits 	if (if_getcapenable(ifp) & IFCAP_VLAN_HWFILTER) {
19868eb6488eSEric Joyner 		ctrl &= ~IXGBE_VLNCTRL_CFIEN;
19878eb6488eSEric Joyner 		ctrl |= IXGBE_VLNCTRL_VFE;
19888eb6488eSEric Joyner 	}
19898eb6488eSEric Joyner 	if (hw->mac.type == ixgbe_mac_82598EB)
19908eb6488eSEric Joyner 		ctrl |= IXGBE_VLNCTRL_VME;
19918eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
19928eb6488eSEric Joyner } /* ixgbe_setup_vlan_hw_support */
19938eb6488eSEric Joyner 
19948eb6488eSEric Joyner /************************************************************************
19958eb6488eSEric Joyner  * ixgbe_get_slot_info
19968eb6488eSEric Joyner  *
19978eb6488eSEric Joyner  *   Get the width and transaction speed of
19988eb6488eSEric Joyner  *   the slot this adapter is plugged into.
19998eb6488eSEric Joyner  ************************************************************************/
20008eb6488eSEric Joyner static void
2001b1d5caf3SKevin Bowling ixgbe_get_slot_info(struct ixgbe_softc *sc)
20028eb6488eSEric Joyner {
2003b1d5caf3SKevin Bowling 	device_t        dev = iflib_get_dev(sc->ctx);
2004b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
200579b36ec9SKevin Bowling 	int             bus_info_valid = true;
20068eb6488eSEric Joyner 	u32             offset;
20078eb6488eSEric Joyner 	u16             link;
20088eb6488eSEric Joyner 
20098eb6488eSEric Joyner 	/* Some devices are behind an internal bridge */
20108eb6488eSEric Joyner 	switch (hw->device_id) {
20118eb6488eSEric Joyner 	case IXGBE_DEV_ID_82599_SFP_SF_QP:
20128eb6488eSEric Joyner 	case IXGBE_DEV_ID_82599_QSFP_SF_QP:
20138eb6488eSEric Joyner 		goto get_parent_info;
20148eb6488eSEric Joyner 	default:
20158eb6488eSEric Joyner 		break;
20168eb6488eSEric Joyner 	}
20178eb6488eSEric Joyner 
20188eb6488eSEric Joyner 	ixgbe_get_bus_info(hw);
20198eb6488eSEric Joyner 
20208eb6488eSEric Joyner 	/*
20218eb6488eSEric Joyner 	 * Some devices don't use PCI-E, but there is no need
20228eb6488eSEric Joyner 	 * to display "Unknown" for bus speed and width.
20238eb6488eSEric Joyner 	 */
20248eb6488eSEric Joyner 	switch (hw->mac.type) {
20258eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
20268eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
20278eb6488eSEric Joyner 		return;
20288eb6488eSEric Joyner 	default:
20298eb6488eSEric Joyner 		goto display;
20308eb6488eSEric Joyner 	}
20318eb6488eSEric Joyner 
20328eb6488eSEric Joyner get_parent_info:
20338eb6488eSEric Joyner 	/*
20348eb6488eSEric Joyner 	 * For the Quad port adapter we need to parse back
20358eb6488eSEric Joyner 	 * up the PCI tree to find the speed of the expansion
20368eb6488eSEric Joyner 	 * slot into which this adapter is plugged. A bit more work.
20378eb6488eSEric Joyner 	 */
20388eb6488eSEric Joyner 	dev = device_get_parent(device_get_parent(dev));
20398eb6488eSEric Joyner #ifdef IXGBE_DEBUG
20408eb6488eSEric Joyner 	device_printf(dev, "parent pcib = %x,%x,%x\n", pci_get_bus(dev),
20418eb6488eSEric Joyner 	    pci_get_slot(dev), pci_get_function(dev));
20428eb6488eSEric Joyner #endif
20438eb6488eSEric Joyner 	dev = device_get_parent(device_get_parent(dev));
20448eb6488eSEric Joyner #ifdef IXGBE_DEBUG
20458eb6488eSEric Joyner 	device_printf(dev, "slot pcib = %x,%x,%x\n", pci_get_bus(dev),
20468eb6488eSEric Joyner 	    pci_get_slot(dev), pci_get_function(dev));
20478eb6488eSEric Joyner #endif
20488eb6488eSEric Joyner 	/* Now get the PCI Express Capabilities offset */
20498eb6488eSEric Joyner 	if (pci_find_cap(dev, PCIY_EXPRESS, &offset)) {
20508eb6488eSEric Joyner 		/*
20518eb6488eSEric Joyner 		 * Hmm...can't get PCI-Express capabilities.
20528eb6488eSEric Joyner 		 * Falling back to default method.
20538eb6488eSEric Joyner 		 */
205479b36ec9SKevin Bowling 		bus_info_valid = false;
20558eb6488eSEric Joyner 		ixgbe_get_bus_info(hw);
20568eb6488eSEric Joyner 		goto display;
20578eb6488eSEric Joyner 	}
20588eb6488eSEric Joyner 	/* ...and read the Link Status Register */
20598eb6488eSEric Joyner 	link = pci_read_config(dev, offset + PCIER_LINK_STA, 2);
20608eb6488eSEric Joyner 	ixgbe_set_pci_config_data_generic(hw, link);
20618eb6488eSEric Joyner 
20628eb6488eSEric Joyner display:
20638eb6488eSEric Joyner 	device_printf(dev, "PCI Express Bus: Speed %s %s\n",
20648eb6488eSEric Joyner 	    ((hw->bus.speed == ixgbe_bus_speed_8000)    ? "8.0GT/s"  :
20658eb6488eSEric Joyner 	     (hw->bus.speed == ixgbe_bus_speed_5000)    ? "5.0GT/s"  :
20668eb6488eSEric Joyner 	     (hw->bus.speed == ixgbe_bus_speed_2500)    ? "2.5GT/s"  :
20678eb6488eSEric Joyner 	     "Unknown"),
20688eb6488eSEric Joyner 	    ((hw->bus.width == ixgbe_bus_width_pcie_x8) ? "Width x8" :
20698eb6488eSEric Joyner 	     (hw->bus.width == ixgbe_bus_width_pcie_x4) ? "Width x4" :
20708eb6488eSEric Joyner 	     (hw->bus.width == ixgbe_bus_width_pcie_x1) ? "Width x1" :
20718eb6488eSEric Joyner 	     "Unknown"));
20728eb6488eSEric Joyner 
20738eb6488eSEric Joyner 	if (bus_info_valid) {
20748eb6488eSEric Joyner 		if ((hw->device_id != IXGBE_DEV_ID_82599_SFP_SF_QP) &&
20758eb6488eSEric Joyner 		    ((hw->bus.width <= ixgbe_bus_width_pcie_x4) &&
20768eb6488eSEric Joyner 		    (hw->bus.speed == ixgbe_bus_speed_2500))) {
20778eb6488eSEric Joyner 			device_printf(dev, "PCI-Express bandwidth available for this card\n     is not sufficient for optimal performance.\n");
20788eb6488eSEric Joyner 			device_printf(dev, "For optimal performance a x8 PCIE, or x4 PCIE Gen2 slot is required.\n");
20798eb6488eSEric Joyner 		}
20808eb6488eSEric Joyner 		if ((hw->device_id == IXGBE_DEV_ID_82599_SFP_SF_QP) &&
20818eb6488eSEric Joyner 		    ((hw->bus.width <= ixgbe_bus_width_pcie_x8) &&
20828eb6488eSEric Joyner 		    (hw->bus.speed < ixgbe_bus_speed_8000))) {
20838eb6488eSEric Joyner 			device_printf(dev, "PCI-Express bandwidth available for this card\n     is not sufficient for optimal performance.\n");
20848eb6488eSEric Joyner 			device_printf(dev, "For optimal performance a x8 PCIE Gen3 slot is required.\n");
20858eb6488eSEric Joyner 		}
20868eb6488eSEric Joyner 	} else
20878eb6488eSEric Joyner 		device_printf(dev, "Unable to determine slot speed/width. The speed/width reported are that of the internal switch.\n");
20888eb6488eSEric Joyner 
20898eb6488eSEric Joyner 	return;
20908eb6488eSEric Joyner } /* ixgbe_get_slot_info */
20918eb6488eSEric Joyner 
20928eb6488eSEric Joyner /************************************************************************
2093c19c7afeSEric Joyner  * ixgbe_if_msix_intr_assign
2094c19c7afeSEric Joyner  *
2095c19c7afeSEric Joyner  *   Setup MSI-X Interrupt resources and handlers
20968eb6488eSEric Joyner  ************************************************************************/
2097c19c7afeSEric Joyner static int
2098c19c7afeSEric Joyner ixgbe_if_msix_intr_assign(if_ctx_t ctx, int msix)
20998eb6488eSEric Joyner {
2100b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = iflib_get_softc(ctx);
2101b1d5caf3SKevin Bowling 	struct ix_rx_queue *rx_que = sc->rx_queues;
2102c19c7afeSEric Joyner 	struct ix_tx_queue *tx_que;
2103c19c7afeSEric Joyner 	int                error, rid, vector = 0;
2104c19c7afeSEric Joyner 	char               buf[16];
21058eb6488eSEric Joyner 
2106c19c7afeSEric Joyner 	/* Admin Que is vector 0*/
2107c19c7afeSEric Joyner 	rid = vector + 1;
2108b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_rx_queues; i++, vector++, rx_que++) {
2109c19c7afeSEric Joyner 		rid = vector + 1;
2110c19c7afeSEric Joyner 
2111c19c7afeSEric Joyner 		snprintf(buf, sizeof(buf), "rxq%d", i);
2112c19c7afeSEric Joyner 		error = iflib_irq_alloc_generic(ctx, &rx_que->que_irq, rid,
211381be6552SMatt Macy 		    IFLIB_INTR_RXTX, ixgbe_msix_que, rx_que, rx_que->rxr.me, buf);
2114c19c7afeSEric Joyner 
2115c19c7afeSEric Joyner 		if (error) {
2116c19c7afeSEric Joyner 			device_printf(iflib_get_dev(ctx),
2117c19c7afeSEric Joyner 			    "Failed to allocate que int %d err: %d", i, error);
2118b1d5caf3SKevin Bowling 			sc->num_rx_queues = i + 1;
2119c19c7afeSEric Joyner 			goto fail;
21208eb6488eSEric Joyner 		}
21218eb6488eSEric Joyner 
2122c19c7afeSEric Joyner 		rx_que->msix = vector;
2123c19c7afeSEric Joyner 	}
2124b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_tx_queues; i++) {
2125c19c7afeSEric Joyner 		snprintf(buf, sizeof(buf), "txq%d", i);
2126b1d5caf3SKevin Bowling 		tx_que = &sc->tx_queues[i];
2127b1d5caf3SKevin Bowling 		tx_que->msix = i % sc->num_rx_queues;
2128c19c7afeSEric Joyner 		iflib_softirq_alloc_generic(ctx,
2129b1d5caf3SKevin Bowling 		    &sc->rx_queues[tx_que->msix].que_irq,
2130c19c7afeSEric Joyner 		    IFLIB_INTR_TX, tx_que, tx_que->txr.me, buf);
2131c19c7afeSEric Joyner 	}
2132c19c7afeSEric Joyner 	rid = vector + 1;
2133b1d5caf3SKevin Bowling 	error = iflib_irq_alloc_generic(ctx, &sc->irq, rid,
2134b1d5caf3SKevin Bowling 	    IFLIB_INTR_ADMIN, ixgbe_msix_link, sc, 0, "aq");
2135c19c7afeSEric Joyner 	if (error) {
2136c19c7afeSEric Joyner 		device_printf(iflib_get_dev(ctx),
2137c19c7afeSEric Joyner 		    "Failed to register admin handler");
2138c19c7afeSEric Joyner 		return (error);
2139c19c7afeSEric Joyner 	}
2140c19c7afeSEric Joyner 
2141b1d5caf3SKevin Bowling 	sc->vector = vector;
2142c19c7afeSEric Joyner 
2143c19c7afeSEric Joyner 	return (0);
2144c19c7afeSEric Joyner fail:
2145b1d5caf3SKevin Bowling 	iflib_irq_free(ctx, &sc->irq);
2146b1d5caf3SKevin Bowling 	rx_que = sc->rx_queues;
2147b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_rx_queues; i++, rx_que++)
2148c19c7afeSEric Joyner 		iflib_irq_free(ctx, &rx_que->que_irq);
2149c19c7afeSEric Joyner 
2150c19c7afeSEric Joyner 	return (error);
2151c19c7afeSEric Joyner } /* ixgbe_if_msix_intr_assign */
2152c19c7afeSEric Joyner 
215364881da4SSai Rajesh Tallamraju static inline void
2154b1d5caf3SKevin Bowling ixgbe_perform_aim(struct ixgbe_softc *sc, struct ix_rx_queue *que)
215564881da4SSai Rajesh Tallamraju {
215664881da4SSai Rajesh Tallamraju 	uint32_t newitr = 0;
215764881da4SSai Rajesh Tallamraju 	struct rx_ring *rxr = &que->rxr;
215864881da4SSai Rajesh Tallamraju 
215964881da4SSai Rajesh Tallamraju 	/*
216064881da4SSai Rajesh Tallamraju 	 * Do Adaptive Interrupt Moderation:
216164881da4SSai Rajesh Tallamraju 	 *  - Write out last calculated setting
216264881da4SSai Rajesh Tallamraju 	 *  - Calculate based on average size over
216364881da4SSai Rajesh Tallamraju 	 *    the last interval.
216464881da4SSai Rajesh Tallamraju 	 */
216564881da4SSai Rajesh Tallamraju 	if (que->eitr_setting) {
2166b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_EITR(que->msix),
216764881da4SSai Rajesh Tallamraju 		    que->eitr_setting);
216864881da4SSai Rajesh Tallamraju 	}
216964881da4SSai Rajesh Tallamraju 
217064881da4SSai Rajesh Tallamraju 	que->eitr_setting = 0;
217164881da4SSai Rajesh Tallamraju 	/* Idle, do nothing */
217264881da4SSai Rajesh Tallamraju 	if (rxr->bytes == 0) {
217364881da4SSai Rajesh Tallamraju 		return;
217464881da4SSai Rajesh Tallamraju 	}
217564881da4SSai Rajesh Tallamraju 
217664881da4SSai Rajesh Tallamraju 	if ((rxr->bytes) && (rxr->packets)) {
217764881da4SSai Rajesh Tallamraju 		newitr = (rxr->bytes / rxr->packets);
217864881da4SSai Rajesh Tallamraju 	}
217964881da4SSai Rajesh Tallamraju 
218064881da4SSai Rajesh Tallamraju 	newitr += 24; /* account for hardware frame, crc */
218164881da4SSai Rajesh Tallamraju 	/* set an upper boundary */
218264881da4SSai Rajesh Tallamraju 	newitr = min(newitr, 3000);
218364881da4SSai Rajesh Tallamraju 
218464881da4SSai Rajesh Tallamraju 	/* Be nice to the mid range */
218564881da4SSai Rajesh Tallamraju 	if ((newitr > 300) && (newitr < 1200)) {
218664881da4SSai Rajesh Tallamraju 		newitr = (newitr / 3);
218764881da4SSai Rajesh Tallamraju 	} else {
218864881da4SSai Rajesh Tallamraju 		newitr = (newitr / 2);
218964881da4SSai Rajesh Tallamraju 	}
219064881da4SSai Rajesh Tallamraju 
2191b1d5caf3SKevin Bowling 	if (sc->hw.mac.type == ixgbe_mac_82598EB) {
219264881da4SSai Rajesh Tallamraju 		newitr |= newitr << 16;
219364881da4SSai Rajesh Tallamraju 	} else {
219464881da4SSai Rajesh Tallamraju 		newitr |= IXGBE_EITR_CNT_WDIS;
219564881da4SSai Rajesh Tallamraju 	}
219664881da4SSai Rajesh Tallamraju 
219764881da4SSai Rajesh Tallamraju 	/* save for next interrupt */
219864881da4SSai Rajesh Tallamraju 	que->eitr_setting = newitr;
219964881da4SSai Rajesh Tallamraju 
220064881da4SSai Rajesh Tallamraju 	/* Reset state */
220164881da4SSai Rajesh Tallamraju 	rxr->bytes = 0;
220264881da4SSai Rajesh Tallamraju 	rxr->packets = 0;
220364881da4SSai Rajesh Tallamraju 
220464881da4SSai Rajesh Tallamraju 	return;
220564881da4SSai Rajesh Tallamraju }
220664881da4SSai Rajesh Tallamraju 
2207c19c7afeSEric Joyner /*********************************************************************
22088eb6488eSEric Joyner  * ixgbe_msix_que - MSI-X Queue Interrupt Service routine
2209c19c7afeSEric Joyner  **********************************************************************/
2210c19c7afeSEric Joyner static int
22118eb6488eSEric Joyner ixgbe_msix_que(void *arg)
22128eb6488eSEric Joyner {
2213c19c7afeSEric Joyner 	struct ix_rx_queue *que = arg;
2214b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = que->sc;
2215ff06a8dbSJustin Hibbits 	if_t               ifp = iflib_get_ifp(que->sc->ctx);
22168eb6488eSEric Joyner 
22178eb6488eSEric Joyner 	/* Protect against spurious interrupts */
2218ff06a8dbSJustin Hibbits 	if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0)
22196c351041SEric Joyner 		return (FILTER_HANDLED);
22208eb6488eSEric Joyner 
2221b1d5caf3SKevin Bowling 	ixgbe_disable_queue(sc, que->msix);
22228eb6488eSEric Joyner 	++que->irqs;
22238eb6488eSEric Joyner 
222464881da4SSai Rajesh Tallamraju 	/* Check for AIM */
2225b1d5caf3SKevin Bowling 	if (sc->enable_aim) {
2226b1d5caf3SKevin Bowling 		ixgbe_perform_aim(sc, que);
222764881da4SSai Rajesh Tallamraju 	}
222864881da4SSai Rajesh Tallamraju 
2229c19c7afeSEric Joyner 	return (FILTER_SCHEDULE_THREAD);
22308eb6488eSEric Joyner } /* ixgbe_msix_que */
22318eb6488eSEric Joyner 
22328eb6488eSEric Joyner /************************************************************************
22338eb6488eSEric Joyner  * ixgbe_media_status - Media Ioctl callback
22348eb6488eSEric Joyner  *
22358eb6488eSEric Joyner  *   Called whenever the user queries the status of
22368eb6488eSEric Joyner  *   the interface using ifconfig.
22378eb6488eSEric Joyner  ************************************************************************/
22388eb6488eSEric Joyner static void
2239c19c7afeSEric Joyner ixgbe_if_media_status(if_ctx_t ctx, struct ifmediareq * ifmr)
22408eb6488eSEric Joyner {
2241b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
2242b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
22438eb6488eSEric Joyner 	int             layer;
22448eb6488eSEric Joyner 
2245c19c7afeSEric Joyner 	INIT_DEBUGOUT("ixgbe_if_media_status: begin");
2246c19c7afeSEric Joyner 
22478eb6488eSEric Joyner 	ifmr->ifm_status = IFM_AVALID;
22488eb6488eSEric Joyner 	ifmr->ifm_active = IFM_ETHER;
22498eb6488eSEric Joyner 
2250b1d5caf3SKevin Bowling 	if (!sc->link_active)
22518eb6488eSEric Joyner 		return;
22528eb6488eSEric Joyner 
22538eb6488eSEric Joyner 	ifmr->ifm_status |= IFM_ACTIVE;
2254b1d5caf3SKevin Bowling 	layer = sc->phy_layer;
22558eb6488eSEric Joyner 
22568eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_T ||
22578eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_1000BASE_T ||
22588eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_100BASE_TX ||
22598eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_10BASE_T)
2260b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
22618eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
22628eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_T | IFM_FDX;
22638eb6488eSEric Joyner 			break;
22648eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_1GB_FULL:
22658eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_1000_T | IFM_FDX;
22668eb6488eSEric Joyner 			break;
22678eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_100_FULL:
22688eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_100_TX | IFM_FDX;
22698eb6488eSEric Joyner 			break;
22708eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10_FULL:
22718eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10_T | IFM_FDX;
22728eb6488eSEric Joyner 			break;
22738eb6488eSEric Joyner 		}
2274d381c807SPiotr Pietruszewski 	if (hw->mac.type == ixgbe_mac_X550)
2275d381c807SPiotr Pietruszewski 		switch (sc->link_speed) {
2276d381c807SPiotr Pietruszewski 		case IXGBE_LINK_SPEED_5GB_FULL:
2277d381c807SPiotr Pietruszewski 			ifmr->ifm_active |= IFM_5000_T | IFM_FDX;
2278d381c807SPiotr Pietruszewski 			break;
2279d381c807SPiotr Pietruszewski 		case IXGBE_LINK_SPEED_2_5GB_FULL:
2280d381c807SPiotr Pietruszewski 			ifmr->ifm_active |= IFM_2500_T | IFM_FDX;
2281d381c807SPiotr Pietruszewski 			break;
2282d381c807SPiotr Pietruszewski 		}
22838eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_SFP_PLUS_CU ||
22848eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_SFP_ACTIVE_DA)
2285b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
22868eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
22878eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_TWINAX | IFM_FDX;
22888eb6488eSEric Joyner 			break;
22898eb6488eSEric Joyner 		}
22908eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LR)
2291b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
22928eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
22938eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_LR | IFM_FDX;
22948eb6488eSEric Joyner 			break;
22958eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_1GB_FULL:
22968eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_1000_LX | IFM_FDX;
22978eb6488eSEric Joyner 			break;
22988eb6488eSEric Joyner 		}
22998eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_LRM)
2300b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
23018eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
23028eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_LRM | IFM_FDX;
23038eb6488eSEric Joyner 			break;
23048eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_1GB_FULL:
23058eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_1000_LX | IFM_FDX;
23068eb6488eSEric Joyner 			break;
23078eb6488eSEric Joyner 		}
23088eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_SR ||
23098eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_1000BASE_SX)
2310b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
23118eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
23128eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_SR | IFM_FDX;
23138eb6488eSEric Joyner 			break;
23148eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_1GB_FULL:
23158eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_1000_SX | IFM_FDX;
23168eb6488eSEric Joyner 			break;
23178eb6488eSEric Joyner 		}
23188eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_CX4)
2319b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
23208eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
23218eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_CX4 | IFM_FDX;
23228eb6488eSEric Joyner 			break;
23238eb6488eSEric Joyner 		}
23248eb6488eSEric Joyner 	/*
23258eb6488eSEric Joyner 	 * XXX: These need to use the proper media types once
23268eb6488eSEric Joyner 	 * they're added.
23278eb6488eSEric Joyner 	 */
23288eb6488eSEric Joyner #ifndef IFM_ETH_XTYPE
23298eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR)
2330b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
23318eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
23328eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_SR | IFM_FDX;
23338eb6488eSEric Joyner 			break;
23348eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_2_5GB_FULL:
23358eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_2500_SX | IFM_FDX;
23368eb6488eSEric Joyner 			break;
23378eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_1GB_FULL:
23388eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_1000_CX | IFM_FDX;
23398eb6488eSEric Joyner 			break;
23408eb6488eSEric Joyner 		}
23418eb6488eSEric Joyner 	else if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KX4 ||
23428eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_2500BASE_KX ||
23438eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_1000BASE_KX)
2344b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
23458eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
23468eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_CX4 | IFM_FDX;
23478eb6488eSEric Joyner 			break;
23488eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_2_5GB_FULL:
23498eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_2500_SX | IFM_FDX;
23508eb6488eSEric Joyner 			break;
23518eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_1GB_FULL:
23528eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_1000_CX | IFM_FDX;
23538eb6488eSEric Joyner 			break;
23548eb6488eSEric Joyner 		}
23558eb6488eSEric Joyner #else
23568eb6488eSEric Joyner 	if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KR)
2357b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
23588eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
23598eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_KR | IFM_FDX;
23608eb6488eSEric Joyner 			break;
23618eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_2_5GB_FULL:
23628eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_2500_KX | IFM_FDX;
23638eb6488eSEric Joyner 			break;
23648eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_1GB_FULL:
23658eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_1000_KX | IFM_FDX;
23668eb6488eSEric Joyner 			break;
23678eb6488eSEric Joyner 		}
23688eb6488eSEric Joyner 	else if (layer & IXGBE_PHYSICAL_LAYER_10GBASE_KX4 ||
23698eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_2500BASE_KX ||
23708eb6488eSEric Joyner 	    layer & IXGBE_PHYSICAL_LAYER_1000BASE_KX)
2371b1d5caf3SKevin Bowling 		switch (sc->link_speed) {
23728eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_10GB_FULL:
23738eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_10G_KX4 | IFM_FDX;
23748eb6488eSEric Joyner 			break;
23758eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_2_5GB_FULL:
23768eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_2500_KX | IFM_FDX;
23778eb6488eSEric Joyner 			break;
23788eb6488eSEric Joyner 		case IXGBE_LINK_SPEED_1GB_FULL:
23798eb6488eSEric Joyner 			ifmr->ifm_active |= IFM_1000_KX | IFM_FDX;
23808eb6488eSEric Joyner 			break;
23818eb6488eSEric Joyner 		}
23828eb6488eSEric Joyner #endif
23838eb6488eSEric Joyner 
23848eb6488eSEric Joyner 	/* If nothing is recognized... */
23858eb6488eSEric Joyner 	if (IFM_SUBTYPE(ifmr->ifm_active) == 0)
23868eb6488eSEric Joyner 		ifmr->ifm_active |= IFM_UNKNOWN;
23878eb6488eSEric Joyner 
23888eb6488eSEric Joyner 	/* Display current flow control setting used on link */
23898eb6488eSEric Joyner 	if (hw->fc.current_mode == ixgbe_fc_rx_pause ||
23908eb6488eSEric Joyner 	    hw->fc.current_mode == ixgbe_fc_full)
23918eb6488eSEric Joyner 		ifmr->ifm_active |= IFM_ETH_RXPAUSE;
23928eb6488eSEric Joyner 	if (hw->fc.current_mode == ixgbe_fc_tx_pause ||
23938eb6488eSEric Joyner 	    hw->fc.current_mode == ixgbe_fc_full)
23948eb6488eSEric Joyner 		ifmr->ifm_active |= IFM_ETH_TXPAUSE;
23958eb6488eSEric Joyner } /* ixgbe_media_status */
23968eb6488eSEric Joyner 
23978eb6488eSEric Joyner /************************************************************************
23988eb6488eSEric Joyner  * ixgbe_media_change - Media Ioctl callback
23998eb6488eSEric Joyner  *
24008eb6488eSEric Joyner  *   Called when the user changes speed/duplex using
24018eb6488eSEric Joyner  *   media/mediopt option with ifconfig.
24028eb6488eSEric Joyner  ************************************************************************/
24038eb6488eSEric Joyner static int
2404c19c7afeSEric Joyner ixgbe_if_media_change(if_ctx_t ctx)
24058eb6488eSEric Joyner {
2406b1d5caf3SKevin Bowling 	struct ixgbe_softc   *sc = iflib_get_softc(ctx);
2407c19c7afeSEric Joyner 	struct ifmedia   *ifm = iflib_get_media(ctx);
2408b1d5caf3SKevin Bowling 	struct ixgbe_hw  *hw = &sc->hw;
24098eb6488eSEric Joyner 	ixgbe_link_speed speed = 0;
24108eb6488eSEric Joyner 
2411c19c7afeSEric Joyner 	INIT_DEBUGOUT("ixgbe_if_media_change: begin");
24128eb6488eSEric Joyner 
24138eb6488eSEric Joyner 	if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
24148eb6488eSEric Joyner 		return (EINVAL);
24158eb6488eSEric Joyner 
24168eb6488eSEric Joyner 	if (hw->phy.media_type == ixgbe_media_type_backplane)
2417c19c7afeSEric Joyner 		return (EPERM);
24188eb6488eSEric Joyner 
24198eb6488eSEric Joyner 	/*
24208eb6488eSEric Joyner 	 * We don't actually need to check against the supported
24218eb6488eSEric Joyner 	 * media types of the adapter; ifmedia will take care of
24228eb6488eSEric Joyner 	 * that for us.
24238eb6488eSEric Joyner 	 */
24248eb6488eSEric Joyner 	switch (IFM_SUBTYPE(ifm->ifm_media)) {
24258eb6488eSEric Joyner 	case IFM_AUTO:
24268eb6488eSEric Joyner 	case IFM_10G_T:
24278eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_100_FULL;
24288eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_1GB_FULL;
24298eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_10GB_FULL;
24308eb6488eSEric Joyner 		break;
24318eb6488eSEric Joyner 	case IFM_10G_LRM:
24328eb6488eSEric Joyner 	case IFM_10G_LR:
24338eb6488eSEric Joyner #ifndef IFM_ETH_XTYPE
24348eb6488eSEric Joyner 	case IFM_10G_SR: /* KR, too */
24358eb6488eSEric Joyner 	case IFM_10G_CX4: /* KX4 */
24368eb6488eSEric Joyner #else
24378eb6488eSEric Joyner 	case IFM_10G_KR:
24388eb6488eSEric Joyner 	case IFM_10G_KX4:
24398eb6488eSEric Joyner #endif
24408eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_1GB_FULL;
24418eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_10GB_FULL;
24428eb6488eSEric Joyner 		break;
24438eb6488eSEric Joyner #ifndef IFM_ETH_XTYPE
24448eb6488eSEric Joyner 	case IFM_1000_CX: /* KX */
24458eb6488eSEric Joyner #else
24468eb6488eSEric Joyner 	case IFM_1000_KX:
24478eb6488eSEric Joyner #endif
24488eb6488eSEric Joyner 	case IFM_1000_LX:
24498eb6488eSEric Joyner 	case IFM_1000_SX:
24508eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_1GB_FULL;
24518eb6488eSEric Joyner 		break;
24528eb6488eSEric Joyner 	case IFM_1000_T:
24538eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_100_FULL;
24548eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_1GB_FULL;
24558eb6488eSEric Joyner 		break;
24568eb6488eSEric Joyner 	case IFM_10G_TWINAX:
24578eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_10GB_FULL;
24588eb6488eSEric Joyner 		break;
2459d381c807SPiotr Pietruszewski 	case IFM_5000_T:
2460d381c807SPiotr Pietruszewski 		speed |= IXGBE_LINK_SPEED_5GB_FULL;
2461d381c807SPiotr Pietruszewski 		break;
2462d381c807SPiotr Pietruszewski 	case IFM_2500_T:
2463d381c807SPiotr Pietruszewski 		speed |= IXGBE_LINK_SPEED_2_5GB_FULL;
2464d381c807SPiotr Pietruszewski 		break;
24658eb6488eSEric Joyner 	case IFM_100_TX:
24668eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_100_FULL;
24678eb6488eSEric Joyner 		break;
24688eb6488eSEric Joyner 	case IFM_10_T:
24698eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_10_FULL;
24708eb6488eSEric Joyner 		break;
24718eb6488eSEric Joyner 	default:
24728eb6488eSEric Joyner 		goto invalid;
24738eb6488eSEric Joyner 	}
24748eb6488eSEric Joyner 
247579b36ec9SKevin Bowling 	hw->mac.autotry_restart = true;
247679b36ec9SKevin Bowling 	hw->mac.ops.setup_link(hw, speed, true);
2477b1d5caf3SKevin Bowling 	sc->advertise =
2478d381c807SPiotr Pietruszewski 	    ((speed & IXGBE_LINK_SPEED_10GB_FULL)  ? 0x4  : 0) |
2479d381c807SPiotr Pietruszewski 	    ((speed & IXGBE_LINK_SPEED_5GB_FULL)   ? 0x20 : 0) |
2480d381c807SPiotr Pietruszewski 	    ((speed & IXGBE_LINK_SPEED_2_5GB_FULL) ? 0x10 : 0) |
2481d381c807SPiotr Pietruszewski 	    ((speed & IXGBE_LINK_SPEED_1GB_FULL)   ? 0x2  : 0) |
2482d381c807SPiotr Pietruszewski 	    ((speed & IXGBE_LINK_SPEED_100_FULL)   ? 0x1  : 0) |
2483d381c807SPiotr Pietruszewski 	    ((speed & IXGBE_LINK_SPEED_10_FULL)    ? 0x8  : 0);
24848eb6488eSEric Joyner 
24858eb6488eSEric Joyner 	return (0);
24868eb6488eSEric Joyner 
24878eb6488eSEric Joyner invalid:
2488c19c7afeSEric Joyner 	device_printf(iflib_get_dev(ctx), "Invalid media type!\n");
24898eb6488eSEric Joyner 
24908eb6488eSEric Joyner 	return (EINVAL);
2491c19c7afeSEric Joyner } /* ixgbe_if_media_change */
24928eb6488eSEric Joyner 
24938eb6488eSEric Joyner /************************************************************************
24948eb6488eSEric Joyner  * ixgbe_set_promisc
24958eb6488eSEric Joyner  ************************************************************************/
2496c19c7afeSEric Joyner static int
2497c19c7afeSEric Joyner ixgbe_if_promisc_set(if_ctx_t ctx, int flags)
24988eb6488eSEric Joyner {
2499b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
2500ff06a8dbSJustin Hibbits 	if_t           ifp = iflib_get_ifp(ctx);
25018eb6488eSEric Joyner 	u32            rctl;
2502c19c7afeSEric Joyner 	int            mcnt = 0;
25038eb6488eSEric Joyner 
2504b1d5caf3SKevin Bowling 	rctl = IXGBE_READ_REG(&sc->hw, IXGBE_FCTRL);
25058eb6488eSEric Joyner 	rctl &= (~IXGBE_FCTRL_UPE);
2506ff06a8dbSJustin Hibbits 	if (if_getflags(ifp) & IFF_ALLMULTI)
25078eb6488eSEric Joyner 		mcnt = MAX_NUM_MULTICAST_ADDRESSES;
25088eb6488eSEric Joyner 	else {
2509ba76aa63SGleb Smirnoff 		mcnt = min(if_llmaddr_count(ifp), MAX_NUM_MULTICAST_ADDRESSES);
25108eb6488eSEric Joyner 	}
25118eb6488eSEric Joyner 	if (mcnt < MAX_NUM_MULTICAST_ADDRESSES)
25128eb6488eSEric Joyner 		rctl &= (~IXGBE_FCTRL_MPE);
2513b1d5caf3SKevin Bowling 	IXGBE_WRITE_REG(&sc->hw, IXGBE_FCTRL, rctl);
25148eb6488eSEric Joyner 
2515ff06a8dbSJustin Hibbits 	if (if_getflags(ifp) & IFF_PROMISC) {
25168eb6488eSEric Joyner 		rctl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
2517b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_FCTRL, rctl);
2518ff06a8dbSJustin Hibbits 	} else if (if_getflags(ifp) & IFF_ALLMULTI) {
25198eb6488eSEric Joyner 		rctl |= IXGBE_FCTRL_MPE;
25208eb6488eSEric Joyner 		rctl &= ~IXGBE_FCTRL_UPE;
2521b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_FCTRL, rctl);
25228eb6488eSEric Joyner 	}
2523c19c7afeSEric Joyner 	return (0);
2524c19c7afeSEric Joyner } /* ixgbe_if_promisc_set */
25258eb6488eSEric Joyner 
25268eb6488eSEric Joyner /************************************************************************
25278eb6488eSEric Joyner  * ixgbe_msix_link - Link status change ISR (MSI/MSI-X)
25288eb6488eSEric Joyner  ************************************************************************/
2529c19c7afeSEric Joyner static int
25308eb6488eSEric Joyner ixgbe_msix_link(void *arg)
25318eb6488eSEric Joyner {
2532b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = arg;
2533b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
25348eb6488eSEric Joyner 	u32             eicr, eicr_mask;
25358eb6488eSEric Joyner 	s32             retval;
25368eb6488eSEric Joyner 
2537b1d5caf3SKevin Bowling 	++sc->link_irq;
25388eb6488eSEric Joyner 
25398eb6488eSEric Joyner 	/* Pause other interrupts */
25408eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_OTHER);
25418eb6488eSEric Joyner 
25428eb6488eSEric Joyner 	/* First get the cause */
25438eb6488eSEric Joyner 	eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
25448eb6488eSEric Joyner 	/* Be sure the queue bits are not cleared */
25458eb6488eSEric Joyner 	eicr &= ~IXGBE_EICR_RTX_QUEUE;
25468eb6488eSEric Joyner 	/* Clear interrupt with write */
25478eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
25488eb6488eSEric Joyner 
25498eb6488eSEric Joyner 	/* Link status change */
25508eb6488eSEric Joyner 	if (eicr & IXGBE_EICR_LSC) {
25518eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
2552b1d5caf3SKevin Bowling 		sc->task_requests |= IXGBE_REQUEST_TASK_LSC;
25538eb6488eSEric Joyner 	}
25548eb6488eSEric Joyner 
2555b1d5caf3SKevin Bowling 	if (sc->hw.mac.type != ixgbe_mac_82598EB) {
2556b1d5caf3SKevin Bowling 		if ((sc->feat_en & IXGBE_FEATURE_FDIR) &&
25578eb6488eSEric Joyner 		    (eicr & IXGBE_EICR_FLOW_DIR)) {
25588eb6488eSEric Joyner 			/* This is probably overkill :) */
2559b1d5caf3SKevin Bowling 			if (!atomic_cmpset_int(&sc->fdir_reinit, 0, 1))
2560c19c7afeSEric Joyner 				return (FILTER_HANDLED);
25618eb6488eSEric Joyner 			/* Disable the interrupt */
2562c19c7afeSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EICR_FLOW_DIR);
2563b1d5caf3SKevin Bowling 			sc->task_requests |= IXGBE_REQUEST_TASK_FDIR;
2564c19c7afeSEric Joyner 		} else
25658eb6488eSEric Joyner 			if (eicr & IXGBE_EICR_ECC) {
2566b1d5caf3SKevin Bowling 				device_printf(iflib_get_dev(sc->ctx),
25674f1d91e4SNeel Chauhan 				   "Received ECC Err, initiating reset\n");
25684f1d91e4SNeel Chauhan 				hw->mac.flags |= ~IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
25694f1d91e4SNeel Chauhan 				ixgbe_reset_hw(hw);
25708eb6488eSEric Joyner 				IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
25718eb6488eSEric Joyner 			}
25728eb6488eSEric Joyner 
25738eb6488eSEric Joyner 		/* Check for over temp condition */
2574b1d5caf3SKevin Bowling 		if (sc->feat_en & IXGBE_FEATURE_TEMP_SENSOR) {
2575b1d5caf3SKevin Bowling 			switch (sc->hw.mac.type) {
25768eb6488eSEric Joyner 			case ixgbe_mac_X550EM_a:
25778eb6488eSEric Joyner 				if (!(eicr & IXGBE_EICR_GPI_SDP0_X550EM_a))
25788eb6488eSEric Joyner 					break;
25798eb6488eSEric Joyner 				IXGBE_WRITE_REG(hw, IXGBE_EIMC,
25808eb6488eSEric Joyner 				    IXGBE_EICR_GPI_SDP0_X550EM_a);
25818eb6488eSEric Joyner 				IXGBE_WRITE_REG(hw, IXGBE_EICR,
25828eb6488eSEric Joyner 				    IXGBE_EICR_GPI_SDP0_X550EM_a);
25838eb6488eSEric Joyner 				retval = hw->phy.ops.check_overtemp(hw);
25848eb6488eSEric Joyner 				if (retval != IXGBE_ERR_OVERTEMP)
25858eb6488eSEric Joyner 					break;
2586b1d5caf3SKevin Bowling 				device_printf(iflib_get_dev(sc->ctx),
2587c19c7afeSEric Joyner 				    "\nCRITICAL: OVER TEMP!! PHY IS SHUT DOWN!!\n");
2588b1d5caf3SKevin Bowling 				device_printf(iflib_get_dev(sc->ctx),
2589c19c7afeSEric Joyner 				    "System shutdown required!\n");
25908eb6488eSEric Joyner 				break;
25918eb6488eSEric Joyner 			default:
25928eb6488eSEric Joyner 				if (!(eicr & IXGBE_EICR_TS))
25938eb6488eSEric Joyner 					break;
25948eb6488eSEric Joyner 				retval = hw->phy.ops.check_overtemp(hw);
25958eb6488eSEric Joyner 				if (retval != IXGBE_ERR_OVERTEMP)
25968eb6488eSEric Joyner 					break;
2597b1d5caf3SKevin Bowling 				device_printf(iflib_get_dev(sc->ctx),
2598c19c7afeSEric Joyner 				    "\nCRITICAL: OVER TEMP!! PHY IS SHUT DOWN!!\n");
2599b1d5caf3SKevin Bowling 				device_printf(iflib_get_dev(sc->ctx),
2600c19c7afeSEric Joyner 				    "System shutdown required!\n");
26018eb6488eSEric Joyner 				IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_TS);
26028eb6488eSEric Joyner 				break;
26038eb6488eSEric Joyner 			}
26048eb6488eSEric Joyner 		}
26058eb6488eSEric Joyner 
26068eb6488eSEric Joyner 		/* Check for VF message */
2607b1d5caf3SKevin Bowling 		if ((sc->feat_en & IXGBE_FEATURE_SRIOV) &&
26088eb6488eSEric Joyner 		    (eicr & IXGBE_EICR_MAILBOX))
2609b1d5caf3SKevin Bowling 			sc->task_requests |= IXGBE_REQUEST_TASK_MBX;
26108eb6488eSEric Joyner 	}
26118eb6488eSEric Joyner 
26128eb6488eSEric Joyner 	if (ixgbe_is_sfp(hw)) {
26138eb6488eSEric Joyner 		/* Pluggable optics-related interrupt */
26148eb6488eSEric Joyner 		if (hw->mac.type >= ixgbe_mac_X540)
26158eb6488eSEric Joyner 			eicr_mask = IXGBE_EICR_GPI_SDP0_X540;
26168eb6488eSEric Joyner 		else
26178eb6488eSEric Joyner 			eicr_mask = IXGBE_EICR_GPI_SDP2_BY_MAC(hw);
26188eb6488eSEric Joyner 
26198eb6488eSEric Joyner 		if (eicr & eicr_mask) {
26208eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr_mask);
2621b1d5caf3SKevin Bowling 			sc->task_requests |= IXGBE_REQUEST_TASK_MOD;
26228eb6488eSEric Joyner 		}
26238eb6488eSEric Joyner 
26248eb6488eSEric Joyner 		if ((hw->mac.type == ixgbe_mac_82599EB) &&
26258eb6488eSEric Joyner 		    (eicr & IXGBE_EICR_GPI_SDP1_BY_MAC(hw))) {
26268eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EICR,
26278eb6488eSEric Joyner 			    IXGBE_EICR_GPI_SDP1_BY_MAC(hw));
2628b1d5caf3SKevin Bowling 			sc->task_requests |= IXGBE_REQUEST_TASK_MSF;
26298eb6488eSEric Joyner 		}
26308eb6488eSEric Joyner 	}
26318eb6488eSEric Joyner 
26328eb6488eSEric Joyner 	/* Check for fan failure */
2633b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_FAN_FAIL) {
2634b1d5caf3SKevin Bowling 		ixgbe_check_fan_failure(sc, eicr, true);
26358eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1_BY_MAC(hw));
26368eb6488eSEric Joyner 	}
26378eb6488eSEric Joyner 
26388eb6488eSEric Joyner 	/* External PHY interrupt */
26398eb6488eSEric Joyner 	if ((hw->phy.type == ixgbe_phy_x550em_ext_t) &&
26408eb6488eSEric Joyner 	    (eicr & IXGBE_EICR_GPI_SDP0_X540)) {
26418eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP0_X540);
2642b1d5caf3SKevin Bowling 		sc->task_requests |= IXGBE_REQUEST_TASK_PHY;
26438eb6488eSEric Joyner 	}
26448eb6488eSEric Joyner 
2645b1d5caf3SKevin Bowling 	return (sc->task_requests != 0) ? FILTER_SCHEDULE_THREAD : FILTER_HANDLED;
26468eb6488eSEric Joyner } /* ixgbe_msix_link */
26478eb6488eSEric Joyner 
26488eb6488eSEric Joyner /************************************************************************
26498eb6488eSEric Joyner  * ixgbe_sysctl_interrupt_rate_handler
26508eb6488eSEric Joyner  ************************************************************************/
2651758cc3dcSJack F Vogel static int
2652758cc3dcSJack F Vogel ixgbe_sysctl_interrupt_rate_handler(SYSCTL_HANDLER_ARGS)
2653758cc3dcSJack F Vogel {
2654c19c7afeSEric Joyner 	struct ix_rx_queue *que = ((struct ix_rx_queue *)oidp->oid_arg1);
26558eb6488eSEric Joyner 	int                error;
2656758cc3dcSJack F Vogel 	unsigned int       reg, usec, rate;
2657758cc3dcSJack F Vogel 
2658b1d5caf3SKevin Bowling 	reg = IXGBE_READ_REG(&que->sc->hw, IXGBE_EITR(que->msix));
2659758cc3dcSJack F Vogel 	usec = ((reg & 0x0FF8) >> 3);
2660758cc3dcSJack F Vogel 	if (usec > 0)
2661758cc3dcSJack F Vogel 		rate = 500000 / usec;
2662758cc3dcSJack F Vogel 	else
2663758cc3dcSJack F Vogel 		rate = 0;
2664758cc3dcSJack F Vogel 	error = sysctl_handle_int(oidp, &rate, 0, req);
2665758cc3dcSJack F Vogel 	if (error || !req->newptr)
2666758cc3dcSJack F Vogel 		return error;
2667758cc3dcSJack F Vogel 	reg &= ~0xfff; /* default, no limitation */
2668758cc3dcSJack F Vogel 	ixgbe_max_interrupt_rate = 0;
2669758cc3dcSJack F Vogel 	if (rate > 0 && rate < 500000) {
2670758cc3dcSJack F Vogel 		if (rate < 1000)
2671758cc3dcSJack F Vogel 			rate = 1000;
2672758cc3dcSJack F Vogel 		ixgbe_max_interrupt_rate = rate;
2673758cc3dcSJack F Vogel 		reg |= ((4000000/rate) & 0xff8);
2674758cc3dcSJack F Vogel 	}
2675b1d5caf3SKevin Bowling 	IXGBE_WRITE_REG(&que->sc->hw, IXGBE_EITR(que->msix), reg);
2676758cc3dcSJack F Vogel 
26778eb6488eSEric Joyner 	return (0);
26788eb6488eSEric Joyner } /* ixgbe_sysctl_interrupt_rate_handler */
26798eb6488eSEric Joyner 
26808eb6488eSEric Joyner /************************************************************************
26818eb6488eSEric Joyner  * ixgbe_add_device_sysctls
26828eb6488eSEric Joyner  ************************************************************************/
26836f37f232SEric Joyner static void
2684c19c7afeSEric Joyner ixgbe_add_device_sysctls(if_ctx_t ctx)
26856f37f232SEric Joyner {
2686b1d5caf3SKevin Bowling 	struct ixgbe_softc         *sc = iflib_get_softc(ctx);
2687c19c7afeSEric Joyner 	device_t               dev = iflib_get_dev(ctx);
2688b1d5caf3SKevin Bowling 	struct ixgbe_hw        *hw = &sc->hw;
26896f37f232SEric Joyner 	struct sysctl_oid_list *child;
2690c19c7afeSEric Joyner 	struct sysctl_ctx_list *ctx_list;
26916f37f232SEric Joyner 
2692c19c7afeSEric Joyner 	ctx_list = device_get_sysctl_ctx(dev);
26936f37f232SEric Joyner 	child = SYSCTL_CHILDREN(device_get_sysctl_tree(dev));
26946f37f232SEric Joyner 
26956f37f232SEric Joyner 	/* Sysctls for all devices */
2696c19c7afeSEric Joyner 	SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "fc",
269720b91f0aSPawel Biernacki 	    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
2698b1d5caf3SKevin Bowling 	    sc, 0, ixgbe_sysctl_flowcntl, "I",
2699c19c7afeSEric Joyner 	    IXGBE_SYSCTL_DESC_SET_FC);
27006f37f232SEric Joyner 
2701c19c7afeSEric Joyner 	SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "advertise_speed",
270220b91f0aSPawel Biernacki 	    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
2703b1d5caf3SKevin Bowling 	    sc, 0, ixgbe_sysctl_advertise, "I",
27048eb6488eSEric Joyner 	    IXGBE_SYSCTL_DESC_ADV_SPEED);
27056f37f232SEric Joyner 
2706b1d5caf3SKevin Bowling 	sc->enable_aim = ixgbe_enable_aim;
270764881da4SSai Rajesh Tallamraju 	SYSCTL_ADD_INT(ctx_list, child, OID_AUTO, "enable_aim", CTLFLAG_RW,
2708b1d5caf3SKevin Bowling 	    &sc->enable_aim, 0, "Interrupt Moderation");
270964881da4SSai Rajesh Tallamraju 
27107660e4eaSKevin Bowling 	SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "fw_version",
2711b1d5caf3SKevin Bowling 	    CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_NEEDGIANT, sc, 0,
27127660e4eaSKevin Bowling 	    ixgbe_sysctl_print_fw_version, "A", "Prints FW/NVM Versions");
27137660e4eaSKevin Bowling 
2714a9ca1c79SSean Bruno #ifdef IXGBE_DEBUG
2715a9ca1c79SSean Bruno 	/* testing sysctls (for all devices) */
2716c19c7afeSEric Joyner 	SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "power_state",
271720b91f0aSPawel Biernacki 	    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
2718b1d5caf3SKevin Bowling 	    sc, 0, ixgbe_sysctl_power_state,
27198eb6488eSEric Joyner 	    "I", "PCI Power State");
2720a9ca1c79SSean Bruno 
2721c19c7afeSEric Joyner 	SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "print_rss_config",
2722b1d5caf3SKevin Bowling 	    CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_NEEDGIANT, sc, 0,
2723a9ca1c79SSean Bruno 	    ixgbe_sysctl_print_rss_config, "A", "Prints RSS Configuration");
2724a9ca1c79SSean Bruno #endif
2725a9ca1c79SSean Bruno 	/* for X550 series devices */
27266f37f232SEric Joyner 	if (hw->mac.type >= ixgbe_mac_X550)
2727c19c7afeSEric Joyner 		SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "dmac",
272820b91f0aSPawel Biernacki 		    CTLTYPE_U16 | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
2729b1d5caf3SKevin Bowling 		    sc, 0, ixgbe_sysctl_dmac,
27308eb6488eSEric Joyner 		    "I", "DMA Coalesce");
27316f37f232SEric Joyner 
2732a9ca1c79SSean Bruno 	/* for WoL-capable devices */
2733a9ca1c79SSean Bruno 	if (hw->device_id == IXGBE_DEV_ID_X550EM_X_10G_T) {
2734c19c7afeSEric Joyner 		SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "wol_enable",
2735b1d5caf3SKevin Bowling 		    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, sc, 0,
27368eb6488eSEric Joyner 		    ixgbe_sysctl_wol_enable, "I", "Enable/Disable Wake on LAN");
27376f37f232SEric Joyner 
2738c19c7afeSEric Joyner 		SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "wufc",
273920b91f0aSPawel Biernacki 		    CTLTYPE_U32 | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
2740b1d5caf3SKevin Bowling 		    sc, 0, ixgbe_sysctl_wufc,
27418eb6488eSEric Joyner 		    "I", "Enable/Disable Wake Up Filters");
27426f37f232SEric Joyner 	}
27436f37f232SEric Joyner 
2744a9ca1c79SSean Bruno 	/* for X552/X557-AT devices */
27456f37f232SEric Joyner 	if (hw->device_id == IXGBE_DEV_ID_X550EM_X_10G_T) {
27466f37f232SEric Joyner 		struct sysctl_oid *phy_node;
27476f37f232SEric Joyner 		struct sysctl_oid_list *phy_list;
27486f37f232SEric Joyner 
2749c19c7afeSEric Joyner 		phy_node = SYSCTL_ADD_NODE(ctx_list, child, OID_AUTO, "phy",
275020b91f0aSPawel Biernacki 		    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "External PHY sysctls");
27516f37f232SEric Joyner 		phy_list = SYSCTL_CHILDREN(phy_node);
27526f37f232SEric Joyner 
2753c19c7afeSEric Joyner 		SYSCTL_ADD_PROC(ctx_list, phy_list, OID_AUTO, "temp",
275420b91f0aSPawel Biernacki 		    CTLTYPE_U16 | CTLFLAG_RD | CTLFLAG_NEEDGIANT,
2755b1d5caf3SKevin Bowling 		    sc, 0, ixgbe_sysctl_phy_temp,
27568eb6488eSEric Joyner 		    "I", "Current External PHY Temperature (Celsius)");
27576f37f232SEric Joyner 
2758c19c7afeSEric Joyner 		SYSCTL_ADD_PROC(ctx_list, phy_list, OID_AUTO,
275920b91f0aSPawel Biernacki 		    "overtemp_occurred",
2760b1d5caf3SKevin Bowling 		    CTLTYPE_U16 | CTLFLAG_RD | CTLFLAG_NEEDGIANT, sc, 0,
27616f37f232SEric Joyner 		    ixgbe_sysctl_phy_overtemp_occurred, "I",
27626f37f232SEric Joyner 		    "External PHY High Temperature Event Occurred");
27636f37f232SEric Joyner 	}
27648eb6488eSEric Joyner 
2765b1d5caf3SKevin Bowling 	if (sc->feat_cap & IXGBE_FEATURE_EEE) {
2766c19c7afeSEric Joyner 		SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "eee_state",
2767b1d5caf3SKevin Bowling 		    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, sc, 0,
27688eb6488eSEric Joyner 		    ixgbe_sysctl_eee_state, "I", "EEE Power Save State");
27698eb6488eSEric Joyner 	}
27708eb6488eSEric Joyner } /* ixgbe_add_device_sysctls */
27718eb6488eSEric Joyner 
27728eb6488eSEric Joyner /************************************************************************
27738eb6488eSEric Joyner  * ixgbe_allocate_pci_resources
27748eb6488eSEric Joyner  ************************************************************************/
27758eb6488eSEric Joyner static int
2776c19c7afeSEric Joyner ixgbe_allocate_pci_resources(if_ctx_t ctx)
27778eb6488eSEric Joyner {
2778b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
2779c19c7afeSEric Joyner 	device_t        dev = iflib_get_dev(ctx);
27808eb6488eSEric Joyner 	int             rid;
27818eb6488eSEric Joyner 
27828eb6488eSEric Joyner 	rid = PCIR_BAR(0);
2783b1d5caf3SKevin Bowling 	sc->pci_mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
27848eb6488eSEric Joyner 	    RF_ACTIVE);
27858eb6488eSEric Joyner 
2786b1d5caf3SKevin Bowling 	if (!(sc->pci_mem)) {
27878eb6488eSEric Joyner 		device_printf(dev, "Unable to allocate bus resource: memory\n");
27888eb6488eSEric Joyner 		return (ENXIO);
27898eb6488eSEric Joyner 	}
27908eb6488eSEric Joyner 
27918eb6488eSEric Joyner 	/* Save bus_space values for READ/WRITE_REG macros */
2792b1d5caf3SKevin Bowling 	sc->osdep.mem_bus_space_tag = rman_get_bustag(sc->pci_mem);
2793b1d5caf3SKevin Bowling 	sc->osdep.mem_bus_space_handle =
2794b1d5caf3SKevin Bowling 	    rman_get_bushandle(sc->pci_mem);
27958eb6488eSEric Joyner 	/* Set hw values for shared code */
2796b1d5caf3SKevin Bowling 	sc->hw.hw_addr = (u8 *)&sc->osdep.mem_bus_space_handle;
27978eb6488eSEric Joyner 
27988eb6488eSEric Joyner 	return (0);
27998eb6488eSEric Joyner } /* ixgbe_allocate_pci_resources */
28008eb6488eSEric Joyner 
28018eb6488eSEric Joyner /************************************************************************
28028eb6488eSEric Joyner  * ixgbe_detach - Device removal routine
28038eb6488eSEric Joyner  *
28048eb6488eSEric Joyner  *   Called when the driver is being removed.
28058eb6488eSEric Joyner  *   Stops the adapter and deallocates all the resources
28068eb6488eSEric Joyner  *   that were allocated for driver operation.
28078eb6488eSEric Joyner  *
28088eb6488eSEric Joyner  *   return 0 on success, positive on failure
28098eb6488eSEric Joyner  ************************************************************************/
28108eb6488eSEric Joyner static int
2811c19c7afeSEric Joyner ixgbe_if_detach(if_ctx_t ctx)
28128eb6488eSEric Joyner {
2813b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
2814c19c7afeSEric Joyner 	device_t       dev = iflib_get_dev(ctx);
28158eb6488eSEric Joyner 	u32            ctrl_ext;
28168eb6488eSEric Joyner 
28178eb6488eSEric Joyner 	INIT_DEBUGOUT("ixgbe_detach: begin");
28188eb6488eSEric Joyner 
28198eb6488eSEric Joyner 	if (ixgbe_pci_iov_detach(dev) != 0) {
28208eb6488eSEric Joyner 		device_printf(dev, "SR-IOV in use; detach first.\n");
28218eb6488eSEric Joyner 		return (EBUSY);
28228eb6488eSEric Joyner 	}
28238eb6488eSEric Joyner 
2824c19c7afeSEric Joyner 	ixgbe_setup_low_power_mode(ctx);
28258eb6488eSEric Joyner 
28268eb6488eSEric Joyner 	/* let hardware know driver is unloading */
2827b1d5caf3SKevin Bowling 	ctrl_ext = IXGBE_READ_REG(&sc->hw, IXGBE_CTRL_EXT);
28288eb6488eSEric Joyner 	ctrl_ext &= ~IXGBE_CTRL_EXT_DRV_LOAD;
2829b1d5caf3SKevin Bowling 	IXGBE_WRITE_REG(&sc->hw, IXGBE_CTRL_EXT, ctrl_ext);
28308eb6488eSEric Joyner 
2831c19c7afeSEric Joyner 	ixgbe_free_pci_resources(ctx);
2832b1d5caf3SKevin Bowling 	free(sc->mta, M_IXGBE);
28338eb6488eSEric Joyner 
28348eb6488eSEric Joyner 	return (0);
2835c19c7afeSEric Joyner } /* ixgbe_if_detach */
28368eb6488eSEric Joyner 
28378eb6488eSEric Joyner /************************************************************************
28388eb6488eSEric Joyner  * ixgbe_setup_low_power_mode - LPLU/WoL preparation
28398eb6488eSEric Joyner  *
28408eb6488eSEric Joyner  *   Prepare the adapter/port for LPLU and/or WoL
28418eb6488eSEric Joyner  ************************************************************************/
28428eb6488eSEric Joyner static int
2843c19c7afeSEric Joyner ixgbe_setup_low_power_mode(if_ctx_t ctx)
28448eb6488eSEric Joyner {
2845b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
2846b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
2847c19c7afeSEric Joyner 	device_t        dev = iflib_get_dev(ctx);
28488eb6488eSEric Joyner 	s32             error = 0;
28498eb6488eSEric Joyner 
2850c19c7afeSEric Joyner 	if (!hw->wol_enabled)
285179b36ec9SKevin Bowling 		ixgbe_set_phy_power(hw, false);
28528eb6488eSEric Joyner 
28538eb6488eSEric Joyner 	/* Limit power management flow to X550EM baseT */
28548eb6488eSEric Joyner 	if (hw->device_id == IXGBE_DEV_ID_X550EM_X_10G_T &&
28558eb6488eSEric Joyner 	    hw->phy.ops.enter_lplu) {
28568eb6488eSEric Joyner 		/* Turn off support for APM wakeup. (Using ACPI instead) */
285773fa89e0SPiotr Pietruszewski 		IXGBE_WRITE_REG(hw, IXGBE_GRC_BY_MAC(hw),
285873fa89e0SPiotr Pietruszewski 		    IXGBE_READ_REG(hw, IXGBE_GRC_BY_MAC(hw)) & ~(u32)2);
28598eb6488eSEric Joyner 
28608eb6488eSEric Joyner 		/*
28618eb6488eSEric Joyner 		 * Clear Wake Up Status register to prevent any previous wakeup
28628eb6488eSEric Joyner 		 * events from waking us up immediately after we suspend.
28638eb6488eSEric Joyner 		 */
28648eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_WUS, 0xffffffff);
28658eb6488eSEric Joyner 
28668eb6488eSEric Joyner 		/*
28678eb6488eSEric Joyner 		 * Program the Wakeup Filter Control register with user filter
28688eb6488eSEric Joyner 		 * settings
28698eb6488eSEric Joyner 		 */
2870b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(hw, IXGBE_WUFC, sc->wufc);
28718eb6488eSEric Joyner 
28728eb6488eSEric Joyner 		/* Enable wakeups and power management in Wakeup Control */
28738eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_WUC,
28748eb6488eSEric Joyner 		    IXGBE_WUC_WKEN | IXGBE_WUC_PME_EN);
28758eb6488eSEric Joyner 
28768eb6488eSEric Joyner 		/* X550EM baseT adapters need a special LPLU flow */
287779b36ec9SKevin Bowling 		hw->phy.reset_disable = true;
2878c19c7afeSEric Joyner 		ixgbe_if_stop(ctx);
28798eb6488eSEric Joyner 		error = hw->phy.ops.enter_lplu(hw);
28808eb6488eSEric Joyner 		if (error)
28818eb6488eSEric Joyner 			device_printf(dev, "Error entering LPLU: %d\n", error);
288279b36ec9SKevin Bowling 		hw->phy.reset_disable = false;
28838eb6488eSEric Joyner 	} else {
28848eb6488eSEric Joyner 		/* Just stop for other adapters */
2885c19c7afeSEric Joyner 		ixgbe_if_stop(ctx);
28868eb6488eSEric Joyner 	}
28878eb6488eSEric Joyner 
28888eb6488eSEric Joyner 	return error;
28898eb6488eSEric Joyner } /* ixgbe_setup_low_power_mode */
28908eb6488eSEric Joyner 
28918eb6488eSEric Joyner /************************************************************************
28928eb6488eSEric Joyner  * ixgbe_shutdown - Shutdown entry point
28938eb6488eSEric Joyner  ************************************************************************/
28948eb6488eSEric Joyner static int
2895c19c7afeSEric Joyner ixgbe_if_shutdown(if_ctx_t ctx)
28968eb6488eSEric Joyner {
28978eb6488eSEric Joyner 	int error = 0;
28988eb6488eSEric Joyner 
28998eb6488eSEric Joyner 	INIT_DEBUGOUT("ixgbe_shutdown: begin");
29008eb6488eSEric Joyner 
2901c19c7afeSEric Joyner 	error = ixgbe_setup_low_power_mode(ctx);
29028eb6488eSEric Joyner 
29038eb6488eSEric Joyner 	return (error);
2904c19c7afeSEric Joyner } /* ixgbe_if_shutdown */
29058eb6488eSEric Joyner 
29068eb6488eSEric Joyner /************************************************************************
29078eb6488eSEric Joyner  * ixgbe_suspend
29088eb6488eSEric Joyner  *
29098eb6488eSEric Joyner  *   From D0 to D3
29108eb6488eSEric Joyner  ************************************************************************/
29118eb6488eSEric Joyner static int
2912c19c7afeSEric Joyner ixgbe_if_suspend(if_ctx_t ctx)
29138eb6488eSEric Joyner {
29148eb6488eSEric Joyner 	int error = 0;
29158eb6488eSEric Joyner 
29168eb6488eSEric Joyner 	INIT_DEBUGOUT("ixgbe_suspend: begin");
29178eb6488eSEric Joyner 
2918c19c7afeSEric Joyner 	error = ixgbe_setup_low_power_mode(ctx);
29198eb6488eSEric Joyner 
29208eb6488eSEric Joyner 	return (error);
2921c19c7afeSEric Joyner } /* ixgbe_if_suspend */
29228eb6488eSEric Joyner 
29238eb6488eSEric Joyner /************************************************************************
29248eb6488eSEric Joyner  * ixgbe_resume
29258eb6488eSEric Joyner  *
29268eb6488eSEric Joyner  *   From D3 to D0
29278eb6488eSEric Joyner  ************************************************************************/
29288eb6488eSEric Joyner static int
2929c19c7afeSEric Joyner ixgbe_if_resume(if_ctx_t ctx)
29308eb6488eSEric Joyner {
2931b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
2932c19c7afeSEric Joyner 	device_t        dev = iflib_get_dev(ctx);
2933ff06a8dbSJustin Hibbits 	if_t            ifp = iflib_get_ifp(ctx);
2934b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
29358eb6488eSEric Joyner 	u32             wus;
29368eb6488eSEric Joyner 
29378eb6488eSEric Joyner 	INIT_DEBUGOUT("ixgbe_resume: begin");
29388eb6488eSEric Joyner 
29398eb6488eSEric Joyner 	/* Read & clear WUS register */
29408eb6488eSEric Joyner 	wus = IXGBE_READ_REG(hw, IXGBE_WUS);
29418eb6488eSEric Joyner 	if (wus)
29428eb6488eSEric Joyner 		device_printf(dev, "Woken up by (WUS): %#010x\n",
29438eb6488eSEric Joyner 		    IXGBE_READ_REG(hw, IXGBE_WUS));
29448eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_WUS, 0xffffffff);
29458eb6488eSEric Joyner 	/* And clear WUFC until next low-power transition */
29468eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
29478eb6488eSEric Joyner 
29488eb6488eSEric Joyner 	/*
29498eb6488eSEric Joyner 	 * Required after D3->D0 transition;
29508eb6488eSEric Joyner 	 * will re-advertise all previous advertised speeds
29518eb6488eSEric Joyner 	 */
2952ff06a8dbSJustin Hibbits 	if (if_getflags(ifp) & IFF_UP)
2953c19c7afeSEric Joyner 		ixgbe_if_init(ctx);
29548eb6488eSEric Joyner 
29558eb6488eSEric Joyner 	return (0);
2956c19c7afeSEric Joyner } /* ixgbe_if_resume */
29578eb6488eSEric Joyner 
29588eb6488eSEric Joyner /************************************************************************
2959c19c7afeSEric Joyner  * ixgbe_if_mtu_set - Ioctl mtu entry point
29608eb6488eSEric Joyner  *
2961c19c7afeSEric Joyner  *   Return 0 on success, EINVAL on failure
2962c19c7afeSEric Joyner  ************************************************************************/
2963c19c7afeSEric Joyner static int
2964c19c7afeSEric Joyner ixgbe_if_mtu_set(if_ctx_t ctx, uint32_t mtu)
2965c19c7afeSEric Joyner {
2966b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
2967c19c7afeSEric Joyner 	int error = 0;
2968c19c7afeSEric Joyner 
2969c19c7afeSEric Joyner 	IOCTL_DEBUGOUT("ioctl: SIOCIFMTU (Set Interface MTU)");
2970c19c7afeSEric Joyner 
2971c19c7afeSEric Joyner 	if (mtu > IXGBE_MAX_MTU) {
2972c19c7afeSEric Joyner 		error = EINVAL;
2973c19c7afeSEric Joyner 	} else {
2974b1d5caf3SKevin Bowling 		sc->max_frame_size = mtu + IXGBE_MTU_HDR;
2975c19c7afeSEric Joyner 	}
2976c19c7afeSEric Joyner 
2977c19c7afeSEric Joyner 	return error;
2978c19c7afeSEric Joyner } /* ixgbe_if_mtu_set */
2979c19c7afeSEric Joyner 
2980c19c7afeSEric Joyner /************************************************************************
2981c19c7afeSEric Joyner  * ixgbe_if_crcstrip_set
29828eb6488eSEric Joyner  ************************************************************************/
29838eb6488eSEric Joyner static void
2984c19c7afeSEric Joyner ixgbe_if_crcstrip_set(if_ctx_t ctx, int onoff, int crcstrip)
29858eb6488eSEric Joyner {
2986b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
2987c19c7afeSEric Joyner 	struct ixgbe_hw *hw = &sc->hw;
2988c19c7afeSEric Joyner 	/* crc stripping is set in two places:
2989c19c7afeSEric Joyner 	 * IXGBE_HLREG0 (modified on init_locked and hw reset)
2990c19c7afeSEric Joyner 	 * IXGBE_RDRXCTL (set by the original driver in
2991c19c7afeSEric Joyner 	 *	ixgbe_setup_hw_rsc() called in init_locked.
2992c19c7afeSEric Joyner 	 *	We disable the setting when netmap is compiled in).
2993c19c7afeSEric Joyner 	 * We update the values here, but also in ixgbe.c because
2994c19c7afeSEric Joyner 	 * init_locked sometimes is called outside our control.
2995c19c7afeSEric Joyner 	 */
2996c19c7afeSEric Joyner 	uint32_t hl, rxc;
29978eb6488eSEric Joyner 
2998c19c7afeSEric Joyner 	hl = IXGBE_READ_REG(hw, IXGBE_HLREG0);
2999c19c7afeSEric Joyner 	rxc = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3000c19c7afeSEric Joyner #ifdef NETMAP
3001c19c7afeSEric Joyner 	if (netmap_verbose)
3002c19c7afeSEric Joyner 		D("%s read  HLREG 0x%x rxc 0x%x",
3003c19c7afeSEric Joyner 			onoff ? "enter" : "exit", hl, rxc);
30048eb6488eSEric Joyner #endif
3005c19c7afeSEric Joyner 	/* hw requirements ... */
3006c19c7afeSEric Joyner 	rxc &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3007c19c7afeSEric Joyner 	rxc |= IXGBE_RDRXCTL_RSCACKC;
3008c19c7afeSEric Joyner 	if (onoff && !crcstrip) {
3009c19c7afeSEric Joyner 		/* keep the crc. Fast rx */
3010c19c7afeSEric Joyner 		hl &= ~IXGBE_HLREG0_RXCRCSTRP;
3011c19c7afeSEric Joyner 		rxc &= ~IXGBE_RDRXCTL_CRCSTRIP;
3012c19c7afeSEric Joyner 	} else {
3013c19c7afeSEric Joyner 		/* reset default mode */
3014c19c7afeSEric Joyner 		hl |= IXGBE_HLREG0_RXCRCSTRP;
3015c19c7afeSEric Joyner 		rxc |= IXGBE_RDRXCTL_CRCSTRIP;
3016c19c7afeSEric Joyner 	}
3017c19c7afeSEric Joyner #ifdef NETMAP
3018c19c7afeSEric Joyner 	if (netmap_verbose)
3019c19c7afeSEric Joyner 		D("%s write HLREG 0x%x rxc 0x%x",
3020c19c7afeSEric Joyner 			onoff ? "enter" : "exit", hl, rxc);
3021c19c7afeSEric Joyner #endif
3022c19c7afeSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hl);
3023c19c7afeSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rxc);
3024c19c7afeSEric Joyner } /* ixgbe_if_crcstrip_set */
30258eb6488eSEric Joyner 
3026c19c7afeSEric Joyner /*********************************************************************
3027c19c7afeSEric Joyner  * ixgbe_if_init - Init entry point
30288eb6488eSEric Joyner  *
30298eb6488eSEric Joyner  *   Used in two ways: It is used by the stack as an init
30308eb6488eSEric Joyner  *   entry point in network interface structure. It is also
30318eb6488eSEric Joyner  *   used by the driver as a hw/sw initialization routine to
30328eb6488eSEric Joyner  *   get to a consistent state.
30338eb6488eSEric Joyner  *
3034c19c7afeSEric Joyner  *   Return 0 on success, positive on failure
3035c19c7afeSEric Joyner  **********************************************************************/
30368eb6488eSEric Joyner void
3037c19c7afeSEric Joyner ixgbe_if_init(if_ctx_t ctx)
30388eb6488eSEric Joyner {
3039b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = iflib_get_softc(ctx);
3040ff06a8dbSJustin Hibbits 	if_t               ifp = iflib_get_ifp(ctx);
3041c19c7afeSEric Joyner 	device_t           dev = iflib_get_dev(ctx);
3042b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
3043c19c7afeSEric Joyner 	struct ix_rx_queue *rx_que;
3044c19c7afeSEric Joyner 	struct ix_tx_queue *tx_que;
30458eb6488eSEric Joyner 	u32             txdctl, mhadd;
30468eb6488eSEric Joyner 	u32             rxdctl, rxctrl;
30478eb6488eSEric Joyner 	u32             ctrl_ext;
30488eb6488eSEric Joyner 
3049c19c7afeSEric Joyner 	int             i, j, err;
30508eb6488eSEric Joyner 
3051c19c7afeSEric Joyner 	INIT_DEBUGOUT("ixgbe_if_init: begin");
30528eb6488eSEric Joyner 
30538eb6488eSEric Joyner 	/* Queue indices may change with IOV mode */
3054b1d5caf3SKevin Bowling 	ixgbe_align_all_queue_indices(sc);
30558eb6488eSEric Joyner 
30568eb6488eSEric Joyner 	/* reprogram the RAR[0] in case user changed it. */
3057b1d5caf3SKevin Bowling 	ixgbe_set_rar(hw, 0, hw->mac.addr, sc->pool, IXGBE_RAH_AV);
30588eb6488eSEric Joyner 
30598eb6488eSEric Joyner 	/* Get the latest mac address, User can use a LAA */
3060ff06a8dbSJustin Hibbits 	bcopy(if_getlladdr(ifp), hw->mac.addr, IXGBE_ETH_LENGTH_OF_ADDRESS);
3061b1d5caf3SKevin Bowling 	ixgbe_set_rar(hw, 0, hw->mac.addr, sc->pool, 1);
30628eb6488eSEric Joyner 	hw->addr_ctrl.rar_used_count = 1;
30638eb6488eSEric Joyner 
30648eb6488eSEric Joyner 	ixgbe_init_hw(hw);
3065c19c7afeSEric Joyner 
3066b1d5caf3SKevin Bowling 	ixgbe_initialize_iov(sc);
3067c19c7afeSEric Joyner 
3068c19c7afeSEric Joyner 	ixgbe_initialize_transmit_units(ctx);
30698eb6488eSEric Joyner 
30708eb6488eSEric Joyner 	/* Setup Multicast table */
3071c19c7afeSEric Joyner 	ixgbe_if_multi_set(ctx);
30728eb6488eSEric Joyner 
30738eb6488eSEric Joyner 	/* Determine the correct mbuf pool, based on frame size */
3074b1d5caf3SKevin Bowling 	sc->rx_mbuf_sz = iflib_get_rx_mbuf_sz(ctx);
30758eb6488eSEric Joyner 
30768eb6488eSEric Joyner 	/* Configure RX settings */
3077c19c7afeSEric Joyner 	ixgbe_initialize_receive_units(ctx);
30788eb6488eSEric Joyner 
3079b2c1e8e6SEric Joyner 	/*
3080b2c1e8e6SEric Joyner 	 * Initialize variable holding task enqueue requests
3081b2c1e8e6SEric Joyner 	 * from MSI-X interrupts
3082b2c1e8e6SEric Joyner 	 */
3083b1d5caf3SKevin Bowling 	sc->task_requests = 0;
3084b2c1e8e6SEric Joyner 
30858eb6488eSEric Joyner 	/* Enable SDP & MSI-X interrupts based on adapter */
3086b1d5caf3SKevin Bowling 	ixgbe_config_gpie(sc);
30878eb6488eSEric Joyner 
30888eb6488eSEric Joyner 	/* Set MTU size */
3089ff06a8dbSJustin Hibbits 	if (if_getmtu(ifp) > ETHERMTU) {
30908eb6488eSEric Joyner 		/* aka IXGBE_MAXFRS on 82599 and newer */
30918eb6488eSEric Joyner 		mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
30928eb6488eSEric Joyner 		mhadd &= ~IXGBE_MHADD_MFS_MASK;
3093b1d5caf3SKevin Bowling 		mhadd |= sc->max_frame_size << IXGBE_MHADD_MFS_SHIFT;
30948eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
30958eb6488eSEric Joyner 	}
30968eb6488eSEric Joyner 
30978eb6488eSEric Joyner 	/* Now enable all the queues */
3098b1d5caf3SKevin Bowling 	for (i = 0, tx_que = sc->tx_queues; i < sc->num_tx_queues; i++, tx_que++) {
3099c19c7afeSEric Joyner 		struct tx_ring *txr = &tx_que->txr;
3100c19c7afeSEric Joyner 
31018eb6488eSEric Joyner 		txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(txr->me));
31028eb6488eSEric Joyner 		txdctl |= IXGBE_TXDCTL_ENABLE;
31038eb6488eSEric Joyner 		/* Set WTHRESH to 8, burst writeback */
31048eb6488eSEric Joyner 		txdctl |= (8 << 16);
31058eb6488eSEric Joyner 		/*
31068eb6488eSEric Joyner 		 * When the internal queue falls below PTHRESH (32),
31078eb6488eSEric Joyner 		 * start prefetching as long as there are at least
31088eb6488eSEric Joyner 		 * HTHRESH (1) buffers ready. The values are taken
31098eb6488eSEric Joyner 		 * from the Intel linux driver 3.8.21.
31108eb6488eSEric Joyner 		 * Prefetching enables tx line rate even with 1 queue.
31118eb6488eSEric Joyner 		 */
31128eb6488eSEric Joyner 		txdctl |= (32 << 0) | (1 << 8);
31138eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(txr->me), txdctl);
31148eb6488eSEric Joyner 	}
31158eb6488eSEric Joyner 
3116b1d5caf3SKevin Bowling 	for (i = 0, rx_que = sc->rx_queues; i < sc->num_rx_queues; i++, rx_que++) {
3117c19c7afeSEric Joyner 		struct rx_ring *rxr = &rx_que->rxr;
3118c19c7afeSEric Joyner 
31198eb6488eSEric Joyner 		rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxr->me));
31208eb6488eSEric Joyner 		if (hw->mac.type == ixgbe_mac_82598EB) {
31218eb6488eSEric Joyner 			/*
31228eb6488eSEric Joyner 			 * PTHRESH = 21
31238eb6488eSEric Joyner 			 * HTHRESH = 4
31248eb6488eSEric Joyner 			 * WTHRESH = 8
31258eb6488eSEric Joyner 			 */
31268eb6488eSEric Joyner 			rxdctl &= ~0x3FFFFF;
31278eb6488eSEric Joyner 			rxdctl |= 0x080420;
31288eb6488eSEric Joyner 		}
31298eb6488eSEric Joyner 		rxdctl |= IXGBE_RXDCTL_ENABLE;
31308eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxr->me), rxdctl);
3131c19c7afeSEric Joyner 		for (j = 0; j < 10; j++) {
31328eb6488eSEric Joyner 			if (IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxr->me)) &
31338eb6488eSEric Joyner 			    IXGBE_RXDCTL_ENABLE)
31348eb6488eSEric Joyner 				break;
31358eb6488eSEric Joyner 			else
31368eb6488eSEric Joyner 				msec_delay(1);
31378eb6488eSEric Joyner 		}
31388eb6488eSEric Joyner 		wmb();
31398eb6488eSEric Joyner 	}
31408eb6488eSEric Joyner 
31418eb6488eSEric Joyner 	/* Enable Receive engine */
31428eb6488eSEric Joyner 	rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
31438eb6488eSEric Joyner 	if (hw->mac.type == ixgbe_mac_82598EB)
31448eb6488eSEric Joyner 		rxctrl |= IXGBE_RXCTRL_DMBYPS;
31458eb6488eSEric Joyner 	rxctrl |= IXGBE_RXCTRL_RXEN;
31468eb6488eSEric Joyner 	ixgbe_enable_rx_dma(hw, rxctrl);
31478eb6488eSEric Joyner 
3148c19c7afeSEric Joyner 	/* Set up MSI/MSI-X routing */
3149c19c7afeSEric Joyner 	if (ixgbe_enable_msix)  {
3150b1d5caf3SKevin Bowling 		ixgbe_configure_ivars(sc);
31518eb6488eSEric Joyner 		/* Set up auto-mask */
31528eb6488eSEric Joyner 		if (hw->mac.type == ixgbe_mac_82598EB)
31538eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
31548eb6488eSEric Joyner 		else {
31558eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
31568eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
31578eb6488eSEric Joyner 		}
31588eb6488eSEric Joyner 	} else {  /* Simple settings for Legacy/MSI */
3159b1d5caf3SKevin Bowling 		ixgbe_set_ivar(sc, 0, 0, 0);
3160b1d5caf3SKevin Bowling 		ixgbe_set_ivar(sc, 0, 0, 1);
31618eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
31628eb6488eSEric Joyner 	}
31638eb6488eSEric Joyner 
3164b1d5caf3SKevin Bowling 	ixgbe_init_fdir(sc);
31658eb6488eSEric Joyner 
31668eb6488eSEric Joyner 	/*
31678eb6488eSEric Joyner 	 * Check on any SFP devices that
31688eb6488eSEric Joyner 	 * need to be kick-started
31698eb6488eSEric Joyner 	 */
31708eb6488eSEric Joyner 	if (hw->phy.type == ixgbe_phy_none) {
31718eb6488eSEric Joyner 		err = hw->phy.ops.identify(hw);
31728eb6488eSEric Joyner 		if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
31738eb6488eSEric Joyner 			device_printf(dev,
31748eb6488eSEric Joyner 			    "Unsupported SFP+ module type was detected.\n");
31758eb6488eSEric Joyner 			return;
31768eb6488eSEric Joyner 		}
31778eb6488eSEric Joyner 	}
31788eb6488eSEric Joyner 
31798eb6488eSEric Joyner 	/* Set moderation on the Link interrupt */
3180b1d5caf3SKevin Bowling 	IXGBE_WRITE_REG(hw, IXGBE_EITR(sc->vector), IXGBE_LINK_ITR);
31818eb6488eSEric Joyner 
3182c19c7afeSEric Joyner 	/* Enable power to the phy. */
318379b36ec9SKevin Bowling 	ixgbe_set_phy_power(hw, true);
3184c19c7afeSEric Joyner 
31858eb6488eSEric Joyner 	/* Config/Enable Link */
3186b2c1e8e6SEric Joyner 	ixgbe_config_link(ctx);
31878eb6488eSEric Joyner 
31888eb6488eSEric Joyner 	/* Hardware Packet Buffer & Flow Control setup */
3189b1d5caf3SKevin Bowling 	ixgbe_config_delay_values(sc);
31908eb6488eSEric Joyner 
31918eb6488eSEric Joyner 	/* Initialize the FC settings */
31928eb6488eSEric Joyner 	ixgbe_start_hw(hw);
31938eb6488eSEric Joyner 
31948eb6488eSEric Joyner 	/* Set up VLAN support and filter */
3195c19c7afeSEric Joyner 	ixgbe_setup_vlan_hw_support(ctx);
31968eb6488eSEric Joyner 
31978eb6488eSEric Joyner 	/* Setup DMA Coalescing */
3198b1d5caf3SKevin Bowling 	ixgbe_config_dmac(sc);
31998eb6488eSEric Joyner 
32008eb6488eSEric Joyner 	/* And now turn on interrupts */
3201c19c7afeSEric Joyner 	ixgbe_if_enable_intr(ctx);
32028eb6488eSEric Joyner 
32038eb6488eSEric Joyner 	/* Enable the use of the MBX by the VF's */
3204b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_SRIOV) {
32058eb6488eSEric Joyner 		ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
32068eb6488eSEric Joyner 		ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
32078eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
32088eb6488eSEric Joyner 	}
32098eb6488eSEric Joyner 
32108eb6488eSEric Joyner } /* ixgbe_init_locked */
32118eb6488eSEric Joyner 
32128eb6488eSEric Joyner /************************************************************************
32138eb6488eSEric Joyner  * ixgbe_set_ivar
32148eb6488eSEric Joyner  *
32158eb6488eSEric Joyner  *   Setup the correct IVAR register for a particular MSI-X interrupt
32168eb6488eSEric Joyner  *     (yes this is all very magic and confusing :)
32178eb6488eSEric Joyner  *    - entry is the register array entry
32188eb6488eSEric Joyner  *    - vector is the MSI-X vector for this queue
32198eb6488eSEric Joyner  *    - type is RX/TX/MISC
32208eb6488eSEric Joyner  ************************************************************************/
32218eb6488eSEric Joyner static void
3222b1d5caf3SKevin Bowling ixgbe_set_ivar(struct ixgbe_softc *sc, u8 entry, u8 vector, s8 type)
32238eb6488eSEric Joyner {
3224b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
32258eb6488eSEric Joyner 	u32 ivar, index;
32268eb6488eSEric Joyner 
32278eb6488eSEric Joyner 	vector |= IXGBE_IVAR_ALLOC_VAL;
32288eb6488eSEric Joyner 
32298eb6488eSEric Joyner 	switch (hw->mac.type) {
32308eb6488eSEric Joyner 	case ixgbe_mac_82598EB:
32318eb6488eSEric Joyner 		if (type == -1)
32328eb6488eSEric Joyner 			entry = IXGBE_IVAR_OTHER_CAUSES_INDEX;
32338eb6488eSEric Joyner 		else
32348eb6488eSEric Joyner 			entry += (type * 64);
32358eb6488eSEric Joyner 		index = (entry >> 2) & 0x1F;
32368eb6488eSEric Joyner 		ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
32378eb6488eSEric Joyner 		ivar &= ~(0xFF << (8 * (entry & 0x3)));
32388eb6488eSEric Joyner 		ivar |= (vector << (8 * (entry & 0x3)));
3239b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_IVAR(index), ivar);
32408eb6488eSEric Joyner 		break;
32418eb6488eSEric Joyner 	case ixgbe_mac_82599EB:
32428eb6488eSEric Joyner 	case ixgbe_mac_X540:
32438eb6488eSEric Joyner 	case ixgbe_mac_X550:
32448eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
32458eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
32468eb6488eSEric Joyner 		if (type == -1) { /* MISC IVAR */
32478eb6488eSEric Joyner 			index = (entry & 1) * 8;
32488eb6488eSEric Joyner 			ivar = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
32498eb6488eSEric Joyner 			ivar &= ~(0xFF << index);
32508eb6488eSEric Joyner 			ivar |= (vector << index);
32518eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, ivar);
32528eb6488eSEric Joyner 		} else {          /* RX/TX IVARS */
32538eb6488eSEric Joyner 			index = (16 * (entry & 1)) + (8 * type);
32548eb6488eSEric Joyner 			ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(entry >> 1));
32558eb6488eSEric Joyner 			ivar &= ~(0xFF << index);
32568eb6488eSEric Joyner 			ivar |= (vector << index);
32578eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_IVAR(entry >> 1), ivar);
32588eb6488eSEric Joyner 		}
32598eb6488eSEric Joyner 	default:
32608eb6488eSEric Joyner 		break;
32618eb6488eSEric Joyner 	}
32628eb6488eSEric Joyner } /* ixgbe_set_ivar */
32638eb6488eSEric Joyner 
32648eb6488eSEric Joyner /************************************************************************
32658eb6488eSEric Joyner  * ixgbe_configure_ivars
32668eb6488eSEric Joyner  ************************************************************************/
32678eb6488eSEric Joyner static void
3268b1d5caf3SKevin Bowling ixgbe_configure_ivars(struct ixgbe_softc *sc)
32698eb6488eSEric Joyner {
3270b1d5caf3SKevin Bowling 	struct ix_rx_queue *rx_que = sc->rx_queues;
3271b1d5caf3SKevin Bowling 	struct ix_tx_queue *tx_que = sc->tx_queues;
32728eb6488eSEric Joyner 	u32                newitr;
32738eb6488eSEric Joyner 
32748eb6488eSEric Joyner 	if (ixgbe_max_interrupt_rate > 0)
32758eb6488eSEric Joyner 		newitr = (4000000 / ixgbe_max_interrupt_rate) & 0x0FF8;
32768eb6488eSEric Joyner 	else {
32778eb6488eSEric Joyner 		/*
32788eb6488eSEric Joyner 		 * Disable DMA coalescing if interrupt moderation is
32798eb6488eSEric Joyner 		 * disabled.
32808eb6488eSEric Joyner 		 */
3281b1d5caf3SKevin Bowling 		sc->dmac = 0;
32828eb6488eSEric Joyner 		newitr = 0;
32838eb6488eSEric Joyner 	}
32848eb6488eSEric Joyner 
3285b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_rx_queues; i++, rx_que++) {
3286c19c7afeSEric Joyner 		struct rx_ring *rxr = &rx_que->rxr;
32878eb6488eSEric Joyner 
3288c19c7afeSEric Joyner 		/* First the RX queue entry */
3289b1d5caf3SKevin Bowling 		ixgbe_set_ivar(sc, rxr->me, rx_que->msix, 0);
3290c19c7afeSEric Joyner 
3291c19c7afeSEric Joyner 		/* Set an Initial EITR value */
3292b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_EITR(rx_que->msix), newitr);
3293c19c7afeSEric Joyner 	}
3294b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_tx_queues; i++, tx_que++) {
3295c19c7afeSEric Joyner 		struct tx_ring *txr = &tx_que->txr;
3296c19c7afeSEric Joyner 
3297c19c7afeSEric Joyner 		/* ... and the TX */
3298b1d5caf3SKevin Bowling 		ixgbe_set_ivar(sc, txr->me, tx_que->msix, 1);
3299c19c7afeSEric Joyner 	}
33008eb6488eSEric Joyner 	/* For the Link interrupt */
3301b1d5caf3SKevin Bowling 	ixgbe_set_ivar(sc, 1, sc->vector, -1);
33028eb6488eSEric Joyner } /* ixgbe_configure_ivars */
33038eb6488eSEric Joyner 
33048eb6488eSEric Joyner /************************************************************************
33058eb6488eSEric Joyner  * ixgbe_config_gpie
33068eb6488eSEric Joyner  ************************************************************************/
33078eb6488eSEric Joyner static void
3308b1d5caf3SKevin Bowling ixgbe_config_gpie(struct ixgbe_softc *sc)
33098eb6488eSEric Joyner {
3310b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
33118eb6488eSEric Joyner 	u32             gpie;
33128eb6488eSEric Joyner 
33138eb6488eSEric Joyner 	gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
33148eb6488eSEric Joyner 
3315b1d5caf3SKevin Bowling 	if (sc->intr_type == IFLIB_INTR_MSIX) {
33168eb6488eSEric Joyner 		/* Enable Enhanced MSI-X mode */
33178eb6488eSEric Joyner 		gpie |= IXGBE_GPIE_MSIX_MODE
33188eb6488eSEric Joyner 		     |  IXGBE_GPIE_EIAME
33198eb6488eSEric Joyner 		     |  IXGBE_GPIE_PBA_SUPPORT
33208eb6488eSEric Joyner 		     |  IXGBE_GPIE_OCD;
33218eb6488eSEric Joyner 	}
33228eb6488eSEric Joyner 
33238eb6488eSEric Joyner 	/* Fan Failure Interrupt */
3324b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_FAN_FAIL)
33258eb6488eSEric Joyner 		gpie |= IXGBE_SDP1_GPIEN;
33268eb6488eSEric Joyner 
33278eb6488eSEric Joyner 	/* Thermal Sensor Interrupt */
3328b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_TEMP_SENSOR)
33298eb6488eSEric Joyner 		gpie |= IXGBE_SDP0_GPIEN_X540;
33308eb6488eSEric Joyner 
33318eb6488eSEric Joyner 	/* Link detection */
33328eb6488eSEric Joyner 	switch (hw->mac.type) {
33338eb6488eSEric Joyner 	case ixgbe_mac_82599EB:
33348eb6488eSEric Joyner 		gpie |= IXGBE_SDP1_GPIEN | IXGBE_SDP2_GPIEN;
33358eb6488eSEric Joyner 		break;
33368eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
33378eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
33388eb6488eSEric Joyner 		gpie |= IXGBE_SDP0_GPIEN_X540;
33398eb6488eSEric Joyner 		break;
33408eb6488eSEric Joyner 	default:
33418eb6488eSEric Joyner 		break;
33428eb6488eSEric Joyner 	}
33438eb6488eSEric Joyner 
33448eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
33458eb6488eSEric Joyner 
33468eb6488eSEric Joyner } /* ixgbe_config_gpie */
33478eb6488eSEric Joyner 
33488eb6488eSEric Joyner /************************************************************************
33498eb6488eSEric Joyner  * ixgbe_config_delay_values
33508eb6488eSEric Joyner  *
3351b1d5caf3SKevin Bowling  *   Requires sc->max_frame_size to be set.
33528eb6488eSEric Joyner  ************************************************************************/
33538eb6488eSEric Joyner static void
3354b1d5caf3SKevin Bowling ixgbe_config_delay_values(struct ixgbe_softc *sc)
33558eb6488eSEric Joyner {
3356b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
33578eb6488eSEric Joyner 	u32             rxpb, frame, size, tmp;
33588eb6488eSEric Joyner 
3359b1d5caf3SKevin Bowling 	frame = sc->max_frame_size;
33608eb6488eSEric Joyner 
33618eb6488eSEric Joyner 	/* Calculate High Water */
33628eb6488eSEric Joyner 	switch (hw->mac.type) {
33638eb6488eSEric Joyner 	case ixgbe_mac_X540:
33648eb6488eSEric Joyner 	case ixgbe_mac_X550:
33658eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
33668eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
33678eb6488eSEric Joyner 		tmp = IXGBE_DV_X540(frame, frame);
33688eb6488eSEric Joyner 		break;
33698eb6488eSEric Joyner 	default:
33708eb6488eSEric Joyner 		tmp = IXGBE_DV(frame, frame);
33718eb6488eSEric Joyner 		break;
33728eb6488eSEric Joyner 	}
33738eb6488eSEric Joyner 	size = IXGBE_BT2KB(tmp);
33748eb6488eSEric Joyner 	rxpb = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0)) >> 10;
33758eb6488eSEric Joyner 	hw->fc.high_water[0] = rxpb - size;
33768eb6488eSEric Joyner 
33778eb6488eSEric Joyner 	/* Now calculate Low Water */
33788eb6488eSEric Joyner 	switch (hw->mac.type) {
33798eb6488eSEric Joyner 	case ixgbe_mac_X540:
33808eb6488eSEric Joyner 	case ixgbe_mac_X550:
33818eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
33828eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
33838eb6488eSEric Joyner 		tmp = IXGBE_LOW_DV_X540(frame);
33848eb6488eSEric Joyner 		break;
33858eb6488eSEric Joyner 	default:
33868eb6488eSEric Joyner 		tmp = IXGBE_LOW_DV(frame);
33878eb6488eSEric Joyner 		break;
33888eb6488eSEric Joyner 	}
33898eb6488eSEric Joyner 	hw->fc.low_water[0] = IXGBE_BT2KB(tmp);
33908eb6488eSEric Joyner 
33918eb6488eSEric Joyner 	hw->fc.pause_time = IXGBE_FC_PAUSE;
339279b36ec9SKevin Bowling 	hw->fc.send_xon = true;
33938eb6488eSEric Joyner } /* ixgbe_config_delay_values */
33948eb6488eSEric Joyner 
33958eb6488eSEric Joyner /************************************************************************
33968eb6488eSEric Joyner  * ixgbe_set_multi - Multicast Update
33978eb6488eSEric Joyner  *
33988eb6488eSEric Joyner  *   Called whenever multicast address list is updated.
33998eb6488eSEric Joyner  ************************************************************************/
3400ba76aa63SGleb Smirnoff static u_int
340121afed4bSKevin Bowling ixgbe_mc_filter_apply(void *arg, struct sockaddr_dl *sdl, u_int idx)
34028eb6488eSEric Joyner {
3403b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = arg;
3404b1d5caf3SKevin Bowling 	struct ixgbe_mc_addr *mta = sc->mta;
3405c19c7afeSEric Joyner 
340621afed4bSKevin Bowling 	if (idx == MAX_NUM_MULTICAST_ADDRESSES)
3407c19c7afeSEric Joyner 		return (0);
340821afed4bSKevin Bowling 	bcopy(LLADDR(sdl), mta[idx].addr, IXGBE_ETH_LENGTH_OF_ADDRESS);
3409b1d5caf3SKevin Bowling 	mta[idx].vmdq = sc->pool;
3410c19c7afeSEric Joyner 
3411c19c7afeSEric Joyner 	return (1);
3412c19c7afeSEric Joyner } /* ixgbe_mc_filter_apply */
3413c19c7afeSEric Joyner 
3414c19c7afeSEric Joyner static void
3415c19c7afeSEric Joyner ixgbe_if_multi_set(if_ctx_t ctx)
3416c19c7afeSEric Joyner {
3417b1d5caf3SKevin Bowling 	struct ixgbe_softc       *sc = iflib_get_softc(ctx);
34188eb6488eSEric Joyner 	struct ixgbe_mc_addr *mta;
3419ff06a8dbSJustin Hibbits 	if_t                  ifp = iflib_get_ifp(ctx);
34208eb6488eSEric Joyner 	u8                   *update_ptr;
34218eb6488eSEric Joyner 	u32                  fctrl;
3422ba76aa63SGleb Smirnoff 	u_int		     mcnt;
34238eb6488eSEric Joyner 
3424c19c7afeSEric Joyner 	IOCTL_DEBUGOUT("ixgbe_if_multi_set: begin");
34258eb6488eSEric Joyner 
3426b1d5caf3SKevin Bowling 	mta = sc->mta;
34278eb6488eSEric Joyner 	bzero(mta, sizeof(*mta) * MAX_NUM_MULTICAST_ADDRESSES);
34288eb6488eSEric Joyner 
3429b1d5caf3SKevin Bowling 	mcnt = if_foreach_llmaddr(iflib_get_ifp(ctx), ixgbe_mc_filter_apply, sc);
34308eb6488eSEric Joyner 
3431395cc55dSKevin Bowling 	if (mcnt < MAX_NUM_MULTICAST_ADDRESSES) {
3432395cc55dSKevin Bowling 		update_ptr = (u8 *)mta;
3433395cc55dSKevin Bowling 		ixgbe_update_mc_addr_list(&sc->hw, update_ptr, mcnt,
3434395cc55dSKevin Bowling 		    ixgbe_mc_array_itr, true);
3435395cc55dSKevin Bowling 	}
3436395cc55dSKevin Bowling 
3437b1d5caf3SKevin Bowling 	fctrl = IXGBE_READ_REG(&sc->hw, IXGBE_FCTRL);
3438deecaa14SKevin Bowling 
3439ff06a8dbSJustin Hibbits 	if (if_getflags(ifp) & IFF_PROMISC)
34408eb6488eSEric Joyner 		fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
34418eb6488eSEric Joyner 	else if (mcnt >= MAX_NUM_MULTICAST_ADDRESSES ||
3442ff06a8dbSJustin Hibbits 	    if_getflags(ifp) & IFF_ALLMULTI) {
34438eb6488eSEric Joyner 		fctrl |= IXGBE_FCTRL_MPE;
34448eb6488eSEric Joyner 		fctrl &= ~IXGBE_FCTRL_UPE;
34458eb6488eSEric Joyner 	} else
34468eb6488eSEric Joyner 		fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
34478eb6488eSEric Joyner 
3448b1d5caf3SKevin Bowling 	IXGBE_WRITE_REG(&sc->hw, IXGBE_FCTRL, fctrl);
3449c19c7afeSEric Joyner } /* ixgbe_if_multi_set */
34508eb6488eSEric Joyner 
34518eb6488eSEric Joyner /************************************************************************
34528eb6488eSEric Joyner  * ixgbe_mc_array_itr
34538eb6488eSEric Joyner  *
34548eb6488eSEric Joyner  *   An iterator function needed by the multicast shared code.
34558eb6488eSEric Joyner  *   It feeds the shared code routine the addresses in the
34568eb6488eSEric Joyner  *   array of ixgbe_set_multi() one by one.
34578eb6488eSEric Joyner  ************************************************************************/
34588eb6488eSEric Joyner static u8 *
34598eb6488eSEric Joyner ixgbe_mc_array_itr(struct ixgbe_hw *hw, u8 **update_ptr, u32 *vmdq)
34608eb6488eSEric Joyner {
34618eb6488eSEric Joyner 	struct ixgbe_mc_addr *mta;
34628eb6488eSEric Joyner 
34638eb6488eSEric Joyner 	mta = (struct ixgbe_mc_addr *)*update_ptr;
34648eb6488eSEric Joyner 	*vmdq = mta->vmdq;
34658eb6488eSEric Joyner 
34668eb6488eSEric Joyner 	*update_ptr = (u8*)(mta + 1);
34678eb6488eSEric Joyner 
34688eb6488eSEric Joyner 	return (mta->addr);
34698eb6488eSEric Joyner } /* ixgbe_mc_array_itr */
34708eb6488eSEric Joyner 
34718eb6488eSEric Joyner /************************************************************************
34728eb6488eSEric Joyner  * ixgbe_local_timer - Timer routine
34738eb6488eSEric Joyner  *
34748eb6488eSEric Joyner  *   Checks for link status, updates statistics,
34758eb6488eSEric Joyner  *   and runs the watchdog check.
34768eb6488eSEric Joyner  ************************************************************************/
34778eb6488eSEric Joyner static void
3478c19c7afeSEric Joyner ixgbe_if_timer(if_ctx_t ctx, uint16_t qid)
34798eb6488eSEric Joyner {
3480b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
34818eb6488eSEric Joyner 
3482c19c7afeSEric Joyner 	if (qid != 0)
3483c19c7afeSEric Joyner 		return;
34848eb6488eSEric Joyner 
34858eb6488eSEric Joyner 	/* Check for pluggable optics */
3486b1d5caf3SKevin Bowling 	if (sc->sfp_probe)
3487c19c7afeSEric Joyner 		if (!ixgbe_sfp_probe(ctx))
3488c19c7afeSEric Joyner 			return; /* Nothing to do */
34898eb6488eSEric Joyner 
3490b1d5caf3SKevin Bowling 	ixgbe_check_link(&sc->hw, &sc->link_speed, &sc->link_up, 0);
34918eb6488eSEric Joyner 
3492c19c7afeSEric Joyner 	/* Fire off the adminq task */
3493c19c7afeSEric Joyner 	iflib_admin_intr_deferred(ctx);
34948eb6488eSEric Joyner 
3495c19c7afeSEric Joyner } /* ixgbe_if_timer */
34968eb6488eSEric Joyner 
34978eb6488eSEric Joyner /************************************************************************
34988eb6488eSEric Joyner  * ixgbe_sfp_probe
34998eb6488eSEric Joyner  *
35008eb6488eSEric Joyner  *   Determine if a port had optics inserted.
35018eb6488eSEric Joyner  ************************************************************************/
35028eb6488eSEric Joyner static bool
3503c19c7afeSEric Joyner ixgbe_sfp_probe(if_ctx_t ctx)
35048eb6488eSEric Joyner {
3505b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
3506b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
3507c19c7afeSEric Joyner 	device_t        dev = iflib_get_dev(ctx);
350879b36ec9SKevin Bowling 	bool            result = false;
35098eb6488eSEric Joyner 
35108eb6488eSEric Joyner 	if ((hw->phy.type == ixgbe_phy_nl) &&
35118eb6488eSEric Joyner 	    (hw->phy.sfp_type == ixgbe_sfp_type_not_present)) {
35128eb6488eSEric Joyner 		s32 ret = hw->phy.ops.identify_sfp(hw);
35138eb6488eSEric Joyner 		if (ret)
35148eb6488eSEric Joyner 			goto out;
35158eb6488eSEric Joyner 		ret = hw->phy.ops.reset(hw);
3516b1d5caf3SKevin Bowling 		sc->sfp_probe = false;
35178eb6488eSEric Joyner 		if (ret == IXGBE_ERR_SFP_NOT_SUPPORTED) {
35188eb6488eSEric Joyner 			device_printf(dev, "Unsupported SFP+ module detected!");
35198eb6488eSEric Joyner 			device_printf(dev,
35208eb6488eSEric Joyner 			    "Reload driver with supported module.\n");
35218eb6488eSEric Joyner 			goto out;
35228eb6488eSEric Joyner 		} else
35238eb6488eSEric Joyner 			device_printf(dev, "SFP+ module detected!\n");
35248eb6488eSEric Joyner 		/* We now have supported optics */
352579b36ec9SKevin Bowling 		result = true;
35268eb6488eSEric Joyner 	}
35278eb6488eSEric Joyner out:
35288eb6488eSEric Joyner 
35298eb6488eSEric Joyner 	return (result);
35308eb6488eSEric Joyner } /* ixgbe_sfp_probe */
35318eb6488eSEric Joyner 
35328eb6488eSEric Joyner /************************************************************************
35338eb6488eSEric Joyner  * ixgbe_handle_mod - Tasklet for SFP module interrupts
35348eb6488eSEric Joyner  ************************************************************************/
35358eb6488eSEric Joyner static void
3536c19c7afeSEric Joyner ixgbe_handle_mod(void *context)
35378eb6488eSEric Joyner {
3538c19c7afeSEric Joyner 	if_ctx_t        ctx = context;
3539b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
3540b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
3541c19c7afeSEric Joyner 	device_t        dev = iflib_get_dev(ctx);
35428eb6488eSEric Joyner 	u32             err, cage_full = 0;
35438eb6488eSEric Joyner 
3544b1d5caf3SKevin Bowling 	if (sc->hw.need_crosstalk_fix) {
35458eb6488eSEric Joyner 		switch (hw->mac.type) {
35468eb6488eSEric Joyner 		case ixgbe_mac_82599EB:
35478eb6488eSEric Joyner 			cage_full = IXGBE_READ_REG(hw, IXGBE_ESDP) &
35488eb6488eSEric Joyner 			    IXGBE_ESDP_SDP2;
35498eb6488eSEric Joyner 			break;
35508eb6488eSEric Joyner 		case ixgbe_mac_X550EM_x:
35518eb6488eSEric Joyner 		case ixgbe_mac_X550EM_a:
35528eb6488eSEric Joyner 			cage_full = IXGBE_READ_REG(hw, IXGBE_ESDP) &
35538eb6488eSEric Joyner 			    IXGBE_ESDP_SDP0;
35548eb6488eSEric Joyner 			break;
35558eb6488eSEric Joyner 		default:
35568eb6488eSEric Joyner 			break;
35578eb6488eSEric Joyner 		}
35588eb6488eSEric Joyner 
35598eb6488eSEric Joyner 		if (!cage_full)
3560c19c7afeSEric Joyner 			goto handle_mod_out;
35618eb6488eSEric Joyner 	}
35628eb6488eSEric Joyner 
35638eb6488eSEric Joyner 	err = hw->phy.ops.identify_sfp(hw);
35648eb6488eSEric Joyner 	if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
35658eb6488eSEric Joyner 		device_printf(dev,
35668eb6488eSEric Joyner 		    "Unsupported SFP+ module type was detected.\n");
3567c19c7afeSEric Joyner 		goto handle_mod_out;
35688eb6488eSEric Joyner 	}
35698eb6488eSEric Joyner 
3570c19c7afeSEric Joyner 	if (hw->mac.type == ixgbe_mac_82598EB)
3571c19c7afeSEric Joyner 		err = hw->phy.ops.reset(hw);
3572c19c7afeSEric Joyner 	else
35738eb6488eSEric Joyner 		err = hw->mac.ops.setup_sfp(hw);
3574c19c7afeSEric Joyner 
35758eb6488eSEric Joyner 	if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
35768eb6488eSEric Joyner 		device_printf(dev,
35778eb6488eSEric Joyner 		    "Setup failure - unsupported SFP+ module type.\n");
3578c19c7afeSEric Joyner 		goto handle_mod_out;
35798eb6488eSEric Joyner 	}
3580b1d5caf3SKevin Bowling 	sc->task_requests |= IXGBE_REQUEST_TASK_MSF;
3581c19c7afeSEric Joyner 	return;
3582c19c7afeSEric Joyner 
3583c19c7afeSEric Joyner handle_mod_out:
3584b1d5caf3SKevin Bowling 	sc->task_requests &= ~(IXGBE_REQUEST_TASK_MSF);
35858eb6488eSEric Joyner } /* ixgbe_handle_mod */
35868eb6488eSEric Joyner 
35878eb6488eSEric Joyner 
35888eb6488eSEric Joyner /************************************************************************
35898eb6488eSEric Joyner  * ixgbe_handle_msf - Tasklet for MSF (multispeed fiber) interrupts
35908eb6488eSEric Joyner  ************************************************************************/
35918eb6488eSEric Joyner static void
3592c19c7afeSEric Joyner ixgbe_handle_msf(void *context)
35938eb6488eSEric Joyner {
3594c19c7afeSEric Joyner 	if_ctx_t        ctx = context;
3595b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
3596b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
35978eb6488eSEric Joyner 	u32             autoneg;
35988eb6488eSEric Joyner 	bool            negotiate;
35998eb6488eSEric Joyner 
36008eb6488eSEric Joyner 	/* get_supported_phy_layer will call hw->phy.ops.identify_sfp() */
3601b1d5caf3SKevin Bowling 	sc->phy_layer = ixgbe_get_supported_physical_layer(hw);
36028eb6488eSEric Joyner 
36038eb6488eSEric Joyner 	autoneg = hw->phy.autoneg_advertised;
36048eb6488eSEric Joyner 	if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
36058eb6488eSEric Joyner 		hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiate);
36068eb6488eSEric Joyner 	if (hw->mac.ops.setup_link)
360779b36ec9SKevin Bowling 		hw->mac.ops.setup_link(hw, autoneg, true);
36088eb6488eSEric Joyner 
36098eb6488eSEric Joyner 	/* Adjust media types shown in ifconfig */
3610b1d5caf3SKevin Bowling 	ifmedia_removeall(sc->media);
3611b1d5caf3SKevin Bowling 	ixgbe_add_media_types(sc->ctx);
3612b1d5caf3SKevin Bowling 	ifmedia_set(sc->media, IFM_ETHER | IFM_AUTO);
36138eb6488eSEric Joyner } /* ixgbe_handle_msf */
36148eb6488eSEric Joyner 
36158eb6488eSEric Joyner /************************************************************************
36168eb6488eSEric Joyner  * ixgbe_handle_phy - Tasklet for external PHY interrupts
36178eb6488eSEric Joyner  ************************************************************************/
36188eb6488eSEric Joyner static void
3619c19c7afeSEric Joyner ixgbe_handle_phy(void *context)
36208eb6488eSEric Joyner {
3621c19c7afeSEric Joyner 	if_ctx_t        ctx = context;
3622b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
3623b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
36248eb6488eSEric Joyner 	int             error;
36258eb6488eSEric Joyner 
36268eb6488eSEric Joyner 	error = hw->phy.ops.handle_lasi(hw);
36278eb6488eSEric Joyner 	if (error == IXGBE_ERR_OVERTEMP)
3628b1d5caf3SKevin Bowling 		device_printf(sc->dev, "CRITICAL: EXTERNAL PHY OVER TEMP!!  PHY will downshift to lower power state!\n");
36298eb6488eSEric Joyner 	else if (error)
3630b1d5caf3SKevin Bowling 		device_printf(sc->dev,
36318eb6488eSEric Joyner 		    "Error handling LASI interrupt: %d\n", error);
36328eb6488eSEric Joyner } /* ixgbe_handle_phy */
36338eb6488eSEric Joyner 
36348eb6488eSEric Joyner /************************************************************************
3635c19c7afeSEric Joyner  * ixgbe_if_stop - Stop the hardware
36368eb6488eSEric Joyner  *
36378eb6488eSEric Joyner  *   Disables all traffic on the adapter by issuing a
36388eb6488eSEric Joyner  *   global reset on the MAC and deallocates TX/RX buffers.
36398eb6488eSEric Joyner  ************************************************************************/
36408eb6488eSEric Joyner static void
3641c19c7afeSEric Joyner ixgbe_if_stop(if_ctx_t ctx)
36428eb6488eSEric Joyner {
3643b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = iflib_get_softc(ctx);
3644b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
36458eb6488eSEric Joyner 
3646c19c7afeSEric Joyner 	INIT_DEBUGOUT("ixgbe_if_stop: begin\n");
36478eb6488eSEric Joyner 
36488eb6488eSEric Joyner 	ixgbe_reset_hw(hw);
364979b36ec9SKevin Bowling 	hw->adapter_stopped = false;
36508eb6488eSEric Joyner 	ixgbe_stop_adapter(hw);
36518eb6488eSEric Joyner 	if (hw->mac.type == ixgbe_mac_82599EB)
36528eb6488eSEric Joyner 		ixgbe_stop_mac_link_on_d3_82599(hw);
36538eb6488eSEric Joyner 	/* Turn off the laser - noop with no optics */
36548eb6488eSEric Joyner 	ixgbe_disable_tx_laser(hw);
36558eb6488eSEric Joyner 
36568eb6488eSEric Joyner 	/* Update the stack */
3657b1d5caf3SKevin Bowling 	sc->link_up = false;
3658c19c7afeSEric Joyner 	ixgbe_if_update_admin_status(ctx);
36598eb6488eSEric Joyner 
36608eb6488eSEric Joyner 	/* reprogram the RAR[0] in case user changed it. */
3661b1d5caf3SKevin Bowling 	ixgbe_set_rar(&sc->hw, 0, sc->hw.mac.addr, 0, IXGBE_RAH_AV);
36628eb6488eSEric Joyner 
36638eb6488eSEric Joyner 	return;
3664c19c7afeSEric Joyner } /* ixgbe_if_stop */
36658eb6488eSEric Joyner 
36668eb6488eSEric Joyner /************************************************************************
36678eb6488eSEric Joyner  * ixgbe_update_link_status - Update OS on link state
36688eb6488eSEric Joyner  *
36698eb6488eSEric Joyner  * Note: Only updates the OS on the cached link state.
36708eb6488eSEric Joyner  *       The real check of the hardware only happens with
36718eb6488eSEric Joyner  *       a link interrupt.
36728eb6488eSEric Joyner  ************************************************************************/
36738eb6488eSEric Joyner static void
3674c19c7afeSEric Joyner ixgbe_if_update_admin_status(if_ctx_t ctx)
36758eb6488eSEric Joyner {
3676b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
3677c19c7afeSEric Joyner 	device_t       dev = iflib_get_dev(ctx);
36788eb6488eSEric Joyner 
3679b1d5caf3SKevin Bowling 	if (sc->link_up) {
3680b1d5caf3SKevin Bowling 		if (sc->link_active == false) {
36818eb6488eSEric Joyner 			if (bootverbose)
36828eb6488eSEric Joyner 				device_printf(dev, "Link is up %d Gbps %s \n",
3683b1d5caf3SKevin Bowling 				    ((sc->link_speed == 128) ? 10 : 1),
36848eb6488eSEric Joyner 				    "Full Duplex");
3685b1d5caf3SKevin Bowling 			sc->link_active = true;
36868eb6488eSEric Joyner 			/* Update any Flow Control changes */
3687b1d5caf3SKevin Bowling 			ixgbe_fc_enable(&sc->hw);
36888eb6488eSEric Joyner 			/* Update DMA coalescing config */
3689b1d5caf3SKevin Bowling 			ixgbe_config_dmac(sc);
3690a0302c92SPiotr Pietruszewski 			iflib_link_state_change(ctx, LINK_STATE_UP,
36915ddb1aa3SPiotr Kubaj 			    ixgbe_link_speed_to_baudrate(sc->link_speed));
3692c19c7afeSEric Joyner 
3693b1d5caf3SKevin Bowling 			if (sc->feat_en & IXGBE_FEATURE_SRIOV)
3694b1d5caf3SKevin Bowling 				ixgbe_ping_all_vfs(sc);
36958eb6488eSEric Joyner 		}
36968eb6488eSEric Joyner 	} else { /* Link down */
3697b1d5caf3SKevin Bowling 		if (sc->link_active == true) {
36988eb6488eSEric Joyner 			if (bootverbose)
36998eb6488eSEric Joyner 				device_printf(dev, "Link is Down\n");
3700c19c7afeSEric Joyner 			iflib_link_state_change(ctx, LINK_STATE_DOWN, 0);
3701b1d5caf3SKevin Bowling 			sc->link_active = false;
3702b1d5caf3SKevin Bowling 			if (sc->feat_en & IXGBE_FEATURE_SRIOV)
3703b1d5caf3SKevin Bowling 				ixgbe_ping_all_vfs(sc);
37048eb6488eSEric Joyner 		}
37058eb6488eSEric Joyner 	}
37068eb6488eSEric Joyner 
3707b2c1e8e6SEric Joyner 	/* Handle task requests from msix_link() */
3708b1d5caf3SKevin Bowling 	if (sc->task_requests & IXGBE_REQUEST_TASK_MOD)
3709b2c1e8e6SEric Joyner 		ixgbe_handle_mod(ctx);
3710b1d5caf3SKevin Bowling 	if (sc->task_requests & IXGBE_REQUEST_TASK_MSF)
3711b2c1e8e6SEric Joyner 		ixgbe_handle_msf(ctx);
3712b1d5caf3SKevin Bowling 	if (sc->task_requests & IXGBE_REQUEST_TASK_MBX)
3713b2c1e8e6SEric Joyner 		ixgbe_handle_mbx(ctx);
3714b1d5caf3SKevin Bowling 	if (sc->task_requests & IXGBE_REQUEST_TASK_FDIR)
3715b2c1e8e6SEric Joyner 		ixgbe_reinit_fdir(ctx);
3716b1d5caf3SKevin Bowling 	if (sc->task_requests & IXGBE_REQUEST_TASK_PHY)
3717b2c1e8e6SEric Joyner 		ixgbe_handle_phy(ctx);
3718b1d5caf3SKevin Bowling 	sc->task_requests = 0;
3719c19c7afeSEric Joyner 
3720b1d5caf3SKevin Bowling 	ixgbe_update_stats_counters(sc);
3721c19c7afeSEric Joyner } /* ixgbe_if_update_admin_status */
37228eb6488eSEric Joyner 
37238eb6488eSEric Joyner /************************************************************************
37248eb6488eSEric Joyner  * ixgbe_config_dmac - Configure DMA Coalescing
37258eb6488eSEric Joyner  ************************************************************************/
37268eb6488eSEric Joyner static void
3727b1d5caf3SKevin Bowling ixgbe_config_dmac(struct ixgbe_softc *sc)
37288eb6488eSEric Joyner {
3729b1d5caf3SKevin Bowling 	struct ixgbe_hw          *hw = &sc->hw;
37308eb6488eSEric Joyner 	struct ixgbe_dmac_config *dcfg = &hw->mac.dmac_config;
37318eb6488eSEric Joyner 
37328eb6488eSEric Joyner 	if (hw->mac.type < ixgbe_mac_X550 || !hw->mac.ops.dmac_config)
37338eb6488eSEric Joyner 		return;
37348eb6488eSEric Joyner 
3735b1d5caf3SKevin Bowling 	if (dcfg->watchdog_timer ^ sc->dmac ||
3736b1d5caf3SKevin Bowling 	    dcfg->link_speed ^ sc->link_speed) {
3737b1d5caf3SKevin Bowling 		dcfg->watchdog_timer = sc->dmac;
373879b36ec9SKevin Bowling 		dcfg->fcoe_en = false;
3739b1d5caf3SKevin Bowling 		dcfg->link_speed = sc->link_speed;
37408eb6488eSEric Joyner 		dcfg->num_tcs = 1;
37418eb6488eSEric Joyner 
37428eb6488eSEric Joyner 		INIT_DEBUGOUT2("dmac settings: watchdog %d, link speed %d\n",
37438eb6488eSEric Joyner 		    dcfg->watchdog_timer, dcfg->link_speed);
37448eb6488eSEric Joyner 
37458eb6488eSEric Joyner 		hw->mac.ops.dmac_config(hw);
37468eb6488eSEric Joyner 	}
37478eb6488eSEric Joyner } /* ixgbe_config_dmac */
37488eb6488eSEric Joyner 
37498eb6488eSEric Joyner /************************************************************************
3750c19c7afeSEric Joyner  * ixgbe_if_enable_intr
37518eb6488eSEric Joyner  ************************************************************************/
3752c19c7afeSEric Joyner void
3753c19c7afeSEric Joyner ixgbe_if_enable_intr(if_ctx_t ctx)
37548eb6488eSEric Joyner {
3755b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = iflib_get_softc(ctx);
3756b1d5caf3SKevin Bowling 	struct ixgbe_hw    *hw = &sc->hw;
3757b1d5caf3SKevin Bowling 	struct ix_rx_queue *que = sc->rx_queues;
37588eb6488eSEric Joyner 	u32                mask, fwsm;
37598eb6488eSEric Joyner 
37608eb6488eSEric Joyner 	mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
37618eb6488eSEric Joyner 
3762b1d5caf3SKevin Bowling 	switch (sc->hw.mac.type) {
37638eb6488eSEric Joyner 	case ixgbe_mac_82599EB:
37648eb6488eSEric Joyner 		mask |= IXGBE_EIMS_ECC;
3765b1d5caf3SKevin Bowling 		/* Temperature sensor on some scs */
37668eb6488eSEric Joyner 		mask |= IXGBE_EIMS_GPI_SDP0;
37678eb6488eSEric Joyner 		/* SFP+ (RX_LOS_N & MOD_ABS_N) */
37688eb6488eSEric Joyner 		mask |= IXGBE_EIMS_GPI_SDP1;
37698eb6488eSEric Joyner 		mask |= IXGBE_EIMS_GPI_SDP2;
37708eb6488eSEric Joyner 		break;
37718eb6488eSEric Joyner 	case ixgbe_mac_X540:
37728eb6488eSEric Joyner 		/* Detect if Thermal Sensor is enabled */
37738eb6488eSEric Joyner 		fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM);
37748eb6488eSEric Joyner 		if (fwsm & IXGBE_FWSM_TS_ENABLED)
37758eb6488eSEric Joyner 			mask |= IXGBE_EIMS_TS;
37768eb6488eSEric Joyner 		mask |= IXGBE_EIMS_ECC;
37778eb6488eSEric Joyner 		break;
37788eb6488eSEric Joyner 	case ixgbe_mac_X550:
37798eb6488eSEric Joyner 		/* MAC thermal sensor is automatically enabled */
37808eb6488eSEric Joyner 		mask |= IXGBE_EIMS_TS;
37818eb6488eSEric Joyner 		mask |= IXGBE_EIMS_ECC;
37828eb6488eSEric Joyner 		break;
37838eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
37848eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
37858eb6488eSEric Joyner 		/* Some devices use SDP0 for important information */
37868eb6488eSEric Joyner 		if (hw->device_id == IXGBE_DEV_ID_X550EM_X_SFP ||
37878eb6488eSEric Joyner 		    hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP ||
37888eb6488eSEric Joyner 		    hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP_N ||
37898eb6488eSEric Joyner 		    hw->device_id == IXGBE_DEV_ID_X550EM_X_10G_T)
37908eb6488eSEric Joyner 			mask |= IXGBE_EIMS_GPI_SDP0_BY_MAC(hw);
37918eb6488eSEric Joyner 		if (hw->phy.type == ixgbe_phy_x550em_ext_t)
37928eb6488eSEric Joyner 			mask |= IXGBE_EICR_GPI_SDP0_X540;
37938eb6488eSEric Joyner 		mask |= IXGBE_EIMS_ECC;
37948eb6488eSEric Joyner 		break;
37958eb6488eSEric Joyner 	default:
37968eb6488eSEric Joyner 		break;
37978eb6488eSEric Joyner 	}
37988eb6488eSEric Joyner 
37998eb6488eSEric Joyner 	/* Enable Fan Failure detection */
3800b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_FAN_FAIL)
38018eb6488eSEric Joyner 		mask |= IXGBE_EIMS_GPI_SDP1;
38028eb6488eSEric Joyner 	/* Enable SR-IOV */
3803b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_SRIOV)
38048eb6488eSEric Joyner 		mask |= IXGBE_EIMS_MAILBOX;
38058eb6488eSEric Joyner 	/* Enable Flow Director */
3806b1d5caf3SKevin Bowling 	if (sc->feat_en & IXGBE_FEATURE_FDIR)
38078eb6488eSEric Joyner 		mask |= IXGBE_EIMS_FLOW_DIR;
38088eb6488eSEric Joyner 
38098eb6488eSEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
38108eb6488eSEric Joyner 
38118eb6488eSEric Joyner 	/* With MSI-X we use auto clear */
3812b1d5caf3SKevin Bowling 	if (sc->intr_type == IFLIB_INTR_MSIX) {
38138eb6488eSEric Joyner 		mask = IXGBE_EIMS_ENABLE_MASK;
38148eb6488eSEric Joyner 		/* Don't autoclear Link */
38158eb6488eSEric Joyner 		mask &= ~IXGBE_EIMS_OTHER;
38168eb6488eSEric Joyner 		mask &= ~IXGBE_EIMS_LSC;
3817b1d5caf3SKevin Bowling 		if (sc->feat_cap & IXGBE_FEATURE_SRIOV)
38188eb6488eSEric Joyner 			mask &= ~IXGBE_EIMS_MAILBOX;
38198eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
38206f37f232SEric Joyner 	}
38216f37f232SEric Joyner 
3822758cc3dcSJack F Vogel 	/*
38238eb6488eSEric Joyner 	 * Now enable all queues, this is done separately to
38248eb6488eSEric Joyner 	 * allow for handling the extended (beyond 32) MSI-X
38258eb6488eSEric Joyner 	 * vectors that can be used by 82599
3826758cc3dcSJack F Vogel 	 */
3827b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_rx_queues; i++, que++)
3828b1d5caf3SKevin Bowling 		ixgbe_enable_queue(sc, que->msix);
38298eb6488eSEric Joyner 
38308eb6488eSEric Joyner 	IXGBE_WRITE_FLUSH(hw);
38318eb6488eSEric Joyner 
3832c19c7afeSEric Joyner } /* ixgbe_if_enable_intr */
38338eb6488eSEric Joyner 
38348eb6488eSEric Joyner /************************************************************************
38358eb6488eSEric Joyner  * ixgbe_disable_intr
38368eb6488eSEric Joyner  ************************************************************************/
3837758cc3dcSJack F Vogel static void
3838c19c7afeSEric Joyner ixgbe_if_disable_intr(if_ctx_t ctx)
3839758cc3dcSJack F Vogel {
3840b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
3841c19c7afeSEric Joyner 
3842b1d5caf3SKevin Bowling 	if (sc->intr_type == IFLIB_INTR_MSIX)
3843b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_EIAC, 0);
3844b1d5caf3SKevin Bowling 	if (sc->hw.mac.type == ixgbe_mac_82598EB) {
3845b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_EIMC, ~0);
38468eb6488eSEric Joyner 	} else {
3847b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_EIMC, 0xFFFF0000);
3848b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_EIMC_EX(0), ~0);
3849b1d5caf3SKevin Bowling 		IXGBE_WRITE_REG(&sc->hw, IXGBE_EIMC_EX(1), ~0);
38508eb6488eSEric Joyner 	}
3851b1d5caf3SKevin Bowling 	IXGBE_WRITE_FLUSH(&sc->hw);
3852758cc3dcSJack F Vogel 
3853c19c7afeSEric Joyner } /* ixgbe_if_disable_intr */
38548eb6488eSEric Joyner 
38558eb6488eSEric Joyner /************************************************************************
3856b2c1e8e6SEric Joyner  * ixgbe_link_intr_enable
3857b2c1e8e6SEric Joyner  ************************************************************************/
3858b2c1e8e6SEric Joyner static void
3859b2c1e8e6SEric Joyner ixgbe_link_intr_enable(if_ctx_t ctx)
3860b2c1e8e6SEric Joyner {
3861b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &((struct ixgbe_softc *)iflib_get_softc(ctx))->hw;
3862b2c1e8e6SEric Joyner 
3863b2c1e8e6SEric Joyner 	/* Re-enable other interrupts */
3864b2c1e8e6SEric Joyner 	IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_OTHER | IXGBE_EIMS_LSC);
3865b2c1e8e6SEric Joyner } /* ixgbe_link_intr_enable */
3866b2c1e8e6SEric Joyner 
3867b2c1e8e6SEric Joyner /************************************************************************
3868c19c7afeSEric Joyner  * ixgbe_if_rx_queue_intr_enable
3869c19c7afeSEric Joyner  ************************************************************************/
3870c19c7afeSEric Joyner static int
3871c19c7afeSEric Joyner ixgbe_if_rx_queue_intr_enable(if_ctx_t ctx, uint16_t rxqid)
3872c19c7afeSEric Joyner {
3873b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = iflib_get_softc(ctx);
3874b1d5caf3SKevin Bowling 	struct ix_rx_queue *que = &sc->rx_queues[rxqid];
3875c19c7afeSEric Joyner 
3876b1d5caf3SKevin Bowling 	ixgbe_enable_queue(sc, que->msix);
3877c19c7afeSEric Joyner 
3878c19c7afeSEric Joyner 	return (0);
3879c19c7afeSEric Joyner } /* ixgbe_if_rx_queue_intr_enable */
3880c19c7afeSEric Joyner 
3881c19c7afeSEric Joyner /************************************************************************
3882c19c7afeSEric Joyner  * ixgbe_enable_queue
38838eb6488eSEric Joyner  ************************************************************************/
38848eb6488eSEric Joyner static void
3885b1d5caf3SKevin Bowling ixgbe_enable_queue(struct ixgbe_softc *sc, u32 vector)
38868eb6488eSEric Joyner {
3887b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
38882dc2d580SEric Joyner 	u64             queue = 1ULL << vector;
3889c19c7afeSEric Joyner 	u32             mask;
3890758cc3dcSJack F Vogel 
3891c19c7afeSEric Joyner 	if (hw->mac.type == ixgbe_mac_82598EB) {
3892c19c7afeSEric Joyner 		mask = (IXGBE_EIMS_RTX_QUEUE & queue);
3893c19c7afeSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
3894c19c7afeSEric Joyner 	} else {
3895c19c7afeSEric Joyner 		mask = (queue & 0xFFFFFFFF);
3896c19c7afeSEric Joyner 		if (mask)
3897c19c7afeSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
3898c19c7afeSEric Joyner 		mask = (queue >> 32);
3899c19c7afeSEric Joyner 		if (mask)
3900c19c7afeSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
3901c19c7afeSEric Joyner 	}
3902c19c7afeSEric Joyner } /* ixgbe_enable_queue */
3903c19c7afeSEric Joyner 
3904c19c7afeSEric Joyner /************************************************************************
3905c19c7afeSEric Joyner  * ixgbe_disable_queue
3906c19c7afeSEric Joyner  ************************************************************************/
3907c19c7afeSEric Joyner static void
3908b1d5caf3SKevin Bowling ixgbe_disable_queue(struct ixgbe_softc *sc, u32 vector)
3909c19c7afeSEric Joyner {
3910b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
39112dc2d580SEric Joyner 	u64             queue = 1ULL << vector;
3912c19c7afeSEric Joyner 	u32             mask;
3913c19c7afeSEric Joyner 
3914c19c7afeSEric Joyner 	if (hw->mac.type == ixgbe_mac_82598EB) {
3915c19c7afeSEric Joyner 		mask = (IXGBE_EIMS_RTX_QUEUE & queue);
3916c19c7afeSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
3917c19c7afeSEric Joyner 	} else {
3918c19c7afeSEric Joyner 		mask = (queue & 0xFFFFFFFF);
3919c19c7afeSEric Joyner 		if (mask)
3920c19c7afeSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
3921c19c7afeSEric Joyner 		mask = (queue >> 32);
3922c19c7afeSEric Joyner 		if (mask)
3923c19c7afeSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
3924c19c7afeSEric Joyner 	}
3925c19c7afeSEric Joyner } /* ixgbe_disable_queue */
3926c19c7afeSEric Joyner 
3927c19c7afeSEric Joyner /************************************************************************
3928c19c7afeSEric Joyner  * ixgbe_intr - Legacy Interrupt Service Routine
3929c19c7afeSEric Joyner  ************************************************************************/
3930c19c7afeSEric Joyner int
3931c19c7afeSEric Joyner ixgbe_intr(void *arg)
3932c19c7afeSEric Joyner {
3933b1d5caf3SKevin Bowling 	struct ixgbe_softc     *sc = arg;
3934b1d5caf3SKevin Bowling 	struct ix_rx_queue *que = sc->rx_queues;
3935b1d5caf3SKevin Bowling 	struct ixgbe_hw    *hw = &sc->hw;
3936b1d5caf3SKevin Bowling 	if_ctx_t           ctx = sc->ctx;
3937c19c7afeSEric Joyner 	u32                eicr, eicr_mask;
3938758cc3dcSJack F Vogel 
39398eb6488eSEric Joyner 	eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
3940758cc3dcSJack F Vogel 
39418eb6488eSEric Joyner 	++que->irqs;
39428eb6488eSEric Joyner 	if (eicr == 0) {
3943c19c7afeSEric Joyner 		ixgbe_if_enable_intr(ctx);
3944c19c7afeSEric Joyner 		return (FILTER_HANDLED);
3945758cc3dcSJack F Vogel 	}
3946758cc3dcSJack F Vogel 
39478eb6488eSEric Joyner 	/* Check for fan failure */
3948c19c7afeSEric Joyner 	if ((hw->device_id == IXGBE_DEV_ID_82598AT) &&
3949c19c7afeSEric Joyner 	    (eicr & IXGBE_EICR_GPI_SDP1)) {
3950b1d5caf3SKevin Bowling 		device_printf(sc->dev,
3951c19c7afeSEric Joyner 		    "\nCRITICAL: FAN FAILURE!! REPLACE IMMEDIATELY!!\n");
39528eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EICR_GPI_SDP1_BY_MAC(hw));
3953758cc3dcSJack F Vogel 	}
3954758cc3dcSJack F Vogel 
39558eb6488eSEric Joyner 	/* Link status change */
3956c19c7afeSEric Joyner 	if (eicr & IXGBE_EICR_LSC) {
3957c19c7afeSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
3958c19c7afeSEric Joyner 		iflib_admin_intr_deferred(ctx);
3959c19c7afeSEric Joyner 	}
39608eb6488eSEric Joyner 
39618eb6488eSEric Joyner 	if (ixgbe_is_sfp(hw)) {
39628eb6488eSEric Joyner 		/* Pluggable optics-related interrupt */
39638eb6488eSEric Joyner 		if (hw->mac.type >= ixgbe_mac_X540)
39648eb6488eSEric Joyner 			eicr_mask = IXGBE_EICR_GPI_SDP0_X540;
39658eb6488eSEric Joyner 		else
39668eb6488eSEric Joyner 			eicr_mask = IXGBE_EICR_GPI_SDP2_BY_MAC(hw);
39678eb6488eSEric Joyner 
39688eb6488eSEric Joyner 		if (eicr & eicr_mask) {
39698eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr_mask);
3970b1d5caf3SKevin Bowling 			sc->task_requests |= IXGBE_REQUEST_TASK_MOD;
39718eb6488eSEric Joyner 		}
39728eb6488eSEric Joyner 
39738eb6488eSEric Joyner 		if ((hw->mac.type == ixgbe_mac_82599EB) &&
39748eb6488eSEric Joyner 		    (eicr & IXGBE_EICR_GPI_SDP1_BY_MAC(hw))) {
39758eb6488eSEric Joyner 			IXGBE_WRITE_REG(hw, IXGBE_EICR,
39768eb6488eSEric Joyner 			    IXGBE_EICR_GPI_SDP1_BY_MAC(hw));
3977b1d5caf3SKevin Bowling 			sc->task_requests |= IXGBE_REQUEST_TASK_MSF;
39788eb6488eSEric Joyner 		}
39798eb6488eSEric Joyner 	}
39808eb6488eSEric Joyner 
39818eb6488eSEric Joyner 	/* External PHY interrupt */
39828eb6488eSEric Joyner 	if ((hw->phy.type == ixgbe_phy_x550em_ext_t) &&
39838eb6488eSEric Joyner 	    (eicr & IXGBE_EICR_GPI_SDP0_X540))
3984b1d5caf3SKevin Bowling 		sc->task_requests |= IXGBE_REQUEST_TASK_PHY;
39858eb6488eSEric Joyner 
3986c19c7afeSEric Joyner 	return (FILTER_SCHEDULE_THREAD);
3987c19c7afeSEric Joyner } /* ixgbe_intr */
39888eb6488eSEric Joyner 
39898eb6488eSEric Joyner /************************************************************************
39908eb6488eSEric Joyner  * ixgbe_free_pci_resources
39918eb6488eSEric Joyner  ************************************************************************/
39928eb6488eSEric Joyner static void
3993c19c7afeSEric Joyner ixgbe_free_pci_resources(if_ctx_t ctx)
39948eb6488eSEric Joyner {
3995b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
3996b1d5caf3SKevin Bowling 	struct         ix_rx_queue *que = sc->rx_queues;
3997c19c7afeSEric Joyner 	device_t       dev = iflib_get_dev(ctx);
39988eb6488eSEric Joyner 
3999b97de13aSMarius Strobl 	/* Release all MSI-X queue resources */
4000b1d5caf3SKevin Bowling 	if (sc->intr_type == IFLIB_INTR_MSIX)
4001b1d5caf3SKevin Bowling 		iflib_irq_free(ctx, &sc->irq);
4002c19c7afeSEric Joyner 
4003c19c7afeSEric Joyner 	if (que != NULL) {
4004b1d5caf3SKevin Bowling 		for (int i = 0; i < sc->num_rx_queues; i++, que++) {
4005c19c7afeSEric Joyner 			iflib_irq_free(ctx, &que->que_irq);
4006c19c7afeSEric Joyner 		}
4007c19c7afeSEric Joyner 	}
40088eb6488eSEric Joyner 
4009b1d5caf3SKevin Bowling 	if (sc->pci_mem != NULL)
4010c19c7afeSEric Joyner 		bus_release_resource(dev, SYS_RES_MEMORY,
4011b1d5caf3SKevin Bowling 		    rman_get_rid(sc->pci_mem), sc->pci_mem);
40128eb6488eSEric Joyner } /* ixgbe_free_pci_resources */
40138eb6488eSEric Joyner 
40148eb6488eSEric Joyner /************************************************************************
40158eb6488eSEric Joyner  * ixgbe_sysctl_flowcntl
40168eb6488eSEric Joyner  *
40178eb6488eSEric Joyner  *   SYSCTL wrapper around setting Flow Control
40188eb6488eSEric Joyner  ************************************************************************/
4019758cc3dcSJack F Vogel static int
4020f2c4db54SSteven Hartland ixgbe_sysctl_flowcntl(SYSCTL_HANDLER_ARGS)
4021758cc3dcSJack F Vogel {
4022b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc;
40238eb6488eSEric Joyner 	int            error, fc;
4024758cc3dcSJack F Vogel 
4025b1d5caf3SKevin Bowling 	sc = (struct ixgbe_softc *)arg1;
4026b1d5caf3SKevin Bowling 	fc = sc->hw.fc.current_mode;
4027f2c4db54SSteven Hartland 
4028f2c4db54SSteven Hartland 	error = sysctl_handle_int(oidp, &fc, 0, req);
4029758cc3dcSJack F Vogel 	if ((error) || (req->newptr == NULL))
4030758cc3dcSJack F Vogel 		return (error);
4031758cc3dcSJack F Vogel 
4032758cc3dcSJack F Vogel 	/* Don't bother if it's not changed */
4033b1d5caf3SKevin Bowling 	if (fc == sc->hw.fc.current_mode)
4034758cc3dcSJack F Vogel 		return (0);
4035758cc3dcSJack F Vogel 
4036b1d5caf3SKevin Bowling 	return ixgbe_set_flowcntl(sc, fc);
40378eb6488eSEric Joyner } /* ixgbe_sysctl_flowcntl */
4038f2c4db54SSteven Hartland 
40398eb6488eSEric Joyner /************************************************************************
40408eb6488eSEric Joyner  * ixgbe_set_flowcntl - Set flow control
40418eb6488eSEric Joyner  *
40428eb6488eSEric Joyner  *   Flow control values:
40438eb6488eSEric Joyner  *     0 - off
40448eb6488eSEric Joyner  *     1 - rx pause
40458eb6488eSEric Joyner  *     2 - tx pause
40468eb6488eSEric Joyner  *     3 - full
40478eb6488eSEric Joyner  ************************************************************************/
4048f2c4db54SSteven Hartland static int
4049b1d5caf3SKevin Bowling ixgbe_set_flowcntl(struct ixgbe_softc *sc, int fc)
4050f2c4db54SSteven Hartland {
4051f2c4db54SSteven Hartland 	switch (fc) {
4052758cc3dcSJack F Vogel 	case ixgbe_fc_rx_pause:
4053758cc3dcSJack F Vogel 	case ixgbe_fc_tx_pause:
4054758cc3dcSJack F Vogel 	case ixgbe_fc_full:
4055b1d5caf3SKevin Bowling 		sc->hw.fc.requested_mode = fc;
4056b1d5caf3SKevin Bowling 		if (sc->num_rx_queues > 1)
4057b1d5caf3SKevin Bowling 			ixgbe_disable_rx_drop(sc);
4058758cc3dcSJack F Vogel 		break;
4059758cc3dcSJack F Vogel 	case ixgbe_fc_none:
4060b1d5caf3SKevin Bowling 		sc->hw.fc.requested_mode = ixgbe_fc_none;
4061b1d5caf3SKevin Bowling 		if (sc->num_rx_queues > 1)
4062b1d5caf3SKevin Bowling 			ixgbe_enable_rx_drop(sc);
4063758cc3dcSJack F Vogel 		break;
4064758cc3dcSJack F Vogel 	default:
4065758cc3dcSJack F Vogel 		return (EINVAL);
4066758cc3dcSJack F Vogel 	}
40678eb6488eSEric Joyner 
4068758cc3dcSJack F Vogel 	/* Don't autoneg if forcing a value */
4069b1d5caf3SKevin Bowling 	sc->hw.fc.disable_fc_autoneg = true;
4070b1d5caf3SKevin Bowling 	ixgbe_fc_enable(&sc->hw);
40718eb6488eSEric Joyner 
4072f2c4db54SSteven Hartland 	return (0);
40738eb6488eSEric Joyner } /* ixgbe_set_flowcntl */
40748eb6488eSEric Joyner 
40758eb6488eSEric Joyner /************************************************************************
40768eb6488eSEric Joyner  * ixgbe_enable_rx_drop
40778eb6488eSEric Joyner  *
40788eb6488eSEric Joyner  *   Enable the hardware to drop packets when the buffer is
40798eb6488eSEric Joyner  *   full. This is useful with multiqueue, so that no single
40808eb6488eSEric Joyner  *   queue being full stalls the entire RX engine. We only
40818eb6488eSEric Joyner  *   enable this when Multiqueue is enabled AND Flow Control
40828eb6488eSEric Joyner  *   is disabled.
40838eb6488eSEric Joyner  ************************************************************************/
40848eb6488eSEric Joyner static void
4085b1d5caf3SKevin Bowling ixgbe_enable_rx_drop(struct ixgbe_softc *sc)
40868eb6488eSEric Joyner {
4087b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
40888eb6488eSEric Joyner 	struct rx_ring  *rxr;
40898eb6488eSEric Joyner 	u32             srrctl;
40908eb6488eSEric Joyner 
4091b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_rx_queues; i++) {
4092b1d5caf3SKevin Bowling 		rxr = &sc->rx_queues[i].rxr;
40938eb6488eSEric Joyner 		srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(rxr->me));
40948eb6488eSEric Joyner 		srrctl |= IXGBE_SRRCTL_DROP_EN;
40958eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(rxr->me), srrctl);
4096758cc3dcSJack F Vogel 	}
4097758cc3dcSJack F Vogel 
40988eb6488eSEric Joyner 	/* enable drop for each vf */
4099b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_vfs; i++) {
41008eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_QDE,
41018eb6488eSEric Joyner 		                (IXGBE_QDE_WRITE | (i << IXGBE_QDE_IDX_SHIFT) |
41028eb6488eSEric Joyner 		                IXGBE_QDE_ENABLE));
41038eb6488eSEric Joyner 	}
41048eb6488eSEric Joyner } /* ixgbe_enable_rx_drop */
41058eb6488eSEric Joyner 
41068eb6488eSEric Joyner /************************************************************************
41078eb6488eSEric Joyner  * ixgbe_disable_rx_drop
41088eb6488eSEric Joyner  ************************************************************************/
41098eb6488eSEric Joyner static void
4110b1d5caf3SKevin Bowling ixgbe_disable_rx_drop(struct ixgbe_softc *sc)
41118eb6488eSEric Joyner {
4112b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
41138eb6488eSEric Joyner 	struct rx_ring  *rxr;
41148eb6488eSEric Joyner 	u32             srrctl;
41158eb6488eSEric Joyner 
4116b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_rx_queues; i++) {
4117b1d5caf3SKevin Bowling 		rxr = &sc->rx_queues[i].rxr;
41188eb6488eSEric Joyner 		srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(rxr->me));
41198eb6488eSEric Joyner 		srrctl &= ~IXGBE_SRRCTL_DROP_EN;
41208eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(rxr->me), srrctl);
41218eb6488eSEric Joyner 	}
41228eb6488eSEric Joyner 
41238eb6488eSEric Joyner 	/* disable drop for each vf */
4124b1d5caf3SKevin Bowling 	for (int i = 0; i < sc->num_vfs; i++) {
41258eb6488eSEric Joyner 		IXGBE_WRITE_REG(hw, IXGBE_QDE,
41268eb6488eSEric Joyner 		    (IXGBE_QDE_WRITE | (i << IXGBE_QDE_IDX_SHIFT)));
41278eb6488eSEric Joyner 	}
41288eb6488eSEric Joyner } /* ixgbe_disable_rx_drop */
41298eb6488eSEric Joyner 
41308eb6488eSEric Joyner /************************************************************************
41318eb6488eSEric Joyner  * ixgbe_sysctl_advertise
41328eb6488eSEric Joyner  *
41338eb6488eSEric Joyner  *   SYSCTL wrapper around setting advertised speed
41348eb6488eSEric Joyner  ************************************************************************/
4135758cc3dcSJack F Vogel static int
4136f2c4db54SSteven Hartland ixgbe_sysctl_advertise(SYSCTL_HANDLER_ARGS)
4137758cc3dcSJack F Vogel {
4138b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc;
41398eb6488eSEric Joyner 	int            error, advertise;
4140758cc3dcSJack F Vogel 
4141b1d5caf3SKevin Bowling 	sc = (struct ixgbe_softc *)arg1;
4142b1d5caf3SKevin Bowling 	advertise = sc->advertise;
4143758cc3dcSJack F Vogel 
4144f2c4db54SSteven Hartland 	error = sysctl_handle_int(oidp, &advertise, 0, req);
4145758cc3dcSJack F Vogel 	if ((error) || (req->newptr == NULL))
4146758cc3dcSJack F Vogel 		return (error);
4147758cc3dcSJack F Vogel 
4148b1d5caf3SKevin Bowling 	return ixgbe_set_advertise(sc, advertise);
41498eb6488eSEric Joyner } /* ixgbe_sysctl_advertise */
4150f2c4db54SSteven Hartland 
41518eb6488eSEric Joyner /************************************************************************
41528eb6488eSEric Joyner  * ixgbe_set_advertise - Control advertised link speed
41538eb6488eSEric Joyner  *
41548eb6488eSEric Joyner  *   Flags:
41558eb6488eSEric Joyner  *     0x1  - advertise 100 Mb
41568eb6488eSEric Joyner  *     0x2  - advertise 1G
41578eb6488eSEric Joyner  *     0x4  - advertise 10G
41588eb6488eSEric Joyner  *     0x8  - advertise 10 Mb (yes, Mb)
4159d381c807SPiotr Pietruszewski  *     0x10 - advertise 2.5G (disabled by default)
4160d381c807SPiotr Pietruszewski  *     0x20 - advertise 5G (disabled by default)
4161d381c807SPiotr Pietruszewski  *
41628eb6488eSEric Joyner  ************************************************************************/
4163f2c4db54SSteven Hartland static int
4164b1d5caf3SKevin Bowling ixgbe_set_advertise(struct ixgbe_softc *sc, int advertise)
4165f2c4db54SSteven Hartland {
4166b1d5caf3SKevin Bowling 	device_t         dev = iflib_get_dev(sc->ctx);
4167f2c4db54SSteven Hartland 	struct ixgbe_hw  *hw;
41688eb6488eSEric Joyner 	ixgbe_link_speed speed = 0;
41698eb6488eSEric Joyner 	ixgbe_link_speed link_caps = 0;
41708eb6488eSEric Joyner 	s32              err = IXGBE_NOT_IMPLEMENTED;
417179b36ec9SKevin Bowling 	bool             negotiate = false;
4172f2c4db54SSteven Hartland 
4173d775d23aSSteven Hartland 	/* Checks to validate new value */
4174b1d5caf3SKevin Bowling 	if (sc->advertise == advertise) /* no change */
4175d775d23aSSteven Hartland 		return (0);
4176d775d23aSSteven Hartland 
4177b1d5caf3SKevin Bowling 	hw = &sc->hw;
4178f2c4db54SSteven Hartland 
4179a9ca1c79SSean Bruno 	/* No speed changes for backplane media */
4180a9ca1c79SSean Bruno 	if (hw->phy.media_type == ixgbe_media_type_backplane)
4181a9ca1c79SSean Bruno 		return (ENODEV);
4182a9ca1c79SSean Bruno 
4183758cc3dcSJack F Vogel 	if (!((hw->phy.media_type == ixgbe_media_type_copper) ||
4184758cc3dcSJack F Vogel 	      (hw->phy.multispeed_fiber))) {
41858eb6488eSEric Joyner 		device_printf(dev, "Advertised speed can only be set on copper or multispeed fiber media types.\n");
4186758cc3dcSJack F Vogel 		return (EINVAL);
4187758cc3dcSJack F Vogel 	}
4188758cc3dcSJack F Vogel 
4189d381c807SPiotr Pietruszewski 	if (advertise < 0x1 || advertise > 0x3F) {
4190d381c807SPiotr Pietruszewski 		device_printf(dev, "Invalid advertised speed; valid modes are 0x1 through 0x3F\n");
4191758cc3dcSJack F Vogel 		return (EINVAL);
4192758cc3dcSJack F Vogel 	}
4193758cc3dcSJack F Vogel 
41948eb6488eSEric Joyner 	if (hw->mac.ops.get_link_capabilities) {
41958eb6488eSEric Joyner 		err = hw->mac.ops.get_link_capabilities(hw, &link_caps,
41968eb6488eSEric Joyner 		    &negotiate);
41978eb6488eSEric Joyner 		if (err != IXGBE_SUCCESS) {
41988eb6488eSEric Joyner 			device_printf(dev, "Unable to determine supported advertise speeds\n");
41998eb6488eSEric Joyner 			return (ENODEV);
42008eb6488eSEric Joyner 		}
4201758cc3dcSJack F Vogel 	}
4202758cc3dcSJack F Vogel 
4203758cc3dcSJack F Vogel 	/* Set new value and report new advertised mode */
42048eb6488eSEric Joyner 	if (advertise & 0x1) {
42058eb6488eSEric Joyner 		if (!(link_caps & IXGBE_LINK_SPEED_100_FULL)) {
42068eb6488eSEric Joyner 			device_printf(dev, "Interface does not support 100Mb advertised speed\n");
42078eb6488eSEric Joyner 			return (EINVAL);
42088eb6488eSEric Joyner 		}
4209758cc3dcSJack F Vogel 		speed |= IXGBE_LINK_SPEED_100_FULL;
42108eb6488eSEric Joyner 	}
42118eb6488eSEric Joyner 	if (advertise & 0x2) {
42128eb6488eSEric Joyner 		if (!(link_caps & IXGBE_LINK_SPEED_1GB_FULL)) {
42138eb6488eSEric Joyner 			device_printf(dev, "Interface does not support 1Gb advertised speed\n");
42148eb6488eSEric Joyner 			return (EINVAL);
42158eb6488eSEric Joyner 		}
4216758cc3dcSJack F Vogel 		speed |= IXGBE_LINK_SPEED_1GB_FULL;
42178eb6488eSEric Joyner 	}
42188eb6488eSEric Joyner 	if (advertise & 0x4) {
42198eb6488eSEric Joyner 		if (!(link_caps & IXGBE_LINK_SPEED_10GB_FULL)) {
42208eb6488eSEric Joyner 			device_printf(dev, "Interface does not support 10Gb advertised speed\n");
42218eb6488eSEric Joyner 			return (EINVAL);
42228eb6488eSEric Joyner 		}
4223758cc3dcSJack F Vogel 		speed |= IXGBE_LINK_SPEED_10GB_FULL;
42248eb6488eSEric Joyner 	}
42258eb6488eSEric Joyner 	if (advertise & 0x8) {
42268eb6488eSEric Joyner 		if (!(link_caps & IXGBE_LINK_SPEED_10_FULL)) {
42278eb6488eSEric Joyner 			device_printf(dev, "Interface does not support 10Mb advertised speed\n");
42288eb6488eSEric Joyner 			return (EINVAL);
42298eb6488eSEric Joyner 		}
42308eb6488eSEric Joyner 		speed |= IXGBE_LINK_SPEED_10_FULL;
42318eb6488eSEric Joyner 	}
4232d381c807SPiotr Pietruszewski 	if (advertise & 0x10) {
4233d381c807SPiotr Pietruszewski 		if (!(link_caps & IXGBE_LINK_SPEED_2_5GB_FULL)) {
4234d381c807SPiotr Pietruszewski 			device_printf(dev, "Interface does not support 2.5G advertised speed\n");
4235d381c807SPiotr Pietruszewski 			return (EINVAL);
4236d381c807SPiotr Pietruszewski 		}
4237d381c807SPiotr Pietruszewski 		speed |= IXGBE_LINK_SPEED_2_5GB_FULL;
4238d381c807SPiotr Pietruszewski 	}
4239d381c807SPiotr Pietruszewski 	if (advertise & 0x20) {
4240d381c807SPiotr Pietruszewski 		if (!(link_caps & IXGBE_LINK_SPEED_5GB_FULL)) {
4241d381c807SPiotr Pietruszewski 			device_printf(dev, "Interface does not support 5G advertised speed\n");
4242d381c807SPiotr Pietruszewski 			return (EINVAL);
4243d381c807SPiotr Pietruszewski 		}
4244d381c807SPiotr Pietruszewski 		speed |= IXGBE_LINK_SPEED_5GB_FULL;
4245d381c807SPiotr Pietruszewski 	}
4246758cc3dcSJack F Vogel 
424779b36ec9SKevin Bowling 	hw->mac.autotry_restart = true;
424879b36ec9SKevin Bowling 	hw->mac.ops.setup_link(hw, speed, true);
4249b1d5caf3SKevin Bowling 	sc->advertise = advertise;
4250758cc3dcSJack F Vogel 
4251f2c4db54SSteven Hartland 	return (0);
42528eb6488eSEric Joyner } /* ixgbe_set_advertise */
42538eb6488eSEric Joyner 
42548eb6488eSEric Joyner /************************************************************************
4255d381c807SPiotr Pietruszewski  * ixgbe_get_default_advertise - Get default advertised speed settings
42568eb6488eSEric Joyner  *
42578eb6488eSEric Joyner  *   Formatted for sysctl usage.
42588eb6488eSEric Joyner  *   Flags:
42598eb6488eSEric Joyner  *     0x1 - advertise 100 Mb
42608eb6488eSEric Joyner  *     0x2 - advertise 1G
42618eb6488eSEric Joyner  *     0x4 - advertise 10G
42628eb6488eSEric Joyner  *     0x8 - advertise 10 Mb (yes, Mb)
4263d381c807SPiotr Pietruszewski  *     0x10 - advertise 2.5G (disabled by default)
4264d381c807SPiotr Pietruszewski  *     0x20 - advertise 5G (disabled by default)
42658eb6488eSEric Joyner  ************************************************************************/
42668eb6488eSEric Joyner static int
4267d381c807SPiotr Pietruszewski ixgbe_get_default_advertise(struct ixgbe_softc *sc)
42688eb6488eSEric Joyner {
4269b1d5caf3SKevin Bowling 	struct ixgbe_hw  *hw = &sc->hw;
42708eb6488eSEric Joyner 	int              speed;
42718eb6488eSEric Joyner 	ixgbe_link_speed link_caps = 0;
42728eb6488eSEric Joyner 	s32              err;
427379b36ec9SKevin Bowling 	bool             negotiate = false;
4274758cc3dcSJack F Vogel 
4275758cc3dcSJack F Vogel 	/*
42768eb6488eSEric Joyner 	 * Advertised speed means nothing unless it's copper or
42778eb6488eSEric Joyner 	 * multi-speed fiber
4278758cc3dcSJack F Vogel 	 */
42798eb6488eSEric Joyner 	if (!(hw->phy.media_type == ixgbe_media_type_copper) &&
42808eb6488eSEric Joyner 	    !(hw->phy.multispeed_fiber))
4281758cc3dcSJack F Vogel 		return (0);
4282758cc3dcSJack F Vogel 
42838eb6488eSEric Joyner 	err = hw->mac.ops.get_link_capabilities(hw, &link_caps, &negotiate);
42848eb6488eSEric Joyner 	if (err != IXGBE_SUCCESS)
42858eb6488eSEric Joyner 		return (0);
42868eb6488eSEric Joyner 
4287d381c807SPiotr Pietruszewski 	if (hw->mac.type == ixgbe_mac_X550) {
4288d381c807SPiotr Pietruszewski 		/*
4289d381c807SPiotr Pietruszewski 		 * 2.5G and 5G autonegotiation speeds on X550
4290d381c807SPiotr Pietruszewski 		 * are disabled by default due to reported
4291d381c807SPiotr Pietruszewski 		 * interoperability issues with some switches.
4292d381c807SPiotr Pietruszewski 		 */
4293d381c807SPiotr Pietruszewski 		link_caps &= ~(IXGBE_LINK_SPEED_2_5GB_FULL |
4294d381c807SPiotr Pietruszewski 		    IXGBE_LINK_SPEED_5GB_FULL);
4295d381c807SPiotr Pietruszewski 	}
4296d381c807SPiotr Pietruszewski 
42978eb6488eSEric Joyner 	speed =
4298d381c807SPiotr Pietruszewski 	    ((link_caps & IXGBE_LINK_SPEED_10GB_FULL)  ? 0x4  : 0) |
4299d381c807SPiotr Pietruszewski 	    ((link_caps & IXGBE_LINK_SPEED_5GB_FULL)   ? 0x20 : 0) |
4300d381c807SPiotr Pietruszewski 	    ((link_caps & IXGBE_LINK_SPEED_2_5GB_FULL) ? 0x10 : 0) |
4301d381c807SPiotr Pietruszewski 	    ((link_caps & IXGBE_LINK_SPEED_1GB_FULL)   ? 0x2  : 0) |
4302d381c807SPiotr Pietruszewski 	    ((link_caps & IXGBE_LINK_SPEED_100_FULL)   ? 0x1  : 0) |
4303d381c807SPiotr Pietruszewski 	    ((link_caps & IXGBE_LINK_SPEED_10_FULL)    ? 0x8  : 0);
43048eb6488eSEric Joyner 
43058eb6488eSEric Joyner 	return speed;
4306d381c807SPiotr Pietruszewski } /* ixgbe_get_default_advertise */
43078eb6488eSEric Joyner 
43088eb6488eSEric Joyner /************************************************************************
43098eb6488eSEric Joyner  * ixgbe_sysctl_dmac - Manage DMA Coalescing
43108eb6488eSEric Joyner  *
43118eb6488eSEric Joyner  *   Control values:
43128eb6488eSEric Joyner  *     0/1 - off / on (use default value of 1000)
43138eb6488eSEric Joyner  *
43148eb6488eSEric Joyner  *     Legal timer values are:
43158eb6488eSEric Joyner  *     50,100,250,500,1000,2000,5000,10000
43168eb6488eSEric Joyner  *
43178eb6488eSEric Joyner  *     Turning off interrupt moderation will also turn this off.
43188eb6488eSEric Joyner  ************************************************************************/
43196f37f232SEric Joyner static int
43206f37f232SEric Joyner ixgbe_sysctl_dmac(SYSCTL_HANDLER_ARGS)
43216f37f232SEric Joyner {
4322b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = (struct ixgbe_softc *)arg1;
4323ff06a8dbSJustin Hibbits 	if_t           ifp = iflib_get_ifp(sc->ctx);
43246f37f232SEric Joyner 	int            error;
4325c19c7afeSEric Joyner 	u16            newval;
43266f37f232SEric Joyner 
4327b1d5caf3SKevin Bowling 	newval = sc->dmac;
4328c19c7afeSEric Joyner 	error = sysctl_handle_16(oidp, &newval, 0, req);
43296f37f232SEric Joyner 	if ((error) || (req->newptr == NULL))
43306f37f232SEric Joyner 		return (error);
43316f37f232SEric Joyner 
4332a9ca1c79SSean Bruno 	switch (newval) {
43336f37f232SEric Joyner 	case 0:
43346f37f232SEric Joyner 		/* Disabled */
4335b1d5caf3SKevin Bowling 		sc->dmac = 0;
43366f37f232SEric Joyner 		break;
4337a9ca1c79SSean Bruno 	case 1:
4338a9ca1c79SSean Bruno 		/* Enable and use default */
4339b1d5caf3SKevin Bowling 		sc->dmac = 1000;
43406f37f232SEric Joyner 		break;
43416f37f232SEric Joyner 	case 50:
43426f37f232SEric Joyner 	case 100:
43436f37f232SEric Joyner 	case 250:
43446f37f232SEric Joyner 	case 500:
43456f37f232SEric Joyner 	case 1000:
43466f37f232SEric Joyner 	case 2000:
43476f37f232SEric Joyner 	case 5000:
43486f37f232SEric Joyner 	case 10000:
43496f37f232SEric Joyner 		/* Legal values - allow */
4350b1d5caf3SKevin Bowling 		sc->dmac = newval;
43516f37f232SEric Joyner 		break;
43526f37f232SEric Joyner 	default:
43536f37f232SEric Joyner 		/* Do nothing, illegal value */
43546f37f232SEric Joyner 		return (EINVAL);
43556f37f232SEric Joyner 	}
43566f37f232SEric Joyner 
43576f37f232SEric Joyner 	/* Re-initialize hardware if it's already running */
4358ff06a8dbSJustin Hibbits 	if (if_getdrvflags(ifp) & IFF_DRV_RUNNING)
4359ff06a8dbSJustin Hibbits 		if_init(ifp, ifp);
43606f37f232SEric Joyner 
43616f37f232SEric Joyner 	return (0);
43628eb6488eSEric Joyner } /* ixgbe_sysctl_dmac */
43636f37f232SEric Joyner 
4364a9ca1c79SSean Bruno #ifdef IXGBE_DEBUG
43658eb6488eSEric Joyner /************************************************************************
43668eb6488eSEric Joyner  * ixgbe_sysctl_power_state
43678eb6488eSEric Joyner  *
4368a9ca1c79SSean Bruno  *   Sysctl to test power states
4369a9ca1c79SSean Bruno  *   Values:
4370a9ca1c79SSean Bruno  *     0      - set device to D0
4371a9ca1c79SSean Bruno  *     3      - set device to D3
4372a9ca1c79SSean Bruno  *     (none) - get current device power state
43738eb6488eSEric Joyner  ************************************************************************/
4374a9ca1c79SSean Bruno static int
4375a9ca1c79SSean Bruno ixgbe_sysctl_power_state(SYSCTL_HANDLER_ARGS)
4376a9ca1c79SSean Bruno {
4377b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = (struct ixgbe_softc *)arg1;
4378b1d5caf3SKevin Bowling 	device_t       dev = sc->dev;
4379a9ca1c79SSean Bruno 	int            curr_ps, new_ps, error = 0;
4380a9ca1c79SSean Bruno 
4381a9ca1c79SSean Bruno 	curr_ps = new_ps = pci_get_powerstate(dev);
4382a9ca1c79SSean Bruno 
4383a9ca1c79SSean Bruno 	error = sysctl_handle_int(oidp, &new_ps, 0, req);
4384a9ca1c79SSean Bruno 	if ((error) || (req->newptr == NULL))
4385a9ca1c79SSean Bruno 		return (error);
4386a9ca1c79SSean Bruno 
4387a9ca1c79SSean Bruno 	if (new_ps == curr_ps)
4388a9ca1c79SSean Bruno 		return (0);
4389a9ca1c79SSean Bruno 
4390a9ca1c79SSean Bruno 	if (new_ps == 3 && curr_ps == 0)
4391a9ca1c79SSean Bruno 		error = DEVICE_SUSPEND(dev);
4392a9ca1c79SSean Bruno 	else if (new_ps == 0 && curr_ps == 3)
4393a9ca1c79SSean Bruno 		error = DEVICE_RESUME(dev);
4394a9ca1c79SSean Bruno 	else
4395a9ca1c79SSean Bruno 		return (EINVAL);
4396a9ca1c79SSean Bruno 
4397a9ca1c79SSean Bruno 	device_printf(dev, "New state: %d\n", pci_get_powerstate(dev));
4398a9ca1c79SSean Bruno 
4399a9ca1c79SSean Bruno 	return (error);
44008eb6488eSEric Joyner } /* ixgbe_sysctl_power_state */
4401a9ca1c79SSean Bruno #endif
44028eb6488eSEric Joyner 
44038eb6488eSEric Joyner /************************************************************************
44048eb6488eSEric Joyner  * ixgbe_sysctl_wol_enable
44058eb6488eSEric Joyner  *
44068eb6488eSEric Joyner  *   Sysctl to enable/disable the WoL capability,
44078eb6488eSEric Joyner  *   if supported by the adapter.
44088eb6488eSEric Joyner  *
44096f37f232SEric Joyner  *   Values:
44106f37f232SEric Joyner  *     0 - disabled
44116f37f232SEric Joyner  *     1 - enabled
44128eb6488eSEric Joyner  ************************************************************************/
44136f37f232SEric Joyner static int
44146f37f232SEric Joyner ixgbe_sysctl_wol_enable(SYSCTL_HANDLER_ARGS)
44156f37f232SEric Joyner {
4416b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = (struct ixgbe_softc *)arg1;
4417b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
44186f37f232SEric Joyner 	int             new_wol_enabled;
44196f37f232SEric Joyner 	int             error = 0;
44206f37f232SEric Joyner 
44216f37f232SEric Joyner 	new_wol_enabled = hw->wol_enabled;
44226f37f232SEric Joyner 	error = sysctl_handle_int(oidp, &new_wol_enabled, 0, req);
44236f37f232SEric Joyner 	if ((error) || (req->newptr == NULL))
44246f37f232SEric Joyner 		return (error);
4425a9ca1c79SSean Bruno 	new_wol_enabled = !!(new_wol_enabled);
44266f37f232SEric Joyner 	if (new_wol_enabled == hw->wol_enabled)
44276f37f232SEric Joyner 		return (0);
44286f37f232SEric Joyner 
4429b1d5caf3SKevin Bowling 	if (new_wol_enabled > 0 && !sc->wol_support)
44306f37f232SEric Joyner 		return (ENODEV);
44316f37f232SEric Joyner 	else
4432a9ca1c79SSean Bruno 		hw->wol_enabled = new_wol_enabled;
44336f37f232SEric Joyner 
44346f37f232SEric Joyner 	return (0);
44358eb6488eSEric Joyner } /* ixgbe_sysctl_wol_enable */
44366f37f232SEric Joyner 
44378eb6488eSEric Joyner /************************************************************************
44388eb6488eSEric Joyner  * ixgbe_sysctl_wufc - Wake Up Filter Control
44398eb6488eSEric Joyner  *
44406f37f232SEric Joyner  *   Sysctl to enable/disable the types of packets that the
44416f37f232SEric Joyner  *   adapter will wake up on upon receipt.
44426f37f232SEric Joyner  *   Flags:
44436f37f232SEric Joyner  *     0x1  - Link Status Change
44446f37f232SEric Joyner  *     0x2  - Magic Packet
44456f37f232SEric Joyner  *     0x4  - Direct Exact
44466f37f232SEric Joyner  *     0x8  - Directed Multicast
44476f37f232SEric Joyner  *     0x10 - Broadcast
44486f37f232SEric Joyner  *     0x20 - ARP/IPv4 Request Packet
44496f37f232SEric Joyner  *     0x40 - Direct IPv4 Packet
44506f37f232SEric Joyner  *     0x80 - Direct IPv6 Packet
44516f37f232SEric Joyner  *
44528eb6488eSEric Joyner  *   Settings not listed above will cause the sysctl to return an error.
44538eb6488eSEric Joyner  ************************************************************************/
44546f37f232SEric Joyner static int
44556f37f232SEric Joyner ixgbe_sysctl_wufc(SYSCTL_HANDLER_ARGS)
44566f37f232SEric Joyner {
4457b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = (struct ixgbe_softc *)arg1;
44586f37f232SEric Joyner 	int            error = 0;
44596f37f232SEric Joyner 	u32            new_wufc;
44606f37f232SEric Joyner 
4461b1d5caf3SKevin Bowling 	new_wufc = sc->wufc;
44626f37f232SEric Joyner 
4463c19c7afeSEric Joyner 	error = sysctl_handle_32(oidp, &new_wufc, 0, req);
44646f37f232SEric Joyner 	if ((error) || (req->newptr == NULL))
44656f37f232SEric Joyner 		return (error);
4466b1d5caf3SKevin Bowling 	if (new_wufc == sc->wufc)
44676f37f232SEric Joyner 		return (0);
44686f37f232SEric Joyner 
44696f37f232SEric Joyner 	if (new_wufc & 0xffffff00)
44706f37f232SEric Joyner 		return (EINVAL);
44718eb6488eSEric Joyner 
44726f37f232SEric Joyner 	new_wufc &= 0xff;
4473b1d5caf3SKevin Bowling 	new_wufc |= (0xffffff & sc->wufc);
4474b1d5caf3SKevin Bowling 	sc->wufc = new_wufc;
44756f37f232SEric Joyner 
44766f37f232SEric Joyner 	return (0);
44778eb6488eSEric Joyner } /* ixgbe_sysctl_wufc */
44786f37f232SEric Joyner 
4479a9ca1c79SSean Bruno #ifdef IXGBE_DEBUG
44808eb6488eSEric Joyner /************************************************************************
44818eb6488eSEric Joyner  * ixgbe_sysctl_print_rss_config
44828eb6488eSEric Joyner  ************************************************************************/
4483a9ca1c79SSean Bruno static int
4484a9ca1c79SSean Bruno ixgbe_sysctl_print_rss_config(SYSCTL_HANDLER_ARGS)
4485a9ca1c79SSean Bruno {
4486b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = (struct ixgbe_softc *)arg1;
4487b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
4488b1d5caf3SKevin Bowling 	device_t        dev = sc->dev;
4489a9ca1c79SSean Bruno 	struct sbuf     *buf;
44908eb6488eSEric Joyner 	int             error = 0, reta_size;
4491a9ca1c79SSean Bruno 	u32             reg;
4492a9ca1c79SSean Bruno 
4493a9ca1c79SSean Bruno 	buf = sbuf_new_for_sysctl(NULL, NULL, 128, req);
4494a9ca1c79SSean Bruno 	if (!buf) {
4495a9ca1c79SSean Bruno 		device_printf(dev, "Could not allocate sbuf for output.\n");
4496a9ca1c79SSean Bruno 		return (ENOMEM);
4497a9ca1c79SSean Bruno 	}
4498a9ca1c79SSean Bruno 
4499a9ca1c79SSean Bruno 	// TODO: use sbufs to make a string to print out
4500a9ca1c79SSean Bruno 	/* Set multiplier for RETA setup and table size based on MAC */
4501b1d5caf3SKevin Bowling 	switch (sc->hw.mac.type) {
4502a9ca1c79SSean Bruno 	case ixgbe_mac_X550:
4503a9ca1c79SSean Bruno 	case ixgbe_mac_X550EM_x:
45048eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
4505a9ca1c79SSean Bruno 		reta_size = 128;
4506a9ca1c79SSean Bruno 		break;
4507a9ca1c79SSean Bruno 	default:
4508a9ca1c79SSean Bruno 		reta_size = 32;
4509a9ca1c79SSean Bruno 		break;
4510a9ca1c79SSean Bruno 	}
4511a9ca1c79SSean Bruno 
4512a9ca1c79SSean Bruno 	/* Print out the redirection table */
4513a9ca1c79SSean Bruno 	sbuf_cat(buf, "\n");
4514a9ca1c79SSean Bruno 	for (int i = 0; i < reta_size; i++) {
4515a9ca1c79SSean Bruno 		if (i < 32) {
4516a9ca1c79SSean Bruno 			reg = IXGBE_READ_REG(hw, IXGBE_RETA(i));
4517a9ca1c79SSean Bruno 			sbuf_printf(buf, "RETA(%2d): 0x%08x\n", i, reg);
4518a9ca1c79SSean Bruno 		} else {
4519a9ca1c79SSean Bruno 			reg = IXGBE_READ_REG(hw, IXGBE_ERETA(i - 32));
4520a9ca1c79SSean Bruno 			sbuf_printf(buf, "ERETA(%2d): 0x%08x\n", i - 32, reg);
4521a9ca1c79SSean Bruno 		}
4522a9ca1c79SSean Bruno 	}
4523a9ca1c79SSean Bruno 
4524a9ca1c79SSean Bruno 	// TODO: print more config
4525a9ca1c79SSean Bruno 
4526a9ca1c79SSean Bruno 	error = sbuf_finish(buf);
4527a9ca1c79SSean Bruno 	if (error)
4528a9ca1c79SSean Bruno 		device_printf(dev, "Error finishing sbuf: %d\n", error);
4529a9ca1c79SSean Bruno 
4530a9ca1c79SSean Bruno 	sbuf_delete(buf);
45318eb6488eSEric Joyner 
4532a9ca1c79SSean Bruno 	return (0);
45338eb6488eSEric Joyner } /* ixgbe_sysctl_print_rss_config */
4534a9ca1c79SSean Bruno #endif /* IXGBE_DEBUG */
4535a9ca1c79SSean Bruno 
45368eb6488eSEric Joyner /************************************************************************
45378eb6488eSEric Joyner  * ixgbe_sysctl_phy_temp - Retrieve temperature of PHY
45388eb6488eSEric Joyner  *
45398eb6488eSEric Joyner  *   For X552/X557-AT devices using an external PHY
45408eb6488eSEric Joyner  ************************************************************************/
45418eb6488eSEric Joyner static int
45428eb6488eSEric Joyner ixgbe_sysctl_phy_temp(SYSCTL_HANDLER_ARGS)
45438eb6488eSEric Joyner {
4544b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = (struct ixgbe_softc *)arg1;
4545b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
45468eb6488eSEric Joyner 	u16             reg;
45478eb6488eSEric Joyner 
45488eb6488eSEric Joyner 	if (hw->device_id != IXGBE_DEV_ID_X550EM_X_10G_T) {
4549b1d5caf3SKevin Bowling 		device_printf(iflib_get_dev(sc->ctx),
45508eb6488eSEric Joyner 		    "Device has no supported external thermal sensor.\n");
45518eb6488eSEric Joyner 		return (ENODEV);
45528eb6488eSEric Joyner 	}
45538eb6488eSEric Joyner 
45548eb6488eSEric Joyner 	if (hw->phy.ops.read_reg(hw, IXGBE_PHY_CURRENT_TEMP,
45558eb6488eSEric Joyner 	    IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE, &reg)) {
4556b1d5caf3SKevin Bowling 		device_printf(iflib_get_dev(sc->ctx),
45578eb6488eSEric Joyner 		    "Error reading from PHY's current temperature register\n");
45588eb6488eSEric Joyner 		return (EAGAIN);
45598eb6488eSEric Joyner 	}
45608eb6488eSEric Joyner 
45618eb6488eSEric Joyner 	/* Shift temp for output */
45628eb6488eSEric Joyner 	reg = reg >> 8;
45638eb6488eSEric Joyner 
4564c19c7afeSEric Joyner 	return (sysctl_handle_16(oidp, NULL, reg, req));
45658eb6488eSEric Joyner } /* ixgbe_sysctl_phy_temp */
45668eb6488eSEric Joyner 
45678eb6488eSEric Joyner /************************************************************************
45688eb6488eSEric Joyner  * ixgbe_sysctl_phy_overtemp_occurred
45698eb6488eSEric Joyner  *
45708eb6488eSEric Joyner  *   Reports (directly from the PHY) whether the current PHY
45718eb6488eSEric Joyner  *   temperature is over the overtemp threshold.
45728eb6488eSEric Joyner  ************************************************************************/
45738eb6488eSEric Joyner static int
45748eb6488eSEric Joyner ixgbe_sysctl_phy_overtemp_occurred(SYSCTL_HANDLER_ARGS)
45758eb6488eSEric Joyner {
4576b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = (struct ixgbe_softc *)arg1;
4577b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
45788eb6488eSEric Joyner 	u16             reg;
45798eb6488eSEric Joyner 
45808eb6488eSEric Joyner 	if (hw->device_id != IXGBE_DEV_ID_X550EM_X_10G_T) {
4581b1d5caf3SKevin Bowling 		device_printf(iflib_get_dev(sc->ctx),
45828eb6488eSEric Joyner 		    "Device has no supported external thermal sensor.\n");
45838eb6488eSEric Joyner 		return (ENODEV);
45848eb6488eSEric Joyner 	}
45858eb6488eSEric Joyner 
45868eb6488eSEric Joyner 	if (hw->phy.ops.read_reg(hw, IXGBE_PHY_OVERTEMP_STATUS,
45878eb6488eSEric Joyner 	    IXGBE_MDIO_VENDOR_SPECIFIC_1_DEV_TYPE, &reg)) {
4588b1d5caf3SKevin Bowling 		device_printf(iflib_get_dev(sc->ctx),
45898eb6488eSEric Joyner 		    "Error reading from PHY's temperature status register\n");
45908eb6488eSEric Joyner 		return (EAGAIN);
45918eb6488eSEric Joyner 	}
45928eb6488eSEric Joyner 
45938eb6488eSEric Joyner 	/* Get occurrence bit */
45948eb6488eSEric Joyner 	reg = !!(reg & 0x4000);
45958eb6488eSEric Joyner 
4596c19c7afeSEric Joyner 	return (sysctl_handle_16(oidp, 0, reg, req));
45978eb6488eSEric Joyner } /* ixgbe_sysctl_phy_overtemp_occurred */
45988eb6488eSEric Joyner 
45998eb6488eSEric Joyner /************************************************************************
46008eb6488eSEric Joyner  * ixgbe_sysctl_eee_state
46018eb6488eSEric Joyner  *
46028eb6488eSEric Joyner  *   Sysctl to set EEE power saving feature
46038eb6488eSEric Joyner  *   Values:
46048eb6488eSEric Joyner  *     0      - disable EEE
46058eb6488eSEric Joyner  *     1      - enable EEE
46068eb6488eSEric Joyner  *     (none) - get current device EEE state
46078eb6488eSEric Joyner  ************************************************************************/
46088eb6488eSEric Joyner static int
46098eb6488eSEric Joyner ixgbe_sysctl_eee_state(SYSCTL_HANDLER_ARGS)
46108eb6488eSEric Joyner {
4611b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = (struct ixgbe_softc *)arg1;
4612b1d5caf3SKevin Bowling 	device_t       dev = sc->dev;
4613ff06a8dbSJustin Hibbits 	if_t           ifp = iflib_get_ifp(sc->ctx);
46148eb6488eSEric Joyner 	int            curr_eee, new_eee, error = 0;
46158eb6488eSEric Joyner 	s32            retval;
46168eb6488eSEric Joyner 
4617b1d5caf3SKevin Bowling 	curr_eee = new_eee = !!(sc->feat_en & IXGBE_FEATURE_EEE);
46188eb6488eSEric Joyner 
46198eb6488eSEric Joyner 	error = sysctl_handle_int(oidp, &new_eee, 0, req);
46208eb6488eSEric Joyner 	if ((error) || (req->newptr == NULL))
46218eb6488eSEric Joyner 		return (error);
46228eb6488eSEric Joyner 
46238eb6488eSEric Joyner 	/* Nothing to do */
46248eb6488eSEric Joyner 	if (new_eee == curr_eee)
46258eb6488eSEric Joyner 		return (0);
46268eb6488eSEric Joyner 
46278eb6488eSEric Joyner 	/* Not supported */
4628b1d5caf3SKevin Bowling 	if (!(sc->feat_cap & IXGBE_FEATURE_EEE))
46298eb6488eSEric Joyner 		return (EINVAL);
46308eb6488eSEric Joyner 
46318eb6488eSEric Joyner 	/* Bounds checking */
46328eb6488eSEric Joyner 	if ((new_eee < 0) || (new_eee > 1))
46338eb6488eSEric Joyner 		return (EINVAL);
46348eb6488eSEric Joyner 
4635b1d5caf3SKevin Bowling 	retval = ixgbe_setup_eee(&sc->hw, new_eee);
46368eb6488eSEric Joyner 	if (retval) {
46378eb6488eSEric Joyner 		device_printf(dev, "Error in EEE setup: 0x%08X\n", retval);
46388eb6488eSEric Joyner 		return (EINVAL);
46398eb6488eSEric Joyner 	}
46408eb6488eSEric Joyner 
46418eb6488eSEric Joyner 	/* Restart auto-neg */
4642ff06a8dbSJustin Hibbits 	if_init(ifp, ifp);
46438eb6488eSEric Joyner 
46448eb6488eSEric Joyner 	device_printf(dev, "New EEE state: %d\n", new_eee);
46458eb6488eSEric Joyner 
46468eb6488eSEric Joyner 	/* Cache new value */
46478eb6488eSEric Joyner 	if (new_eee)
4648b1d5caf3SKevin Bowling 		sc->feat_en |= IXGBE_FEATURE_EEE;
46498eb6488eSEric Joyner 	else
4650b1d5caf3SKevin Bowling 		sc->feat_en &= ~IXGBE_FEATURE_EEE;
46518eb6488eSEric Joyner 
46528eb6488eSEric Joyner 	return (error);
46538eb6488eSEric Joyner } /* ixgbe_sysctl_eee_state */
46548eb6488eSEric Joyner 
46558eb6488eSEric Joyner /************************************************************************
46568eb6488eSEric Joyner  * ixgbe_init_device_features
46578eb6488eSEric Joyner  ************************************************************************/
46588eb6488eSEric Joyner static void
4659b1d5caf3SKevin Bowling ixgbe_init_device_features(struct ixgbe_softc *sc)
46608eb6488eSEric Joyner {
4661b1d5caf3SKevin Bowling 	sc->feat_cap = IXGBE_FEATURE_NETMAP
46628eb6488eSEric Joyner 	                  | IXGBE_FEATURE_RSS
46638eb6488eSEric Joyner 	                  | IXGBE_FEATURE_MSI
46648eb6488eSEric Joyner 	                  | IXGBE_FEATURE_MSIX
4665c19c7afeSEric Joyner 	                  | IXGBE_FEATURE_LEGACY_IRQ;
46668eb6488eSEric Joyner 
46678eb6488eSEric Joyner 	/* Set capabilities first... */
4668b1d5caf3SKevin Bowling 	switch (sc->hw.mac.type) {
46698eb6488eSEric Joyner 	case ixgbe_mac_82598EB:
4670b1d5caf3SKevin Bowling 		if (sc->hw.device_id == IXGBE_DEV_ID_82598AT)
4671b1d5caf3SKevin Bowling 			sc->feat_cap |= IXGBE_FEATURE_FAN_FAIL;
46728eb6488eSEric Joyner 		break;
46738eb6488eSEric Joyner 	case ixgbe_mac_X540:
4674b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_SRIOV;
4675b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_FDIR;
4676b1d5caf3SKevin Bowling 		if ((sc->hw.device_id == IXGBE_DEV_ID_X540_BYPASS) &&
4677b1d5caf3SKevin Bowling 		    (sc->hw.bus.func == 0))
4678b1d5caf3SKevin Bowling 			sc->feat_cap |= IXGBE_FEATURE_BYPASS;
46798eb6488eSEric Joyner 		break;
46808eb6488eSEric Joyner 	case ixgbe_mac_X550:
4681b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_TEMP_SENSOR;
4682b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_SRIOV;
4683b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_FDIR;
46848eb6488eSEric Joyner 		break;
46858eb6488eSEric Joyner 	case ixgbe_mac_X550EM_x:
4686b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_SRIOV;
4687b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_FDIR;
46888eb6488eSEric Joyner 		break;
46898eb6488eSEric Joyner 	case ixgbe_mac_X550EM_a:
4690b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_SRIOV;
4691b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_FDIR;
4692b1d5caf3SKevin Bowling 		sc->feat_cap &= ~IXGBE_FEATURE_LEGACY_IRQ;
4693b1d5caf3SKevin Bowling 		if ((sc->hw.device_id == IXGBE_DEV_ID_X550EM_A_1G_T) ||
4694b1d5caf3SKevin Bowling 		    (sc->hw.device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L)) {
4695b1d5caf3SKevin Bowling 			sc->feat_cap |= IXGBE_FEATURE_TEMP_SENSOR;
4696b1d5caf3SKevin Bowling 			sc->feat_cap |= IXGBE_FEATURE_EEE;
46978eb6488eSEric Joyner 		}
46988eb6488eSEric Joyner 		break;
46998eb6488eSEric Joyner 	case ixgbe_mac_82599EB:
4700b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_SRIOV;
4701b1d5caf3SKevin Bowling 		sc->feat_cap |= IXGBE_FEATURE_FDIR;
4702b1d5caf3SKevin Bowling 		if ((sc->hw.device_id == IXGBE_DEV_ID_82599_BYPASS) &&
4703b1d5caf3SKevin Bowling 		    (sc->hw.bus.func == 0))
4704b1d5caf3SKevin Bowling 			sc->feat_cap |= IXGBE_FEATURE_BYPASS;
4705b1d5caf3SKevin Bowling 		if (sc->hw.device_id == IXGBE_DEV_ID_82599_QSFP_SF_QP)
4706b1d5caf3SKevin Bowling 			sc->feat_cap &= ~IXGBE_FEATURE_LEGACY_IRQ;
47078eb6488eSEric Joyner 		break;
47088eb6488eSEric Joyner 	default:
47098eb6488eSEric Joyner 		break;
47108eb6488eSEric Joyner 	}
47118eb6488eSEric Joyner 
47128eb6488eSEric Joyner 	/* Enabled by default... */
47138eb6488eSEric Joyner 	/* Fan failure detection */
4714b1d5caf3SKevin Bowling 	if (sc->feat_cap & IXGBE_FEATURE_FAN_FAIL)
4715b1d5caf3SKevin Bowling 		sc->feat_en |= IXGBE_FEATURE_FAN_FAIL;
47168eb6488eSEric Joyner 	/* Netmap */
4717b1d5caf3SKevin Bowling 	if (sc->feat_cap & IXGBE_FEATURE_NETMAP)
4718b1d5caf3SKevin Bowling 		sc->feat_en |= IXGBE_FEATURE_NETMAP;
47198eb6488eSEric Joyner 	/* EEE */
4720b1d5caf3SKevin Bowling 	if (sc->feat_cap & IXGBE_FEATURE_EEE)
4721b1d5caf3SKevin Bowling 		sc->feat_en |= IXGBE_FEATURE_EEE;
47228eb6488eSEric Joyner 	/* Thermal Sensor */
4723b1d5caf3SKevin Bowling 	if (sc->feat_cap & IXGBE_FEATURE_TEMP_SENSOR)
4724b1d5caf3SKevin Bowling 		sc->feat_en |= IXGBE_FEATURE_TEMP_SENSOR;
47258eb6488eSEric Joyner 
47268eb6488eSEric Joyner 	/* Enabled via global sysctl... */
47278eb6488eSEric Joyner 	/* Flow Director */
47288eb6488eSEric Joyner 	if (ixgbe_enable_fdir) {
4729b1d5caf3SKevin Bowling 		if (sc->feat_cap & IXGBE_FEATURE_FDIR)
4730b1d5caf3SKevin Bowling 			sc->feat_en |= IXGBE_FEATURE_FDIR;
47318eb6488eSEric Joyner 		else
4732b1d5caf3SKevin Bowling 			device_printf(sc->dev, "Device does not support Flow Director. Leaving disabled.");
47338eb6488eSEric Joyner 	}
47346f37f232SEric Joyner 	/*
47358eb6488eSEric Joyner 	 * Message Signal Interrupts - Extended (MSI-X)
47368eb6488eSEric Joyner 	 * Normal MSI is only enabled if MSI-X calls fail.
4737758cc3dcSJack F Vogel 	 */
47388eb6488eSEric Joyner 	if (!ixgbe_enable_msix)
4739b1d5caf3SKevin Bowling 		sc->feat_cap &= ~IXGBE_FEATURE_MSIX;
47408eb6488eSEric Joyner 	/* Receive-Side Scaling (RSS) */
4741b1d5caf3SKevin Bowling 	if ((sc->feat_cap & IXGBE_FEATURE_RSS) && ixgbe_enable_rss)
4742b1d5caf3SKevin Bowling 		sc->feat_en |= IXGBE_FEATURE_RSS;
47438eb6488eSEric Joyner 
47448eb6488eSEric Joyner 	/* Disable features with unmet dependencies... */
47458eb6488eSEric Joyner 	/* No MSI-X */
4746b1d5caf3SKevin Bowling 	if (!(sc->feat_cap & IXGBE_FEATURE_MSIX)) {
4747b1d5caf3SKevin Bowling 		sc->feat_cap &= ~IXGBE_FEATURE_RSS;
4748b1d5caf3SKevin Bowling 		sc->feat_cap &= ~IXGBE_FEATURE_SRIOV;
4749b1d5caf3SKevin Bowling 		sc->feat_en &= ~IXGBE_FEATURE_RSS;
4750b1d5caf3SKevin Bowling 		sc->feat_en &= ~IXGBE_FEATURE_SRIOV;
47518eb6488eSEric Joyner 	}
47528eb6488eSEric Joyner } /* ixgbe_init_device_features */
47538eb6488eSEric Joyner 
47548eb6488eSEric Joyner /************************************************************************
47558eb6488eSEric Joyner  * ixgbe_check_fan_failure
47568eb6488eSEric Joyner  ************************************************************************/
47578eb6488eSEric Joyner static void
4758b1d5caf3SKevin Bowling ixgbe_check_fan_failure(struct ixgbe_softc *sc, u32 reg, bool in_interrupt)
47598eb6488eSEric Joyner {
47608eb6488eSEric Joyner 	u32 mask;
47618eb6488eSEric Joyner 
4762b1d5caf3SKevin Bowling 	mask = (in_interrupt) ? IXGBE_EICR_GPI_SDP1_BY_MAC(&sc->hw) :
47638eb6488eSEric Joyner 	    IXGBE_ESDP_SDP1;
47648eb6488eSEric Joyner 
47658eb6488eSEric Joyner 	if (reg & mask)
4766b1d5caf3SKevin Bowling 		device_printf(sc->dev, "\nCRITICAL: FAN FAILURE!! REPLACE IMMEDIATELY!!\n");
47678eb6488eSEric Joyner } /* ixgbe_check_fan_failure */
47687660e4eaSKevin Bowling 
47697660e4eaSKevin Bowling /************************************************************************
47707660e4eaSKevin Bowling  * ixgbe_sbuf_fw_version
47717660e4eaSKevin Bowling  ************************************************************************/
47727660e4eaSKevin Bowling static void
47737660e4eaSKevin Bowling ixgbe_sbuf_fw_version(struct ixgbe_hw *hw, struct sbuf *buf)
47747660e4eaSKevin Bowling {
47757660e4eaSKevin Bowling 	struct ixgbe_nvm_version nvm_ver = {0};
47767660e4eaSKevin Bowling 	uint16_t phyfw = 0;
47777660e4eaSKevin Bowling 	int status;
47785de5419bSKevin Bowling 	const char *space = "";
47797660e4eaSKevin Bowling 
47807660e4eaSKevin Bowling 	ixgbe_get_oem_prod_version(hw, &nvm_ver); /* OEM's NVM version */
47817660e4eaSKevin Bowling 	ixgbe_get_orom_version(hw, &nvm_ver); /* Option ROM */
47827660e4eaSKevin Bowling 	ixgbe_get_etk_id(hw, &nvm_ver); /* eTrack identifies a build in Intel's SCM */
47837660e4eaSKevin Bowling 	status = ixgbe_get_phy_firmware_version(hw, &phyfw);
47847660e4eaSKevin Bowling 
47855de5419bSKevin Bowling 	if (nvm_ver.oem_valid) {
47867660e4eaSKevin Bowling 		sbuf_printf(buf, "NVM OEM V%d.%d R%d", nvm_ver.oem_major,
47877660e4eaSKevin Bowling 		    nvm_ver.oem_minor, nvm_ver.oem_release);
47885de5419bSKevin Bowling 		space = " ";
47895de5419bSKevin Bowling 	}
47907660e4eaSKevin Bowling 
47915de5419bSKevin Bowling 	if (nvm_ver.or_valid) {
47925de5419bSKevin Bowling 		sbuf_printf(buf, "%sOption ROM V%d-b%d-p%d",
47935de5419bSKevin Bowling 		    space, nvm_ver.or_major, nvm_ver.or_build, nvm_ver.or_patch);
47945de5419bSKevin Bowling 		space = " ";
47955de5419bSKevin Bowling 	}
47967660e4eaSKevin Bowling 
47975de5419bSKevin Bowling 	if (nvm_ver.etk_id != ((NVM_VER_INVALID << NVM_ETK_SHIFT) |
47985de5419bSKevin Bowling 	    NVM_VER_INVALID)) {
47995de5419bSKevin Bowling 		sbuf_printf(buf, "%seTrack 0x%08x", space, nvm_ver.etk_id);
48005de5419bSKevin Bowling 		space = " ";
48015de5419bSKevin Bowling 	}
48027660e4eaSKevin Bowling 
48037660e4eaSKevin Bowling 	if (phyfw != 0 && status == IXGBE_SUCCESS)
48045de5419bSKevin Bowling 		sbuf_printf(buf, "%sPHY FW V%d", space, phyfw);
48057660e4eaSKevin Bowling } /* ixgbe_sbuf_fw_version */
48067660e4eaSKevin Bowling 
48077660e4eaSKevin Bowling /************************************************************************
48087660e4eaSKevin Bowling  * ixgbe_print_fw_version
48097660e4eaSKevin Bowling  ************************************************************************/
48107660e4eaSKevin Bowling static void
48117660e4eaSKevin Bowling ixgbe_print_fw_version(if_ctx_t ctx)
48127660e4eaSKevin Bowling {
4813b1d5caf3SKevin Bowling 	struct ixgbe_softc *sc = iflib_get_softc(ctx);
4814b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
4815b1d5caf3SKevin Bowling 	device_t dev = sc->dev;
48167660e4eaSKevin Bowling 	struct sbuf *buf;
48177660e4eaSKevin Bowling 	int error = 0;
48187660e4eaSKevin Bowling 
48197660e4eaSKevin Bowling 	buf = sbuf_new_auto();
48207660e4eaSKevin Bowling 	if (!buf) {
48217660e4eaSKevin Bowling 		device_printf(dev, "Could not allocate sbuf for output.\n");
48227660e4eaSKevin Bowling 		return;
48237660e4eaSKevin Bowling 	}
48247660e4eaSKevin Bowling 
48257660e4eaSKevin Bowling 	ixgbe_sbuf_fw_version(hw, buf);
48267660e4eaSKevin Bowling 
48277660e4eaSKevin Bowling 	error = sbuf_finish(buf);
48287660e4eaSKevin Bowling 	if (error)
48297660e4eaSKevin Bowling 		device_printf(dev, "Error finishing sbuf: %d\n", error);
48307660e4eaSKevin Bowling 	else if (sbuf_len(buf))
48317660e4eaSKevin Bowling 		device_printf(dev, "%s\n", sbuf_data(buf));
48327660e4eaSKevin Bowling 
48337660e4eaSKevin Bowling 	sbuf_delete(buf);
48347660e4eaSKevin Bowling } /* ixgbe_print_fw_version */
48357660e4eaSKevin Bowling 
48367660e4eaSKevin Bowling /************************************************************************
48377660e4eaSKevin Bowling  * ixgbe_sysctl_print_fw_version
48387660e4eaSKevin Bowling  ************************************************************************/
48397660e4eaSKevin Bowling static int
48407660e4eaSKevin Bowling ixgbe_sysctl_print_fw_version(SYSCTL_HANDLER_ARGS)
48417660e4eaSKevin Bowling {
4842b1d5caf3SKevin Bowling 	struct ixgbe_softc  *sc = (struct ixgbe_softc *)arg1;
4843b1d5caf3SKevin Bowling 	struct ixgbe_hw *hw = &sc->hw;
4844b1d5caf3SKevin Bowling 	device_t dev = sc->dev;
48457660e4eaSKevin Bowling 	struct sbuf *buf;
48467660e4eaSKevin Bowling 	int error = 0;
48477660e4eaSKevin Bowling 
48487660e4eaSKevin Bowling 	buf = sbuf_new_for_sysctl(NULL, NULL, 128, req);
48497660e4eaSKevin Bowling 	if (!buf) {
48507660e4eaSKevin Bowling 		device_printf(dev, "Could not allocate sbuf for output.\n");
48517660e4eaSKevin Bowling 		return (ENOMEM);
48527660e4eaSKevin Bowling 	}
48537660e4eaSKevin Bowling 
48547660e4eaSKevin Bowling 	ixgbe_sbuf_fw_version(hw, buf);
48557660e4eaSKevin Bowling 
48567660e4eaSKevin Bowling 	error = sbuf_finish(buf);
48577660e4eaSKevin Bowling 	if (error)
48587660e4eaSKevin Bowling 		device_printf(dev, "Error finishing sbuf: %d\n", error);
48597660e4eaSKevin Bowling 
48607660e4eaSKevin Bowling 	sbuf_delete(buf);
48617660e4eaSKevin Bowling 
48627660e4eaSKevin Bowling 	return (0);
48637660e4eaSKevin Bowling } /* ixgbe_sysctl_print_fw_version */
4864