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 3461ae650dSJack F Vogel #ifndef _IXL_H_ 3561ae650dSJack F Vogel #define _IXL_H_ 3661ae650dSJack F Vogel 37f7c73984SSean Bruno #include "opt_inet.h" 38f7c73984SSean Bruno #include "opt_inet6.h" 39f7c73984SSean Bruno #include "opt_rss.h" 40cb6b8299SEric Joyner #include "opt_ixl.h" 41f7c73984SSean Bruno 4261ae650dSJack F Vogel #include <sys/param.h> 4361ae650dSJack F Vogel #include <sys/systm.h> 4461ae650dSJack F Vogel #include <sys/buf_ring.h> 4561ae650dSJack F Vogel #include <sys/mbuf.h> 4661ae650dSJack F Vogel #include <sys/protosw.h> 4761ae650dSJack F Vogel #include <sys/socket.h> 4861ae650dSJack F Vogel #include <sys/malloc.h> 4961ae650dSJack F Vogel #include <sys/kernel.h> 5061ae650dSJack F Vogel #include <sys/module.h> 5161ae650dSJack F Vogel #include <sys/sockio.h> 5213b40804SSteven Hartland #include <sys/eventhandler.h> 53cb6b8299SEric Joyner #include <sys/syslog.h> 54ab43ce7aSEric Joyner #include <sys/priv.h> 557d4dceecSKrzysztof Galazka #include <sys/bitstring.h> 5661ae650dSJack F Vogel 5761ae650dSJack F Vogel #include <net/if.h> 5813b40804SSteven Hartland #include <net/if_var.h> 5961ae650dSJack F Vogel #include <net/if_arp.h> 6061ae650dSJack F Vogel #include <net/bpf.h> 6161ae650dSJack F Vogel #include <net/ethernet.h> 6261ae650dSJack F Vogel #include <net/if_dl.h> 6361ae650dSJack F Vogel #include <net/if_media.h> 641031d839SEric Joyner #include <net/iflib.h> 6561ae650dSJack F Vogel 6661ae650dSJack F Vogel #include <net/bpf.h> 6761ae650dSJack F Vogel #include <net/if_types.h> 6861ae650dSJack F Vogel #include <net/if_vlan_var.h> 6961ae650dSJack F Vogel 7061ae650dSJack F Vogel #include <netinet/in_systm.h> 7161ae650dSJack F Vogel #include <netinet/in.h> 7261ae650dSJack F Vogel #include <netinet/if_ether.h> 7361ae650dSJack F Vogel #include <netinet/ip.h> 7461ae650dSJack F Vogel #include <netinet/ip6.h> 7561ae650dSJack F Vogel #include <netinet/tcp.h> 7661ae650dSJack F Vogel #include <netinet/tcp_lro.h> 7761ae650dSJack F Vogel #include <netinet/udp.h> 7861ae650dSJack F Vogel #include <netinet/sctp.h> 7961ae650dSJack F Vogel 8061ae650dSJack F Vogel #include <machine/in_cksum.h> 8161ae650dSJack F Vogel 8261ae650dSJack F Vogel #include <sys/bus.h> 8361ae650dSJack F Vogel #include <machine/bus.h> 8461ae650dSJack F Vogel #include <sys/rman.h> 8561ae650dSJack F Vogel #include <machine/resource.h> 8661ae650dSJack F Vogel #include <vm/vm.h> 8761ae650dSJack F Vogel #include <vm/pmap.h> 8861ae650dSJack F Vogel #include <machine/clock.h> 8961ae650dSJack F Vogel #include <dev/pci/pcivar.h> 9061ae650dSJack F Vogel #include <dev/pci/pcireg.h> 9161ae650dSJack F Vogel #include <sys/proc.h> 9261ae650dSJack F Vogel #include <sys/sysctl.h> 9361ae650dSJack F Vogel #include <sys/endian.h> 9461ae650dSJack F Vogel #include <sys/taskqueue.h> 9561ae650dSJack F Vogel #include <sys/pcpu.h> 9661ae650dSJack F Vogel #include <sys/smp.h> 971d767a8eSEric Joyner #include <sys/sbuf.h> 9861ae650dSJack F Vogel #include <machine/smp.h> 994294f337SSean Bruno #include <machine/stdarg.h> 10061ae650dSJack F Vogel 1014294f337SSean Bruno #ifdef RSS 1024294f337SSean Bruno #include <net/rss_config.h> 103f7c73984SSean Bruno #include <netinet/in_rss.h> 10456c2c47bSJack F Vogel #endif 10556c2c47bSJack F Vogel 1061031d839SEric Joyner #include "ifdi_if.h" 10761ae650dSJack F Vogel #include "i40e_type.h" 10861ae650dSJack F Vogel #include "i40e_prototype.h" 1091031d839SEric Joyner #include "ixl_debug.h" 11061ae650dSJack F Vogel 1111031d839SEric Joyner #define PVIDV(vendor, devid, name) \ 1121031d839SEric Joyner PVID(vendor, devid, name " - " IXL_DRIVER_VERSION_STRING) 1134294f337SSean Bruno 11461ae650dSJack F Vogel /* Tunables */ 11561ae650dSJack F Vogel 11661ae650dSJack F Vogel /* 11761ae650dSJack F Vogel * Ring Descriptors Valid Range: 32-4096 Default Value: 1024 This value is the 11861ae650dSJack F Vogel * number of tx/rx descriptors allocated by the driver. Increasing this 1196c426059SEric Joyner * value allows the driver to queue more operations. 1206c426059SEric Joyner * 1216c426059SEric Joyner * Tx descriptors are always 16 bytes, but Rx descriptors can be 32 bytes. 1226c426059SEric Joyner * The driver currently always uses 32 byte Rx descriptors. 12361ae650dSJack F Vogel */ 124cb6b8299SEric Joyner #define IXL_DEFAULT_RING 1024 125*bf085659SKevin Bowling #define IXL_MAX_RING 4096 126ceebc2f3SEric Joyner #define IXL_MIN_RING 64 1274294f337SSean Bruno #define IXL_RING_INCREMENT 32 1284294f337SSean Bruno 1294294f337SSean Bruno #define IXL_AQ_LEN 256 1304294f337SSean Bruno #define IXL_AQ_LEN_MAX 1024 13161ae650dSJack F Vogel 13261ae650dSJack F Vogel /* Alignment for rings */ 13361ae650dSJack F Vogel #define DBA_ALIGN 128 13461ae650dSJack F Vogel 13561ae650dSJack F Vogel #define MAX_MULTICAST_ADDR 128 13661ae650dSJack F Vogel 137cb6b8299SEric Joyner #define IXL_MSIX_BAR 3 13861ae650dSJack F Vogel #define IXL_ADM_LIMIT 2 1391031d839SEric Joyner #define IXL_TSO_SIZE ((255*1024)-1) 1401031d839SEric Joyner #define IXL_TX_BUF_SZ ((u32) 1514) 14161ae650dSJack F Vogel #define IXL_AQ_BUF_SZ ((u32) 4096) 14261ae650dSJack F Vogel #define IXL_RX_ITR 0 14361ae650dSJack F Vogel #define IXL_TX_ITR 1 14461ae650dSJack F Vogel #define IXL_ITR_NONE 3 14561ae650dSJack F Vogel #define IXL_QUEUE_EOL 0x7FF 14677c1fcecSEric Joyner #define IXL_MIN_FRAME 17 1476c426059SEric Joyner #define IXL_MAX_FRAME 9728 14861ae650dSJack F Vogel #define IXL_MAX_TX_SEGS 8 1491031d839SEric Joyner #define IXL_MAX_RX_SEGS 5 1504294f337SSean Bruno #define IXL_MAX_TSO_SEGS 128 151ceebc2f3SEric Joyner #define IXL_SPARSE_CHAIN 7 152cb6b8299SEric Joyner #define IXL_MIN_TSO_MSS 64 15377c1fcecSEric Joyner #define IXL_MAX_TSO_MSS 9668 154ceebc2f3SEric Joyner #define IXL_MAX_DMA_SEG_SIZE ((16 * 1024) - 1) 1554294f337SSean Bruno 1564294f337SSean Bruno #define IXL_RSS_KEY_SIZE_REG 13 1574294f337SSean Bruno #define IXL_RSS_KEY_SIZE (IXL_RSS_KEY_SIZE_REG * 4) 1584294f337SSean Bruno #define IXL_RSS_VSI_LUT_SIZE 64 /* X722 -> VSI, X710 -> VF */ 1594294f337SSean Bruno #define IXL_RSS_VSI_LUT_ENTRY_MASK 0x3F 1604294f337SSean Bruno #define IXL_RSS_VF_LUT_ENTRY_MASK 0xF 16161ae650dSJack F Vogel 16256c2c47bSJack F Vogel #define IXL_VF_MAX_BUFFER 0x3F80 16356c2c47bSJack F Vogel #define IXL_VF_MAX_HDR_BUFFER 0x840 16456c2c47bSJack F Vogel #define IXL_VF_MAX_FRAME 0x3FFF 16556c2c47bSJack F Vogel 16661ae650dSJack F Vogel #define IXL_NVM_VERSION_LO_SHIFT 0 16761ae650dSJack F Vogel #define IXL_NVM_VERSION_LO_MASK (0xff << IXL_NVM_VERSION_LO_SHIFT) 16861ae650dSJack F Vogel #define IXL_NVM_VERSION_HI_SHIFT 12 16961ae650dSJack F Vogel #define IXL_NVM_VERSION_HI_MASK (0xf << IXL_NVM_VERSION_HI_SHIFT) 17061ae650dSJack F Vogel 17161ae650dSJack F Vogel /* 17261ae650dSJack F Vogel * Interrupt Moderation parameters 173cb6b8299SEric Joyner * Multiply ITR values by 2 for real ITR value 17461ae650dSJack F Vogel */ 175cb6b8299SEric Joyner #define IXL_MAX_ITR 0x0FF0 17661ae650dSJack F Vogel #define IXL_ITR_100K 0x0005 17761ae650dSJack F Vogel #define IXL_ITR_20K 0x0019 17861ae650dSJack F Vogel #define IXL_ITR_8K 0x003E 17961ae650dSJack F Vogel #define IXL_ITR_4K 0x007A 180cb6b8299SEric Joyner #define IXL_ITR_1K 0x01F4 18161ae650dSJack F Vogel #define IXL_ITR_DYNAMIC 0x8000 18261ae650dSJack F Vogel #define IXL_LOW_LATENCY 0 18361ae650dSJack F Vogel #define IXL_AVE_LATENCY 1 18461ae650dSJack F Vogel #define IXL_BULK_LATENCY 2 18561ae650dSJack F Vogel 18661ae650dSJack F Vogel /* MacVlan Flags */ 1877d4dceecSKrzysztof Galazka #define IXL_FILTER_VLAN (u16)(1 << 0) 1887d4dceecSKrzysztof Galazka #define IXL_FILTER_MC (u16)(1 << 1) 18961ae650dSJack F Vogel 19061ae650dSJack F Vogel /* used in the vlan field of the filter when not a vlan */ 19161ae650dSJack F Vogel #define IXL_VLAN_ANY -1 19261ae650dSJack F Vogel 1937d4dceecSKrzysztof Galazka /* Maximum number of MAC/VLAN filters supported by HW */ 1941d02c6b1SKrzysztof Galazka #define IXL_MAX_VLAN_FILTERS 255 1957d4dceecSKrzysztof Galazka 19661ae650dSJack F Vogel #define CSUM_OFFLOAD_IPV4 (CSUM_IP|CSUM_TCP|CSUM_UDP|CSUM_SCTP) 19761ae650dSJack F Vogel #define CSUM_OFFLOAD_IPV6 (CSUM_TCP_IPV6|CSUM_UDP_IPV6|CSUM_SCTP_IPV6) 19861ae650dSJack F Vogel #define CSUM_OFFLOAD (CSUM_OFFLOAD_IPV4|CSUM_OFFLOAD_IPV6|CSUM_TSO) 19961ae650dSJack F Vogel 200b4a7ce06SEric Joyner /* Misc flags for ixl_vsi.flags */ 201b4a7ce06SEric Joyner #define IXL_FLAGS_KEEP_TSO4 (1 << 0) 202b4a7ce06SEric Joyner #define IXL_FLAGS_KEEP_TSO6 (1 << 1) 203b4a7ce06SEric Joyner #define IXL_FLAGS_USES_MSIX (1 << 2) 204b4a7ce06SEric Joyner #define IXL_FLAGS_IS_VF (1 << 3) 205b4a7ce06SEric Joyner 206b4a7ce06SEric Joyner #define IXL_VSI_IS_PF(v) ((v->flags & IXL_FLAGS_IS_VF) == 0) 207b4a7ce06SEric Joyner #define IXL_VSI_IS_VF(v) ((v->flags & IXL_FLAGS_IS_VF) != 0) 208b4a7ce06SEric Joyner 20956c2c47bSJack F Vogel #define IXL_VF_RESET_TIMEOUT 100 21056c2c47bSJack F Vogel 21156c2c47bSJack F Vogel #define IXL_VSI_DATA_PORT 0x01 21256c2c47bSJack F Vogel 2133f74c027SEric Joyner #define IAVF_MAX_QUEUES 16 21456c2c47bSJack F Vogel #define IXL_MAX_VSI_QUEUES (2 * (I40E_VSILAN_QTABLE_MAX_INDEX + 1)) 21556c2c47bSJack F Vogel 21656c2c47bSJack F Vogel #define IXL_RX_CTX_BASE_UNITS 128 21756c2c47bSJack F Vogel #define IXL_TX_CTX_BASE_UNITS 128 21856c2c47bSJack F Vogel 21956c2c47bSJack F Vogel #define IXL_PF_PCI_CIAA_VF_DEVICE_STATUS 0xAA 22056c2c47bSJack F Vogel 22156c2c47bSJack F Vogel #define IXL_PF_PCI_CIAD_VF_TRANS_PENDING_MASK 0x20 22256c2c47bSJack F Vogel 22356c2c47bSJack F Vogel #define IXL_GLGEN_VFLRSTAT_INDEX(glb_vf) ((glb_vf) / 32) 22456c2c47bSJack F Vogel #define IXL_GLGEN_VFLRSTAT_MASK(glb_vf) (1 << ((glb_vf) % 32)) 22556c2c47bSJack F Vogel 22656c2c47bSJack F Vogel #define IXL_MAX_ITR_IDX 3 22756c2c47bSJack F Vogel 22856c2c47bSJack F Vogel #define IXL_END_OF_INTR_LNKLST 0x7FF 22956c2c47bSJack F Vogel 230cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_BASE (\ 2314294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_UDP) | \ 2324294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP) | \ 2334294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_SCTP) | \ 2344294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) | \ 2354294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4) | \ 2364294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_UDP) | \ 2374294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP) | \ 2384294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_SCTP) | \ 2394294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) | \ 2404294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6) | \ 2414294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_L2_PAYLOAD)) 2424294f337SSean Bruno 243cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_XL710 IXL_DEFAULT_RSS_HENA_BASE 244cb6b8299SEric Joyner 245cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_X722 (\ 246cb6b8299SEric Joyner IXL_DEFAULT_RSS_HENA_BASE | \ 247cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | \ 248cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) | \ 249cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | \ 250cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) | \ 251cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK) | \ 252cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK)) 253cb6b8299SEric Joyner 2541031d839SEric Joyner #define IXL_CAPS \ 2551031d839SEric Joyner (IFCAP_TSO4 | IFCAP_TSO6 | \ 2561031d839SEric Joyner IFCAP_TXCSUM | IFCAP_TXCSUM_IPV6 | \ 2571031d839SEric Joyner IFCAP_RXCSUM | IFCAP_RXCSUM_IPV6 | \ 2581031d839SEric Joyner IFCAP_VLAN_HWFILTER | IFCAP_VLAN_HWTSO | \ 2596daf59aaSMarius Strobl IFCAP_VLAN_HWTAGGING | IFCAP_VLAN_HWCSUM | \ 2601031d839SEric Joyner IFCAP_VLAN_MTU | IFCAP_JUMBO_MTU | IFCAP_LRO) 26161ae650dSJack F Vogel 2621031d839SEric Joyner #define IXL_CSUM_TCP \ 2631031d839SEric Joyner (CSUM_IP_TCP|CSUM_IP_TSO|CSUM_IP6_TSO|CSUM_IP6_TCP) 2641031d839SEric Joyner #define IXL_CSUM_UDP \ 2651031d839SEric Joyner (CSUM_IP_UDP|CSUM_IP6_UDP) 2661031d839SEric Joyner #define IXL_CSUM_SCTP \ 2671031d839SEric Joyner (CSUM_IP_SCTP|CSUM_IP6_SCTP) 26837761e2eSEric Joyner #define IXL_CSUM_IPV4 \ 26937761e2eSEric Joyner (CSUM_IP|CSUM_IP_TSO) 27061ae650dSJack F Vogel 271a48d00d2SEric Joyner /* Pre-11 counter(9) compatibility */ 2724b443922SGleb Smirnoff #define IXL_SET_IPACKETS(vsi, count) (vsi)->ipackets = (count) 2734b443922SGleb Smirnoff #define IXL_SET_IERRORS(vsi, count) (vsi)->ierrors = (count) 2744b443922SGleb Smirnoff #define IXL_SET_OPACKETS(vsi, count) (vsi)->opackets = (count) 2754b443922SGleb Smirnoff #define IXL_SET_OERRORS(vsi, count) (vsi)->oerrors = (count) 2764b443922SGleb Smirnoff #define IXL_SET_COLLISIONS(vsi, count) /* Do nothing; collisions is always 0. */ 2774b443922SGleb Smirnoff #define IXL_SET_IBYTES(vsi, count) (vsi)->ibytes = (count) 2784b443922SGleb Smirnoff #define IXL_SET_OBYTES(vsi, count) (vsi)->obytes = (count) 2794b443922SGleb Smirnoff #define IXL_SET_IMCASTS(vsi, count) (vsi)->imcasts = (count) 2804b443922SGleb Smirnoff #define IXL_SET_OMCASTS(vsi, count) (vsi)->omcasts = (count) 2814b443922SGleb Smirnoff #define IXL_SET_IQDROPS(vsi, count) (vsi)->iqdrops = (count) 282625d12c6SJohn Baldwin #define IXL_SET_OQDROPS(vsi, count) (vsi)->oqdrops = (count) 2834b443922SGleb Smirnoff #define IXL_SET_NOPROTO(vsi, count) (vsi)->noproto = (count) 2844b443922SGleb Smirnoff 28577c1fcecSEric Joyner /* For stats sysctl naming */ 286b4a7ce06SEric Joyner #define IXL_QUEUE_NAME_LEN 32 28777c1fcecSEric Joyner 288ba2f531fSKrzysztof Galazka #define IXL_PF_MAX_LINK_POLL SBT_1S * 5 289ba2f531fSKrzysztof Galazka 2907d4dceecSKrzysztof Galazka MALLOC_DECLARE(M_IXL); 2917d4dceecSKrzysztof Galazka 2921031d839SEric Joyner #define IXL_DEV_ERR(_dev, _format, ...) \ 2931031d839SEric Joyner device_printf(_dev, "%s: " _format " (%s:%d)\n", __func__, ##__VA_ARGS__, __FILE__, __LINE__) 2941031d839SEric Joyner 29561ae650dSJack F Vogel /* 29661ae650dSJack F Vogel ***************************************************************************** 29761ae650dSJack F Vogel * vendor_info_array 29861ae650dSJack F Vogel * 29961ae650dSJack F Vogel * This array contains the list of Subvendor/Subdevice IDs on which the driver 30061ae650dSJack F Vogel * should load. 30161ae650dSJack F Vogel * 30261ae650dSJack F Vogel ***************************************************************************** 30361ae650dSJack F Vogel */ 30461ae650dSJack F Vogel typedef struct _ixl_vendor_info_t { 30561ae650dSJack F Vogel unsigned int vendor_id; 30661ae650dSJack F Vogel unsigned int device_id; 30761ae650dSJack F Vogel unsigned int subvendor_id; 30861ae650dSJack F Vogel unsigned int subdevice_id; 30961ae650dSJack F Vogel unsigned int index; 31061ae650dSJack F Vogel } ixl_vendor_info_t; 31161ae650dSJack F Vogel 31261ae650dSJack F Vogel /* 31361ae650dSJack F Vogel ** This struct has multiple uses, multicast 31461ae650dSJack F Vogel ** addresses, vlans, and mac filters all use it. 31561ae650dSJack F Vogel */ 31661ae650dSJack F Vogel struct ixl_mac_filter { 3177d4dceecSKrzysztof Galazka LIST_ENTRY(ixl_mac_filter) ftle; 31861ae650dSJack F Vogel u8 macaddr[ETHER_ADDR_LEN]; 31961ae650dSJack F Vogel s16 vlan; 32061ae650dSJack F Vogel u16 flags; 32161ae650dSJack F Vogel }; 32261ae650dSJack F Vogel 32361ae650dSJack F Vogel /* 32461ae650dSJack F Vogel * The Transmit ring control struct 32561ae650dSJack F Vogel */ 32661ae650dSJack F Vogel struct tx_ring { 3271031d839SEric Joyner struct ixl_tx_queue *que; 32861ae650dSJack F Vogel u32 tail; 3291031d839SEric Joyner struct i40e_tx_desc *tx_base; 3301031d839SEric Joyner u64 tx_paddr; 3316d011ad5SEric Joyner u32 latency; 3321031d839SEric Joyner u32 packets; 3331031d839SEric Joyner u32 me; 3341031d839SEric Joyner /* 3351031d839SEric Joyner * For reporting completed packet status 3361031d839SEric Joyner * in descriptor writeback mode 3371031d839SEric Joyner */ 3381031d839SEric Joyner qidx_t *tx_rsq; 3391031d839SEric Joyner qidx_t tx_rs_cidx; 3401031d839SEric Joyner qidx_t tx_rs_pidx; 3411031d839SEric Joyner qidx_t tx_cidx_processed; 34261ae650dSJack F Vogel 34361ae650dSJack F Vogel /* Used for Dynamic ITR calculation */ 3441031d839SEric Joyner u32 itr; 34561ae650dSJack F Vogel u32 bytes; 34661ae650dSJack F Vogel 34761ae650dSJack F Vogel /* Soft Stats */ 34861ae650dSJack F Vogel u64 tx_bytes; 3491031d839SEric Joyner u64 tx_packets; 3501031d839SEric Joyner u64 mss_too_small; 35161ae650dSJack F Vogel }; 35261ae650dSJack F Vogel 35361ae650dSJack F Vogel 35461ae650dSJack F Vogel /* 35561ae650dSJack F Vogel * The Receive ring control struct 35661ae650dSJack F Vogel */ 35761ae650dSJack F Vogel struct rx_ring { 3581031d839SEric Joyner struct ixl_rx_queue *que; 3591031d839SEric Joyner union i40e_rx_desc *rx_base; 3601031d839SEric Joyner uint64_t rx_paddr; 36161ae650dSJack F Vogel bool discard; 3626d011ad5SEric Joyner u32 itr; 3636d011ad5SEric Joyner u32 latency; 36461ae650dSJack F Vogel u32 mbuf_sz; 36561ae650dSJack F Vogel u32 tail; 3661031d839SEric Joyner u32 me; 36761ae650dSJack F Vogel 36861ae650dSJack F Vogel /* Used for Dynamic ITR calculation */ 36961ae650dSJack F Vogel u32 packets; 37061ae650dSJack F Vogel u32 bytes; 37161ae650dSJack F Vogel 37261ae650dSJack F Vogel /* Soft stats */ 37361ae650dSJack F Vogel u64 rx_packets; 37461ae650dSJack F Vogel u64 rx_bytes; 3756d011ad5SEric Joyner u64 desc_errs; 3769f99061eSKrzysztof Galazka u64 csum_errs; 37761ae650dSJack F Vogel }; 37861ae650dSJack F Vogel 37961ae650dSJack F Vogel /* 3801031d839SEric Joyner ** Driver queue structs 38161ae650dSJack F Vogel */ 3821031d839SEric Joyner struct ixl_tx_queue { 38361ae650dSJack F Vogel struct ixl_vsi *vsi; 38461ae650dSJack F Vogel struct tx_ring txr; 3851031d839SEric Joyner struct if_irq que_irq; 3861031d839SEric Joyner u32 msix; 3871031d839SEric Joyner /* Stats */ 38861ae650dSJack F Vogel u64 irqs; 38961ae650dSJack F Vogel u64 tso; 3901031d839SEric Joyner }; 3911031d839SEric Joyner 3921031d839SEric Joyner struct ixl_rx_queue { 3931031d839SEric Joyner struct ixl_vsi *vsi; 3941031d839SEric Joyner struct rx_ring rxr; 3951031d839SEric Joyner struct if_irq que_irq; 3961031d839SEric Joyner u32 msix; /* This queue's MSIX vector */ 3971031d839SEric Joyner /* Stats */ 3981031d839SEric Joyner u64 irqs; 39961ae650dSJack F Vogel }; 40061ae650dSJack F Vogel 40161ae650dSJack F Vogel /* 4024294f337SSean Bruno ** Virtual Station Interface 40361ae650dSJack F Vogel */ 4047d4dceecSKrzysztof Galazka LIST_HEAD(ixl_ftl_head, ixl_mac_filter); 40561ae650dSJack F Vogel struct ixl_vsi { 4061031d839SEric Joyner if_ctx_t ctx; 4071031d839SEric Joyner if_softc_ctx_t shared; 408402810d3SJustin Hibbits if_t ifp; 40977c1fcecSEric Joyner device_t dev; 41061ae650dSJack F Vogel struct i40e_hw *hw; 4111031d839SEric Joyner struct ifmedia *media; 41277c1fcecSEric Joyner 41377c1fcecSEric Joyner int num_rx_queues; 41477c1fcecSEric Joyner int num_tx_queues; 4151031d839SEric Joyner 4161031d839SEric Joyner void *back; 417ac83ea83SEric Joyner enum i40e_vsi_type type; 41861ae650dSJack F Vogel int id; 4196d011ad5SEric Joyner u32 rx_itr_setting; 4206d011ad5SEric Joyner u32 tx_itr_setting; 421ceebc2f3SEric Joyner bool enable_head_writeback; 4224294f337SSean Bruno 4234294f337SSean Bruno u16 vsi_num; 42461ae650dSJack F Vogel bool link_active; 42561ae650dSJack F Vogel u16 seid; 42656c2c47bSJack F Vogel u16 uplink_seid; 42756c2c47bSJack F Vogel u16 downlink_seid; 42861ae650dSJack F Vogel 4291031d839SEric Joyner struct ixl_tx_queue *tx_queues; /* TX queue array */ 4301031d839SEric Joyner struct ixl_rx_queue *rx_queues; /* RX queue array */ 4311031d839SEric Joyner struct if_irq irq; 4321031d839SEric Joyner u32 link_speed; 4331031d839SEric Joyner 43461ae650dSJack F Vogel /* MAC/VLAN Filter list */ 43561ae650dSJack F Vogel struct ixl_ftl_head ftl; 43656c2c47bSJack F Vogel u16 num_macs; 437b4a7ce06SEric Joyner u64 num_hw_filters; 43861ae650dSJack F Vogel 4394294f337SSean Bruno /* Contains readylist & stat counter id */ 44061ae650dSJack F Vogel struct i40e_aqc_vsi_properties_data info; 44161ae650dSJack F Vogel 4427d4dceecSKrzysztof Galazka #define IXL_VLANS_MAP_LEN EVL_VLID_MASK + 1 4437d4dceecSKrzysztof Galazka bitstr_t bit_decl(vlans_map, IXL_VLANS_MAP_LEN); 44461ae650dSJack F Vogel u16 num_vlans; 44561ae650dSJack F Vogel 44661ae650dSJack F Vogel /* Per-VSI stats from hardware */ 44761ae650dSJack F Vogel struct i40e_eth_stats eth_stats; 44861ae650dSJack F Vogel struct i40e_eth_stats eth_stats_offsets; 44961ae650dSJack F Vogel bool stat_offsets_loaded; 450e5100ee2SJack F Vogel /* VSI stat counters */ 4514b443922SGleb Smirnoff u64 ipackets; 4524b443922SGleb Smirnoff u64 ierrors; 4534b443922SGleb Smirnoff u64 opackets; 4544b443922SGleb Smirnoff u64 oerrors; 4554b443922SGleb Smirnoff u64 ibytes; 4564b443922SGleb Smirnoff u64 obytes; 4574b443922SGleb Smirnoff u64 imcasts; 4584b443922SGleb Smirnoff u64 omcasts; 4594b443922SGleb Smirnoff u64 iqdrops; 4604b443922SGleb Smirnoff u64 oqdrops; 4614b443922SGleb Smirnoff u64 noproto; 46261ae650dSJack F Vogel 46361ae650dSJack F Vogel /* Misc. */ 46461ae650dSJack F Vogel u64 flags; 4651031d839SEric Joyner /* Stats sysctls for this VSI */ 46656c2c47bSJack F Vogel struct sysctl_oid *vsi_node; 467b4a7ce06SEric Joyner struct sysctl_ctx_list sysctl_ctx; 46861ae650dSJack F Vogel }; 46961ae650dSJack F Vogel 4707d4dceecSKrzysztof Galazka struct ixl_add_maddr_arg { 4717d4dceecSKrzysztof Galazka struct ixl_ftl_head to_add; 4727d4dceecSKrzysztof Galazka struct ixl_vsi *vsi; 4737d4dceecSKrzysztof Galazka }; 47461ae650dSJack F Vogel 47561ae650dSJack F Vogel /* 47661ae650dSJack F Vogel ** Compare two ethernet addresses 47761ae650dSJack F Vogel */ 47861ae650dSJack F Vogel static inline bool 4797d4dceecSKrzysztof Galazka ixl_ether_is_equal(const u8 *ea1, const u8 *ea2) 48061ae650dSJack F Vogel { 481b4a7ce06SEric Joyner return (bcmp(ea1, ea2, ETHER_ADDR_LEN) == 0); 48261ae650dSJack F Vogel } 48361ae650dSJack F Vogel 48461ae650dSJack F Vogel /* 4854294f337SSean Bruno * Return next largest power of 2, unsigned 4864294f337SSean Bruno * 4874294f337SSean Bruno * Public domain, from Bit Twiddling Hacks 4884294f337SSean Bruno */ 4894294f337SSean Bruno static inline u32 4904294f337SSean Bruno next_power_of_two(u32 n) 4914294f337SSean Bruno { 4924294f337SSean Bruno n--; 4934294f337SSean Bruno n |= n >> 1; 4944294f337SSean Bruno n |= n >> 2; 4954294f337SSean Bruno n |= n >> 4; 4964294f337SSean Bruno n |= n >> 8; 4974294f337SSean Bruno n |= n >> 16; 4984294f337SSean Bruno n++; 4994294f337SSean Bruno 5004294f337SSean Bruno /* Next power of two > 0 is 1 */ 5014294f337SSean Bruno n += (n == 0); 5024294f337SSean Bruno 5034294f337SSean Bruno return (n); 5044294f337SSean Bruno } 5054294f337SSean Bruno 5064294f337SSean Bruno /* 50761ae650dSJack F Vogel * Info for stats sysctls 50861ae650dSJack F Vogel */ 50961ae650dSJack F Vogel struct ixl_sysctl_info { 51061ae650dSJack F Vogel u64 *stat; 51161ae650dSJack F Vogel char *name; 51261ae650dSJack F Vogel char *description; 51361ae650dSJack F Vogel }; 51461ae650dSJack F Vogel 51533c66d8aSRyan Libby extern const uint8_t ixl_bcast_addr[ETHER_ADDR_LEN]; 51661ae650dSJack F Vogel 5174294f337SSean Bruno /* Common function prototypes between PF/VF driver */ 51877c1fcecSEric Joyner void ixl_debug_core(device_t dev, u32 enabled_mask, u32 mask, char *fmt, ...); 5191031d839SEric Joyner void ixl_init_tx_ring(struct ixl_vsi *vsi, struct ixl_tx_queue *que); 5204294f337SSean Bruno void ixl_get_default_rss_key(u32 *); 521ceebc2f3SEric Joyner const char * i40e_vc_stat_str(struct i40e_hw *hw, 522ceebc2f3SEric Joyner enum virtchnl_status_code stat_err); 52377c1fcecSEric Joyner void ixl_init_tx_rsqs(struct ixl_vsi *vsi); 52477c1fcecSEric Joyner void ixl_init_tx_cidx(struct ixl_vsi *vsi); 52577c1fcecSEric Joyner u64 ixl_max_vc_speed_to_value(u8 link_speeds); 52677c1fcecSEric Joyner void ixl_add_vsi_sysctls(device_t dev, struct ixl_vsi *vsi, 52777c1fcecSEric Joyner struct sysctl_ctx_list *ctx, const char *sysctl_name); 52877c1fcecSEric Joyner void ixl_add_sysctls_eth_stats(struct sysctl_ctx_list *ctx, 52977c1fcecSEric Joyner struct sysctl_oid_list *child, 53077c1fcecSEric Joyner struct i40e_eth_stats *eth_stats); 531b4a7ce06SEric Joyner void ixl_vsi_add_queues_stats(struct ixl_vsi *vsi, 532b4a7ce06SEric Joyner struct sysctl_ctx_list *ctx); 53361ae650dSJack F Vogel #endif /* _IXL_H_ */ 534