161ae650dSJack F Vogel /****************************************************************************** 261ae650dSJack F Vogel 3f4cc2d17SEric Joyner Copyright (c) 2013-2018, Intel Corporation 461ae650dSJack F Vogel All rights reserved. 561ae650dSJack F Vogel 661ae650dSJack F Vogel Redistribution and use in source and binary forms, with or without 761ae650dSJack F Vogel modification, are permitted provided that the following conditions are met: 861ae650dSJack F Vogel 961ae650dSJack F Vogel 1. Redistributions of source code must retain the above copyright notice, 1061ae650dSJack F Vogel this list of conditions and the following disclaimer. 1161ae650dSJack F Vogel 1261ae650dSJack F Vogel 2. Redistributions in binary form must reproduce the above copyright 1361ae650dSJack F Vogel notice, this list of conditions and the following disclaimer in the 1461ae650dSJack F Vogel documentation and/or other materials provided with the distribution. 1561ae650dSJack F Vogel 1661ae650dSJack F Vogel 3. Neither the name of the Intel Corporation nor the names of its 1761ae650dSJack F Vogel contributors may be used to endorse or promote products derived from 1861ae650dSJack F Vogel this software without specific prior written permission. 1961ae650dSJack F Vogel 2061ae650dSJack F Vogel THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 2161ae650dSJack F Vogel AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2261ae650dSJack F Vogel IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2361ae650dSJack F Vogel ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 2461ae650dSJack F Vogel LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 2561ae650dSJack F Vogel CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 2661ae650dSJack F Vogel SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 2761ae650dSJack F Vogel INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 2861ae650dSJack F Vogel CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 2961ae650dSJack F Vogel ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 3061ae650dSJack F Vogel POSSIBILITY OF SUCH DAMAGE. 3161ae650dSJack F Vogel 3261ae650dSJack F Vogel ******************************************************************************/ 3361ae650dSJack F Vogel /*$FreeBSD$*/ 3461ae650dSJack F Vogel 3561ae650dSJack F Vogel #ifndef _IXL_H_ 3661ae650dSJack F Vogel #define _IXL_H_ 3761ae650dSJack F Vogel 38f7c73984SSean Bruno #include "opt_inet.h" 39f7c73984SSean Bruno #include "opt_inet6.h" 40f7c73984SSean Bruno #include "opt_rss.h" 41cb6b8299SEric Joyner #include "opt_ixl.h" 42f7c73984SSean Bruno 4361ae650dSJack F Vogel #include <sys/param.h> 4461ae650dSJack F Vogel #include <sys/systm.h> 4561ae650dSJack F Vogel #include <sys/buf_ring.h> 4661ae650dSJack F Vogel #include <sys/mbuf.h> 4761ae650dSJack F Vogel #include <sys/protosw.h> 4861ae650dSJack F Vogel #include <sys/socket.h> 4961ae650dSJack F Vogel #include <sys/malloc.h> 5061ae650dSJack F Vogel #include <sys/kernel.h> 5161ae650dSJack F Vogel #include <sys/module.h> 5261ae650dSJack F Vogel #include <sys/sockio.h> 5313b40804SSteven Hartland #include <sys/eventhandler.h> 54cb6b8299SEric Joyner #include <sys/syslog.h> 55ab43ce7aSEric Joyner #include <sys/priv.h> 567d4dceecSKrzysztof Galazka #include <sys/bitstring.h> 5761ae650dSJack F Vogel 5861ae650dSJack F Vogel #include <net/if.h> 5913b40804SSteven Hartland #include <net/if_var.h> 6061ae650dSJack F Vogel #include <net/if_arp.h> 6161ae650dSJack F Vogel #include <net/bpf.h> 6261ae650dSJack F Vogel #include <net/ethernet.h> 6361ae650dSJack F Vogel #include <net/if_dl.h> 6461ae650dSJack F Vogel #include <net/if_media.h> 651031d839SEric Joyner #include <net/iflib.h> 6661ae650dSJack F Vogel 6761ae650dSJack F Vogel #include <net/bpf.h> 6861ae650dSJack F Vogel #include <net/if_types.h> 6961ae650dSJack F Vogel #include <net/if_vlan_var.h> 7061ae650dSJack F Vogel 7161ae650dSJack F Vogel #include <netinet/in_systm.h> 7261ae650dSJack F Vogel #include <netinet/in.h> 7361ae650dSJack F Vogel #include <netinet/if_ether.h> 7461ae650dSJack F Vogel #include <netinet/ip.h> 7561ae650dSJack F Vogel #include <netinet/ip6.h> 7661ae650dSJack F Vogel #include <netinet/tcp.h> 7761ae650dSJack F Vogel #include <netinet/tcp_lro.h> 7861ae650dSJack F Vogel #include <netinet/udp.h> 7961ae650dSJack F Vogel #include <netinet/sctp.h> 8061ae650dSJack F Vogel 8161ae650dSJack F Vogel #include <machine/in_cksum.h> 8261ae650dSJack F Vogel 8361ae650dSJack F Vogel #include <sys/bus.h> 8461ae650dSJack F Vogel #include <machine/bus.h> 8561ae650dSJack F Vogel #include <sys/rman.h> 8661ae650dSJack F Vogel #include <machine/resource.h> 8761ae650dSJack F Vogel #include <vm/vm.h> 8861ae650dSJack F Vogel #include <vm/pmap.h> 8961ae650dSJack F Vogel #include <machine/clock.h> 9061ae650dSJack F Vogel #include <dev/pci/pcivar.h> 9161ae650dSJack F Vogel #include <dev/pci/pcireg.h> 9261ae650dSJack F Vogel #include <sys/proc.h> 9361ae650dSJack F Vogel #include <sys/sysctl.h> 9461ae650dSJack F Vogel #include <sys/endian.h> 9561ae650dSJack F Vogel #include <sys/taskqueue.h> 9661ae650dSJack F Vogel #include <sys/pcpu.h> 9761ae650dSJack F Vogel #include <sys/smp.h> 981d767a8eSEric Joyner #include <sys/sbuf.h> 9961ae650dSJack F Vogel #include <machine/smp.h> 1004294f337SSean Bruno #include <machine/stdarg.h> 10161ae650dSJack F Vogel 1024294f337SSean Bruno #ifdef RSS 1034294f337SSean Bruno #include <net/rss_config.h> 104f7c73984SSean Bruno #include <netinet/in_rss.h> 10556c2c47bSJack F Vogel #endif 10656c2c47bSJack F Vogel 1071031d839SEric Joyner #include "ifdi_if.h" 10861ae650dSJack F Vogel #include "i40e_type.h" 10961ae650dSJack F Vogel #include "i40e_prototype.h" 1101031d839SEric Joyner #include "ixl_debug.h" 11161ae650dSJack F Vogel 1121031d839SEric Joyner #define PVIDV(vendor, devid, name) \ 1131031d839SEric Joyner PVID(vendor, devid, name " - " IXL_DRIVER_VERSION_STRING) 1144294f337SSean Bruno 11561ae650dSJack F Vogel /* Tunables */ 11661ae650dSJack F Vogel 11761ae650dSJack F Vogel /* 11861ae650dSJack F Vogel * Ring Descriptors Valid Range: 32-4096 Default Value: 1024 This value is the 11961ae650dSJack F Vogel * number of tx/rx descriptors allocated by the driver. Increasing this 1206c426059SEric Joyner * value allows the driver to queue more operations. 1216c426059SEric Joyner * 1226c426059SEric Joyner * Tx descriptors are always 16 bytes, but Rx descriptors can be 32 bytes. 1236c426059SEric Joyner * The driver currently always uses 32 byte Rx descriptors. 12461ae650dSJack F Vogel */ 125cb6b8299SEric Joyner #define IXL_DEFAULT_RING 1024 126ceebc2f3SEric Joyner #define IXL_MAX_RING 4096 127ceebc2f3SEric Joyner #define IXL_MIN_RING 64 1284294f337SSean Bruno #define IXL_RING_INCREMENT 32 1294294f337SSean Bruno 1304294f337SSean Bruno #define IXL_AQ_LEN 256 1314294f337SSean Bruno #define IXL_AQ_LEN_MAX 1024 13261ae650dSJack F Vogel 13361ae650dSJack F Vogel /* Alignment for rings */ 13461ae650dSJack F Vogel #define DBA_ALIGN 128 13561ae650dSJack F Vogel 13661ae650dSJack F Vogel #define MAX_MULTICAST_ADDR 128 13761ae650dSJack F Vogel 138cb6b8299SEric Joyner #define IXL_MSIX_BAR 3 13961ae650dSJack F Vogel #define IXL_ADM_LIMIT 2 1401031d839SEric Joyner #define IXL_TSO_SIZE ((255*1024)-1) 1411031d839SEric Joyner #define IXL_TX_BUF_SZ ((u32) 1514) 14261ae650dSJack F Vogel #define IXL_AQ_BUF_SZ ((u32) 4096) 14361ae650dSJack F Vogel #define IXL_RX_ITR 0 14461ae650dSJack F Vogel #define IXL_TX_ITR 1 14561ae650dSJack F Vogel #define IXL_ITR_NONE 3 14661ae650dSJack F Vogel #define IXL_QUEUE_EOL 0x7FF 14777c1fcecSEric Joyner #define IXL_MIN_FRAME 17 1486c426059SEric Joyner #define IXL_MAX_FRAME 9728 14961ae650dSJack F Vogel #define IXL_MAX_TX_SEGS 8 1501031d839SEric Joyner #define IXL_MAX_RX_SEGS 5 1514294f337SSean Bruno #define IXL_MAX_TSO_SEGS 128 152ceebc2f3SEric Joyner #define IXL_SPARSE_CHAIN 7 153cb6b8299SEric Joyner #define IXL_MIN_TSO_MSS 64 15477c1fcecSEric Joyner #define IXL_MAX_TSO_MSS 9668 155ceebc2f3SEric Joyner #define IXL_MAX_DMA_SEG_SIZE ((16 * 1024) - 1) 1564294f337SSean Bruno 1574294f337SSean Bruno #define IXL_RSS_KEY_SIZE_REG 13 1584294f337SSean Bruno #define IXL_RSS_KEY_SIZE (IXL_RSS_KEY_SIZE_REG * 4) 1594294f337SSean Bruno #define IXL_RSS_VSI_LUT_SIZE 64 /* X722 -> VSI, X710 -> VF */ 1604294f337SSean Bruno #define IXL_RSS_VSI_LUT_ENTRY_MASK 0x3F 1614294f337SSean Bruno #define IXL_RSS_VF_LUT_ENTRY_MASK 0xF 16261ae650dSJack F Vogel 16356c2c47bSJack F Vogel #define IXL_VF_MAX_BUFFER 0x3F80 16456c2c47bSJack F Vogel #define IXL_VF_MAX_HDR_BUFFER 0x840 16556c2c47bSJack F Vogel #define IXL_VF_MAX_FRAME 0x3FFF 16656c2c47bSJack F Vogel 16761ae650dSJack F Vogel #define IXL_NVM_VERSION_LO_SHIFT 0 16861ae650dSJack F Vogel #define IXL_NVM_VERSION_LO_MASK (0xff << IXL_NVM_VERSION_LO_SHIFT) 16961ae650dSJack F Vogel #define IXL_NVM_VERSION_HI_SHIFT 12 17061ae650dSJack F Vogel #define IXL_NVM_VERSION_HI_MASK (0xf << IXL_NVM_VERSION_HI_SHIFT) 17161ae650dSJack F Vogel 17261ae650dSJack F Vogel /* 17361ae650dSJack F Vogel * Interrupt Moderation parameters 174cb6b8299SEric Joyner * Multiply ITR values by 2 for real ITR value 17561ae650dSJack F Vogel */ 176cb6b8299SEric Joyner #define IXL_MAX_ITR 0x0FF0 17761ae650dSJack F Vogel #define IXL_ITR_100K 0x0005 17861ae650dSJack F Vogel #define IXL_ITR_20K 0x0019 17961ae650dSJack F Vogel #define IXL_ITR_8K 0x003E 18061ae650dSJack F Vogel #define IXL_ITR_4K 0x007A 181cb6b8299SEric Joyner #define IXL_ITR_1K 0x01F4 18261ae650dSJack F Vogel #define IXL_ITR_DYNAMIC 0x8000 18361ae650dSJack F Vogel #define IXL_LOW_LATENCY 0 18461ae650dSJack F Vogel #define IXL_AVE_LATENCY 1 18561ae650dSJack F Vogel #define IXL_BULK_LATENCY 2 18661ae650dSJack F Vogel 18761ae650dSJack F Vogel /* MacVlan Flags */ 1887d4dceecSKrzysztof Galazka #define IXL_FILTER_VLAN (u16)(1 << 0) 1897d4dceecSKrzysztof Galazka #define IXL_FILTER_MC (u16)(1 << 1) 19061ae650dSJack F Vogel 19161ae650dSJack F Vogel /* used in the vlan field of the filter when not a vlan */ 19261ae650dSJack F Vogel #define IXL_VLAN_ANY -1 19361ae650dSJack F Vogel 1947d4dceecSKrzysztof Galazka /* Maximum number of MAC/VLAN filters supported by HW */ 195*1d02c6b1SKrzysztof Galazka #define IXL_MAX_VLAN_FILTERS 255 1967d4dceecSKrzysztof Galazka 19761ae650dSJack F Vogel #define CSUM_OFFLOAD_IPV4 (CSUM_IP|CSUM_TCP|CSUM_UDP|CSUM_SCTP) 19861ae650dSJack F Vogel #define CSUM_OFFLOAD_IPV6 (CSUM_TCP_IPV6|CSUM_UDP_IPV6|CSUM_SCTP_IPV6) 19961ae650dSJack F Vogel #define CSUM_OFFLOAD (CSUM_OFFLOAD_IPV4|CSUM_OFFLOAD_IPV6|CSUM_TSO) 20061ae650dSJack F Vogel 201b4a7ce06SEric Joyner /* Misc flags for ixl_vsi.flags */ 202b4a7ce06SEric Joyner #define IXL_FLAGS_KEEP_TSO4 (1 << 0) 203b4a7ce06SEric Joyner #define IXL_FLAGS_KEEP_TSO6 (1 << 1) 204b4a7ce06SEric Joyner #define IXL_FLAGS_USES_MSIX (1 << 2) 205b4a7ce06SEric Joyner #define IXL_FLAGS_IS_VF (1 << 3) 206b4a7ce06SEric Joyner 207b4a7ce06SEric Joyner #define IXL_VSI_IS_PF(v) ((v->flags & IXL_FLAGS_IS_VF) == 0) 208b4a7ce06SEric Joyner #define IXL_VSI_IS_VF(v) ((v->flags & IXL_FLAGS_IS_VF) != 0) 209b4a7ce06SEric Joyner 21056c2c47bSJack F Vogel #define IXL_VF_RESET_TIMEOUT 100 21156c2c47bSJack F Vogel 21256c2c47bSJack F Vogel #define IXL_VSI_DATA_PORT 0x01 21356c2c47bSJack F Vogel 2143f74c027SEric Joyner #define IAVF_MAX_QUEUES 16 21556c2c47bSJack F Vogel #define IXL_MAX_VSI_QUEUES (2 * (I40E_VSILAN_QTABLE_MAX_INDEX + 1)) 21656c2c47bSJack F Vogel 21756c2c47bSJack F Vogel #define IXL_RX_CTX_BASE_UNITS 128 21856c2c47bSJack F Vogel #define IXL_TX_CTX_BASE_UNITS 128 21956c2c47bSJack F Vogel 22056c2c47bSJack F Vogel #define IXL_PF_PCI_CIAA_VF_DEVICE_STATUS 0xAA 22156c2c47bSJack F Vogel 22256c2c47bSJack F Vogel #define IXL_PF_PCI_CIAD_VF_TRANS_PENDING_MASK 0x20 22356c2c47bSJack F Vogel 22456c2c47bSJack F Vogel #define IXL_GLGEN_VFLRSTAT_INDEX(glb_vf) ((glb_vf) / 32) 22556c2c47bSJack F Vogel #define IXL_GLGEN_VFLRSTAT_MASK(glb_vf) (1 << ((glb_vf) % 32)) 22656c2c47bSJack F Vogel 22756c2c47bSJack F Vogel #define IXL_MAX_ITR_IDX 3 22856c2c47bSJack F Vogel 22956c2c47bSJack F Vogel #define IXL_END_OF_INTR_LNKLST 0x7FF 23056c2c47bSJack F Vogel 231cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_BASE (\ 2324294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_UDP) | \ 2334294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP) | \ 2344294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_SCTP) | \ 2354294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) | \ 2364294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4) | \ 2374294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_UDP) | \ 2384294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP) | \ 2394294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_SCTP) | \ 2404294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) | \ 2414294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6) | \ 2424294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_L2_PAYLOAD)) 2434294f337SSean Bruno 244cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_XL710 IXL_DEFAULT_RSS_HENA_BASE 245cb6b8299SEric Joyner 246cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_X722 (\ 247cb6b8299SEric Joyner IXL_DEFAULT_RSS_HENA_BASE | \ 248cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | \ 249cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) | \ 250cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | \ 251cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) | \ 252cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK) | \ 253cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK)) 254cb6b8299SEric Joyner 2551031d839SEric Joyner #define IXL_CAPS \ 2561031d839SEric Joyner (IFCAP_TSO4 | IFCAP_TSO6 | \ 2571031d839SEric Joyner IFCAP_TXCSUM | IFCAP_TXCSUM_IPV6 | \ 2581031d839SEric Joyner IFCAP_RXCSUM | IFCAP_RXCSUM_IPV6 | \ 2591031d839SEric Joyner IFCAP_VLAN_HWFILTER | IFCAP_VLAN_HWTSO | \ 2606daf59aaSMarius Strobl IFCAP_VLAN_HWTAGGING | IFCAP_VLAN_HWCSUM | \ 2611031d839SEric Joyner IFCAP_VLAN_MTU | IFCAP_JUMBO_MTU | IFCAP_LRO) 26261ae650dSJack F Vogel 2631031d839SEric Joyner #define IXL_CSUM_TCP \ 2641031d839SEric Joyner (CSUM_IP_TCP|CSUM_IP_TSO|CSUM_IP6_TSO|CSUM_IP6_TCP) 2651031d839SEric Joyner #define IXL_CSUM_UDP \ 2661031d839SEric Joyner (CSUM_IP_UDP|CSUM_IP6_UDP) 2671031d839SEric Joyner #define IXL_CSUM_SCTP \ 2681031d839SEric Joyner (CSUM_IP_SCTP|CSUM_IP6_SCTP) 26937761e2eSEric Joyner #define IXL_CSUM_IPV4 \ 27037761e2eSEric Joyner (CSUM_IP|CSUM_IP_TSO) 27161ae650dSJack F Vogel 272a48d00d2SEric Joyner /* Pre-11 counter(9) compatibility */ 2734b443922SGleb Smirnoff #define IXL_SET_IPACKETS(vsi, count) (vsi)->ipackets = (count) 2744b443922SGleb Smirnoff #define IXL_SET_IERRORS(vsi, count) (vsi)->ierrors = (count) 2754b443922SGleb Smirnoff #define IXL_SET_OPACKETS(vsi, count) (vsi)->opackets = (count) 2764b443922SGleb Smirnoff #define IXL_SET_OERRORS(vsi, count) (vsi)->oerrors = (count) 2774b443922SGleb Smirnoff #define IXL_SET_COLLISIONS(vsi, count) /* Do nothing; collisions is always 0. */ 2784b443922SGleb Smirnoff #define IXL_SET_IBYTES(vsi, count) (vsi)->ibytes = (count) 2794b443922SGleb Smirnoff #define IXL_SET_OBYTES(vsi, count) (vsi)->obytes = (count) 2804b443922SGleb Smirnoff #define IXL_SET_IMCASTS(vsi, count) (vsi)->imcasts = (count) 2814b443922SGleb Smirnoff #define IXL_SET_OMCASTS(vsi, count) (vsi)->omcasts = (count) 2824b443922SGleb Smirnoff #define IXL_SET_IQDROPS(vsi, count) (vsi)->iqdrops = (count) 283625d12c6SJohn Baldwin #define IXL_SET_OQDROPS(vsi, count) (vsi)->oqdrops = (count) 2844b443922SGleb Smirnoff #define IXL_SET_NOPROTO(vsi, count) (vsi)->noproto = (count) 2854b443922SGleb Smirnoff 28677c1fcecSEric Joyner /* For stats sysctl naming */ 287b4a7ce06SEric Joyner #define IXL_QUEUE_NAME_LEN 32 28877c1fcecSEric Joyner 2897d4dceecSKrzysztof Galazka MALLOC_DECLARE(M_IXL); 2907d4dceecSKrzysztof Galazka 2911031d839SEric Joyner #define IXL_DEV_ERR(_dev, _format, ...) \ 2921031d839SEric Joyner device_printf(_dev, "%s: " _format " (%s:%d)\n", __func__, ##__VA_ARGS__, __FILE__, __LINE__) 2931031d839SEric Joyner 29461ae650dSJack F Vogel /* 29561ae650dSJack F Vogel ***************************************************************************** 29661ae650dSJack F Vogel * vendor_info_array 29761ae650dSJack F Vogel * 29861ae650dSJack F Vogel * This array contains the list of Subvendor/Subdevice IDs on which the driver 29961ae650dSJack F Vogel * should load. 30061ae650dSJack F Vogel * 30161ae650dSJack F Vogel ***************************************************************************** 30261ae650dSJack F Vogel */ 30361ae650dSJack F Vogel typedef struct _ixl_vendor_info_t { 30461ae650dSJack F Vogel unsigned int vendor_id; 30561ae650dSJack F Vogel unsigned int device_id; 30661ae650dSJack F Vogel unsigned int subvendor_id; 30761ae650dSJack F Vogel unsigned int subdevice_id; 30861ae650dSJack F Vogel unsigned int index; 30961ae650dSJack F Vogel } ixl_vendor_info_t; 31061ae650dSJack F Vogel 31161ae650dSJack F Vogel /* 31261ae650dSJack F Vogel ** This struct has multiple uses, multicast 31361ae650dSJack F Vogel ** addresses, vlans, and mac filters all use it. 31461ae650dSJack F Vogel */ 31561ae650dSJack F Vogel struct ixl_mac_filter { 3167d4dceecSKrzysztof Galazka LIST_ENTRY(ixl_mac_filter) ftle; 31761ae650dSJack F Vogel u8 macaddr[ETHER_ADDR_LEN]; 31861ae650dSJack F Vogel s16 vlan; 31961ae650dSJack F Vogel u16 flags; 32061ae650dSJack F Vogel }; 32161ae650dSJack F Vogel 32261ae650dSJack F Vogel /* 32361ae650dSJack F Vogel * The Transmit ring control struct 32461ae650dSJack F Vogel */ 32561ae650dSJack F Vogel struct tx_ring { 3261031d839SEric Joyner struct ixl_tx_queue *que; 32761ae650dSJack F Vogel u32 tail; 3281031d839SEric Joyner struct i40e_tx_desc *tx_base; 3291031d839SEric Joyner u64 tx_paddr; 3306d011ad5SEric Joyner u32 latency; 3311031d839SEric Joyner u32 packets; 3321031d839SEric Joyner u32 me; 3331031d839SEric Joyner /* 3341031d839SEric Joyner * For reporting completed packet status 3351031d839SEric Joyner * in descriptor writeback mode 3361031d839SEric Joyner */ 3371031d839SEric Joyner qidx_t *tx_rsq; 3381031d839SEric Joyner qidx_t tx_rs_cidx; 3391031d839SEric Joyner qidx_t tx_rs_pidx; 3401031d839SEric Joyner qidx_t tx_cidx_processed; 34161ae650dSJack F Vogel 34261ae650dSJack F Vogel /* Used for Dynamic ITR calculation */ 3431031d839SEric Joyner u32 itr; 34461ae650dSJack F Vogel u32 bytes; 34561ae650dSJack F Vogel 34661ae650dSJack F Vogel /* Soft Stats */ 34761ae650dSJack F Vogel u64 tx_bytes; 3481031d839SEric Joyner u64 tx_packets; 3491031d839SEric Joyner u64 mss_too_small; 35061ae650dSJack F Vogel }; 35161ae650dSJack F Vogel 35261ae650dSJack F Vogel 35361ae650dSJack F Vogel /* 35461ae650dSJack F Vogel * The Receive ring control struct 35561ae650dSJack F Vogel */ 35661ae650dSJack F Vogel struct rx_ring { 3571031d839SEric Joyner struct ixl_rx_queue *que; 3581031d839SEric Joyner union i40e_rx_desc *rx_base; 3591031d839SEric Joyner uint64_t rx_paddr; 36061ae650dSJack F Vogel bool discard; 3616d011ad5SEric Joyner u32 itr; 3626d011ad5SEric Joyner u32 latency; 36361ae650dSJack F Vogel u32 mbuf_sz; 36461ae650dSJack F Vogel u32 tail; 3651031d839SEric Joyner u32 me; 36661ae650dSJack F Vogel 36761ae650dSJack F Vogel /* Used for Dynamic ITR calculation */ 36861ae650dSJack F Vogel u32 packets; 36961ae650dSJack F Vogel u32 bytes; 37061ae650dSJack F Vogel 37161ae650dSJack F Vogel /* Soft stats */ 37261ae650dSJack F Vogel u64 rx_packets; 37361ae650dSJack F Vogel u64 rx_bytes; 3746d011ad5SEric Joyner u64 desc_errs; 3759f99061eSKrzysztof Galazka u64 csum_errs; 37661ae650dSJack F Vogel }; 37761ae650dSJack F Vogel 37861ae650dSJack F Vogel /* 3791031d839SEric Joyner ** Driver queue structs 38061ae650dSJack F Vogel */ 3811031d839SEric Joyner struct ixl_tx_queue { 38261ae650dSJack F Vogel struct ixl_vsi *vsi; 38361ae650dSJack F Vogel struct tx_ring txr; 3841031d839SEric Joyner struct if_irq que_irq; 3851031d839SEric Joyner u32 msix; 3861031d839SEric Joyner /* Stats */ 38761ae650dSJack F Vogel u64 irqs; 38861ae650dSJack F Vogel u64 tso; 3891031d839SEric Joyner }; 3901031d839SEric Joyner 3911031d839SEric Joyner struct ixl_rx_queue { 3921031d839SEric Joyner struct ixl_vsi *vsi; 3931031d839SEric Joyner struct rx_ring rxr; 3941031d839SEric Joyner struct if_irq que_irq; 3951031d839SEric Joyner u32 msix; /* This queue's MSIX vector */ 3961031d839SEric Joyner /* Stats */ 3971031d839SEric Joyner u64 irqs; 39861ae650dSJack F Vogel }; 39961ae650dSJack F Vogel 40061ae650dSJack F Vogel /* 4014294f337SSean Bruno ** Virtual Station Interface 40261ae650dSJack F Vogel */ 4037d4dceecSKrzysztof Galazka LIST_HEAD(ixl_ftl_head, ixl_mac_filter); 40461ae650dSJack F Vogel struct ixl_vsi { 4051031d839SEric Joyner if_ctx_t ctx; 4061031d839SEric Joyner if_softc_ctx_t shared; 407402810d3SJustin Hibbits if_t ifp; 40877c1fcecSEric Joyner device_t dev; 40961ae650dSJack F Vogel struct i40e_hw *hw; 4101031d839SEric Joyner struct ifmedia *media; 41177c1fcecSEric Joyner 41277c1fcecSEric Joyner int num_rx_queues; 41377c1fcecSEric Joyner int num_tx_queues; 4141031d839SEric Joyner 4151031d839SEric Joyner void *back; 416ac83ea83SEric Joyner enum i40e_vsi_type type; 41761ae650dSJack F Vogel int id; 4186d011ad5SEric Joyner u32 rx_itr_setting; 4196d011ad5SEric Joyner u32 tx_itr_setting; 420ceebc2f3SEric Joyner bool enable_head_writeback; 4214294f337SSean Bruno 4224294f337SSean Bruno u16 vsi_num; 42361ae650dSJack F Vogel bool link_active; 42461ae650dSJack F Vogel u16 seid; 42556c2c47bSJack F Vogel u16 uplink_seid; 42656c2c47bSJack F Vogel u16 downlink_seid; 42761ae650dSJack F Vogel 4281031d839SEric Joyner struct ixl_tx_queue *tx_queues; /* TX queue array */ 4291031d839SEric Joyner struct ixl_rx_queue *rx_queues; /* RX queue array */ 4301031d839SEric Joyner struct if_irq irq; 4311031d839SEric Joyner u32 link_speed; 4321031d839SEric Joyner 43361ae650dSJack F Vogel /* MAC/VLAN Filter list */ 43461ae650dSJack F Vogel struct ixl_ftl_head ftl; 43556c2c47bSJack F Vogel u16 num_macs; 436b4a7ce06SEric Joyner u64 num_hw_filters; 43761ae650dSJack F Vogel 4384294f337SSean Bruno /* Contains readylist & stat counter id */ 43961ae650dSJack F Vogel struct i40e_aqc_vsi_properties_data info; 44061ae650dSJack F Vogel 4417d4dceecSKrzysztof Galazka #define IXL_VLANS_MAP_LEN EVL_VLID_MASK + 1 4427d4dceecSKrzysztof Galazka bitstr_t bit_decl(vlans_map, IXL_VLANS_MAP_LEN); 44361ae650dSJack F Vogel u16 num_vlans; 44461ae650dSJack F Vogel 44561ae650dSJack F Vogel /* Per-VSI stats from hardware */ 44661ae650dSJack F Vogel struct i40e_eth_stats eth_stats; 44761ae650dSJack F Vogel struct i40e_eth_stats eth_stats_offsets; 44861ae650dSJack F Vogel bool stat_offsets_loaded; 449e5100ee2SJack F Vogel /* VSI stat counters */ 4504b443922SGleb Smirnoff u64 ipackets; 4514b443922SGleb Smirnoff u64 ierrors; 4524b443922SGleb Smirnoff u64 opackets; 4534b443922SGleb Smirnoff u64 oerrors; 4544b443922SGleb Smirnoff u64 ibytes; 4554b443922SGleb Smirnoff u64 obytes; 4564b443922SGleb Smirnoff u64 imcasts; 4574b443922SGleb Smirnoff u64 omcasts; 4584b443922SGleb Smirnoff u64 iqdrops; 4594b443922SGleb Smirnoff u64 oqdrops; 4604b443922SGleb Smirnoff u64 noproto; 46161ae650dSJack F Vogel 46261ae650dSJack F Vogel /* Misc. */ 46361ae650dSJack F Vogel u64 flags; 4641031d839SEric Joyner /* Stats sysctls for this VSI */ 46556c2c47bSJack F Vogel struct sysctl_oid *vsi_node; 466b4a7ce06SEric Joyner struct sysctl_ctx_list sysctl_ctx; 46761ae650dSJack F Vogel }; 46861ae650dSJack F Vogel 4697d4dceecSKrzysztof Galazka struct ixl_add_maddr_arg { 4707d4dceecSKrzysztof Galazka struct ixl_ftl_head to_add; 4717d4dceecSKrzysztof Galazka struct ixl_vsi *vsi; 4727d4dceecSKrzysztof Galazka }; 47361ae650dSJack F Vogel 47461ae650dSJack F Vogel /* 47561ae650dSJack F Vogel ** Compare two ethernet addresses 47661ae650dSJack F Vogel */ 47761ae650dSJack F Vogel static inline bool 4787d4dceecSKrzysztof Galazka ixl_ether_is_equal(const u8 *ea1, const u8 *ea2) 47961ae650dSJack F Vogel { 480b4a7ce06SEric Joyner return (bcmp(ea1, ea2, ETHER_ADDR_LEN) == 0); 48161ae650dSJack F Vogel } 48261ae650dSJack F Vogel 48361ae650dSJack F Vogel /* 4844294f337SSean Bruno * Return next largest power of 2, unsigned 4854294f337SSean Bruno * 4864294f337SSean Bruno * Public domain, from Bit Twiddling Hacks 4874294f337SSean Bruno */ 4884294f337SSean Bruno static inline u32 4894294f337SSean Bruno next_power_of_two(u32 n) 4904294f337SSean Bruno { 4914294f337SSean Bruno n--; 4924294f337SSean Bruno n |= n >> 1; 4934294f337SSean Bruno n |= n >> 2; 4944294f337SSean Bruno n |= n >> 4; 4954294f337SSean Bruno n |= n >> 8; 4964294f337SSean Bruno n |= n >> 16; 4974294f337SSean Bruno n++; 4984294f337SSean Bruno 4994294f337SSean Bruno /* Next power of two > 0 is 1 */ 5004294f337SSean Bruno n += (n == 0); 5014294f337SSean Bruno 5024294f337SSean Bruno return (n); 5034294f337SSean Bruno } 5044294f337SSean Bruno 5054294f337SSean Bruno /* 50661ae650dSJack F Vogel * Info for stats sysctls 50761ae650dSJack F Vogel */ 50861ae650dSJack F Vogel struct ixl_sysctl_info { 50961ae650dSJack F Vogel u64 *stat; 51061ae650dSJack F Vogel char *name; 51161ae650dSJack F Vogel char *description; 51261ae650dSJack F Vogel }; 51361ae650dSJack F Vogel 51433c66d8aSRyan Libby extern const uint8_t ixl_bcast_addr[ETHER_ADDR_LEN]; 51561ae650dSJack F Vogel 5164294f337SSean Bruno /* Common function prototypes between PF/VF driver */ 51777c1fcecSEric Joyner void ixl_debug_core(device_t dev, u32 enabled_mask, u32 mask, char *fmt, ...); 5181031d839SEric Joyner void ixl_init_tx_ring(struct ixl_vsi *vsi, struct ixl_tx_queue *que); 5194294f337SSean Bruno void ixl_get_default_rss_key(u32 *); 520ceebc2f3SEric Joyner const char * i40e_vc_stat_str(struct i40e_hw *hw, 521ceebc2f3SEric Joyner enum virtchnl_status_code stat_err); 52277c1fcecSEric Joyner void ixl_init_tx_rsqs(struct ixl_vsi *vsi); 52377c1fcecSEric Joyner void ixl_init_tx_cidx(struct ixl_vsi *vsi); 52477c1fcecSEric Joyner u64 ixl_max_vc_speed_to_value(u8 link_speeds); 52577c1fcecSEric Joyner void ixl_add_vsi_sysctls(device_t dev, struct ixl_vsi *vsi, 52677c1fcecSEric Joyner struct sysctl_ctx_list *ctx, const char *sysctl_name); 52777c1fcecSEric Joyner void ixl_add_sysctls_eth_stats(struct sysctl_ctx_list *ctx, 52877c1fcecSEric Joyner struct sysctl_oid_list *child, 52977c1fcecSEric Joyner struct i40e_eth_stats *eth_stats); 530b4a7ce06SEric Joyner void ixl_vsi_add_queues_stats(struct ixl_vsi *vsi, 531b4a7ce06SEric Joyner struct sysctl_ctx_list *ctx); 53261ae650dSJack F Vogel #endif /* _IXL_H_ */ 533