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> 5561ae650dSJack F Vogel 5661ae650dSJack F Vogel #include <net/if.h> 5713b40804SSteven Hartland #include <net/if_var.h> 5861ae650dSJack F Vogel #include <net/if_arp.h> 5961ae650dSJack F Vogel #include <net/bpf.h> 6061ae650dSJack F Vogel #include <net/ethernet.h> 6161ae650dSJack F Vogel #include <net/if_dl.h> 6261ae650dSJack F Vogel #include <net/if_media.h> 631031d839SEric Joyner #include <net/iflib.h> 6461ae650dSJack F Vogel 6561ae650dSJack F Vogel #include <net/bpf.h> 6661ae650dSJack F Vogel #include <net/if_types.h> 6761ae650dSJack F Vogel #include <net/if_vlan_var.h> 6861ae650dSJack F Vogel 6961ae650dSJack F Vogel #include <netinet/in_systm.h> 7061ae650dSJack F Vogel #include <netinet/in.h> 7161ae650dSJack F Vogel #include <netinet/if_ether.h> 7261ae650dSJack F Vogel #include <netinet/ip.h> 7361ae650dSJack F Vogel #include <netinet/ip6.h> 7461ae650dSJack F Vogel #include <netinet/tcp.h> 7561ae650dSJack F Vogel #include <netinet/tcp_lro.h> 7661ae650dSJack F Vogel #include <netinet/udp.h> 7761ae650dSJack F Vogel #include <netinet/sctp.h> 7861ae650dSJack F Vogel 7961ae650dSJack F Vogel #include <machine/in_cksum.h> 8061ae650dSJack F Vogel 8161ae650dSJack F Vogel #include <sys/bus.h> 8261ae650dSJack F Vogel #include <machine/bus.h> 8361ae650dSJack F Vogel #include <sys/rman.h> 8461ae650dSJack F Vogel #include <machine/resource.h> 8561ae650dSJack F Vogel #include <vm/vm.h> 8661ae650dSJack F Vogel #include <vm/pmap.h> 8761ae650dSJack F Vogel #include <machine/clock.h> 8861ae650dSJack F Vogel #include <dev/pci/pcivar.h> 8961ae650dSJack F Vogel #include <dev/pci/pcireg.h> 9061ae650dSJack F Vogel #include <sys/proc.h> 9161ae650dSJack F Vogel #include <sys/sysctl.h> 9261ae650dSJack F Vogel #include <sys/endian.h> 9361ae650dSJack F Vogel #include <sys/taskqueue.h> 9461ae650dSJack F Vogel #include <sys/pcpu.h> 9561ae650dSJack F Vogel #include <sys/smp.h> 961d767a8eSEric Joyner #include <sys/sbuf.h> 9761ae650dSJack F Vogel #include <machine/smp.h> 984294f337SSean Bruno #include <machine/stdarg.h> 9961ae650dSJack F Vogel 1004294f337SSean Bruno #ifdef RSS 1014294f337SSean Bruno #include <net/rss_config.h> 102f7c73984SSean Bruno #include <netinet/in_rss.h> 10356c2c47bSJack F Vogel #endif 10456c2c47bSJack F Vogel 1051031d839SEric Joyner #include "ifdi_if.h" 10661ae650dSJack F Vogel #include "i40e_type.h" 10761ae650dSJack F Vogel #include "i40e_prototype.h" 1081031d839SEric Joyner #include "ixl_debug.h" 10961ae650dSJack F Vogel 1101031d839SEric Joyner #define PVIDV(vendor, devid, name) \ 1111031d839SEric Joyner PVID(vendor, devid, name " - " IXL_DRIVER_VERSION_STRING) 1124294f337SSean Bruno 11361ae650dSJack F Vogel /* Tunables */ 11461ae650dSJack F Vogel 11561ae650dSJack F Vogel /* 11661ae650dSJack F Vogel * Ring Descriptors Valid Range: 32-4096 Default Value: 1024 This value is the 11761ae650dSJack F Vogel * number of tx/rx descriptors allocated by the driver. Increasing this 1186c426059SEric Joyner * value allows the driver to queue more operations. 1196c426059SEric Joyner * 1206c426059SEric Joyner * Tx descriptors are always 16 bytes, but Rx descriptors can be 32 bytes. 1216c426059SEric Joyner * The driver currently always uses 32 byte Rx descriptors. 12261ae650dSJack F Vogel */ 123cb6b8299SEric Joyner #define IXL_DEFAULT_RING 1024 124ceebc2f3SEric Joyner #define IXL_MAX_RING 4096 125ceebc2f3SEric Joyner #define IXL_MIN_RING 64 1264294f337SSean Bruno #define IXL_RING_INCREMENT 32 1274294f337SSean Bruno 1284294f337SSean Bruno #define IXL_AQ_LEN 256 1294294f337SSean Bruno #define IXL_AQ_LEN_MAX 1024 13061ae650dSJack F Vogel 13161ae650dSJack F Vogel /* Alignment for rings */ 13261ae650dSJack F Vogel #define DBA_ALIGN 128 13361ae650dSJack F Vogel 13461ae650dSJack F Vogel #define MAX_MULTICAST_ADDR 128 13561ae650dSJack F Vogel 136cb6b8299SEric Joyner #define IXL_MSIX_BAR 3 13761ae650dSJack F Vogel #define IXL_ADM_LIMIT 2 1381031d839SEric Joyner #define IXL_TSO_SIZE ((255*1024)-1) 1391031d839SEric Joyner #define IXL_TX_BUF_SZ ((u32) 1514) 14061ae650dSJack F Vogel #define IXL_AQ_BUF_SZ ((u32) 4096) 14161ae650dSJack F Vogel #define IXL_RX_ITR 0 14261ae650dSJack F Vogel #define IXL_TX_ITR 1 14361ae650dSJack F Vogel #define IXL_ITR_NONE 3 14461ae650dSJack F Vogel #define IXL_QUEUE_EOL 0x7FF 145*77c1fcecSEric Joyner #define IXL_MIN_FRAME 17 1466c426059SEric Joyner #define IXL_MAX_FRAME 9728 14761ae650dSJack F Vogel #define IXL_MAX_TX_SEGS 8 1481031d839SEric Joyner #define IXL_MAX_RX_SEGS 5 1494294f337SSean Bruno #define IXL_MAX_TSO_SEGS 128 150ceebc2f3SEric Joyner #define IXL_SPARSE_CHAIN 7 151cb6b8299SEric Joyner #define IXL_MIN_TSO_MSS 64 152*77c1fcecSEric Joyner #define IXL_MAX_TSO_MSS 9668 153ceebc2f3SEric Joyner #define IXL_MAX_DMA_SEG_SIZE ((16 * 1024) - 1) 1544294f337SSean Bruno 1554294f337SSean Bruno #define IXL_RSS_KEY_SIZE_REG 13 1564294f337SSean Bruno #define IXL_RSS_KEY_SIZE (IXL_RSS_KEY_SIZE_REG * 4) 1574294f337SSean Bruno #define IXL_RSS_VSI_LUT_SIZE 64 /* X722 -> VSI, X710 -> VF */ 1584294f337SSean Bruno #define IXL_RSS_VSI_LUT_ENTRY_MASK 0x3F 1594294f337SSean Bruno #define IXL_RSS_VF_LUT_ENTRY_MASK 0xF 16061ae650dSJack F Vogel 16156c2c47bSJack F Vogel #define IXL_VF_MAX_BUFFER 0x3F80 16256c2c47bSJack F Vogel #define IXL_VF_MAX_HDR_BUFFER 0x840 16356c2c47bSJack F Vogel #define IXL_VF_MAX_FRAME 0x3FFF 16456c2c47bSJack F Vogel 1654294f337SSean Bruno /* ERJ: hardware can support ~2k (SW5+) filters between all functions */ 16661ae650dSJack F Vogel #define IXL_MAX_FILTERS 256 16761ae650dSJack F Vogel 16861ae650dSJack F Vogel #define IXL_NVM_VERSION_LO_SHIFT 0 16961ae650dSJack F Vogel #define IXL_NVM_VERSION_LO_MASK (0xff << IXL_NVM_VERSION_LO_SHIFT) 17061ae650dSJack F Vogel #define IXL_NVM_VERSION_HI_SHIFT 12 17161ae650dSJack F Vogel #define IXL_NVM_VERSION_HI_MASK (0xf << IXL_NVM_VERSION_HI_SHIFT) 17261ae650dSJack F Vogel 17361ae650dSJack F Vogel /* 17461ae650dSJack F Vogel * Interrupt Moderation parameters 175cb6b8299SEric Joyner * Multiply ITR values by 2 for real ITR value 17661ae650dSJack F Vogel */ 177cb6b8299SEric Joyner #define IXL_MAX_ITR 0x0FF0 17861ae650dSJack F Vogel #define IXL_ITR_100K 0x0005 17961ae650dSJack F Vogel #define IXL_ITR_20K 0x0019 18061ae650dSJack F Vogel #define IXL_ITR_8K 0x003E 18161ae650dSJack F Vogel #define IXL_ITR_4K 0x007A 182cb6b8299SEric Joyner #define IXL_ITR_1K 0x01F4 18361ae650dSJack F Vogel #define IXL_ITR_DYNAMIC 0x8000 18461ae650dSJack F Vogel #define IXL_LOW_LATENCY 0 18561ae650dSJack F Vogel #define IXL_AVE_LATENCY 1 18661ae650dSJack F Vogel #define IXL_BULK_LATENCY 2 18761ae650dSJack F Vogel 18861ae650dSJack F Vogel /* MacVlan Flags */ 18961ae650dSJack F Vogel #define IXL_FILTER_USED (u16)(1 << 0) 19061ae650dSJack F Vogel #define IXL_FILTER_VLAN (u16)(1 << 1) 19161ae650dSJack F Vogel #define IXL_FILTER_ADD (u16)(1 << 2) 19261ae650dSJack F Vogel #define IXL_FILTER_DEL (u16)(1 << 3) 19361ae650dSJack F Vogel #define IXL_FILTER_MC (u16)(1 << 4) 19461ae650dSJack F Vogel 19561ae650dSJack F Vogel /* used in the vlan field of the filter when not a vlan */ 19661ae650dSJack F Vogel #define IXL_VLAN_ANY -1 19761ae650dSJack F Vogel 19861ae650dSJack F Vogel #define CSUM_OFFLOAD_IPV4 (CSUM_IP|CSUM_TCP|CSUM_UDP|CSUM_SCTP) 19961ae650dSJack F Vogel #define CSUM_OFFLOAD_IPV6 (CSUM_TCP_IPV6|CSUM_UDP_IPV6|CSUM_SCTP_IPV6) 20061ae650dSJack F Vogel #define CSUM_OFFLOAD (CSUM_OFFLOAD_IPV4|CSUM_OFFLOAD_IPV6|CSUM_TSO) 20161ae650dSJack F Vogel 20256c2c47bSJack F Vogel #define IXL_VF_RESET_TIMEOUT 100 20356c2c47bSJack F Vogel 20456c2c47bSJack F Vogel #define IXL_VSI_DATA_PORT 0x01 20556c2c47bSJack F Vogel 20656c2c47bSJack F Vogel #define IXLV_MAX_QUEUES 16 20756c2c47bSJack F Vogel #define IXL_MAX_VSI_QUEUES (2 * (I40E_VSILAN_QTABLE_MAX_INDEX + 1)) 20856c2c47bSJack F Vogel 20956c2c47bSJack F Vogel #define IXL_RX_CTX_BASE_UNITS 128 21056c2c47bSJack F Vogel #define IXL_TX_CTX_BASE_UNITS 128 21156c2c47bSJack F Vogel 21256c2c47bSJack F Vogel #define IXL_PF_PCI_CIAA_VF_DEVICE_STATUS 0xAA 21356c2c47bSJack F Vogel 21456c2c47bSJack F Vogel #define IXL_PF_PCI_CIAD_VF_TRANS_PENDING_MASK 0x20 21556c2c47bSJack F Vogel 21656c2c47bSJack F Vogel #define IXL_GLGEN_VFLRSTAT_INDEX(glb_vf) ((glb_vf) / 32) 21756c2c47bSJack F Vogel #define IXL_GLGEN_VFLRSTAT_MASK(glb_vf) (1 << ((glb_vf) % 32)) 21856c2c47bSJack F Vogel 21956c2c47bSJack F Vogel #define IXL_MAX_ITR_IDX 3 22056c2c47bSJack F Vogel 22156c2c47bSJack F Vogel #define IXL_END_OF_INTR_LNKLST 0x7FF 22256c2c47bSJack F Vogel 223cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_BASE (\ 2244294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_UDP) | \ 2254294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP) | \ 2264294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_SCTP) | \ 2274294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) | \ 2284294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4) | \ 2294294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_UDP) | \ 2304294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP) | \ 2314294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_SCTP) | \ 2324294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) | \ 2334294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6) | \ 2344294f337SSean Bruno BIT_ULL(I40E_FILTER_PCTYPE_L2_PAYLOAD)) 2354294f337SSean Bruno 236cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_XL710 IXL_DEFAULT_RSS_HENA_BASE 237cb6b8299SEric Joyner 238cb6b8299SEric Joyner #define IXL_DEFAULT_RSS_HENA_X722 (\ 239cb6b8299SEric Joyner IXL_DEFAULT_RSS_HENA_BASE | \ 240cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | \ 241cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) | \ 242cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | \ 243cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) | \ 244cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK) | \ 245cb6b8299SEric Joyner BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK)) 246cb6b8299SEric Joyner 2471031d839SEric Joyner #define IXL_CAPS \ 2481031d839SEric Joyner (IFCAP_TSO4 | IFCAP_TSO6 | \ 2491031d839SEric Joyner IFCAP_TXCSUM | IFCAP_TXCSUM_IPV6 | \ 2501031d839SEric Joyner IFCAP_RXCSUM | IFCAP_RXCSUM_IPV6 | \ 2511031d839SEric Joyner IFCAP_VLAN_HWFILTER | IFCAP_VLAN_HWTSO | \ 2526daf59aaSMarius Strobl IFCAP_VLAN_HWTAGGING | IFCAP_VLAN_HWCSUM | \ 2531031d839SEric Joyner IFCAP_VLAN_MTU | IFCAP_JUMBO_MTU | IFCAP_LRO) 25461ae650dSJack F Vogel 2551031d839SEric Joyner #define IXL_CSUM_TCP \ 2561031d839SEric Joyner (CSUM_IP_TCP|CSUM_IP_TSO|CSUM_IP6_TSO|CSUM_IP6_TCP) 2571031d839SEric Joyner #define IXL_CSUM_UDP \ 2581031d839SEric Joyner (CSUM_IP_UDP|CSUM_IP6_UDP) 2591031d839SEric Joyner #define IXL_CSUM_SCTP \ 2601031d839SEric Joyner (CSUM_IP_SCTP|CSUM_IP6_SCTP) 26161ae650dSJack F Vogel 262a48d00d2SEric Joyner /* Pre-11 counter(9) compatibility */ 263b6c8f260SJack F Vogel #if __FreeBSD_version >= 1100036 2644b443922SGleb Smirnoff #define IXL_SET_IPACKETS(vsi, count) (vsi)->ipackets = (count) 2654b443922SGleb Smirnoff #define IXL_SET_IERRORS(vsi, count) (vsi)->ierrors = (count) 2664b443922SGleb Smirnoff #define IXL_SET_OPACKETS(vsi, count) (vsi)->opackets = (count) 2674b443922SGleb Smirnoff #define IXL_SET_OERRORS(vsi, count) (vsi)->oerrors = (count) 2684b443922SGleb Smirnoff #define IXL_SET_COLLISIONS(vsi, count) /* Do nothing; collisions is always 0. */ 2694b443922SGleb Smirnoff #define IXL_SET_IBYTES(vsi, count) (vsi)->ibytes = (count) 2704b443922SGleb Smirnoff #define IXL_SET_OBYTES(vsi, count) (vsi)->obytes = (count) 2714b443922SGleb Smirnoff #define IXL_SET_IMCASTS(vsi, count) (vsi)->imcasts = (count) 2724b443922SGleb Smirnoff #define IXL_SET_OMCASTS(vsi, count) (vsi)->omcasts = (count) 2734b443922SGleb Smirnoff #define IXL_SET_IQDROPS(vsi, count) (vsi)->iqdrops = (count) 274625d12c6SJohn Baldwin #define IXL_SET_OQDROPS(vsi, count) (vsi)->oqdrops = (count) 2754b443922SGleb Smirnoff #define IXL_SET_NOPROTO(vsi, count) (vsi)->noproto = (count) 2764b443922SGleb Smirnoff #else 2774b443922SGleb Smirnoff #define IXL_SET_IPACKETS(vsi, count) (vsi)->ifp->if_ipackets = (count) 2784b443922SGleb Smirnoff #define IXL_SET_IERRORS(vsi, count) (vsi)->ifp->if_ierrors = (count) 2794b443922SGleb Smirnoff #define IXL_SET_OPACKETS(vsi, count) (vsi)->ifp->if_opackets = (count) 2804b443922SGleb Smirnoff #define IXL_SET_OERRORS(vsi, count) (vsi)->ifp->if_oerrors = (count) 2814b443922SGleb Smirnoff #define IXL_SET_COLLISIONS(vsi, count) (vsi)->ifp->if_collisions = (count) 2824b443922SGleb Smirnoff #define IXL_SET_IBYTES(vsi, count) (vsi)->ifp->if_ibytes = (count) 2834b443922SGleb Smirnoff #define IXL_SET_OBYTES(vsi, count) (vsi)->ifp->if_obytes = (count) 2844b443922SGleb Smirnoff #define IXL_SET_IMCASTS(vsi, count) (vsi)->ifp->if_imcasts = (count) 2854b443922SGleb Smirnoff #define IXL_SET_OMCASTS(vsi, count) (vsi)->ifp->if_omcasts = (count) 2864b443922SGleb Smirnoff #define IXL_SET_IQDROPS(vsi, count) (vsi)->ifp->if_iqdrops = (count) 2874b443922SGleb Smirnoff #define IXL_SET_OQDROPS(vsi, odrops) (vsi)->ifp->if_snd.ifq_drops = (odrops) 2884b443922SGleb Smirnoff #define IXL_SET_NOPROTO(vsi, count) (vsi)->noproto = (count) 2894b443922SGleb Smirnoff #endif 2904b443922SGleb Smirnoff 291*77c1fcecSEric Joyner /* For stats sysctl naming */ 292*77c1fcecSEric Joyner #define QUEUE_NAME_LEN 32 293*77c1fcecSEric Joyner 2941031d839SEric Joyner #define IXL_DEV_ERR(_dev, _format, ...) \ 2951031d839SEric Joyner device_printf(_dev, "%s: " _format " (%s:%d)\n", __func__, ##__VA_ARGS__, __FILE__, __LINE__) 2961031d839SEric Joyner 29761ae650dSJack F Vogel /* 29861ae650dSJack F Vogel ***************************************************************************** 29961ae650dSJack F Vogel * vendor_info_array 30061ae650dSJack F Vogel * 30161ae650dSJack F Vogel * This array contains the list of Subvendor/Subdevice IDs on which the driver 30261ae650dSJack F Vogel * should load. 30361ae650dSJack F Vogel * 30461ae650dSJack F Vogel ***************************************************************************** 30561ae650dSJack F Vogel */ 30661ae650dSJack F Vogel typedef struct _ixl_vendor_info_t { 30761ae650dSJack F Vogel unsigned int vendor_id; 30861ae650dSJack F Vogel unsigned int device_id; 30961ae650dSJack F Vogel unsigned int subvendor_id; 31061ae650dSJack F Vogel unsigned int subdevice_id; 31161ae650dSJack F Vogel unsigned int index; 31261ae650dSJack F Vogel } ixl_vendor_info_t; 31361ae650dSJack F Vogel 31461ae650dSJack F Vogel /* 31561ae650dSJack F Vogel ** This struct has multiple uses, multicast 31661ae650dSJack F Vogel ** addresses, vlans, and mac filters all use it. 31761ae650dSJack F Vogel */ 31861ae650dSJack F Vogel struct ixl_mac_filter { 31961ae650dSJack F Vogel SLIST_ENTRY(ixl_mac_filter) next; 32061ae650dSJack F Vogel u8 macaddr[ETHER_ADDR_LEN]; 32161ae650dSJack F Vogel s16 vlan; 32261ae650dSJack F Vogel u16 flags; 32361ae650dSJack F Vogel }; 32461ae650dSJack F Vogel 32561ae650dSJack F Vogel /* 32661ae650dSJack F Vogel * The Transmit ring control struct 32761ae650dSJack F Vogel */ 32861ae650dSJack F Vogel struct tx_ring { 3291031d839SEric Joyner struct ixl_tx_queue *que; 33061ae650dSJack F Vogel u32 tail; 3311031d839SEric Joyner struct i40e_tx_desc *tx_base; 3321031d839SEric Joyner u64 tx_paddr; 3336d011ad5SEric Joyner u32 latency; 3341031d839SEric Joyner u32 packets; 3351031d839SEric Joyner u32 me; 3361031d839SEric Joyner /* 3371031d839SEric Joyner * For reporting completed packet status 3381031d839SEric Joyner * in descriptor writeback mode 3391031d839SEric Joyner */ 3401031d839SEric Joyner qidx_t *tx_rsq; 3411031d839SEric Joyner qidx_t tx_rs_cidx; 3421031d839SEric Joyner qidx_t tx_rs_pidx; 3431031d839SEric Joyner qidx_t tx_cidx_processed; 34461ae650dSJack F Vogel 34561ae650dSJack F Vogel /* Used for Dynamic ITR calculation */ 3461031d839SEric Joyner u32 itr; 34761ae650dSJack F Vogel u32 bytes; 34861ae650dSJack F Vogel 34961ae650dSJack F Vogel /* Soft Stats */ 35061ae650dSJack F Vogel u64 tx_bytes; 3511031d839SEric Joyner u64 tx_packets; 3521031d839SEric Joyner u64 mss_too_small; 35361ae650dSJack F Vogel }; 35461ae650dSJack F Vogel 35561ae650dSJack F Vogel 35661ae650dSJack F Vogel /* 35761ae650dSJack F Vogel * The Receive ring control struct 35861ae650dSJack F Vogel */ 35961ae650dSJack F Vogel struct rx_ring { 3601031d839SEric Joyner struct ixl_rx_queue *que; 3611031d839SEric Joyner union i40e_rx_desc *rx_base; 3621031d839SEric Joyner uint64_t rx_paddr; 36361ae650dSJack F Vogel bool discard; 3646d011ad5SEric Joyner u32 itr; 3656d011ad5SEric Joyner u32 latency; 36661ae650dSJack F Vogel u32 mbuf_sz; 36761ae650dSJack F Vogel u32 tail; 3681031d839SEric Joyner u32 me; 36961ae650dSJack F Vogel 37061ae650dSJack F Vogel /* Used for Dynamic ITR calculation */ 37161ae650dSJack F Vogel u32 packets; 37261ae650dSJack F Vogel u32 bytes; 37361ae650dSJack F Vogel 37461ae650dSJack F Vogel /* Soft stats */ 37561ae650dSJack F Vogel u64 rx_packets; 37661ae650dSJack F Vogel u64 rx_bytes; 3776d011ad5SEric Joyner u64 desc_errs; 37861ae650dSJack F Vogel }; 37961ae650dSJack F Vogel 38061ae650dSJack F Vogel /* 3811031d839SEric Joyner ** Driver queue structs 38261ae650dSJack F Vogel */ 3831031d839SEric Joyner struct ixl_tx_queue { 38461ae650dSJack F Vogel struct ixl_vsi *vsi; 38561ae650dSJack F Vogel struct tx_ring txr; 3861031d839SEric Joyner struct if_irq que_irq; 3871031d839SEric Joyner u32 msix; 3881031d839SEric Joyner /* Stats */ 38961ae650dSJack F Vogel u64 irqs; 39061ae650dSJack F Vogel u64 tso; 3911031d839SEric Joyner }; 3921031d839SEric Joyner 3931031d839SEric Joyner struct ixl_rx_queue { 3941031d839SEric Joyner struct ixl_vsi *vsi; 3951031d839SEric Joyner struct rx_ring rxr; 3961031d839SEric Joyner struct if_irq que_irq; 3971031d839SEric Joyner u32 msix; /* This queue's MSIX vector */ 3981031d839SEric Joyner /* Stats */ 3991031d839SEric Joyner u64 irqs; 40061ae650dSJack F Vogel }; 40161ae650dSJack F Vogel 40261ae650dSJack F Vogel /* 4034294f337SSean Bruno ** Virtual Station Interface 40461ae650dSJack F Vogel */ 40561ae650dSJack F Vogel SLIST_HEAD(ixl_ftl_head, ixl_mac_filter); 40661ae650dSJack F Vogel struct ixl_vsi { 4071031d839SEric Joyner if_ctx_t ctx; 4081031d839SEric Joyner if_softc_ctx_t shared; 40961ae650dSJack F Vogel struct ifnet *ifp; 410*77c1fcecSEric Joyner device_t dev; 41161ae650dSJack F Vogel struct i40e_hw *hw; 4121031d839SEric Joyner struct ifmedia *media; 413*77c1fcecSEric Joyner 414*77c1fcecSEric Joyner int num_rx_queues; 415*77c1fcecSEric Joyner int num_tx_queues; 4161031d839SEric Joyner 4171031d839SEric Joyner void *back; 418ac83ea83SEric Joyner enum i40e_vsi_type type; 41961ae650dSJack F Vogel int id; 4206d011ad5SEric Joyner u32 rx_itr_setting; 4216d011ad5SEric Joyner u32 tx_itr_setting; 422ceebc2f3SEric Joyner bool enable_head_writeback; 4234294f337SSean Bruno 4244294f337SSean Bruno u16 vsi_num; 42561ae650dSJack F Vogel bool link_active; 42661ae650dSJack F Vogel u16 seid; 42756c2c47bSJack F Vogel u16 uplink_seid; 42856c2c47bSJack F Vogel u16 downlink_seid; 42961ae650dSJack F Vogel 4301031d839SEric Joyner struct ixl_tx_queue *tx_queues; /* TX queue array */ 4311031d839SEric Joyner struct ixl_rx_queue *rx_queues; /* RX queue array */ 4321031d839SEric Joyner struct if_irq irq; 4331031d839SEric Joyner u32 link_speed; 4341031d839SEric Joyner 43561ae650dSJack F Vogel /* MAC/VLAN Filter list */ 43661ae650dSJack F Vogel struct ixl_ftl_head ftl; 43756c2c47bSJack F Vogel u16 num_macs; 43861ae650dSJack F Vogel 4394294f337SSean Bruno /* Contains readylist & stat counter id */ 44061ae650dSJack F Vogel struct i40e_aqc_vsi_properties_data info; 44161ae650dSJack F Vogel 44261ae650dSJack F Vogel u16 num_vlans; 44361ae650dSJack F Vogel 44461ae650dSJack F Vogel /* Per-VSI stats from hardware */ 44561ae650dSJack F Vogel struct i40e_eth_stats eth_stats; 44661ae650dSJack F Vogel struct i40e_eth_stats eth_stats_offsets; 44761ae650dSJack F Vogel bool stat_offsets_loaded; 448e5100ee2SJack F Vogel /* VSI stat counters */ 4494b443922SGleb Smirnoff u64 ipackets; 4504b443922SGleb Smirnoff u64 ierrors; 4514b443922SGleb Smirnoff u64 opackets; 4524b443922SGleb Smirnoff u64 oerrors; 4534b443922SGleb Smirnoff u64 ibytes; 4544b443922SGleb Smirnoff u64 obytes; 4554b443922SGleb Smirnoff u64 imcasts; 4564b443922SGleb Smirnoff u64 omcasts; 4574b443922SGleb Smirnoff u64 iqdrops; 4584b443922SGleb Smirnoff u64 oqdrops; 4594b443922SGleb Smirnoff u64 noproto; 46061ae650dSJack F Vogel 46161ae650dSJack F Vogel /* Driver statistics */ 46261ae650dSJack F Vogel u64 hw_filters_del; 46361ae650dSJack F Vogel u64 hw_filters_add; 46461ae650dSJack F Vogel 46561ae650dSJack F Vogel /* Misc. */ 46661ae650dSJack F Vogel u64 flags; 4671031d839SEric Joyner /* Stats sysctls for this VSI */ 46856c2c47bSJack F Vogel struct sysctl_oid *vsi_node; 46961ae650dSJack F Vogel }; 47061ae650dSJack F Vogel 47161ae650dSJack F Vogel /* 4721031d839SEric Joyner ** Creates new filter with given MAC address and VLAN ID 47361ae650dSJack F Vogel */ 47461ae650dSJack F Vogel static inline struct ixl_mac_filter * 4751031d839SEric Joyner ixl_new_filter(struct ixl_vsi *vsi, const u8 *macaddr, s16 vlan) 47661ae650dSJack F Vogel { 47761ae650dSJack F Vogel struct ixl_mac_filter *f; 47861ae650dSJack F Vogel 47961ae650dSJack F Vogel /* create a new empty filter */ 48061ae650dSJack F Vogel f = malloc(sizeof(struct ixl_mac_filter), 48161ae650dSJack F Vogel M_DEVBUF, M_NOWAIT | M_ZERO); 4821031d839SEric Joyner if (f) { 48361ae650dSJack F Vogel SLIST_INSERT_HEAD(&vsi->ftl, f, next); 4841031d839SEric Joyner bcopy(macaddr, f->macaddr, ETHER_ADDR_LEN); 4851031d839SEric Joyner f->vlan = vlan; 4861031d839SEric Joyner f->flags |= (IXL_FILTER_ADD | IXL_FILTER_USED); 4871031d839SEric Joyner } 48861ae650dSJack F Vogel 48961ae650dSJack F Vogel return (f); 49061ae650dSJack F Vogel } 49161ae650dSJack F Vogel 49261ae650dSJack F Vogel /* 49361ae650dSJack F Vogel ** Compare two ethernet addresses 49461ae650dSJack F Vogel */ 49561ae650dSJack F Vogel static inline bool 49656c2c47bSJack F Vogel cmp_etheraddr(const u8 *ea1, const u8 *ea2) 49761ae650dSJack F Vogel { 4981031d839SEric Joyner return (bcmp(ea1, ea2, 6) == 0); 49961ae650dSJack F Vogel } 50061ae650dSJack F Vogel 50161ae650dSJack F Vogel /* 5024294f337SSean Bruno * Return next largest power of 2, unsigned 5034294f337SSean Bruno * 5044294f337SSean Bruno * Public domain, from Bit Twiddling Hacks 5054294f337SSean Bruno */ 5064294f337SSean Bruno static inline u32 5074294f337SSean Bruno next_power_of_two(u32 n) 5084294f337SSean Bruno { 5094294f337SSean Bruno n--; 5104294f337SSean Bruno n |= n >> 1; 5114294f337SSean Bruno n |= n >> 2; 5124294f337SSean Bruno n |= n >> 4; 5134294f337SSean Bruno n |= n >> 8; 5144294f337SSean Bruno n |= n >> 16; 5154294f337SSean Bruno n++; 5164294f337SSean Bruno 5174294f337SSean Bruno /* Next power of two > 0 is 1 */ 5184294f337SSean Bruno n += (n == 0); 5194294f337SSean Bruno 5204294f337SSean Bruno return (n); 5214294f337SSean Bruno } 5224294f337SSean Bruno 5234294f337SSean Bruno /* 52461ae650dSJack F Vogel * Info for stats sysctls 52561ae650dSJack F Vogel */ 52661ae650dSJack F Vogel struct ixl_sysctl_info { 52761ae650dSJack F Vogel u64 *stat; 52861ae650dSJack F Vogel char *name; 52961ae650dSJack F Vogel char *description; 53061ae650dSJack F Vogel }; 53161ae650dSJack F Vogel 53233c66d8aSRyan Libby extern const uint8_t ixl_bcast_addr[ETHER_ADDR_LEN]; 53361ae650dSJack F Vogel 5344294f337SSean Bruno /* Common function prototypes between PF/VF driver */ 535*77c1fcecSEric Joyner void ixl_debug_core(device_t dev, u32 enabled_mask, u32 mask, char *fmt, ...); 5361031d839SEric Joyner void ixl_init_tx_ring(struct ixl_vsi *vsi, struct ixl_tx_queue *que); 5374294f337SSean Bruno void ixl_get_default_rss_key(u32 *); 538ceebc2f3SEric Joyner const char * i40e_vc_stat_str(struct i40e_hw *hw, 539ceebc2f3SEric Joyner enum virtchnl_status_code stat_err); 540*77c1fcecSEric Joyner void ixl_init_tx_rsqs(struct ixl_vsi *vsi); 541*77c1fcecSEric Joyner void ixl_init_tx_cidx(struct ixl_vsi *vsi); 542*77c1fcecSEric Joyner u64 ixl_max_vc_speed_to_value(u8 link_speeds); 543*77c1fcecSEric Joyner void ixl_add_vsi_sysctls(device_t dev, struct ixl_vsi *vsi, 544*77c1fcecSEric Joyner struct sysctl_ctx_list *ctx, const char *sysctl_name); 545*77c1fcecSEric Joyner void ixl_add_sysctls_eth_stats(struct sysctl_ctx_list *ctx, 546*77c1fcecSEric Joyner struct sysctl_oid_list *child, 547*77c1fcecSEric Joyner struct i40e_eth_stats *eth_stats); 548*77c1fcecSEric Joyner void ixl_add_queues_sysctls(device_t dev, struct ixl_vsi *vsi); 54961ae650dSJack F Vogel #endif /* _IXL_H_ */ 550