2014-08-22 18:59:19 +00:00
|
|
|
/******************************************************************************
|
|
|
|
|
2018-06-18 20:32:53 +00:00
|
|
|
Copyright (c) 2013-2018, Intel Corporation
|
2014-08-22 18:59:19 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
3. Neither the name of the Intel Corporation nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived from
|
|
|
|
this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
/*$FreeBSD$*/
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
#include "iavf.h"
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* Driver version
|
|
|
|
*********************************************************************/
|
2018-10-12 22:40:54 +00:00
|
|
|
#define IAVF_DRIVER_VERSION_MAJOR 2
|
|
|
|
#define IAVF_DRIVER_VERSION_MINOR 0
|
|
|
|
#define IAVF_DRIVER_VERSION_BUILD 0
|
2018-05-01 18:50:12 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
#define IAVF_DRIVER_VERSION_STRING \
|
|
|
|
__XSTRING(IAVF_DRIVER_VERSION_MAJOR) "." \
|
|
|
|
__XSTRING(IAVF_DRIVER_VERSION_MINOR) "." \
|
|
|
|
__XSTRING(IAVF_DRIVER_VERSION_BUILD) "-k"
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* PCI Device ID Table
|
|
|
|
*
|
|
|
|
* Used by probe to select devices to load on
|
|
|
|
*
|
2018-06-18 20:12:54 +00:00
|
|
|
* ( Vendor ID, Device ID, Branding String )
|
2014-08-22 18:59:19 +00:00
|
|
|
*********************************************************************/
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
static pci_vendor_info_t iavf_vendor_info_array[] =
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
PVID(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF, "Intel(R) Ethernet Virtual Function 700 Series"),
|
|
|
|
PVID(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_X722_VF, "Intel(R) Ethernet Virtual Function 700 Series (X722)"),
|
|
|
|
PVID(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_ADAPTIVE_VF, "Intel(R) Ethernet Adaptive Virtual Function"),
|
2014-08-22 18:59:19 +00:00
|
|
|
/* required last entry */
|
2018-06-18 20:12:54 +00:00
|
|
|
PVID_END
|
2014-08-22 18:59:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* Function prototypes
|
|
|
|
*********************************************************************/
|
2018-10-15 17:23:41 +00:00
|
|
|
static void *iavf_register(device_t dev);
|
|
|
|
static int iavf_if_attach_pre(if_ctx_t ctx);
|
|
|
|
static int iavf_if_attach_post(if_ctx_t ctx);
|
|
|
|
static int iavf_if_detach(if_ctx_t ctx);
|
|
|
|
static int iavf_if_shutdown(if_ctx_t ctx);
|
|
|
|
static int iavf_if_suspend(if_ctx_t ctx);
|
|
|
|
static int iavf_if_resume(if_ctx_t ctx);
|
|
|
|
static int iavf_if_msix_intr_assign(if_ctx_t ctx, int msix);
|
|
|
|
static void iavf_if_enable_intr(if_ctx_t ctx);
|
|
|
|
static void iavf_if_disable_intr(if_ctx_t ctx);
|
|
|
|
static int iavf_if_rx_queue_intr_enable(if_ctx_t ctx, uint16_t rxqid);
|
|
|
|
static int iavf_if_tx_queue_intr_enable(if_ctx_t ctx, uint16_t txqid);
|
|
|
|
static int iavf_if_tx_queues_alloc(if_ctx_t ctx, caddr_t *vaddrs, uint64_t *paddrs, int ntxqs, int ntxqsets);
|
|
|
|
static int iavf_if_rx_queues_alloc(if_ctx_t ctx, caddr_t *vaddrs, uint64_t *paddrs, int nqs, int nqsets);
|
|
|
|
static void iavf_if_queues_free(if_ctx_t ctx);
|
|
|
|
static void iavf_if_update_admin_status(if_ctx_t ctx);
|
|
|
|
static void iavf_if_multi_set(if_ctx_t ctx);
|
|
|
|
static int iavf_if_mtu_set(if_ctx_t ctx, uint32_t mtu);
|
|
|
|
static void iavf_if_media_status(if_ctx_t ctx, struct ifmediareq *ifmr);
|
|
|
|
static int iavf_if_media_change(if_ctx_t ctx);
|
|
|
|
static int iavf_if_promisc_set(if_ctx_t ctx, int flags);
|
|
|
|
static void iavf_if_timer(if_ctx_t ctx, uint16_t qid);
|
|
|
|
static void iavf_if_vlan_register(if_ctx_t ctx, u16 vtag);
|
|
|
|
static void iavf_if_vlan_unregister(if_ctx_t ctx, u16 vtag);
|
|
|
|
static uint64_t iavf_if_get_counter(if_ctx_t ctx, ift_counter cnt);
|
|
|
|
static void iavf_if_stop(if_ctx_t ctx);
|
|
|
|
|
|
|
|
static int iavf_allocate_pci_resources(struct iavf_sc *);
|
|
|
|
static int iavf_reset_complete(struct i40e_hw *);
|
|
|
|
static int iavf_setup_vc(struct iavf_sc *);
|
|
|
|
static int iavf_reset(struct iavf_sc *);
|
|
|
|
static int iavf_vf_config(struct iavf_sc *);
|
|
|
|
static void iavf_init_filters(struct iavf_sc *);
|
|
|
|
static void iavf_free_pci_resources(struct iavf_sc *);
|
|
|
|
static void iavf_free_filters(struct iavf_sc *);
|
|
|
|
static void iavf_setup_interface(device_t, struct iavf_sc *);
|
|
|
|
static void iavf_add_device_sysctls(struct iavf_sc *);
|
|
|
|
static void iavf_enable_adminq_irq(struct i40e_hw *);
|
|
|
|
static void iavf_disable_adminq_irq(struct i40e_hw *);
|
|
|
|
static void iavf_enable_queue_irq(struct i40e_hw *, int);
|
|
|
|
static void iavf_disable_queue_irq(struct i40e_hw *, int);
|
|
|
|
static void iavf_config_rss(struct iavf_sc *);
|
|
|
|
static void iavf_stop(struct iavf_sc *);
|
|
|
|
|
|
|
|
static int iavf_add_mac_filter(struct iavf_sc *, u8 *, u16);
|
|
|
|
static int iavf_del_mac_filter(struct iavf_sc *sc, u8 *macaddr);
|
|
|
|
static int iavf_msix_que(void *);
|
|
|
|
static int iavf_msix_adminq(void *);
|
|
|
|
//static void iavf_del_multi(struct iavf_sc *sc);
|
|
|
|
static void iavf_init_multi(struct iavf_sc *sc);
|
|
|
|
static void iavf_configure_itr(struct iavf_sc *sc);
|
|
|
|
|
|
|
|
static int iavf_sysctl_rx_itr(SYSCTL_HANDLER_ARGS);
|
|
|
|
static int iavf_sysctl_tx_itr(SYSCTL_HANDLER_ARGS);
|
|
|
|
static int iavf_sysctl_current_speed(SYSCTL_HANDLER_ARGS);
|
|
|
|
static int iavf_sysctl_sw_filter_list(SYSCTL_HANDLER_ARGS);
|
|
|
|
static int iavf_sysctl_queue_interrupt_table(SYSCTL_HANDLER_ARGS);
|
|
|
|
static int iavf_sysctl_vf_reset(SYSCTL_HANDLER_ARGS);
|
|
|
|
static int iavf_sysctl_vflr_reset(SYSCTL_HANDLER_ARGS);
|
|
|
|
|
|
|
|
static void iavf_save_tunables(struct iavf_sc *);
|
2018-10-12 22:40:54 +00:00
|
|
|
static enum i40e_status_code
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_process_adminq(struct iavf_sc *, u16 *);
|
|
|
|
static int iavf_send_vc_msg(struct iavf_sc *sc, u32 op);
|
|
|
|
static int iavf_send_vc_msg_sleep(struct iavf_sc *sc, u32 op);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* FreeBSD Device Interface Entry Points
|
|
|
|
*********************************************************************/
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
static device_method_t iavf_methods[] = {
|
2014-08-22 18:59:19 +00:00
|
|
|
/* Device interface */
|
2018-10-15 17:23:41 +00:00
|
|
|
DEVMETHOD(device_register, iavf_register),
|
2018-06-18 20:12:54 +00:00
|
|
|
DEVMETHOD(device_probe, iflib_device_probe),
|
|
|
|
DEVMETHOD(device_attach, iflib_device_attach),
|
|
|
|
DEVMETHOD(device_detach, iflib_device_detach),
|
|
|
|
DEVMETHOD(device_shutdown, iflib_device_shutdown),
|
|
|
|
DEVMETHOD_END
|
2014-08-22 18:59:19 +00:00
|
|
|
};
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
static driver_t iavf_driver = {
|
|
|
|
"iavf", iavf_methods, sizeof(struct iavf_sc),
|
2014-08-22 18:59:19 +00:00
|
|
|
};
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
devclass_t iavf_devclass;
|
|
|
|
DRIVER_MODULE(iavf, pci, iavf_driver, iavf_devclass, 0, 0);
|
Add PNP info to PCI attachments of cbb, cxgb, ida, iwn, ixl, ixlv,
mfi, mps, mpr, mvs, my, oce, pcn, ral, rl. This only labels existing
pci device tables, and has no probe / attach code changes.
Reviewed by: imp, chuck
Submitted by: Lakhan Shiva Kamireddy <lakhanshiva@gmail.com>
Sponsored by: Google, Inc. (GSoC 2018)
Approved by: re (glen)
2018-09-26 17:12:30 +00:00
|
|
|
MODULE_PNP_INFO("U32:vendor;U32:device;U32:subvendor;U32:subdevice;U32:revision",
|
2018-10-15 17:23:41 +00:00
|
|
|
pci, iavf, iavf_vendor_info_array,
|
|
|
|
nitems(iavf_vendor_info_array) - 1);
|
2018-10-12 22:40:54 +00:00
|
|
|
MODULE_VERSION(iavf, 1);
|
|
|
|
|
|
|
|
MODULE_DEPEND(iavf, pci, 1, 1, 1);
|
|
|
|
MODULE_DEPEND(iavf, ether, 1, 1, 1);
|
|
|
|
MODULE_DEPEND(iavf, iflib, 1, 1, 1);
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
MALLOC_DEFINE(M_IAVF, "iavf", "iavf driver allocations");
|
|
|
|
|
|
|
|
static device_method_t iavf_if_methods[] = {
|
|
|
|
DEVMETHOD(ifdi_attach_pre, iavf_if_attach_pre),
|
|
|
|
DEVMETHOD(ifdi_attach_post, iavf_if_attach_post),
|
|
|
|
DEVMETHOD(ifdi_detach, iavf_if_detach),
|
|
|
|
DEVMETHOD(ifdi_shutdown, iavf_if_shutdown),
|
|
|
|
DEVMETHOD(ifdi_suspend, iavf_if_suspend),
|
|
|
|
DEVMETHOD(ifdi_resume, iavf_if_resume),
|
|
|
|
DEVMETHOD(ifdi_init, iavf_if_init),
|
|
|
|
DEVMETHOD(ifdi_stop, iavf_if_stop),
|
|
|
|
DEVMETHOD(ifdi_msix_intr_assign, iavf_if_msix_intr_assign),
|
|
|
|
DEVMETHOD(ifdi_intr_enable, iavf_if_enable_intr),
|
|
|
|
DEVMETHOD(ifdi_intr_disable, iavf_if_disable_intr),
|
|
|
|
DEVMETHOD(ifdi_rx_queue_intr_enable, iavf_if_rx_queue_intr_enable),
|
|
|
|
DEVMETHOD(ifdi_tx_queue_intr_enable, iavf_if_tx_queue_intr_enable),
|
|
|
|
DEVMETHOD(ifdi_tx_queues_alloc, iavf_if_tx_queues_alloc),
|
|
|
|
DEVMETHOD(ifdi_rx_queues_alloc, iavf_if_rx_queues_alloc),
|
|
|
|
DEVMETHOD(ifdi_queues_free, iavf_if_queues_free),
|
|
|
|
DEVMETHOD(ifdi_update_admin_status, iavf_if_update_admin_status),
|
|
|
|
DEVMETHOD(ifdi_multi_set, iavf_if_multi_set),
|
|
|
|
DEVMETHOD(ifdi_mtu_set, iavf_if_mtu_set),
|
|
|
|
DEVMETHOD(ifdi_media_status, iavf_if_media_status),
|
|
|
|
DEVMETHOD(ifdi_media_change, iavf_if_media_change),
|
|
|
|
DEVMETHOD(ifdi_promisc_set, iavf_if_promisc_set),
|
|
|
|
DEVMETHOD(ifdi_timer, iavf_if_timer),
|
|
|
|
DEVMETHOD(ifdi_vlan_register, iavf_if_vlan_register),
|
|
|
|
DEVMETHOD(ifdi_vlan_unregister, iavf_if_vlan_unregister),
|
|
|
|
DEVMETHOD(ifdi_get_counter, iavf_if_get_counter),
|
2018-06-18 20:12:54 +00:00
|
|
|
DEVMETHOD_END
|
|
|
|
};
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
static driver_t iavf_if_driver = {
|
|
|
|
"iavf_if", iavf_if_methods, sizeof(struct iavf_sc)
|
2018-06-18 20:12:54 +00:00
|
|
|
};
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
** TUNEABLE PARAMETERS:
|
|
|
|
*/
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
static SYSCTL_NODE(_hw, OID_AUTO, iavf, CTLFLAG_RD, 0,
|
|
|
|
"iavf driver parameters");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-05-01 18:50:12 +00:00
|
|
|
/*
|
|
|
|
* Different method for processing TX descriptor
|
|
|
|
* completion.
|
|
|
|
*/
|
2018-10-15 17:23:41 +00:00
|
|
|
static int iavf_enable_head_writeback = 0;
|
2018-10-12 22:40:54 +00:00
|
|
|
TUNABLE_INT("hw.iavf.enable_head_writeback",
|
2018-10-15 17:23:41 +00:00
|
|
|
&iavf_enable_head_writeback);
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_INT(_hw_iavf, OID_AUTO, enable_head_writeback, CTLFLAG_RDTUN,
|
2018-10-15 17:23:41 +00:00
|
|
|
&iavf_enable_head_writeback, 0,
|
2018-05-01 18:50:12 +00:00
|
|
|
"For detecting last completed TX descriptor by hardware, use value written by HW instead of checking descriptors");
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
static int iavf_core_debug_mask = 0;
|
2018-10-12 22:40:54 +00:00
|
|
|
TUNABLE_INT("hw.iavf.core_debug_mask",
|
2018-10-15 17:23:41 +00:00
|
|
|
&iavf_core_debug_mask);
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_INT(_hw_iavf, OID_AUTO, core_debug_mask, CTLFLAG_RDTUN,
|
2018-10-15 17:23:41 +00:00
|
|
|
&iavf_core_debug_mask, 0,
|
2018-10-12 22:40:54 +00:00
|
|
|
"Display debug statements that are printed in non-shared code");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
static int iavf_shared_debug_mask = 0;
|
2018-10-12 22:40:54 +00:00
|
|
|
TUNABLE_INT("hw.iavf.shared_debug_mask",
|
2018-10-15 17:23:41 +00:00
|
|
|
&iavf_shared_debug_mask);
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_INT(_hw_iavf, OID_AUTO, shared_debug_mask, CTLFLAG_RDTUN,
|
2018-10-15 17:23:41 +00:00
|
|
|
&iavf_shared_debug_mask, 0,
|
2018-10-12 22:40:54 +00:00
|
|
|
"Display debug statements that are printed in shared code");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
int iavf_rx_itr = IXL_ITR_8K;
|
|
|
|
TUNABLE_INT("hw.iavf.rx_itr", &iavf_rx_itr);
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_INT(_hw_iavf, OID_AUTO, rx_itr, CTLFLAG_RDTUN,
|
2018-10-15 17:23:41 +00:00
|
|
|
&iavf_rx_itr, 0, "RX Interrupt Rate");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
int iavf_tx_itr = IXL_ITR_4K;
|
|
|
|
TUNABLE_INT("hw.iavf.tx_itr", &iavf_tx_itr);
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_INT(_hw_iavf, OID_AUTO, tx_itr, CTLFLAG_RDTUN,
|
2018-10-15 17:23:41 +00:00
|
|
|
&iavf_tx_itr, 0, "TX Interrupt Rate");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
extern struct if_txrx ixl_txrx_hwb;
|
|
|
|
extern struct if_txrx ixl_txrx_dwb;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
static struct if_shared_ctx iavf_sctx_init = {
|
2018-06-18 20:12:54 +00:00
|
|
|
.isc_magic = IFLIB_MAGIC,
|
|
|
|
.isc_q_align = PAGE_SIZE,/* max(DBA_ALIGN, PAGE_SIZE) */
|
Assorted TSO fixes for em(4)/iflib(9) and dead code removal:
- Ever since the workaround for the silicon bug of TSO4 causing MAC hangs
was committed in r295133, CSUM_TSO always got disabled unconditionally
by em(4) on the first invocation of em_init_locked(). However, even with
that problem fixed, it turned out that for at least e. g. 82579 not all
necessary TSO workarounds are in place, still causing MAC hangs even at
Gigabit speed. Thus, for stable/11, TSO usage was deliberately disabled
in r323292 (r323293 for stable/10) for the EM-class by default, allowing
users to turn it on if it happens to work with their particular EM MAC
in a Gigabit-only environment.
In head, the TSO workaround for speeds other than Gigabit was lost with
the conversion to iflib(9) in r311849 (possibly along with another one
or two TSO workarounds). Yet at the same time, for EM-class MACs TSO4
got enabled by default again, causing device hangs. Therefore, change the
default for this hardware class back to have TSO4 off, allowing users
to turn it on manually if it happens to work in their environment as
we do in stable/{10,11}. An alternative would be to add a whitelist of
EM-class devices where TSO4 actually is reliable with the workarounds in
place, but given that the advantage of TSO at Gigabit speed is rather
limited - especially with the overhead of these workarounds -, that's
really not worth it. [1]
This change includes the addition of an isc_capabilities to struct
if_softc_ctx so iflib(9) can also handle interface capabilities that
shouldn't be enabled by default which is used to handle the default-off
capabilities of e1000 as suggested by shurd@ and moving their handling
from em_setup_interface() to em_if_attach_pre() accordingly.
- Although 82543 support TSO4 in theory, the former lem(4) didn't have
support for TSO4, presumably because TSO4 is even more broken in the
LEM-class of MACs than the later EM ones. Still, TSO4 for LEM-class
devices was enabled as part of the conversion to iflib(9) in r311849,
causing device hangs. So revert back to the pre-r311849 behavior of
not supporting TSO4 for LEM-class at all, which includes not creating
a TSO DMA tag in iflib(9) for devices not having IFCAP_TSO4 set. [2]
- In fact, the FreeBSD TCP stack can handle a TSO size of IP_MAXPACKET
(65535) rather than FREEBSD_TSO_SIZE_MAX (65518). However, the TSO
DMA must have a maxsize of the maximum TSO size plus the size of a
VLAN header for software VLAN tagging. The iflib(9) converted em(4),
thus, first correctly sets scctx->isc_tx_tso_size_max to EM_TSO_SIZE
in em_if_attach_pre(), but later on overrides it with IP_MAXPACKET
in em_setup_interface() (apparently, left-over from pre-iflib(9)
times). So remove the later and correct iflib(9) to correctly cap
the maximum TSO size reported to the stack at IP_MAXPACKET. While at
it, let iflib(9) use if_sethwtsomax*().
This change includes the addition of isc_tso_max{seg,}size DMA engine
constraints for the TSO DMA tag to struct if_shared_ctx and letting
iflib_txsd_alloc() automatically adjust the maxsize of that tag in case
IFCAP_VLAN_MTU is supported as requested by shurd@.
- Move the if_setifheaderlen(9) call for adjusting the maximum Ethernet
header length from {ixgbe,ixl,ixlv,ixv,em}_setup_interface() to iflib(9)
so adjustment is automatically done in case IFCAP_VLAN_MTU is supported.
As a consequence, this adjustment now is also done in case of bnxt(4)
which missed it previously.
- Move the reduction of the maximum TSO segment count reported to the
stack by the number of m_pullup(9) calls (which in the worst case,
can add another mbuf and, thus, the requirement for another DMA
segment each) in the transmit path for performance reasons from
em_setup_interface() to iflib_txsd_alloc() as these pull-ups are now
done in iflib_parse_header() rather than in the no longer existing
em_xmit(). Moreover, this optimization applies to all drivers using
iflib(9) and not just em(4); all in-tree iflib(9) consumers still
have enough room to handle full size TSO packets. Also, reduce the
adjustment to the maximum number of m_pullup(9)'s now performed in
iflib_parse_header().
- Prior to the conversion of em(4)/igb(4)/lem(4) and ixl(4) to iflib(9)
in r311849 and r335338 respectively, these drivers didn't enable
IFCAP_VLAN_HWFILTER by default due to VLAN events not being passed
through by lagg(4). With iflib(9), IFCAP_VLAN_HWFILTER was turned on
by default but also lagg(4) was fixed in that regard in r203548. So
just remove the now redundant and defunct IFCAP_VLAN_HWFILTER handling
in {em,ixl,ixlv}_setup_interface().
- Nuke other redundant IFCAP_* setting in {em,ixl,ixlv}_setup_interface()
which is (more completely) already done in {em,ixl,ixlv}_if_attach_pre()
now.
- Remove some redundant/dead setting of scctx->isc_tx_csum_flags in
em_if_attach_pre().
- Remove some IFCAP_* duplicated either directly or indirectly (e. g.
via IFCAP_HWCSUM) in {EM,IGB,IXL}_CAPS.
- Don't bother to fiddle with IFCAP_HWSTATS in ixgbe(4)/ixgbev(4) as
iflib(9) adds that capability unconditionally.
- Remove some unused macros from em(4).
- Bump __FreeBSD_version as some of the above changes require the modules
of drivers using iflib(9) to be recompiled.
Okayed by: sbruno@ at 201806 DevSummit Transport Working Group [1]
Reviewed by: sbruno (earlier version), erj
PR: 219428 (part of; comment #10) [1], 220997 (part of; comment #3) [2]
Differential Revision: https://reviews.freebsd.org/D15720
2018-07-15 19:04:23 +00:00
|
|
|
.isc_tx_maxsize = IXL_TSO_SIZE + sizeof(struct ether_vlan_header),
|
2018-10-12 22:40:54 +00:00
|
|
|
.isc_tx_maxsegsize = IXL_MAX_DMA_SEG_SIZE,
|
Assorted TSO fixes for em(4)/iflib(9) and dead code removal:
- Ever since the workaround for the silicon bug of TSO4 causing MAC hangs
was committed in r295133, CSUM_TSO always got disabled unconditionally
by em(4) on the first invocation of em_init_locked(). However, even with
that problem fixed, it turned out that for at least e. g. 82579 not all
necessary TSO workarounds are in place, still causing MAC hangs even at
Gigabit speed. Thus, for stable/11, TSO usage was deliberately disabled
in r323292 (r323293 for stable/10) for the EM-class by default, allowing
users to turn it on if it happens to work with their particular EM MAC
in a Gigabit-only environment.
In head, the TSO workaround for speeds other than Gigabit was lost with
the conversion to iflib(9) in r311849 (possibly along with another one
or two TSO workarounds). Yet at the same time, for EM-class MACs TSO4
got enabled by default again, causing device hangs. Therefore, change the
default for this hardware class back to have TSO4 off, allowing users
to turn it on manually if it happens to work in their environment as
we do in stable/{10,11}. An alternative would be to add a whitelist of
EM-class devices where TSO4 actually is reliable with the workarounds in
place, but given that the advantage of TSO at Gigabit speed is rather
limited - especially with the overhead of these workarounds -, that's
really not worth it. [1]
This change includes the addition of an isc_capabilities to struct
if_softc_ctx so iflib(9) can also handle interface capabilities that
shouldn't be enabled by default which is used to handle the default-off
capabilities of e1000 as suggested by shurd@ and moving their handling
from em_setup_interface() to em_if_attach_pre() accordingly.
- Although 82543 support TSO4 in theory, the former lem(4) didn't have
support for TSO4, presumably because TSO4 is even more broken in the
LEM-class of MACs than the later EM ones. Still, TSO4 for LEM-class
devices was enabled as part of the conversion to iflib(9) in r311849,
causing device hangs. So revert back to the pre-r311849 behavior of
not supporting TSO4 for LEM-class at all, which includes not creating
a TSO DMA tag in iflib(9) for devices not having IFCAP_TSO4 set. [2]
- In fact, the FreeBSD TCP stack can handle a TSO size of IP_MAXPACKET
(65535) rather than FREEBSD_TSO_SIZE_MAX (65518). However, the TSO
DMA must have a maxsize of the maximum TSO size plus the size of a
VLAN header for software VLAN tagging. The iflib(9) converted em(4),
thus, first correctly sets scctx->isc_tx_tso_size_max to EM_TSO_SIZE
in em_if_attach_pre(), but later on overrides it with IP_MAXPACKET
in em_setup_interface() (apparently, left-over from pre-iflib(9)
times). So remove the later and correct iflib(9) to correctly cap
the maximum TSO size reported to the stack at IP_MAXPACKET. While at
it, let iflib(9) use if_sethwtsomax*().
This change includes the addition of isc_tso_max{seg,}size DMA engine
constraints for the TSO DMA tag to struct if_shared_ctx and letting
iflib_txsd_alloc() automatically adjust the maxsize of that tag in case
IFCAP_VLAN_MTU is supported as requested by shurd@.
- Move the if_setifheaderlen(9) call for adjusting the maximum Ethernet
header length from {ixgbe,ixl,ixlv,ixv,em}_setup_interface() to iflib(9)
so adjustment is automatically done in case IFCAP_VLAN_MTU is supported.
As a consequence, this adjustment now is also done in case of bnxt(4)
which missed it previously.
- Move the reduction of the maximum TSO segment count reported to the
stack by the number of m_pullup(9) calls (which in the worst case,
can add another mbuf and, thus, the requirement for another DMA
segment each) in the transmit path for performance reasons from
em_setup_interface() to iflib_txsd_alloc() as these pull-ups are now
done in iflib_parse_header() rather than in the no longer existing
em_xmit(). Moreover, this optimization applies to all drivers using
iflib(9) and not just em(4); all in-tree iflib(9) consumers still
have enough room to handle full size TSO packets. Also, reduce the
adjustment to the maximum number of m_pullup(9)'s now performed in
iflib_parse_header().
- Prior to the conversion of em(4)/igb(4)/lem(4) and ixl(4) to iflib(9)
in r311849 and r335338 respectively, these drivers didn't enable
IFCAP_VLAN_HWFILTER by default due to VLAN events not being passed
through by lagg(4). With iflib(9), IFCAP_VLAN_HWFILTER was turned on
by default but also lagg(4) was fixed in that regard in r203548. So
just remove the now redundant and defunct IFCAP_VLAN_HWFILTER handling
in {em,ixl,ixlv}_setup_interface().
- Nuke other redundant IFCAP_* setting in {em,ixl,ixlv}_setup_interface()
which is (more completely) already done in {em,ixl,ixlv}_if_attach_pre()
now.
- Remove some redundant/dead setting of scctx->isc_tx_csum_flags in
em_if_attach_pre().
- Remove some IFCAP_* duplicated either directly or indirectly (e. g.
via IFCAP_HWCSUM) in {EM,IGB,IXL}_CAPS.
- Don't bother to fiddle with IFCAP_HWSTATS in ixgbe(4)/ixgbev(4) as
iflib(9) adds that capability unconditionally.
- Remove some unused macros from em(4).
- Bump __FreeBSD_version as some of the above changes require the modules
of drivers using iflib(9) to be recompiled.
Okayed by: sbruno@ at 201806 DevSummit Transport Working Group [1]
Reviewed by: sbruno (earlier version), erj
PR: 219428 (part of; comment #10) [1], 220997 (part of; comment #3) [2]
Differential Revision: https://reviews.freebsd.org/D15720
2018-07-15 19:04:23 +00:00
|
|
|
.isc_tso_maxsize = IXL_TSO_SIZE + sizeof(struct ether_vlan_header),
|
2018-10-12 22:40:54 +00:00
|
|
|
.isc_tso_maxsegsize = IXL_MAX_DMA_SEG_SIZE,
|
2018-06-18 20:12:54 +00:00
|
|
|
.isc_rx_maxsize = 16384,
|
2018-10-12 22:40:54 +00:00
|
|
|
.isc_rx_nsegments = IXL_MAX_RX_SEGS,
|
|
|
|
.isc_rx_maxsegsize = IXL_MAX_DMA_SEG_SIZE,
|
2018-06-18 20:12:54 +00:00
|
|
|
.isc_nfl = 1,
|
|
|
|
.isc_ntxqs = 1,
|
|
|
|
.isc_nrxqs = 1,
|
|
|
|
|
|
|
|
.isc_admin_intrcnt = 1,
|
2018-10-15 17:23:41 +00:00
|
|
|
.isc_vendor_info = iavf_vendor_info_array,
|
2018-10-12 22:40:54 +00:00
|
|
|
.isc_driver_version = IAVF_DRIVER_VERSION_STRING,
|
2018-10-15 17:23:41 +00:00
|
|
|
.isc_driver = &iavf_if_driver,
|
ixl/iavf(4): Fix TSO offloads when TXCSUM is disabled
From Jake:
The iflib stack does not disable TSO automatically when TXCSUM is
disabled, instead assuming that the driver will correctly handle TSOs
even when CSUM_IP is not set.
This results in iflib calling ixl_isc_txd_encap with packets which have
CSUM_IP_TSO, but do not have CSUM_IP or CSUM_IP_TCP set. Because of
this, ixl_tx_setup_offload will not setup the IPv4 checksum offloading.
This results in bad TSO packets being sent if a user disables TXCSUM
without disabling TSO.
Fix this by updating the ixl_tx_setup_offload function to check both
CSUM_IP and CSUM_IP_TSO when deciding whether to enable IPv4 checksums.
Once this is corrected, another issue for TSO packets is revealed. The
driver sets IFLIB_NEED_ZERO_CSUM in order to enable a work around that
causes the ip->sum field to be zero'd. This is necessary for ixl
hardware to correctly perform TSOs.
However, if TXCSUM is disabled, then the work around is not enabled, as
CSUM_IP will not be set when the iflib stack checks to see if it should
clear the sum field.
Fix this by adding IFLIB_TSO_INIT_IP to the iflib flags for the iavf and
ixl interface files.
It is uncertain if the hardware needs IFLIB_NEED_ZERO_CSUM for any other
case besides TSO, so leave that flag assigned. It may be worth
investigating to see if this work around flag could be disabled in
a future change.
Once both of these changes are made, the ixl driver should correctly
offload TSO packets when TSO4 offload is enabled, regardless of whether
TXCSUM is enabled or disabled.
Submitted by: Jacob Keller <jacob.e.keller@intel.com>
Reviewed by: erj@, shurd@
MFC after: 0 days
Sponsored by: Intel Corporation
Differential Revision: https://reviews.freebsd.org/D17900
2018-11-08 19:10:43 +00:00
|
|
|
.isc_flags = IFLIB_NEED_SCRATCH | IFLIB_NEED_ZERO_CSUM | IFLIB_TSO_INIT_IP | IFLIB_IS_VF,
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
.isc_nrxd_min = {IXL_MIN_RING},
|
|
|
|
.isc_ntxd_min = {IXL_MIN_RING},
|
|
|
|
.isc_nrxd_max = {IXL_MAX_RING},
|
|
|
|
.isc_ntxd_max = {IXL_MAX_RING},
|
|
|
|
.isc_nrxd_default = {IXL_DEFAULT_RING},
|
|
|
|
.isc_ntxd_default = {IXL_DEFAULT_RING},
|
|
|
|
};
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
if_shared_ctx_t iavf_sctx = &iavf_sctx_init;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/*** Functions ***/
|
|
|
|
static void *
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_register(device_t dev)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
return (iavf_sctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_allocate_pci_resources(struct iavf_sc *sc)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
device_t dev = iflib_get_dev(sc->vsi.ctx);
|
|
|
|
int rid;
|
|
|
|
|
|
|
|
/* Map BAR0 */
|
|
|
|
rid = PCIR_BAR(0);
|
|
|
|
sc->pci_mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
|
|
|
|
&rid, RF_ACTIVE);
|
|
|
|
|
|
|
|
if (!(sc->pci_mem)) {
|
|
|
|
device_printf(dev, "Unable to allocate bus resource: PCI memory\n");
|
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save off the PCI information */
|
|
|
|
hw->vendor_id = pci_get_vendor(dev);
|
|
|
|
hw->device_id = pci_get_device(dev);
|
|
|
|
hw->revision_id = pci_read_config(dev, PCIR_REVID, 1);
|
|
|
|
hw->subsystem_vendor_id =
|
|
|
|
pci_read_config(dev, PCIR_SUBVEND_0, 2);
|
|
|
|
hw->subsystem_device_id =
|
|
|
|
pci_read_config(dev, PCIR_SUBDEV_0, 2);
|
|
|
|
|
|
|
|
hw->bus.device = pci_get_slot(dev);
|
|
|
|
hw->bus.func = pci_get_function(dev);
|
|
|
|
|
|
|
|
/* Save off register access information */
|
|
|
|
sc->osdep.mem_bus_space_tag =
|
|
|
|
rman_get_bustag(sc->pci_mem);
|
|
|
|
sc->osdep.mem_bus_space_handle =
|
|
|
|
rman_get_bushandle(sc->pci_mem);
|
|
|
|
sc->osdep.mem_bus_space_size = rman_get_size(sc->pci_mem);
|
|
|
|
sc->osdep.flush_reg = I40E_VFGEN_RSTAT;
|
|
|
|
sc->osdep.dev = dev;
|
|
|
|
|
|
|
|
sc->hw.hw_addr = (u8 *) &sc->osdep.mem_bus_space_handle;
|
|
|
|
sc->hw.back = &sc->osdep;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_attach_pre(if_ctx_t ctx)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-06-18 20:12:54 +00:00
|
|
|
device_t dev;
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc;
|
2018-10-12 22:40:54 +00:00
|
|
|
struct i40e_hw *hw;
|
|
|
|
struct ixl_vsi *vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
if_softc_ctx_t scctx;
|
|
|
|
int error = 0;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
dev = iflib_get_dev(ctx);
|
|
|
|
sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2014-08-22 18:59:19 +00:00
|
|
|
vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
vsi->back = sc;
|
2018-10-12 22:40:54 +00:00
|
|
|
sc->dev = dev;
|
|
|
|
hw = &sc->hw;
|
|
|
|
|
|
|
|
vsi->dev = dev;
|
2018-06-18 20:12:54 +00:00
|
|
|
vsi->hw = &sc->hw;
|
|
|
|
vsi->num_vlans = 0;
|
|
|
|
vsi->ctx = ctx;
|
|
|
|
vsi->media = iflib_get_media(ctx);
|
|
|
|
vsi->shared = scctx = iflib_get_softc_ctx(ctx);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_save_tunables(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* Do PCI setup - map BAR0, etc */
|
2018-10-15 17:23:41 +00:00
|
|
|
if (iavf_allocate_pci_resources(sc)) {
|
2014-08-22 18:59:19 +00:00
|
|
|
device_printf(dev, "%s: Allocation of PCI resources failed\n",
|
|
|
|
__func__);
|
|
|
|
error = ENXIO;
|
|
|
|
goto err_early;
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_init(sc, "Allocated PCI resources and MSIX vectors\n");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/*
|
|
|
|
* XXX: This is called by init_shared_code in the PF driver,
|
|
|
|
* but the rest of that function does not support VFs.
|
|
|
|
*/
|
2014-08-22 18:59:19 +00:00
|
|
|
error = i40e_set_mac_type(hw);
|
|
|
|
if (error) {
|
|
|
|
device_printf(dev, "%s: set_mac_type failed: %d\n",
|
|
|
|
__func__, error);
|
|
|
|
goto err_pci_res;
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_reset_complete(hw);
|
2014-08-22 18:59:19 +00:00
|
|
|
if (error) {
|
|
|
|
device_printf(dev, "%s: Device is still being reset\n",
|
|
|
|
__func__);
|
|
|
|
goto err_pci_res;
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_init(sc, "VF Device is ready for configuration\n");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* Sets up Admin Queue */
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_setup_vc(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
if (error) {
|
2014-11-06 23:45:05 +00:00
|
|
|
device_printf(dev, "%s: Error setting up PF comms, %d\n",
|
2014-08-22 18:59:19 +00:00
|
|
|
__func__, error);
|
|
|
|
goto err_pci_res;
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_init(sc, "PF API version verified\n");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* Need API version before sending reset message */
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_reset(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
if (error) {
|
|
|
|
device_printf(dev, "VF reset failed; reload the driver\n");
|
|
|
|
goto err_aq;
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_init(sc, "VF reset complete\n");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* Ask for VF config from PF */
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_vf_config(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
if (error) {
|
2014-11-06 23:45:05 +00:00
|
|
|
device_printf(dev, "Error getting configuration from PF: %d\n",
|
|
|
|
error);
|
2014-08-22 18:59:19 +00:00
|
|
|
goto err_aq;
|
|
|
|
}
|
|
|
|
|
2016-08-07 18:12:36 +00:00
|
|
|
device_printf(dev, "VSIs %d, QPs %d, MSIX %d, RSS sizes: key %d lut %d\n",
|
2014-08-22 18:59:19 +00:00
|
|
|
sc->vf_res->num_vsis,
|
|
|
|
sc->vf_res->num_queue_pairs,
|
|
|
|
sc->vf_res->max_vectors,
|
2016-08-07 18:12:36 +00:00
|
|
|
sc->vf_res->rss_key_size,
|
|
|
|
sc->vf_res->rss_lut_size);
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_info(sc, "Capabilities=%b\n",
|
|
|
|
sc->vf_res->vf_cap_flags, IAVF_PRINTF_VF_OFFLOAD_FLAGS);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* got VF config message back from PF, now we can parse it */
|
|
|
|
for (int i = 0; i < sc->vf_res->num_vsis; i++) {
|
2018-10-12 22:40:54 +00:00
|
|
|
/* XXX: We only use the first VSI we find */
|
2014-08-22 18:59:19 +00:00
|
|
|
if (sc->vf_res->vsi_res[i].vsi_type == I40E_VSI_SRIOV)
|
|
|
|
sc->vsi_res = &sc->vf_res->vsi_res[i];
|
|
|
|
}
|
|
|
|
if (!sc->vsi_res) {
|
|
|
|
device_printf(dev, "%s: no LAN VSI found\n", __func__);
|
2014-11-06 23:45:05 +00:00
|
|
|
error = EIO;
|
2014-08-22 18:59:19 +00:00
|
|
|
goto err_res_buf;
|
|
|
|
}
|
2018-06-18 20:12:54 +00:00
|
|
|
vsi->id = sc->vsi_res->vsi_id;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_init(sc, "Resource Acquisition complete\n");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* If no mac address was assigned just make a random one */
|
2018-10-15 17:23:41 +00:00
|
|
|
if (!iavf_check_ether_addr(hw->mac.addr)) {
|
2014-08-22 18:59:19 +00:00
|
|
|
u8 addr[ETHER_ADDR_LEN];
|
|
|
|
arc4rand(&addr, sizeof(addr), 0);
|
|
|
|
addr[0] &= 0xFE;
|
|
|
|
addr[0] |= 0x02;
|
|
|
|
bcopy(addr, hw->mac.addr, sizeof(addr));
|
|
|
|
}
|
2018-06-18 20:12:54 +00:00
|
|
|
bcopy(hw->mac.addr, hw->mac.perm_addr, ETHER_ADDR_LEN);
|
|
|
|
iflib_set_mac(ctx, hw->mac.addr);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* Allocate filter lists */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_init_filters(sc);
|
2018-05-01 18:50:12 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* Fill out more iflib parameters */
|
2018-10-12 22:40:54 +00:00
|
|
|
scctx->isc_ntxqsets_max = scctx->isc_nrxqsets_max =
|
|
|
|
sc->vsi_res->num_queue_pairs;
|
|
|
|
if (vsi->enable_head_writeback) {
|
|
|
|
scctx->isc_txqsizes[0] = roundup2(scctx->isc_ntxd[0]
|
|
|
|
* sizeof(struct i40e_tx_desc) + sizeof(u32), DBA_ALIGN);
|
|
|
|
scctx->isc_txrx = &ixl_txrx_hwb;
|
|
|
|
} else {
|
|
|
|
scctx->isc_txqsizes[0] = roundup2(scctx->isc_ntxd[0]
|
|
|
|
* sizeof(struct i40e_tx_desc), DBA_ALIGN);
|
|
|
|
scctx->isc_txrx = &ixl_txrx_dwb;
|
|
|
|
}
|
|
|
|
scctx->isc_rxqsizes[0] = roundup2(scctx->isc_nrxd[0]
|
|
|
|
* sizeof(union i40e_32byte_rx_desc), DBA_ALIGN);
|
|
|
|
scctx->isc_msix_bar = PCIR_BAR(IXL_MSIX_BAR);
|
|
|
|
scctx->isc_tx_nsegments = IXL_MAX_TX_SEGS;
|
|
|
|
scctx->isc_tx_tso_segments_max = IXL_MAX_TSO_SEGS;
|
|
|
|
scctx->isc_tx_tso_size_max = IXL_TSO_SIZE;
|
|
|
|
scctx->isc_tx_tso_segsize_max = IXL_MAX_DMA_SEG_SIZE;
|
|
|
|
scctx->isc_rss_table_size = IXL_RSS_VSI_LUT_SIZE;
|
2018-06-18 20:12:54 +00:00
|
|
|
scctx->isc_tx_csum_flags = CSUM_OFFLOAD;
|
Assorted TSO fixes for em(4)/iflib(9) and dead code removal:
- Ever since the workaround for the silicon bug of TSO4 causing MAC hangs
was committed in r295133, CSUM_TSO always got disabled unconditionally
by em(4) on the first invocation of em_init_locked(). However, even with
that problem fixed, it turned out that for at least e. g. 82579 not all
necessary TSO workarounds are in place, still causing MAC hangs even at
Gigabit speed. Thus, for stable/11, TSO usage was deliberately disabled
in r323292 (r323293 for stable/10) for the EM-class by default, allowing
users to turn it on if it happens to work with their particular EM MAC
in a Gigabit-only environment.
In head, the TSO workaround for speeds other than Gigabit was lost with
the conversion to iflib(9) in r311849 (possibly along with another one
or two TSO workarounds). Yet at the same time, for EM-class MACs TSO4
got enabled by default again, causing device hangs. Therefore, change the
default for this hardware class back to have TSO4 off, allowing users
to turn it on manually if it happens to work in their environment as
we do in stable/{10,11}. An alternative would be to add a whitelist of
EM-class devices where TSO4 actually is reliable with the workarounds in
place, but given that the advantage of TSO at Gigabit speed is rather
limited - especially with the overhead of these workarounds -, that's
really not worth it. [1]
This change includes the addition of an isc_capabilities to struct
if_softc_ctx so iflib(9) can also handle interface capabilities that
shouldn't be enabled by default which is used to handle the default-off
capabilities of e1000 as suggested by shurd@ and moving their handling
from em_setup_interface() to em_if_attach_pre() accordingly.
- Although 82543 support TSO4 in theory, the former lem(4) didn't have
support for TSO4, presumably because TSO4 is even more broken in the
LEM-class of MACs than the later EM ones. Still, TSO4 for LEM-class
devices was enabled as part of the conversion to iflib(9) in r311849,
causing device hangs. So revert back to the pre-r311849 behavior of
not supporting TSO4 for LEM-class at all, which includes not creating
a TSO DMA tag in iflib(9) for devices not having IFCAP_TSO4 set. [2]
- In fact, the FreeBSD TCP stack can handle a TSO size of IP_MAXPACKET
(65535) rather than FREEBSD_TSO_SIZE_MAX (65518). However, the TSO
DMA must have a maxsize of the maximum TSO size plus the size of a
VLAN header for software VLAN tagging. The iflib(9) converted em(4),
thus, first correctly sets scctx->isc_tx_tso_size_max to EM_TSO_SIZE
in em_if_attach_pre(), but later on overrides it with IP_MAXPACKET
in em_setup_interface() (apparently, left-over from pre-iflib(9)
times). So remove the later and correct iflib(9) to correctly cap
the maximum TSO size reported to the stack at IP_MAXPACKET. While at
it, let iflib(9) use if_sethwtsomax*().
This change includes the addition of isc_tso_max{seg,}size DMA engine
constraints for the TSO DMA tag to struct if_shared_ctx and letting
iflib_txsd_alloc() automatically adjust the maxsize of that tag in case
IFCAP_VLAN_MTU is supported as requested by shurd@.
- Move the if_setifheaderlen(9) call for adjusting the maximum Ethernet
header length from {ixgbe,ixl,ixlv,ixv,em}_setup_interface() to iflib(9)
so adjustment is automatically done in case IFCAP_VLAN_MTU is supported.
As a consequence, this adjustment now is also done in case of bnxt(4)
which missed it previously.
- Move the reduction of the maximum TSO segment count reported to the
stack by the number of m_pullup(9) calls (which in the worst case,
can add another mbuf and, thus, the requirement for another DMA
segment each) in the transmit path for performance reasons from
em_setup_interface() to iflib_txsd_alloc() as these pull-ups are now
done in iflib_parse_header() rather than in the no longer existing
em_xmit(). Moreover, this optimization applies to all drivers using
iflib(9) and not just em(4); all in-tree iflib(9) consumers still
have enough room to handle full size TSO packets. Also, reduce the
adjustment to the maximum number of m_pullup(9)'s now performed in
iflib_parse_header().
- Prior to the conversion of em(4)/igb(4)/lem(4) and ixl(4) to iflib(9)
in r311849 and r335338 respectively, these drivers didn't enable
IFCAP_VLAN_HWFILTER by default due to VLAN events not being passed
through by lagg(4). With iflib(9), IFCAP_VLAN_HWFILTER was turned on
by default but also lagg(4) was fixed in that regard in r203548. So
just remove the now redundant and defunct IFCAP_VLAN_HWFILTER handling
in {em,ixl,ixlv}_setup_interface().
- Nuke other redundant IFCAP_* setting in {em,ixl,ixlv}_setup_interface()
which is (more completely) already done in {em,ixl,ixlv}_if_attach_pre()
now.
- Remove some redundant/dead setting of scctx->isc_tx_csum_flags in
em_if_attach_pre().
- Remove some IFCAP_* duplicated either directly or indirectly (e. g.
via IFCAP_HWCSUM) in {EM,IGB,IXL}_CAPS.
- Don't bother to fiddle with IFCAP_HWSTATS in ixgbe(4)/ixgbev(4) as
iflib(9) adds that capability unconditionally.
- Remove some unused macros from em(4).
- Bump __FreeBSD_version as some of the above changes require the modules
of drivers using iflib(9) to be recompiled.
Okayed by: sbruno@ at 201806 DevSummit Transport Working Group [1]
Reviewed by: sbruno (earlier version), erj
PR: 219428 (part of; comment #10) [1], 220997 (part of; comment #3) [2]
Differential Revision: https://reviews.freebsd.org/D15720
2018-07-15 19:04:23 +00:00
|
|
|
scctx->isc_capabilities = scctx->isc_capenable = IXL_CAPS;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
return (0);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
err_res_buf:
|
2018-10-15 17:23:41 +00:00
|
|
|
free(sc->vf_res, M_IAVF);
|
2018-06-18 20:12:54 +00:00
|
|
|
err_aq:
|
|
|
|
i40e_shutdown_adminq(hw);
|
|
|
|
err_pci_res:
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_free_pci_resources(sc);
|
2018-06-18 20:12:54 +00:00
|
|
|
err_early:
|
|
|
|
return (error);
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_attach_post(if_ctx_t ctx)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
|
|
|
device_t dev;
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc;
|
2018-06-18 20:12:54 +00:00
|
|
|
struct i40e_hw *hw;
|
|
|
|
struct ixl_vsi *vsi;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
INIT_DBG_DEV(dev, "begin");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
dev = iflib_get_dev(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
sc = iflib_get_softc(ctx);
|
|
|
|
vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
vsi->ifp = iflib_get_ifp(ctx);
|
|
|
|
hw = &sc->hw;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Save off determined number of queues for interface */
|
|
|
|
vsi->num_rx_queues = vsi->shared->isc_nrxqsets;
|
|
|
|
vsi->num_tx_queues = vsi->shared->isc_ntxqsets;
|
|
|
|
|
2018-05-01 18:50:12 +00:00
|
|
|
/* Setup the stack interface */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_setup_interface(dev, sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-05-01 18:50:12 +00:00
|
|
|
INIT_DBG_DEV(dev, "Interface setup complete");
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* Initialize statistics & add sysctls */
|
2014-08-22 18:59:19 +00:00
|
|
|
bzero(&sc->vsi.eth_stats, sizeof(struct i40e_eth_stats));
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_add_device_sysctls(sc);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
sc->init_state = IAVF_INIT_READY;
|
2018-10-12 22:40:54 +00:00
|
|
|
atomic_store_rel_32(&sc->queues_enabled, 0);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* We want AQ enabled early for init */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_adminq_irq(hw);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2014-08-22 18:59:19 +00:00
|
|
|
INIT_DBG_DEV(dev, "end");
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2014-08-22 18:59:19 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/**
|
|
|
|
* XXX: iflib always ignores the return value of detach()
|
|
|
|
* -> This means that this isn't allowed to fail
|
|
|
|
*/
|
2014-08-22 18:59:19 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_detach(if_ctx_t ctx)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
struct i40e_hw *hw = &sc->hw;
|
2018-10-12 22:40:54 +00:00
|
|
|
device_t dev = sc->dev;
|
2018-06-18 20:12:54 +00:00
|
|
|
enum i40e_status_code status;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
INIT_DBG_DEV(dev, "begin");
|
|
|
|
|
2018-05-01 18:50:12 +00:00
|
|
|
/* Remove all the media and link information */
|
2018-10-12 22:40:54 +00:00
|
|
|
ifmedia_removeall(vsi->media);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_disable_adminq_irq(hw);
|
2017-02-10 01:04:11 +00:00
|
|
|
status = i40e_shutdown_adminq(&sc->hw);
|
|
|
|
if (status != I40E_SUCCESS) {
|
|
|
|
device_printf(dev,
|
|
|
|
"i40e_shutdown_adminq() failed with status %s\n",
|
|
|
|
i40e_stat_str(hw, status));
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
free(sc->vf_res, M_IAVF);
|
|
|
|
iavf_free_pci_resources(sc);
|
|
|
|
iavf_free_filters(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
INIT_DBG_DEV(dev, "end");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_shutdown(if_ctx_t ctx)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
return (0);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_suspend(if_ctx_t ctx)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
return (0);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_resume(if_ctx_t ctx)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2014-08-22 18:59:19 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg_sleep(struct iavf_sc *sc, u32 op)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
if_ctx_t ctx = sc->vsi.ctx;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
error = ixl_vc_send_cmd(sc, op);
|
|
|
|
if (error != 0) {
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_vc(sc, "Error sending %b: %d\n", op, IAVF_FLAGS, error);
|
2018-10-12 22:40:54 +00:00
|
|
|
return (error);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Don't wait for a response if the device is being detached. */
|
|
|
|
if (!iflib_in_detach(ctx)) {
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_vc(sc, "Sleeping for op %b\n", op, IAVF_FLAGS);
|
2018-10-12 22:40:54 +00:00
|
|
|
error = sx_sleep(ixl_vc_get_op_chan(sc, op),
|
2018-10-15 17:23:41 +00:00
|
|
|
iflib_ctx_lock_get(ctx), PRI_MAX, "iavf_vc", IAVF_AQ_TIMEOUT);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
if (error == EWOULDBLOCK)
|
2018-10-15 17:23:41 +00:00
|
|
|
device_printf(sc->dev, "%b timed out\n", op, IAVF_FLAGS);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(struct iavf_sc *sc, u32 op)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
int error = 0;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
error = ixl_vc_send_cmd(sc, op);
|
|
|
|
if (error != 0)
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_vc(sc, "Error sending %b: %d\n", op, IAVF_FLAGS, error);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2014-11-06 23:45:05 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_init_queues(struct ixl_vsi *vsi)
|
2014-11-06 23:45:05 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
if_softc_ctx_t scctx = vsi->shared;
|
|
|
|
struct ixl_tx_queue *tx_que = vsi->tx_queues;
|
|
|
|
struct ixl_rx_queue *rx_que = vsi->rx_queues;
|
|
|
|
struct rx_ring *rxr;
|
|
|
|
|
|
|
|
for (int i = 0; i < vsi->num_tx_queues; i++, tx_que++)
|
|
|
|
ixl_init_tx_ring(vsi, tx_que);
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
for (int i = 0; i < vsi->num_rx_queues; i++, rx_que++) {
|
|
|
|
rxr = &rx_que->rxr;
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
if (scctx->isc_max_frame_size <= MCLBYTES)
|
|
|
|
rxr->mbuf_sz = MCLBYTES;
|
|
|
|
else
|
|
|
|
rxr->mbuf_sz = MJUMPAGESIZE;
|
|
|
|
|
|
|
|
wr32(vsi->hw, rxr->tail, 0);
|
2014-11-06 23:45:05 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_init(if_ctx_t ctx)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
struct ifnet *ifp = iflib_get_ifp(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
u8 tmpaddr[ETHER_ADDR_LEN];
|
2018-06-18 20:12:54 +00:00
|
|
|
int error = 0;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
INIT_DBG_IF(ifp, "begin");
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
MPASS(sx_xlocked(iflib_ctx_lock_get(ctx)));
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_reset_complete(hw);
|
2018-10-12 22:40:54 +00:00
|
|
|
if (error) {
|
|
|
|
device_printf(sc->dev, "%s: VF reset failed\n",
|
|
|
|
__func__);
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
if (!i40e_check_asq_alive(hw)) {
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_info(sc, "ASQ is not alive, re-initializing AQ\n");
|
2018-10-12 22:40:54 +00:00
|
|
|
pci_enable_busmaster(sc->dev);
|
|
|
|
i40e_shutdown_adminq(hw);
|
|
|
|
i40e_init_adminq(hw);
|
2014-11-06 23:45:05 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Make sure queues are disabled */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_DISABLE_QUEUES);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
bcopy(IF_LLADDR(ifp), tmpaddr, ETHER_ADDR_LEN);
|
|
|
|
if (!cmp_etheraddr(hw->mac.addr, tmpaddr) &&
|
|
|
|
(i40e_validate_mac_addr(tmpaddr) == I40E_SUCCESS)) {
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_del_mac_filter(sc, hw->mac.addr);
|
2018-10-12 22:40:54 +00:00
|
|
|
if (error == 0)
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_DEL_MAC_FILTER);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
bcopy(tmpaddr, hw->mac.addr, ETH_ALEN);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_add_mac_filter(sc, hw->mac.addr, 0);
|
2018-10-12 22:40:54 +00:00
|
|
|
if (!error || error == EEXIST)
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_ADD_MAC_FILTER);
|
2018-10-12 22:40:54 +00:00
|
|
|
iflib_set_mac(ctx, hw->mac.addr);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2014-11-06 23:45:05 +00:00
|
|
|
/* Prepare the queues for operation */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_init_queues(vsi);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2016-08-07 18:12:36 +00:00
|
|
|
/* Set initial ITR values */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_configure_itr(sc);
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_CONFIGURE_QUEUES);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* Set up RSS */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_config_rss(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* Map vectors */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_MAP_VECTORS);
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Init SW TX ring indices */
|
|
|
|
if (vsi->enable_head_writeback)
|
|
|
|
ixl_init_tx_cidx(vsi);
|
|
|
|
else
|
|
|
|
ixl_init_tx_rsqs(vsi);
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Configure promiscuous mode */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_promisc_set(ctx, if_getflags(ifp));
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Enable queues */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg_sleep(sc, IAVF_FLAG_AQ_ENABLE_QUEUES);
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
sc->init_state = IAVF_RUNNING;
|
2014-11-06 23:45:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2018-10-15 17:23:41 +00:00
|
|
|
* iavf_attach() helper function; initalizes the admin queue
|
2014-11-06 23:45:05 +00:00
|
|
|
* and attempts to establish contact with the PF by
|
|
|
|
* retrying the initial "API version" message several times
|
|
|
|
* or until the PF responds.
|
|
|
|
*/
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_setup_vc(struct iavf_sc *sc)
|
2014-11-06 23:45:05 +00:00
|
|
|
{
|
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
device_t dev = sc->dev;
|
|
|
|
int error = 0, ret_error = 0, asq_retries = 0;
|
|
|
|
bool send_api_ver_retried = 0;
|
|
|
|
|
|
|
|
/* Need to set these AQ paramters before initializing AQ */
|
|
|
|
hw->aq.num_arq_entries = IXL_AQ_LEN;
|
|
|
|
hw->aq.num_asq_entries = IXL_AQ_LEN;
|
2016-08-07 18:12:36 +00:00
|
|
|
hw->aq.arq_buf_size = IXL_AQ_BUF_SZ;
|
|
|
|
hw->aq.asq_buf_size = IXL_AQ_BUF_SZ;
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
for (int i = 0; i < IAVF_AQ_MAX_ERR; i++) {
|
2014-11-06 23:45:05 +00:00
|
|
|
/* Initialize admin queue */
|
|
|
|
error = i40e_init_adminq(hw);
|
|
|
|
if (error) {
|
|
|
|
device_printf(dev, "%s: init_adminq failed: %d\n",
|
|
|
|
__func__, error);
|
|
|
|
ret_error = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_init(sc, "Initialized Admin Queue; starting"
|
2016-05-12 18:21:17 +00:00
|
|
|
" send_api_ver attempt %d", i+1);
|
2014-11-06 23:45:05 +00:00
|
|
|
|
|
|
|
retry_send:
|
|
|
|
/* Send VF's API version */
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_send_api_ver(sc);
|
2014-11-06 23:45:05 +00:00
|
|
|
if (error) {
|
|
|
|
i40e_shutdown_adminq(hw);
|
|
|
|
ret_error = 2;
|
|
|
|
device_printf(dev, "%s: unable to send api"
|
|
|
|
" version to PF on attempt %d, error %d\n",
|
|
|
|
__func__, i+1, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
asq_retries = 0;
|
|
|
|
while (!i40e_asq_done(hw)) {
|
2018-10-15 17:23:41 +00:00
|
|
|
if (++asq_retries > IAVF_AQ_MAX_ERR) {
|
2014-11-06 23:45:05 +00:00
|
|
|
i40e_shutdown_adminq(hw);
|
2016-08-07 18:12:36 +00:00
|
|
|
device_printf(dev, "Admin Queue timeout "
|
|
|
|
"(waiting for send_api_ver), %d more tries...\n",
|
2018-10-15 17:23:41 +00:00
|
|
|
IAVF_AQ_MAX_ERR - (i + 1));
|
2014-11-06 23:45:05 +00:00
|
|
|
ret_error = 3;
|
|
|
|
break;
|
|
|
|
}
|
2016-08-07 18:12:36 +00:00
|
|
|
i40e_msec_pause(10);
|
2014-11-06 23:45:05 +00:00
|
|
|
}
|
2018-10-15 17:23:41 +00:00
|
|
|
if (asq_retries > IAVF_AQ_MAX_ERR)
|
2014-11-06 23:45:05 +00:00
|
|
|
continue;
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_init(sc, "Sent API version message to PF");
|
2014-11-06 23:45:05 +00:00
|
|
|
|
|
|
|
/* Verify that the VF accepts the PF's API version */
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_verify_api_ver(sc);
|
2014-11-06 23:45:05 +00:00
|
|
|
if (error == ETIMEDOUT) {
|
|
|
|
if (!send_api_ver_retried) {
|
|
|
|
/* Resend message, one more time */
|
2017-07-14 00:10:51 +00:00
|
|
|
send_api_ver_retried = true;
|
2014-11-06 23:45:05 +00:00
|
|
|
device_printf(dev,
|
|
|
|
"%s: Timeout while verifying API version on first"
|
|
|
|
" try!\n", __func__);
|
|
|
|
goto retry_send;
|
|
|
|
} else {
|
|
|
|
device_printf(dev,
|
|
|
|
"%s: Timeout while verifying API version on second"
|
|
|
|
" try!\n", __func__);
|
|
|
|
ret_error = 4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (error) {
|
|
|
|
device_printf(dev,
|
|
|
|
"%s: Unable to verify API version,"
|
2016-08-07 18:12:36 +00:00
|
|
|
" error %s\n", __func__, i40e_stat_str(hw, error));
|
2014-11-06 23:45:05 +00:00
|
|
|
ret_error = 5;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret_error >= 4)
|
|
|
|
i40e_shutdown_adminq(hw);
|
|
|
|
return (ret_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2018-10-15 17:23:41 +00:00
|
|
|
* iavf_attach() helper function; asks the PF for this VF's
|
2014-11-06 23:45:05 +00:00
|
|
|
* configuration, and saves the information if it receives it.
|
|
|
|
*/
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_vf_config(struct iavf_sc *sc)
|
2014-11-06 23:45:05 +00:00
|
|
|
{
|
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
device_t dev = sc->dev;
|
|
|
|
int bufsz, error = 0, ret_error = 0;
|
|
|
|
int asq_retries, retried = 0;
|
|
|
|
|
|
|
|
retry_config:
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_send_vf_config_msg(sc);
|
2014-11-06 23:45:05 +00:00
|
|
|
if (error) {
|
|
|
|
device_printf(dev,
|
|
|
|
"%s: Unable to send VF config request, attempt %d,"
|
|
|
|
" error %d\n", __func__, retried + 1, error);
|
|
|
|
ret_error = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
asq_retries = 0;
|
|
|
|
while (!i40e_asq_done(hw)) {
|
2018-10-15 17:23:41 +00:00
|
|
|
if (++asq_retries > IAVF_AQ_MAX_ERR) {
|
2014-11-06 23:45:05 +00:00
|
|
|
device_printf(dev, "%s: Admin Queue timeout "
|
|
|
|
"(waiting for send_vf_config_msg), attempt %d\n",
|
|
|
|
__func__, retried + 1);
|
|
|
|
ret_error = 3;
|
|
|
|
goto fail;
|
|
|
|
}
|
2016-08-07 18:12:36 +00:00
|
|
|
i40e_msec_pause(10);
|
2014-11-06 23:45:05 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_init(sc, "Sent VF config message to PF, attempt %d\n",
|
2014-11-06 23:45:05 +00:00
|
|
|
retried + 1);
|
|
|
|
|
|
|
|
if (!sc->vf_res) {
|
2018-05-01 18:50:12 +00:00
|
|
|
bufsz = sizeof(struct virtchnl_vf_resource) +
|
|
|
|
(I40E_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource));
|
2018-10-15 17:23:41 +00:00
|
|
|
sc->vf_res = malloc(bufsz, M_IAVF, M_NOWAIT);
|
2014-11-06 23:45:05 +00:00
|
|
|
if (!sc->vf_res) {
|
|
|
|
device_printf(dev,
|
|
|
|
"%s: Unable to allocate memory for VF configuration"
|
|
|
|
" message from PF on attempt %d\n", __func__, retried + 1);
|
|
|
|
ret_error = 1;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for VF config response */
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_get_vf_config(sc);
|
2014-11-06 23:45:05 +00:00
|
|
|
if (error == ETIMEDOUT) {
|
|
|
|
/* The 1st time we timeout, send the configuration message again */
|
|
|
|
if (!retried) {
|
|
|
|
retried++;
|
|
|
|
goto retry_config;
|
|
|
|
}
|
2016-05-12 18:21:17 +00:00
|
|
|
device_printf(dev,
|
2018-10-15 17:23:41 +00:00
|
|
|
"%s: iavf_get_vf_config() timed out waiting for a response\n",
|
2016-05-12 18:21:17 +00:00
|
|
|
__func__);
|
2014-11-06 23:45:05 +00:00
|
|
|
}
|
|
|
|
if (error) {
|
|
|
|
device_printf(dev,
|
|
|
|
"%s: Unable to get VF configuration from PF after %d tries!\n",
|
|
|
|
__func__, retried + 1);
|
|
|
|
ret_error = 4;
|
|
|
|
}
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
fail:
|
2018-10-15 17:23:41 +00:00
|
|
|
free(sc->vf_res, M_IAVF);
|
2014-11-06 23:45:05 +00:00
|
|
|
done:
|
|
|
|
return (ret_error);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_msix_intr_assign(if_ctx_t ctx, int msix)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
struct ixl_rx_queue *rx_que = vsi->rx_queues;
|
2018-06-18 20:12:54 +00:00
|
|
|
struct ixl_tx_queue *tx_que = vsi->tx_queues;
|
|
|
|
int err, i, rid, vector = 0;
|
|
|
|
char buf[16];
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
MPASS(vsi->shared->isc_nrxqsets > 0);
|
|
|
|
MPASS(vsi->shared->isc_ntxqsets > 0);
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* Admin Que is vector 0*/
|
|
|
|
rid = vector + 1;
|
|
|
|
err = iflib_irq_alloc_generic(ctx, &vsi->irq, rid, IFLIB_INTR_ADMIN,
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_msix_adminq, sc, 0, "aq");
|
2018-06-18 20:12:54 +00:00
|
|
|
if (err) {
|
|
|
|
iflib_irq_free(ctx, &vsi->irq);
|
2018-10-12 22:40:54 +00:00
|
|
|
device_printf(iflib_get_dev(ctx),
|
|
|
|
"Failed to register Admin Que handler");
|
2018-06-18 20:12:54 +00:00
|
|
|
return (err);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now set up the stations */
|
2018-10-12 22:40:54 +00:00
|
|
|
for (i = 0, vector = 1; i < vsi->shared->isc_nrxqsets; i++, vector++, rx_que++) {
|
2018-06-18 20:12:54 +00:00
|
|
|
rid = vector + 1;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "rxq%d", i);
|
2018-10-12 22:40:54 +00:00
|
|
|
err = iflib_irq_alloc_generic(ctx, &rx_que->que_irq, rid,
|
2018-10-15 17:23:41 +00:00
|
|
|
IFLIB_INTR_RX, iavf_msix_que, rx_que, rx_que->rxr.me, buf);
|
2018-10-12 22:40:54 +00:00
|
|
|
/* XXX: Does the driver work as expected if there are fewer num_rx_queues than
|
|
|
|
* what's expected in the iflib context? */
|
2018-06-18 20:12:54 +00:00
|
|
|
if (err) {
|
2018-10-12 22:40:54 +00:00
|
|
|
device_printf(iflib_get_dev(ctx),
|
|
|
|
"Failed to allocate queue RX int vector %d, err: %d\n", i, err);
|
2018-06-18 20:12:54 +00:00
|
|
|
vsi->num_rx_queues = i + 1;
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-10-12 22:40:54 +00:00
|
|
|
rx_que->msix = vector;
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
bzero(buf, sizeof(buf));
|
|
|
|
|
|
|
|
for (i = 0; i < vsi->shared->isc_ntxqsets; i++, tx_que++) {
|
2018-06-18 20:12:54 +00:00
|
|
|
snprintf(buf, sizeof(buf), "txq%d", i);
|
2018-10-12 22:40:54 +00:00
|
|
|
iflib_softirq_alloc_generic(ctx,
|
|
|
|
&vsi->rx_queues[i % vsi->shared->isc_nrxqsets].que_irq,
|
|
|
|
IFLIB_INTR_TX, tx_que, tx_que->txr.me, buf);
|
|
|
|
|
|
|
|
/* TODO: Maybe call a strategy function for this to figure out which
|
|
|
|
* interrupts to map Tx queues to. I don't know if there's an immediately
|
|
|
|
* better way than this other than a user-supplied map, though. */
|
|
|
|
tx_que->msix = (i % vsi->shared->isc_nrxqsets) + 1;
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
fail:
|
|
|
|
iflib_irq_free(ctx, &vsi->irq);
|
2018-10-12 22:40:54 +00:00
|
|
|
rx_que = vsi->rx_queues;
|
|
|
|
for (int i = 0; i < vsi->num_rx_queues; i++, rx_que++)
|
|
|
|
iflib_irq_free(ctx, &rx_que->que_irq);
|
2018-06-18 20:12:54 +00:00
|
|
|
return (err);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable all interrupts */
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_enable_intr(if_ctx_t ctx)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_intr(vsi);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable all interrupts */
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_disable_intr(if_ctx_t ctx)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_disable_intr(vsi);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_rx_queue_intr_enable(if_ctx_t ctx, uint16_t rxqid)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
struct i40e_hw *hw = vsi->hw;
|
|
|
|
struct ixl_rx_queue *rx_que = &vsi->rx_queues[rxqid];
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_queue_irq(hw, rx_que->msix - 1);
|
2018-10-12 22:40:54 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_tx_queue_intr_enable(if_ctx_t ctx, uint16_t txqid)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
struct i40e_hw *hw = vsi->hw;
|
|
|
|
struct ixl_tx_queue *tx_que = &vsi->tx_queues[txqid];
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_queue_irq(hw, tx_que->msix - 1);
|
2018-06-18 20:12:54 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_tx_queues_alloc(if_ctx_t ctx, caddr_t *vaddrs, uint64_t *paddrs, int ntxqs, int ntxqsets)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
if_softc_ctx_t scctx = vsi->shared;
|
2018-06-18 20:12:54 +00:00
|
|
|
struct ixl_tx_queue *que;
|
2018-10-12 22:40:54 +00:00
|
|
|
int i, j, error = 0;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
MPASS(scctx->isc_ntxqsets > 0);
|
2018-06-18 20:12:54 +00:00
|
|
|
MPASS(ntxqs == 1);
|
2018-10-12 22:40:54 +00:00
|
|
|
MPASS(scctx->isc_ntxqsets == ntxqsets);
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
/* Allocate queue structure memory */
|
|
|
|
if (!(vsi->tx_queues =
|
2018-10-15 17:23:41 +00:00
|
|
|
(struct ixl_tx_queue *) malloc(sizeof(struct ixl_tx_queue) *ntxqsets, M_IAVF, M_NOWAIT | M_ZERO))) {
|
2018-06-18 20:12:54 +00:00
|
|
|
device_printf(iflib_get_dev(ctx), "Unable to allocate TX ring memory\n");
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0, que = vsi->tx_queues; i < ntxqsets; i++, que++) {
|
|
|
|
struct tx_ring *txr = &que->txr;
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
txr->me = i;
|
|
|
|
que->vsi = vsi;
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
if (!vsi->enable_head_writeback) {
|
|
|
|
/* Allocate report status array */
|
2018-10-15 17:23:41 +00:00
|
|
|
if (!(txr->tx_rsq = malloc(sizeof(qidx_t) * scctx->isc_ntxd[0], M_IAVF, M_NOWAIT))) {
|
2018-10-12 22:40:54 +00:00
|
|
|
device_printf(iflib_get_dev(ctx), "failed to allocate tx_rsq memory\n");
|
|
|
|
error = ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
/* Init report status array */
|
|
|
|
for (j = 0; j < scctx->isc_ntxd[0]; j++)
|
|
|
|
txr->tx_rsq[j] = QIDX_INVALID;
|
|
|
|
}
|
2018-06-18 20:12:54 +00:00
|
|
|
/* get the virtual and physical address of the hardware queues */
|
|
|
|
txr->tail = I40E_QTX_TAIL1(txr->me);
|
2018-10-12 22:40:54 +00:00
|
|
|
txr->tx_base = (struct i40e_tx_desc *)vaddrs[i * ntxqs];
|
|
|
|
txr->tx_paddr = paddrs[i * ntxqs];
|
2018-06-18 20:12:54 +00:00
|
|
|
txr->que = que;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
2018-10-12 22:40:54 +00:00
|
|
|
fail:
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_queues_free(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
return (error);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_rx_queues_alloc(if_ctx_t ctx, caddr_t *vaddrs, uint64_t *paddrs, int nrxqs, int nrxqsets)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
struct ixl_rx_queue *que;
|
2018-10-12 22:40:54 +00:00
|
|
|
int i, error = 0;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
#ifdef INVARIANTS
|
|
|
|
if_softc_ctx_t scctx = vsi->shared;
|
|
|
|
MPASS(scctx->isc_nrxqsets > 0);
|
2018-06-18 20:12:54 +00:00
|
|
|
MPASS(nrxqs == 1);
|
2018-10-12 22:40:54 +00:00
|
|
|
MPASS(scctx->isc_nrxqsets == nrxqsets);
|
|
|
|
#endif
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
/* Allocate queue structure memory */
|
|
|
|
if (!(vsi->rx_queues =
|
|
|
|
(struct ixl_rx_queue *) malloc(sizeof(struct ixl_rx_queue) *
|
2018-10-15 17:23:41 +00:00
|
|
|
nrxqsets, M_IAVF, M_NOWAIT | M_ZERO))) {
|
2018-06-18 20:12:54 +00:00
|
|
|
device_printf(iflib_get_dev(ctx), "Unable to allocate RX ring memory\n");
|
2018-10-12 22:40:54 +00:00
|
|
|
error = ENOMEM;
|
|
|
|
goto fail;
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0, que = vsi->rx_queues; i < nrxqsets; i++, que++) {
|
|
|
|
struct rx_ring *rxr = &que->rxr;
|
|
|
|
|
|
|
|
rxr->me = i;
|
|
|
|
que->vsi = vsi;
|
|
|
|
|
|
|
|
/* get the virtual and physical address of the hardware queues */
|
|
|
|
rxr->tail = I40E_QRX_TAIL1(rxr->me);
|
2018-10-12 22:40:54 +00:00
|
|
|
rxr->rx_base = (union i40e_rx_desc *)vaddrs[i * nrxqs];
|
|
|
|
rxr->rx_paddr = paddrs[i * nrxqs];
|
2018-06-18 20:12:54 +00:00
|
|
|
rxr->que = que;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
2018-10-12 22:40:54 +00:00
|
|
|
fail:
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_queues_free(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
return (error);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_queues_free(if_ctx_t ctx)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
|
|
|
|
if (!vsi->enable_head_writeback) {
|
|
|
|
struct ixl_tx_queue *que;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for (i = 0, que = vsi->tx_queues; i < vsi->shared->isc_ntxqsets; i++, que++) {
|
|
|
|
struct tx_ring *txr = &que->txr;
|
|
|
|
if (txr->tx_rsq != NULL) {
|
2018-10-15 17:23:41 +00:00
|
|
|
free(txr->tx_rsq, M_IAVF);
|
2018-10-12 22:40:54 +00:00
|
|
|
txr->tx_rsq = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
if (vsi->tx_queues != NULL) {
|
2018-10-15 17:23:41 +00:00
|
|
|
free(vsi->tx_queues, M_IAVF);
|
2018-06-18 20:12:54 +00:00
|
|
|
vsi->tx_queues = NULL;
|
|
|
|
}
|
|
|
|
if (vsi->rx_queues != NULL) {
|
2018-10-15 17:23:41 +00:00
|
|
|
free(vsi->rx_queues, M_IAVF);
|
2018-06-18 20:12:54 +00:00
|
|
|
vsi->rx_queues = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_check_aq_errors(struct iavf_sc *sc)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
device_t dev = sc->dev;
|
|
|
|
u32 reg, oldreg;
|
|
|
|
u8 aq_error = false;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* check for Admin queue errors */
|
|
|
|
oldreg = reg = rd32(hw, hw->aq.arq.len);
|
|
|
|
if (reg & I40E_VF_ARQLEN1_ARQVFE_MASK) {
|
|
|
|
device_printf(dev, "ARQ VF Error detected\n");
|
|
|
|
reg &= ~I40E_VF_ARQLEN1_ARQVFE_MASK;
|
|
|
|
aq_error = true;
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
2018-10-12 22:40:54 +00:00
|
|
|
if (reg & I40E_VF_ARQLEN1_ARQOVFL_MASK) {
|
|
|
|
device_printf(dev, "ARQ Overflow Error detected\n");
|
|
|
|
reg &= ~I40E_VF_ARQLEN1_ARQOVFL_MASK;
|
|
|
|
aq_error = true;
|
|
|
|
}
|
|
|
|
if (reg & I40E_VF_ARQLEN1_ARQCRIT_MASK) {
|
|
|
|
device_printf(dev, "ARQ Critical Error detected\n");
|
|
|
|
reg &= ~I40E_VF_ARQLEN1_ARQCRIT_MASK;
|
|
|
|
aq_error = true;
|
|
|
|
}
|
|
|
|
if (oldreg != reg)
|
|
|
|
wr32(hw, hw->aq.arq.len, reg);
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
oldreg = reg = rd32(hw, hw->aq.asq.len);
|
|
|
|
if (reg & I40E_VF_ATQLEN1_ATQVFE_MASK) {
|
|
|
|
device_printf(dev, "ASQ VF Error detected\n");
|
|
|
|
reg &= ~I40E_VF_ATQLEN1_ATQVFE_MASK;
|
|
|
|
aq_error = true;
|
|
|
|
}
|
|
|
|
if (reg & I40E_VF_ATQLEN1_ATQOVFL_MASK) {
|
|
|
|
device_printf(dev, "ASQ Overflow Error detected\n");
|
|
|
|
reg &= ~I40E_VF_ATQLEN1_ATQOVFL_MASK;
|
|
|
|
aq_error = true;
|
|
|
|
}
|
|
|
|
if (reg & I40E_VF_ATQLEN1_ATQCRIT_MASK) {
|
|
|
|
device_printf(dev, "ASQ Critical Error detected\n");
|
|
|
|
reg &= ~I40E_VF_ATQLEN1_ATQCRIT_MASK;
|
|
|
|
aq_error = true;
|
|
|
|
}
|
|
|
|
if (oldreg != reg)
|
|
|
|
wr32(hw, hw->aq.asq.len, reg);
|
|
|
|
|
|
|
|
if (aq_error) {
|
|
|
|
device_printf(dev, "WARNING: Stopping VF!\n");
|
|
|
|
/*
|
|
|
|
* A VF reset might not be enough to fix a problem here;
|
|
|
|
* a PF reset could be required.
|
|
|
|
*/
|
2018-10-15 17:23:41 +00:00
|
|
|
sc->init_state = IAVF_RESET_REQUIRED;
|
|
|
|
iavf_stop(sc);
|
|
|
|
iavf_request_reset(sc);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
return (aq_error ? EIO : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static enum i40e_status_code
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_process_adminq(struct iavf_sc *sc, u16 *pending)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
|
|
|
enum i40e_status_code status = I40E_SUCCESS;
|
|
|
|
struct i40e_arq_event_info event;
|
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
struct virtchnl_msg *v_msg;
|
|
|
|
int error = 0, loop = 0;
|
|
|
|
u32 reg;
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_check_aq_errors(sc);
|
2018-10-12 22:40:54 +00:00
|
|
|
if (error)
|
|
|
|
return (I40E_ERR_ADMIN_QUEUE_CRITICAL_ERROR);
|
|
|
|
|
|
|
|
event.buf_len = IXL_AQ_BUF_SZ;
|
|
|
|
event.msg_buf = sc->aq_buffer;
|
|
|
|
bzero(event.msg_buf, IXL_AQ_BUF_SZ);
|
|
|
|
v_msg = (struct virtchnl_msg *)&event.desc;
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* clean and process any events */
|
|
|
|
do {
|
2018-10-12 22:40:54 +00:00
|
|
|
status = i40e_clean_arq_element(hw, &event, pending);
|
|
|
|
/*
|
|
|
|
* Also covers normal case when i40e_clean_arq_element()
|
|
|
|
* returns "I40E_ERR_ADMIN_QUEUE_NO_WORK"
|
|
|
|
*/
|
|
|
|
if (status)
|
2018-06-18 20:12:54 +00:00
|
|
|
break;
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_vc_completion(sc, v_msg->v_opcode,
|
2018-10-12 22:40:54 +00:00
|
|
|
v_msg->v_retval, event.msg_buf, event.msg_len);
|
|
|
|
bzero(event.msg_buf, IXL_AQ_BUF_SZ);
|
|
|
|
} while (*pending && (loop++ < IXL_ADM_LIMIT));
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Re-enable admin queue interrupt cause */
|
|
|
|
reg = rd32(hw, I40E_VFINT_ICR0_ENA1);
|
|
|
|
reg |= I40E_VFINT_ICR0_ENA1_ADMINQ_MASK;
|
|
|
|
wr32(hw, I40E_VFINT_ICR0_ENA1, reg);
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
return (status);
|
|
|
|
}
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_update_admin_status(if_ctx_t ctx)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
u16 pending;
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_process_adminq(sc, &pending);
|
|
|
|
iavf_update_link_status(sc);
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
/*
|
2018-10-12 22:40:54 +00:00
|
|
|
* If there are still messages to process, reschedule.
|
|
|
|
* Otherwise, re-enable the Admin Queue interrupt.
|
2018-06-18 20:12:54 +00:00
|
|
|
*/
|
2018-10-12 22:40:54 +00:00
|
|
|
if (pending > 0)
|
2018-06-18 20:12:54 +00:00
|
|
|
iflib_admin_intr_deferred(ctx);
|
|
|
|
else
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_adminq_irq(hw);
|
2018-10-12 22:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_mc_filter_apply(void *arg, struct ifmultiaddr *ifma, int count __unused)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = arg;
|
2018-10-12 22:40:54 +00:00
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
if (ifma->ifma_addr->sa_family != AF_LINK)
|
|
|
|
return (0);
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_add_mac_filter(sc,
|
2018-10-12 22:40:54 +00:00
|
|
|
(u8*)LLADDR((struct sockaddr_dl *) ifma->ifma_addr),
|
|
|
|
IXL_FILTER_MC);
|
|
|
|
|
|
|
|
return (!error);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_multi_set(if_ctx_t ctx)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
int mcnt = 0;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
IOCTL_DEBUGOUT("iavf_if_multi_set: begin");
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
mcnt = if_multiaddr_count(iflib_get_ifp(ctx), MAX_MULTICAST_ADDR);
|
|
|
|
if (__predict_false(mcnt == MAX_MULTICAST_ADDR)) {
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Delete MC filters and enable mulitcast promisc instead */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_init_multi(sc);
|
2018-10-12 22:40:54 +00:00
|
|
|
sc->promisc_flags |= FLAG_VF_MULTICAST_PROMISC;
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_CONFIGURE_PROMISC);
|
2018-06-18 20:12:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* If there aren't too many filters, delete existing MC filters */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_init_multi(sc);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
/* And (re-)install filters for all mcast addresses */
|
2018-10-15 17:23:41 +00:00
|
|
|
mcnt = if_multi_apply(iflib_get_ifp(ctx), iavf_mc_filter_apply, sc);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
if (mcnt > 0)
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_ADD_MAC_FILTER);
|
2018-10-12 22:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_mtu_set(if_ctx_t ctx, uint32_t mtu)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
|
|
|
|
IOCTL_DEBUGOUT("ioctl: SIOCSIFMTU (Set Interface MTU)");
|
|
|
|
if (mtu > IXL_MAX_FRAME - ETHER_HDR_LEN - ETHER_CRC_LEN -
|
|
|
|
ETHER_VLAN_ENCAP_LEN)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
vsi->shared->isc_max_frame_size = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN +
|
|
|
|
ETHER_VLAN_ENCAP_LEN;
|
|
|
|
|
|
|
|
return (0);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_media_status(if_ctx_t ctx, struct ifmediareq *ifmr)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
#ifdef IXL_DEBUG
|
|
|
|
struct ifnet *ifp = iflib_get_ifp(ctx);
|
|
|
|
#endif
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
INIT_DBG_IF(ifp, "begin");
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_update_link_status(sc);
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
ifmr->ifm_status = IFM_AVALID;
|
|
|
|
ifmr->ifm_active = IFM_ETHER;
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
if (!sc->link_up)
|
2018-06-18 20:12:54 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
ifmr->ifm_status |= IFM_ACTIVE;
|
|
|
|
/* Hardware is always full-duplex */
|
|
|
|
ifmr->ifm_active |= IFM_FDX;
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Based on the link speed reported by the PF over the AdminQ, choose a
|
|
|
|
* PHY type to report. This isn't 100% correct since we don't really
|
|
|
|
* know the underlying PHY type of the PF, but at least we can report
|
|
|
|
* a valid link speed...
|
|
|
|
*/
|
|
|
|
switch (sc->link_speed) {
|
|
|
|
case VIRTCHNL_LINK_SPEED_100MB:
|
|
|
|
ifmr->ifm_active |= IFM_100_TX;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_1GB:
|
|
|
|
ifmr->ifm_active |= IFM_1000_T;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_10GB:
|
|
|
|
ifmr->ifm_active |= IFM_10G_SR;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_20GB:
|
|
|
|
case VIRTCHNL_LINK_SPEED_25GB:
|
|
|
|
ifmr->ifm_active |= IFM_25G_SR;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_40GB:
|
|
|
|
ifmr->ifm_active |= IFM_40G_SR4;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ifmr->ifm_active |= IFM_UNKNOWN;
|
|
|
|
break;
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
INIT_DBG_IF(ifp, "end");
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_media_change(if_ctx_t ctx)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-06-18 20:12:54 +00:00
|
|
|
struct ifmedia *ifm = iflib_get_media(ctx);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
INIT_DEBUGOUT("ixl_media_change: begin");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
|
|
|
|
return (EINVAL);
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
if_printf(iflib_get_ifp(ctx), "Media change is not supported.\n");
|
|
|
|
return (ENODEV);
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_promisc_set(if_ctx_t ctx, int flags)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-06-18 20:12:54 +00:00
|
|
|
struct ifnet *ifp = iflib_get_ifp(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
sc->promisc_flags = 0;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
if (flags & IFF_ALLMULTI ||
|
|
|
|
if_multiaddr_count(ifp, MAX_MULTICAST_ADDR) == MAX_MULTICAST_ADDR)
|
2018-10-12 22:40:54 +00:00
|
|
|
sc->promisc_flags |= FLAG_VF_MULTICAST_PROMISC;
|
2018-06-18 20:12:54 +00:00
|
|
|
if (flags & IFF_PROMISC)
|
2018-10-12 22:40:54 +00:00
|
|
|
sc->promisc_flags |= FLAG_VF_UNICAST_PROMISC;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_CONFIGURE_PROMISC);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
return (0);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_timer(if_ctx_t ctx, uint16_t qid)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
u32 val;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
if (qid != 0)
|
|
|
|
return;
|
2015-01-12 18:43:34 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Check for when PF triggers a VF reset */
|
|
|
|
val = rd32(hw, I40E_VFGEN_RSTAT) &
|
|
|
|
I40E_VFGEN_RSTAT_VFR_STATE_MASK;
|
|
|
|
if (val != VIRTCHNL_VFR_VFACTIVE
|
|
|
|
&& val != VIRTCHNL_VFR_COMPLETED) {
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_info(sc, "reset in progress! (%d)\n", val);
|
2018-10-12 22:40:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* Fire off the adminq task */
|
|
|
|
iflib_admin_intr_deferred(ctx);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* Update stats */
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_request_stats(sc);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_vlan_register(if_ctx_t ctx, u16 vtag)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_vlan_filter *v;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
if ((vtag == 0) || (vtag > 4095)) /* Invalid */
|
|
|
|
return;
|
|
|
|
|
|
|
|
++vsi->num_vlans;
|
2018-10-15 17:23:41 +00:00
|
|
|
v = malloc(sizeof(struct iavf_vlan_filter), M_IAVF, M_WAITOK | M_ZERO);
|
2018-10-12 22:40:54 +00:00
|
|
|
SLIST_INSERT_HEAD(sc->vlan_filters, v, next);
|
|
|
|
v->vlan = vtag;
|
|
|
|
v->flags = IXL_FILTER_ADD;
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_ADD_VLAN_FILTER);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_vlan_unregister(if_ctx_t ctx, u16 vtag)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_vlan_filter *v;
|
2018-10-12 22:40:54 +00:00
|
|
|
int i = 0;
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
if ((vtag == 0) || (vtag > 4095)) /* Invalid */
|
|
|
|
return;
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SLIST_FOREACH(v, sc->vlan_filters, next) {
|
|
|
|
if (v->vlan == vtag) {
|
|
|
|
v->flags = IXL_FILTER_DEL;
|
|
|
|
++i;
|
|
|
|
--vsi->num_vlans;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i)
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_DEL_VLAN_FILTER);
|
2018-06-18 20:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_get_counter(if_ctx_t ctx, ift_counter cnt)
|
2018-06-18 20:12:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
if_t ifp = iflib_get_ifp(ctx);
|
|
|
|
|
|
|
|
switch (cnt) {
|
|
|
|
case IFCOUNTER_IPACKETS:
|
|
|
|
return (vsi->ipackets);
|
|
|
|
case IFCOUNTER_IERRORS:
|
|
|
|
return (vsi->ierrors);
|
|
|
|
case IFCOUNTER_OPACKETS:
|
|
|
|
return (vsi->opackets);
|
|
|
|
case IFCOUNTER_OERRORS:
|
|
|
|
return (vsi->oerrors);
|
|
|
|
case IFCOUNTER_COLLISIONS:
|
|
|
|
/* Collisions are by standard impossible in 40G/10G Ethernet */
|
|
|
|
return (0);
|
|
|
|
case IFCOUNTER_IBYTES:
|
|
|
|
return (vsi->ibytes);
|
|
|
|
case IFCOUNTER_OBYTES:
|
|
|
|
return (vsi->obytes);
|
|
|
|
case IFCOUNTER_IMCASTS:
|
|
|
|
return (vsi->imcasts);
|
|
|
|
case IFCOUNTER_OMCASTS:
|
|
|
|
return (vsi->omcasts);
|
|
|
|
case IFCOUNTER_IQDROPS:
|
|
|
|
return (vsi->iqdrops);
|
|
|
|
case IFCOUNTER_OQDROPS:
|
|
|
|
return (vsi->oqdrops);
|
|
|
|
case IFCOUNTER_NOPROTO:
|
|
|
|
return (vsi->noproto);
|
|
|
|
default:
|
|
|
|
return (if_get_counter_default(ifp, cnt));
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
|
2014-08-22 18:59:19 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_free_pci_resources(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-06-18 20:12:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
struct ixl_rx_queue *rx_que = vsi->rx_queues;
|
2014-08-22 18:59:19 +00:00
|
|
|
device_t dev = sc->dev;
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* We may get here before stations are setup */
|
2018-10-12 22:40:54 +00:00
|
|
|
if (rx_que == NULL)
|
2018-06-18 20:12:54 +00:00
|
|
|
goto early;
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Release all interrupts */
|
2018-06-18 20:12:54 +00:00
|
|
|
iflib_irq_free(vsi->ctx, &vsi->irq);
|
2018-05-01 18:50:12 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
for (int i = 0; i < vsi->num_rx_queues; i++, rx_que++)
|
|
|
|
iflib_irq_free(vsi->ctx, &rx_que->que_irq);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
early:
|
2014-08-22 18:59:19 +00:00
|
|
|
if (sc->pci_mem != NULL)
|
|
|
|
bus_release_resource(dev, SYS_RES_MEMORY,
|
|
|
|
PCIR_BAR(0), sc->pci_mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2014-11-06 23:45:05 +00:00
|
|
|
** Requests a VF reset from the PF.
|
|
|
|
**
|
|
|
|
** Requires the VF's Admin Queue to be initialized.
|
2014-08-22 18:59:19 +00:00
|
|
|
*/
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_reset(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
device_t dev = sc->dev;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
/* Ask the PF to reset us if we are initiating */
|
2018-10-15 17:23:41 +00:00
|
|
|
if (sc->init_state != IAVF_RESET_PENDING)
|
|
|
|
iavf_request_reset(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2016-08-07 18:12:36 +00:00
|
|
|
i40e_msec_pause(100);
|
2018-10-15 17:23:41 +00:00
|
|
|
error = iavf_reset_complete(hw);
|
2014-08-22 18:59:19 +00:00
|
|
|
if (error) {
|
|
|
|
device_printf(dev, "%s: VF reset failed\n",
|
|
|
|
__func__);
|
|
|
|
return (error);
|
|
|
|
}
|
2018-10-12 22:40:54 +00:00
|
|
|
pci_enable_busmaster(dev);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
error = i40e_shutdown_adminq(hw);
|
|
|
|
if (error) {
|
|
|
|
device_printf(dev, "%s: shutdown_adminq failed: %d\n",
|
|
|
|
__func__, error);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
error = i40e_init_adminq(hw);
|
|
|
|
if (error) {
|
|
|
|
device_printf(dev, "%s: init_adminq failed: %d\n",
|
|
|
|
__func__, error);
|
2018-10-12 22:40:54 +00:00
|
|
|
return (error);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_adminq_irq(hw);
|
2014-08-22 18:59:19 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_reset_complete(struct i40e_hw *hw)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
|
|
|
u32 reg;
|
|
|
|
|
2016-08-07 18:12:36 +00:00
|
|
|
/* Wait up to ~10 seconds */
|
2014-08-22 18:59:19 +00:00
|
|
|
for (int i = 0; i < 100; i++) {
|
|
|
|
reg = rd32(hw, I40E_VFGEN_RSTAT) &
|
|
|
|
I40E_VFGEN_RSTAT_VFR_STATE_MASK;
|
|
|
|
|
2018-05-01 18:50:12 +00:00
|
|
|
if ((reg == VIRTCHNL_VFR_VFACTIVE) ||
|
|
|
|
(reg == VIRTCHNL_VFR_COMPLETED))
|
2014-08-22 18:59:19 +00:00
|
|
|
return (0);
|
2016-08-07 18:12:36 +00:00
|
|
|
i40e_msec_pause(100);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (EBUSY);
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_setup_interface(device_t dev, struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-06-18 20:12:54 +00:00
|
|
|
if_ctx_t ctx = vsi->ctx;
|
|
|
|
struct ifnet *ifp = iflib_get_ifp(ctx);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
INIT_DBG_DEV(dev, "begin");
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
vsi->shared->isc_max_frame_size =
|
|
|
|
ifp->if_mtu + ETHER_HDR_LEN + ETHER_CRC_LEN
|
|
|
|
+ ETHER_VLAN_ENCAP_LEN;
|
2018-05-01 18:50:12 +00:00
|
|
|
#if __FreeBSD_version >= 1100000
|
2018-06-18 20:12:54 +00:00
|
|
|
if_setbaudrate(ifp, IF_Gbps(40));
|
2018-05-01 18:50:12 +00:00
|
|
|
#else
|
|
|
|
if_initbaudrate(ifp, IF_Gbps(40));
|
|
|
|
#endif
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
ifmedia_add(vsi->media, IFM_ETHER | IFM_AUTO, 0, NULL);
|
|
|
|
ifmedia_set(vsi->media, IFM_ETHER | IFM_AUTO);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Get a new filter and add it to the mac filter list.
|
|
|
|
*/
|
2018-10-15 17:23:41 +00:00
|
|
|
static struct iavf_mac_filter *
|
|
|
|
iavf_get_mac_filter(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_mac_filter *f;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
f = malloc(sizeof(struct iavf_mac_filter),
|
|
|
|
M_IAVF, M_NOWAIT | M_ZERO);
|
2014-11-06 23:45:05 +00:00
|
|
|
if (f)
|
|
|
|
SLIST_INSERT_HEAD(sc->mac_filters, f, next);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
return (f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Find the filter with matching MAC address
|
|
|
|
*/
|
2018-10-15 17:23:41 +00:00
|
|
|
static struct iavf_mac_filter *
|
|
|
|
iavf_find_mac_filter(struct iavf_sc *sc, u8 *macaddr)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_mac_filter *f;
|
2018-10-12 22:40:54 +00:00
|
|
|
bool match = FALSE;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
SLIST_FOREACH(f, sc->mac_filters, next) {
|
|
|
|
if (cmp_etheraddr(f->macaddr, macaddr)) {
|
|
|
|
match = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!match)
|
|
|
|
f = NULL;
|
|
|
|
return (f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Admin Queue interrupt handler
|
|
|
|
*/
|
2018-06-18 20:12:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_msix_adminq(void *arg)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = arg;
|
2014-11-06 23:45:05 +00:00
|
|
|
struct i40e_hw *hw = &sc->hw;
|
2018-10-12 22:40:54 +00:00
|
|
|
u32 reg, mask;
|
2018-06-18 20:12:54 +00:00
|
|
|
bool do_task = FALSE;
|
|
|
|
|
|
|
|
++sc->admin_irq;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
reg = rd32(hw, I40E_VFINT_ICR01);
|
2018-10-12 22:40:54 +00:00
|
|
|
/*
|
|
|
|
* For masking off interrupt causes that need to be handled before
|
|
|
|
* they can be re-enabled
|
|
|
|
*/
|
2014-08-22 18:59:19 +00:00
|
|
|
mask = rd32(hw, I40E_VFINT_ICR0_ENA1);
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
/* Check on the cause */
|
2018-10-12 22:40:54 +00:00
|
|
|
if (reg & I40E_VFINT_ICR0_ADMINQ_MASK) {
|
|
|
|
mask &= ~I40E_VFINT_ICR0_ENA_ADMINQ_MASK;
|
2018-06-18 20:12:54 +00:00
|
|
|
do_task = TRUE;
|
2018-10-12 22:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wr32(hw, I40E_VFINT_ICR0_ENA1, mask);
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_adminq_irq(hw);
|
2018-06-18 20:12:54 +00:00
|
|
|
|
|
|
|
if (do_task)
|
2018-10-12 22:40:54 +00:00
|
|
|
return (FILTER_SCHEDULE_THREAD);
|
2018-06-18 20:12:54 +00:00
|
|
|
else
|
2018-10-12 22:40:54 +00:00
|
|
|
return (FILTER_HANDLED);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_intr(struct ixl_vsi *vsi)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
struct i40e_hw *hw = vsi->hw;
|
|
|
|
struct ixl_rx_queue *que = vsi->rx_queues;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_adminq_irq(hw);
|
2018-06-18 20:12:54 +00:00
|
|
|
for (int i = 0; i < vsi->num_rx_queues; i++, que++)
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_queue_irq(hw, que->rxr.me);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_disable_intr(struct ixl_vsi *vsi)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
struct i40e_hw *hw = vsi->hw;
|
|
|
|
struct ixl_rx_queue *que = vsi->rx_queues;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
for (int i = 0; i < vsi->num_rx_queues; i++, que++)
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_disable_queue_irq(hw, que->rxr.me);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_disable_adminq_irq(struct i40e_hw *hw)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
|
|
|
wr32(hw, I40E_VFINT_DYN_CTL01, 0);
|
|
|
|
wr32(hw, I40E_VFINT_ICR0_ENA1, 0);
|
|
|
|
/* flush */
|
|
|
|
rd32(hw, I40E_VFGEN_RSTAT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_adminq_irq(struct i40e_hw *hw)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
|
|
|
wr32(hw, I40E_VFINT_DYN_CTL01,
|
|
|
|
I40E_VFINT_DYN_CTL01_INTENA_MASK |
|
|
|
|
I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
|
2015-06-05 22:52:42 +00:00
|
|
|
wr32(hw, I40E_VFINT_ICR0_ENA1, I40E_VFINT_ICR0_ENA1_ADMINQ_MASK);
|
2014-08-22 18:59:19 +00:00
|
|
|
/* flush */
|
|
|
|
rd32(hw, I40E_VFGEN_RSTAT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_enable_queue_irq(struct i40e_hw *hw, int id)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
|
|
|
u32 reg;
|
|
|
|
|
|
|
|
reg = I40E_VFINT_DYN_CTLN1_INTENA_MASK |
|
2016-08-07 18:12:36 +00:00
|
|
|
I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK |
|
|
|
|
I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK;
|
2014-08-22 18:59:19 +00:00
|
|
|
wr32(hw, I40E_VFINT_DYN_CTLN1(id), reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_disable_queue_irq(struct i40e_hw *hw, int id)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2016-08-07 18:12:36 +00:00
|
|
|
wr32(hw, I40E_VFINT_DYN_CTLN1(id),
|
|
|
|
I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK);
|
2014-08-22 18:59:19 +00:00
|
|
|
rd32(hw, I40E_VFGEN_RSTAT);
|
|
|
|
}
|
|
|
|
|
2016-08-07 18:12:36 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_configure_tx_itr(struct iavf_sc *sc)
|
2016-08-07 18:12:36 +00:00
|
|
|
{
|
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_tx_queue *que = vsi->tx_queues;
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
vsi->tx_itr_setting = sc->tx_itr;
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
for (int i = 0; i < vsi->num_tx_queues; i++, que++) {
|
2018-06-18 20:12:54 +00:00
|
|
|
struct tx_ring *txr = &que->txr;
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2016-08-07 18:12:36 +00:00
|
|
|
wr32(hw, I40E_VFINT_ITRN1(IXL_TX_ITR, i),
|
|
|
|
vsi->tx_itr_setting);
|
|
|
|
txr->itr = vsi->tx_itr_setting;
|
|
|
|
txr->latency = IXL_AVE_LATENCY;
|
|
|
|
}
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_configure_rx_itr(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
struct ixl_rx_queue *que = vsi->rx_queues;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
vsi->rx_itr_setting = sc->rx_itr;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
for (int i = 0; i < vsi->num_rx_queues; i++, que++) {
|
|
|
|
struct rx_ring *rxr = &que->rxr;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
wr32(hw, I40E_VFINT_ITRN1(IXL_RX_ITR, i),
|
|
|
|
vsi->rx_itr_setting);
|
|
|
|
rxr->itr = vsi->rx_itr_setting;
|
|
|
|
rxr->latency = IXL_AVE_LATENCY;
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/*
|
|
|
|
* Get initial ITR values from tunable values.
|
|
|
|
*/
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_configure_itr(struct iavf_sc *sc)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_configure_tx_itr(sc);
|
|
|
|
iavf_configure_rx_itr(sc);
|
2018-10-12 22:40:54 +00:00
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/*
|
2018-10-12 22:40:54 +00:00
|
|
|
** Provide a update to the queue RX
|
2014-08-22 18:59:19 +00:00
|
|
|
** interrupt moderation value.
|
|
|
|
*/
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_set_queue_rx_itr(struct ixl_rx_queue *que)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
|
|
|
struct ixl_vsi *vsi = que->vsi;
|
|
|
|
struct i40e_hw *hw = vsi->hw;
|
2018-10-12 22:40:54 +00:00
|
|
|
struct rx_ring *rxr = &que->rxr;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* Idle, do nothing */
|
2018-10-12 22:40:54 +00:00
|
|
|
if (rxr->bytes == 0)
|
2014-08-22 18:59:19 +00:00
|
|
|
return;
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Update the hardware if needed */
|
|
|
|
if (rxr->itr != vsi->rx_itr_setting) {
|
|
|
|
rxr->itr = vsi->rx_itr_setting;
|
|
|
|
wr32(hw, I40E_VFINT_ITRN1(IXL_RX_ITR,
|
|
|
|
que->rxr.me), rxr->itr);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:12:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_msix_que(void *arg)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_rx_queue *rx_que = arg;
|
2018-05-01 18:50:12 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
++rx_que->irqs;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_set_queue_rx_itr(rx_que);
|
|
|
|
// iavf_set_queue_tx_itr(que);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
return (FILTER_SCHEDULE_THREAD);
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* Multicast Initialization
|
|
|
|
*
|
|
|
|
* This routine is called by init to reset a fresh state.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_init_multi(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_mac_filter *f;
|
2018-10-12 22:40:54 +00:00
|
|
|
int mcnt = 0;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* First clear any multicast filters */
|
|
|
|
SLIST_FOREACH(f, sc->mac_filters, next) {
|
|
|
|
if ((f->flags & IXL_FILTER_USED)
|
|
|
|
&& (f->flags & IXL_FILTER_MC)) {
|
|
|
|
f->flags |= IXL_FILTER_DEL;
|
|
|
|
mcnt++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mcnt > 0)
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_DEL_MAC_FILTER);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Note: this routine updates the OS on the link state
|
|
|
|
** the real check of the hardware only happens with
|
|
|
|
** a link interrupt.
|
|
|
|
*/
|
2014-11-06 23:45:05 +00:00
|
|
|
void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_update_link_status(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
u64 baudrate;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2015-03-10 19:17:40 +00:00
|
|
|
if (sc->link_up){
|
2014-08-22 18:59:19 +00:00
|
|
|
if (vsi->link_active == FALSE) {
|
|
|
|
vsi->link_active = TRUE;
|
2018-10-12 22:40:54 +00:00
|
|
|
baudrate = ixl_max_vc_speed_to_value(sc->link_speed);
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_info(sc, "baudrate: %lu\n", baudrate);
|
2018-10-12 22:40:54 +00:00
|
|
|
iflib_link_state_change(vsi->ctx, LINK_STATE_UP, baudrate);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
} else { /* Link down */
|
|
|
|
if (vsi->link_active == TRUE) {
|
|
|
|
vsi->link_active = FALSE;
|
2018-10-12 22:40:54 +00:00
|
|
|
iflib_link_state_change(vsi->ctx, LINK_STATE_DOWN, 0);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
*
|
|
|
|
* This routine disables all traffic on the adapter by issuing a
|
|
|
|
* global reset on the MAC and deallocates TX/RX buffers.
|
|
|
|
*
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_stop(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2014-11-06 23:45:05 +00:00
|
|
|
struct ifnet *ifp;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2014-11-06 23:45:05 +00:00
|
|
|
ifp = sc->vsi.ifp;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_disable_intr(&sc->vsi);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
if (atomic_load_acq_32(&sc->queues_enabled))
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg_sleep(sc, IAVF_FLAG_AQ_DISABLE_QUEUES);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_if_stop(if_ctx_t ctx)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = iflib_get_softc(ctx);
|
2018-05-01 18:50:12 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_stop(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_config_rss_reg(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
|
|
|
struct i40e_hw *hw = &sc->hw;
|
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
u32 lut = 0;
|
2015-01-12 18:43:34 +00:00
|
|
|
u64 set_hena = 0, hena;
|
|
|
|
int i, j, que_id;
|
2016-08-07 18:12:36 +00:00
|
|
|
u32 rss_seed[IXL_RSS_KEY_SIZE_REG];
|
2015-01-12 18:43:34 +00:00
|
|
|
#ifdef RSS
|
|
|
|
u32 rss_hash_config;
|
|
|
|
#endif
|
|
|
|
|
2014-11-06 23:45:05 +00:00
|
|
|
/* Don't set up RSS if using a single queue */
|
2018-06-18 20:12:54 +00:00
|
|
|
if (vsi->num_rx_queues == 1) {
|
2014-11-06 23:45:05 +00:00
|
|
|
wr32(hw, I40E_VFQF_HENA(0), 0);
|
|
|
|
wr32(hw, I40E_VFQF_HENA(1), 0);
|
|
|
|
ixl_flush(hw);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-12 18:43:34 +00:00
|
|
|
#ifdef RSS
|
|
|
|
/* Fetch the configured RSS key */
|
|
|
|
rss_getkey((uint8_t *) &rss_seed);
|
2016-08-07 18:12:36 +00:00
|
|
|
#else
|
|
|
|
ixl_get_default_rss_key(rss_seed);
|
2015-01-12 18:43:34 +00:00
|
|
|
#endif
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2014-08-22 18:59:19 +00:00
|
|
|
/* Fill out hash function seed */
|
2016-08-07 18:12:36 +00:00
|
|
|
for (i = 0; i < IXL_RSS_KEY_SIZE_REG; i++)
|
2015-01-12 18:43:34 +00:00
|
|
|
wr32(hw, I40E_VFQF_HKEY(i), rss_seed[i]);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* Enable PCTYPES for RSS: */
|
2015-01-12 18:43:34 +00:00
|
|
|
#ifdef RSS
|
|
|
|
rss_hash_config = rss_gethashconfig();
|
|
|
|
if (rss_hash_config & RSS_HASHTYPE_RSS_IPV4)
|
|
|
|
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER);
|
|
|
|
if (rss_hash_config & RSS_HASHTYPE_RSS_TCP_IPV4)
|
|
|
|
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_TCP);
|
|
|
|
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV4)
|
|
|
|
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_UDP);
|
|
|
|
if (rss_hash_config & RSS_HASHTYPE_RSS_IPV6)
|
|
|
|
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER);
|
2015-02-20 00:40:26 +00:00
|
|
|
if (rss_hash_config & RSS_HASHTYPE_RSS_IPV6_EX)
|
2015-01-16 19:11:58 +00:00
|
|
|
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6);
|
2015-01-12 18:43:34 +00:00
|
|
|
if (rss_hash_config & RSS_HASHTYPE_RSS_TCP_IPV6)
|
|
|
|
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_TCP);
|
|
|
|
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6)
|
|
|
|
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_UDP);
|
|
|
|
#else
|
2017-02-10 01:04:11 +00:00
|
|
|
set_hena = IXL_DEFAULT_RSS_HENA_XL710;
|
2015-01-12 18:43:34 +00:00
|
|
|
#endif
|
2014-08-22 18:59:19 +00:00
|
|
|
hena = (u64)rd32(hw, I40E_VFQF_HENA(0)) |
|
|
|
|
((u64)rd32(hw, I40E_VFQF_HENA(1)) << 32);
|
|
|
|
hena |= set_hena;
|
|
|
|
wr32(hw, I40E_VFQF_HENA(0), (u32)hena);
|
|
|
|
wr32(hw, I40E_VFQF_HENA(1), (u32)(hena >> 32));
|
|
|
|
|
|
|
|
/* Populate the LUT with max no. of queues in round robin fashion */
|
2016-08-07 18:12:36 +00:00
|
|
|
for (i = 0, j = 0; i < IXL_RSS_VSI_LUT_SIZE; i++, j++) {
|
2018-06-18 20:12:54 +00:00
|
|
|
if (j == vsi->num_rx_queues)
|
2014-08-22 18:59:19 +00:00
|
|
|
j = 0;
|
2015-01-12 18:43:34 +00:00
|
|
|
#ifdef RSS
|
|
|
|
/*
|
|
|
|
* Fetch the RSS bucket id for the given indirection entry.
|
|
|
|
* Cap it at the number of configured buckets (which is
|
2018-11-01 17:29:14 +00:00
|
|
|
* num_rx_queues.)
|
2015-01-12 18:43:34 +00:00
|
|
|
*/
|
|
|
|
que_id = rss_get_indirection_to_bucket(i);
|
2018-11-01 17:29:14 +00:00
|
|
|
que_id = que_id % vsi->num_rx_queues;
|
2015-01-12 18:43:34 +00:00
|
|
|
#else
|
|
|
|
que_id = j;
|
|
|
|
#endif
|
2014-08-22 18:59:19 +00:00
|
|
|
/* lut = 4-byte sliding window of 4 lut entries */
|
2016-08-07 18:12:36 +00:00
|
|
|
lut = (lut << 8) | (que_id & IXL_RSS_VF_LUT_ENTRY_MASK);
|
2014-08-22 18:59:19 +00:00
|
|
|
/* On i = 3, we have 4 entries in lut; write to the register */
|
2015-01-12 18:43:34 +00:00
|
|
|
if ((i & 3) == 3) {
|
2016-08-07 18:12:36 +00:00
|
|
|
wr32(hw, I40E_VFQF_HLUT(i >> 2), lut);
|
2014-11-06 23:45:05 +00:00
|
|
|
DDPRINTF(sc->dev, "HLUT(%2d): %#010x", i, lut);
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
ixl_flush(hw);
|
|
|
|
}
|
|
|
|
|
2016-08-07 18:12:36 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_config_rss_pf(struct iavf_sc *sc)
|
2016-08-07 18:12:36 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_CONFIG_RSS_KEY);
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_SET_RSS_HENA);
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_send_vc_msg(sc, IAVF_FLAG_AQ_CONFIG_RSS_LUT);
|
2016-08-07 18:12:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2018-10-15 17:23:41 +00:00
|
|
|
** iavf_config_rss - setup RSS
|
2016-08-07 18:12:36 +00:00
|
|
|
**
|
|
|
|
** RSS keys and table are cleared on VF reset.
|
|
|
|
*/
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_config_rss(struct iavf_sc *sc)
|
2016-08-07 18:12:36 +00:00
|
|
|
{
|
2018-05-01 18:50:12 +00:00
|
|
|
if (sc->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_REG) {
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_info(sc, "Setting up RSS using VF registers...");
|
|
|
|
iavf_config_rss_reg(sc);
|
2018-05-01 18:50:12 +00:00
|
|
|
} else if (sc->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF) {
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_info(sc, "Setting up RSS using messages to PF...");
|
|
|
|
iavf_config_rss_pf(sc);
|
2016-08-07 18:12:36 +00:00
|
|
|
} else
|
|
|
|
device_printf(sc->dev, "VF does not support RSS capability sent by PF.\n");
|
|
|
|
}
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine adds new MAC filters to the sc's list;
|
2014-11-06 23:45:05 +00:00
|
|
|
** these are later added in hardware by sending a virtual
|
|
|
|
** channel message.
|
2014-08-22 18:59:19 +00:00
|
|
|
*/
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_add_mac_filter(struct iavf_sc *sc, u8 *macaddr, u16 flags)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_mac_filter *f;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
/* Does one already exist? */
|
2018-10-15 17:23:41 +00:00
|
|
|
f = iavf_find_mac_filter(sc, macaddr);
|
2014-08-22 18:59:19 +00:00
|
|
|
if (f != NULL) {
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_filter(sc, "exists: " MAC_FORMAT "\n",
|
2014-08-22 18:59:19 +00:00
|
|
|
MAC_FORMAT_ARGS(macaddr));
|
|
|
|
return (EEXIST);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If not, get a new empty filter */
|
2018-10-15 17:23:41 +00:00
|
|
|
f = iavf_get_mac_filter(sc);
|
2014-08-22 18:59:19 +00:00
|
|
|
if (f == NULL) {
|
2018-10-12 22:40:54 +00:00
|
|
|
device_printf(sc->dev, "%s: no filters available!!\n",
|
2014-08-22 18:59:19 +00:00
|
|
|
__func__);
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_dbg_filter(sc, "marked: " MAC_FORMAT "\n",
|
2014-08-22 18:59:19 +00:00
|
|
|
MAC_FORMAT_ARGS(macaddr));
|
|
|
|
|
|
|
|
bcopy(macaddr, f->macaddr, ETHER_ADDR_LEN);
|
|
|
|
f->flags |= (IXL_FILTER_ADD | IXL_FILTER_USED);
|
|
|
|
f->flags |= flags;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2014-11-06 23:45:05 +00:00
|
|
|
/*
|
|
|
|
** Marks a MAC filter for deletion.
|
|
|
|
*/
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_del_mac_filter(struct iavf_sc *sc, u8 *macaddr)
|
2014-11-06 23:45:05 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_mac_filter *f;
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
f = iavf_find_mac_filter(sc, macaddr);
|
2014-11-06 23:45:05 +00:00
|
|
|
if (f == NULL)
|
|
|
|
return (ENOENT);
|
|
|
|
|
|
|
|
f->flags |= IXL_FILTER_DEL;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/*
|
|
|
|
* Re-uses the name from the PF driver.
|
|
|
|
*/
|
2014-11-06 23:45:05 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_add_device_sysctls(struct iavf_sc *sc)
|
2014-11-06 23:45:05 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
device_t dev = sc->dev;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(dev);
|
|
|
|
struct sysctl_oid_list *ctx_list =
|
|
|
|
SYSCTL_CHILDREN(device_get_sysctl_tree(dev));
|
|
|
|
struct sysctl_oid *debug_node;
|
|
|
|
struct sysctl_oid_list *debug_list;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_PROC(ctx, ctx_list,
|
|
|
|
OID_AUTO, "current_speed", CTLTYPE_STRING | CTLFLAG_RD,
|
2018-10-15 17:23:41 +00:00
|
|
|
sc, 0, iavf_sysctl_current_speed, "A", "Current Port Speed");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_PROC(ctx, ctx_list,
|
|
|
|
OID_AUTO, "tx_itr", CTLTYPE_INT | CTLFLAG_RW,
|
2018-10-15 17:23:41 +00:00
|
|
|
sc, 0, iavf_sysctl_tx_itr, "I",
|
2018-10-12 22:40:54 +00:00
|
|
|
"Immediately set TX ITR value for all queues");
|
2015-02-20 00:40:26 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_PROC(ctx, ctx_list,
|
|
|
|
OID_AUTO, "rx_itr", CTLTYPE_INT | CTLFLAG_RW,
|
2018-10-15 17:23:41 +00:00
|
|
|
sc, 0, iavf_sysctl_rx_itr, "I",
|
2018-10-12 22:40:54 +00:00
|
|
|
"Immediately set RX ITR value for all queues");
|
2015-02-20 00:40:26 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Add sysctls meant to print debug information, but don't list them
|
|
|
|
* in "sysctl -a" output. */
|
|
|
|
debug_node = SYSCTL_ADD_NODE(ctx, ctx_list,
|
|
|
|
OID_AUTO, "debug", CTLFLAG_RD | CTLFLAG_SKIP, NULL, "Debug Sysctls");
|
|
|
|
debug_list = SYSCTL_CHILDREN(debug_node);
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_UINT(ctx, debug_list,
|
|
|
|
OID_AUTO, "shared_debug_mask", CTLFLAG_RW,
|
|
|
|
&sc->hw.debug_mask, 0, "Shared code debug message level");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_UINT(ctx, debug_list,
|
|
|
|
OID_AUTO, "core_debug_mask", CTLFLAG_RW,
|
|
|
|
&sc->dbg_mask, 0, "Non-shared code debug message level");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_PROC(ctx, debug_list,
|
|
|
|
OID_AUTO, "filter_list", CTLTYPE_STRING | CTLFLAG_RD,
|
2018-10-15 17:23:41 +00:00
|
|
|
sc, 0, iavf_sysctl_sw_filter_list, "A", "SW Filter List");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_PROC(ctx, debug_list,
|
|
|
|
OID_AUTO, "queue_interrupt_table", CTLTYPE_STRING | CTLFLAG_RD,
|
2018-10-15 17:23:41 +00:00
|
|
|
sc, 0, iavf_sysctl_queue_interrupt_table, "A", "View MSI-X indices for TX/RX queues");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_PROC(ctx, debug_list,
|
|
|
|
OID_AUTO, "do_vf_reset", CTLTYPE_INT | CTLFLAG_WR,
|
2018-10-15 17:23:41 +00:00
|
|
|
sc, 0, iavf_sysctl_vf_reset, "A", "Request a VF reset from PF");
|
2014-08-22 18:59:19 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
SYSCTL_ADD_PROC(ctx, debug_list,
|
|
|
|
OID_AUTO, "do_vflr_reset", CTLTYPE_INT | CTLFLAG_WR,
|
2018-10-15 17:23:41 +00:00
|
|
|
sc, 0, iavf_sysctl_vflr_reset, "A", "Request a VFLR reset from HW");
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
/* Add stats sysctls */
|
|
|
|
ixl_add_vsi_sysctls(dev, vsi, ctx, "vsi");
|
|
|
|
ixl_add_queues_sysctls(dev, vsi);
|
2016-08-07 18:12:36 +00:00
|
|
|
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_init_filters(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
sc->mac_filters = malloc(sizeof(struct mac_list),
|
2018-10-15 17:23:41 +00:00
|
|
|
M_IAVF, M_WAITOK | M_ZERO);
|
2014-08-22 18:59:19 +00:00
|
|
|
SLIST_INIT(sc->mac_filters);
|
2018-10-12 22:40:54 +00:00
|
|
|
sc->vlan_filters = malloc(sizeof(struct vlan_list),
|
2018-10-15 17:23:41 +00:00
|
|
|
M_IAVF, M_WAITOK | M_ZERO);
|
2014-08-22 18:59:19 +00:00
|
|
|
SLIST_INIT(sc->vlan_filters);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_free_filters(struct iavf_sc *sc)
|
2014-08-22 18:59:19 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_mac_filter *f;
|
|
|
|
struct iavf_vlan_filter *v;
|
2014-08-22 18:59:19 +00:00
|
|
|
|
|
|
|
while (!SLIST_EMPTY(sc->mac_filters)) {
|
|
|
|
f = SLIST_FIRST(sc->mac_filters);
|
|
|
|
SLIST_REMOVE_HEAD(sc->mac_filters, next);
|
2018-10-15 17:23:41 +00:00
|
|
|
free(f, M_IAVF);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
2018-10-15 17:23:41 +00:00
|
|
|
free(sc->mac_filters, M_IAVF);
|
2014-08-22 18:59:19 +00:00
|
|
|
while (!SLIST_EMPTY(sc->vlan_filters)) {
|
|
|
|
v = SLIST_FIRST(sc->vlan_filters);
|
|
|
|
SLIST_REMOVE_HEAD(sc->vlan_filters, next);
|
2018-10-15 17:23:41 +00:00
|
|
|
free(v, M_IAVF);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
2018-10-15 17:23:41 +00:00
|
|
|
free(sc->vlan_filters, M_IAVF);
|
2014-08-22 18:59:19 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
char *
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_vc_speed_to_string(enum virtchnl_link_speed link_speed)
|
2018-05-01 18:50:12 +00:00
|
|
|
{
|
|
|
|
int index;
|
|
|
|
|
|
|
|
char *speeds[] = {
|
|
|
|
"Unknown",
|
|
|
|
"100 Mbps",
|
|
|
|
"1 Gbps",
|
|
|
|
"10 Gbps",
|
|
|
|
"40 Gbps",
|
|
|
|
"20 Gbps",
|
|
|
|
"25 Gbps",
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (link_speed) {
|
|
|
|
case VIRTCHNL_LINK_SPEED_100MB:
|
|
|
|
index = 1;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_1GB:
|
|
|
|
index = 2;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_10GB:
|
|
|
|
index = 3;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_40GB:
|
|
|
|
index = 4;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_20GB:
|
|
|
|
index = 5;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_25GB:
|
|
|
|
index = 6;
|
|
|
|
break;
|
|
|
|
case VIRTCHNL_LINK_SPEED_UNKNOWN:
|
|
|
|
default:
|
|
|
|
index = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return speeds[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_sysctl_current_speed(SYSCTL_HANDLER_ARGS)
|
2018-05-01 18:50:12 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = (struct iavf_sc *)arg1;
|
2018-05-01 18:50:12 +00:00
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
error = sysctl_handle_string(oidp,
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_vc_speed_to_string(sc->link_speed),
|
2018-05-01 18:50:12 +00:00
|
|
|
8, req);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/*
|
|
|
|
* Sanity check and save off tunable values.
|
2014-11-06 23:45:05 +00:00
|
|
|
*/
|
2018-10-12 22:40:54 +00:00
|
|
|
static void
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_save_tunables(struct iavf_sc *sc)
|
2014-11-06 23:45:05 +00:00
|
|
|
{
|
2018-10-12 22:40:54 +00:00
|
|
|
device_t dev = sc->dev;
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/* Save tunable information */
|
2018-10-15 17:23:41 +00:00
|
|
|
sc->dbg_mask = iavf_core_debug_mask;
|
|
|
|
sc->hw.debug_mask = iavf_shared_debug_mask;
|
|
|
|
sc->vsi.enable_head_writeback = !!(iavf_enable_head_writeback);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
if (iavf_tx_itr < 0 || iavf_tx_itr > IXL_MAX_ITR) {
|
2018-10-12 22:40:54 +00:00
|
|
|
device_printf(dev, "Invalid tx_itr value of %d set!\n",
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_tx_itr);
|
2018-10-12 22:40:54 +00:00
|
|
|
device_printf(dev, "tx_itr must be between %d and %d, "
|
|
|
|
"inclusive\n",
|
|
|
|
0, IXL_MAX_ITR);
|
|
|
|
device_printf(dev, "Using default value of %d instead\n",
|
|
|
|
IXL_ITR_4K);
|
|
|
|
sc->tx_itr = IXL_ITR_4K;
|
|
|
|
} else
|
2018-10-15 17:23:41 +00:00
|
|
|
sc->tx_itr = iavf_tx_itr;
|
2018-10-12 22:40:54 +00:00
|
|
|
|
2018-10-15 17:23:41 +00:00
|
|
|
if (iavf_rx_itr < 0 || iavf_rx_itr > IXL_MAX_ITR) {
|
2018-10-12 22:40:54 +00:00
|
|
|
device_printf(dev, "Invalid rx_itr value of %d set!\n",
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_rx_itr);
|
2018-10-12 22:40:54 +00:00
|
|
|
device_printf(dev, "rx_itr must be between %d and %d, "
|
|
|
|
"inclusive\n",
|
|
|
|
0, IXL_MAX_ITR);
|
|
|
|
device_printf(dev, "Using default value of %d instead\n",
|
|
|
|
IXL_ITR_8K);
|
|
|
|
sc->rx_itr = IXL_ITR_8K;
|
|
|
|
} else
|
2018-10-15 17:23:41 +00:00
|
|
|
sc->rx_itr = iavf_rx_itr;
|
2018-10-12 22:40:54 +00:00
|
|
|
}
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/*
|
|
|
|
* Used to set the Tx ITR value for all of the VF's queues.
|
|
|
|
* Writes to the ITR registers immediately.
|
|
|
|
*/
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_sysctl_tx_itr(SYSCTL_HANDLER_ARGS)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = (struct iavf_sc *)arg1;
|
2018-10-12 22:40:54 +00:00
|
|
|
device_t dev = sc->dev;
|
|
|
|
int requested_tx_itr;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
requested_tx_itr = sc->tx_itr;
|
|
|
|
error = sysctl_handle_int(oidp, &requested_tx_itr, 0, req);
|
|
|
|
if ((error) || (req->newptr == NULL))
|
|
|
|
return (error);
|
|
|
|
if (requested_tx_itr < 0 || requested_tx_itr > IXL_MAX_ITR) {
|
|
|
|
device_printf(dev,
|
|
|
|
"Invalid TX itr value; value must be between 0 and %d\n",
|
|
|
|
IXL_MAX_ITR);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->tx_itr = requested_tx_itr;
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_configure_tx_itr(sc);
|
2018-10-12 22:40:54 +00:00
|
|
|
|
|
|
|
return (error);
|
2014-11-06 23:45:05 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
/*
|
|
|
|
* Used to set the Rx ITR value for all of the VF's queues.
|
|
|
|
* Writes to the ITR registers immediately.
|
2014-11-06 23:45:05 +00:00
|
|
|
*/
|
2018-10-12 22:40:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_sysctl_rx_itr(SYSCTL_HANDLER_ARGS)
|
2014-11-06 23:45:05 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = (struct iavf_sc *)arg1;
|
2018-10-12 22:40:54 +00:00
|
|
|
device_t dev = sc->dev;
|
|
|
|
int requested_rx_itr;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
requested_rx_itr = sc->rx_itr;
|
|
|
|
error = sysctl_handle_int(oidp, &requested_rx_itr, 0, req);
|
|
|
|
if ((error) || (req->newptr == NULL))
|
|
|
|
return (error);
|
|
|
|
if (requested_rx_itr < 0 || requested_rx_itr > IXL_MAX_ITR) {
|
|
|
|
device_printf(dev,
|
|
|
|
"Invalid RX itr value; value must be between 0 and %d\n",
|
|
|
|
IXL_MAX_ITR);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
sc->rx_itr = requested_rx_itr;
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_configure_rx_itr(sc);
|
2014-11-06 23:45:05 +00:00
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
return (error);
|
2014-11-06 23:45:05 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 22:40:54 +00:00
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_sysctl_sw_filter_list(SYSCTL_HANDLER_ARGS)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = (struct iavf_sc *)arg1;
|
|
|
|
struct iavf_mac_filter *f;
|
|
|
|
struct iavf_vlan_filter *v;
|
2018-10-12 22:40:54 +00:00
|
|
|
device_t dev = sc->dev;
|
|
|
|
int ftl_len, ftl_counter = 0, error = 0;
|
|
|
|
struct sbuf *buf;
|
|
|
|
|
|
|
|
buf = sbuf_new_for_sysctl(NULL, NULL, 128, req);
|
|
|
|
if (!buf) {
|
|
|
|
device_printf(dev, "Could not allocate sbuf for output.\n");
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
sbuf_printf(buf, "\n");
|
|
|
|
|
|
|
|
/* Print MAC filters */
|
|
|
|
sbuf_printf(buf, "MAC Filters:\n");
|
|
|
|
ftl_len = 0;
|
|
|
|
SLIST_FOREACH(f, sc->mac_filters, next)
|
|
|
|
ftl_len++;
|
|
|
|
if (ftl_len < 1)
|
|
|
|
sbuf_printf(buf, "(none)\n");
|
|
|
|
else {
|
|
|
|
SLIST_FOREACH(f, sc->mac_filters, next) {
|
|
|
|
sbuf_printf(buf,
|
|
|
|
MAC_FORMAT ", flags %#06x\n",
|
|
|
|
MAC_FORMAT_ARGS(f->macaddr), f->flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print VLAN filters */
|
|
|
|
sbuf_printf(buf, "VLAN Filters:\n");
|
|
|
|
ftl_len = 0;
|
|
|
|
SLIST_FOREACH(v, sc->vlan_filters, next)
|
|
|
|
ftl_len++;
|
|
|
|
if (ftl_len < 1)
|
|
|
|
sbuf_printf(buf, "(none)");
|
|
|
|
else {
|
|
|
|
SLIST_FOREACH(v, sc->vlan_filters, next) {
|
|
|
|
sbuf_printf(buf,
|
|
|
|
"%d, flags %#06x",
|
|
|
|
v->vlan, v->flags);
|
|
|
|
/* don't print '\n' for last entry */
|
|
|
|
if (++ftl_counter != ftl_len)
|
|
|
|
sbuf_printf(buf, "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
error = sbuf_finish(buf);
|
|
|
|
if (error)
|
|
|
|
device_printf(dev, "Error finishing sbuf: %d\n", error);
|
|
|
|
|
|
|
|
sbuf_delete(buf);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print out mapping of TX queue indexes and Rx queue indexes
|
|
|
|
* to MSI-X vectors.
|
|
|
|
*/
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_sysctl_queue_interrupt_table(SYSCTL_HANDLER_ARGS)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = (struct iavf_sc *)arg1;
|
2018-10-12 22:40:54 +00:00
|
|
|
struct ixl_vsi *vsi = &sc->vsi;
|
|
|
|
device_t dev = sc->dev;
|
|
|
|
struct sbuf *buf;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
struct ixl_rx_queue *rx_que = vsi->rx_queues;
|
|
|
|
struct ixl_tx_queue *tx_que = vsi->tx_queues;
|
|
|
|
|
|
|
|
buf = sbuf_new_for_sysctl(NULL, NULL, 128, req);
|
|
|
|
if (!buf) {
|
|
|
|
device_printf(dev, "Could not allocate sbuf for output.\n");
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
sbuf_cat(buf, "\n");
|
|
|
|
for (int i = 0; i < vsi->num_rx_queues; i++) {
|
|
|
|
rx_que = &vsi->rx_queues[i];
|
|
|
|
sbuf_printf(buf, "(rxq %3d): %d\n", i, rx_que->msix);
|
|
|
|
}
|
|
|
|
for (int i = 0; i < vsi->num_tx_queues; i++) {
|
|
|
|
tx_que = &vsi->tx_queues[i];
|
|
|
|
sbuf_printf(buf, "(txq %3d): %d\n", i, tx_que->msix);
|
|
|
|
}
|
|
|
|
|
|
|
|
error = sbuf_finish(buf);
|
|
|
|
if (error)
|
|
|
|
device_printf(dev, "Error finishing sbuf: %d\n", error);
|
|
|
|
sbuf_delete(buf);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CTX_ACTIVE(ctx) ((if_getdrvflags(iflib_get_ifp(ctx)) & IFF_DRV_RUNNING))
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_sysctl_vf_reset(SYSCTL_HANDLER_ARGS)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = (struct iavf_sc *)arg1;
|
2018-10-12 22:40:54 +00:00
|
|
|
int do_reset = 0, error = 0;
|
|
|
|
|
|
|
|
error = sysctl_handle_int(oidp, &do_reset, 0, req);
|
|
|
|
if ((error) || (req->newptr == NULL))
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
if (do_reset == 1) {
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_reset(sc);
|
2018-10-12 22:40:54 +00:00
|
|
|
if (CTX_ACTIVE(sc->vsi.ctx))
|
|
|
|
iflib_request_reset(sc->vsi.ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2018-10-15 17:23:41 +00:00
|
|
|
iavf_sysctl_vflr_reset(SYSCTL_HANDLER_ARGS)
|
2018-10-12 22:40:54 +00:00
|
|
|
{
|
2018-10-15 17:23:41 +00:00
|
|
|
struct iavf_sc *sc = (struct iavf_sc *)arg1;
|
2018-10-12 22:40:54 +00:00
|
|
|
device_t dev = sc->dev;
|
|
|
|
int do_reset = 0, error = 0;
|
|
|
|
|
|
|
|
error = sysctl_handle_int(oidp, &do_reset, 0, req);
|
|
|
|
if ((error) || (req->newptr == NULL))
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
if (do_reset == 1) {
|
|
|
|
if (!pcie_flr(dev, max(pcie_get_max_completion_timeout(dev) / 1000, 10), true)) {
|
|
|
|
device_printf(dev, "PCIE FLR failed\n");
|
|
|
|
error = EIO;
|
|
|
|
}
|
|
|
|
else if (CTX_ACTIVE(sc->vsi.ctx))
|
|
|
|
iflib_request_reset(sc->vsi.ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
#undef CTX_ACTIVE
|