1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright (c) 2021, Intel Corporation 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright notice, 9 * this list of conditions and the following disclaimer. 10 * 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * 3. Neither the name of the Intel Corporation nor the names of its 16 * contributors may be used to endorse or promote products derived from 17 * this software without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * POSSIBILITY OF SUCH DAMAGE. 30 */ 31 /*$FreeBSD$*/ 32 33 /** 34 * @file iavf_lib.h 35 * @brief header for structures and functions common to legacy and iflib 36 * 37 * Contains definitions and function declarations which are shared between the 38 * legacy and iflib driver implementation. 39 */ 40 #ifndef _IAVF_LIB_H_ 41 #define _IAVF_LIB_H_ 42 43 #include <sys/malloc.h> 44 #include <machine/stdarg.h> 45 #include <sys/sysctl.h> 46 47 #include "iavf_debug.h" 48 #include "iavf_osdep.h" 49 #include "iavf_type.h" 50 #include "iavf_prototype.h" 51 52 MALLOC_DECLARE(M_IAVF); 53 54 /* 55 * Ring Descriptors Valid Range: 32-4096 Default Value: 1024 This value is the 56 * number of tx/rx descriptors allocated by the driver. Increasing this 57 * value allows the driver to queue more operations. 58 * 59 * Tx descriptors are always 16 bytes, but Rx descriptors can be 32 bytes. 60 * The driver currently always uses 32 byte Rx descriptors. 61 */ 62 #define IAVF_DEFAULT_RING 1024 63 #define IAVF_MAX_RING 4096 64 #define IAVF_MIN_RING 64 65 #define IAVF_RING_INCREMENT 32 66 67 #define IAVF_AQ_LEN 256 68 #define IAVF_AQ_LEN_MAX 1024 69 70 /* 71 ** Default number of entries in Tx queue buf_ring. 72 */ 73 #define DEFAULT_TXBRSZ 4096 74 75 /* Alignment for rings */ 76 #define DBA_ALIGN 128 77 78 /* 79 * Max number of multicast MAC addrs added to the driver's 80 * internal lists before converting to promiscuous mode 81 */ 82 #define MAX_MULTICAST_ADDR 128 83 84 /* Byte alignment for Tx/Rx descriptor rings */ 85 #define DBA_ALIGN 128 86 87 #define IAVF_MSIX_BAR 3 88 #define IAVF_ADM_LIMIT 2 89 #define IAVF_TSO_SIZE ((255*1024)-1) 90 #define IAVF_AQ_BUF_SZ ((u32) 4096) 91 #define IAVF_RX_HDR 128 92 #define IAVF_RX_LIMIT 512 93 #define IAVF_RX_ITR 0 94 #define IAVF_TX_ITR 1 95 /** 96 * The maximum packet length allowed to be sent or received by the adapter. 97 */ 98 #define IAVF_MAX_FRAME 9728 99 /** 100 * The minimum packet length allowed to be sent by the adapter. 101 */ 102 #define IAVF_MIN_FRAME 17 103 #define IAVF_MAX_TX_SEGS 8 104 #define IAVF_MAX_RX_SEGS 5 105 #define IAVF_MAX_TSO_SEGS 128 106 #define IAVF_SPARSE_CHAIN 7 107 #define IAVF_MIN_TSO_MSS 64 108 #define IAVF_MAX_TSO_MSS 9668 109 #define IAVF_MAX_DMA_SEG_SIZE ((16 * 1024) - 1) 110 #define IAVF_AQ_MAX_ERR 30 111 #define IAVF_MAX_INIT_WAIT 120 112 #define IAVF_AQ_TIMEOUT (1 * hz) 113 #define IAVF_ADV_LINK_SPEED_SCALE ((u64)1000000) 114 #define IAVF_MAX_DIS_Q_RETRY 10 115 116 #define IAVF_RSS_KEY_SIZE_REG 13 117 #define IAVF_RSS_KEY_SIZE (IAVF_RSS_KEY_SIZE_REG * 4) 118 #define IAVF_RSS_VSI_LUT_SIZE 64 /* X722 -> VSI, X710 -> VF */ 119 #define IAVF_RSS_VSI_LUT_ENTRY_MASK 0x3F 120 #define IAVF_RSS_VF_LUT_ENTRY_MASK 0xF 121 122 /* Maximum MTU size */ 123 #define IAVF_MAX_MTU (IAVF_MAX_FRAME - \ 124 ETHER_HDR_LEN - ETHER_CRC_LEN - ETHER_VLAN_ENCAP_LEN) 125 126 /* 127 * Hardware requires that TSO packets have an segment size of at least 64 128 * bytes. To avoid sending bad frames to the hardware, the driver forces the 129 * MSS for all TSO packets to have a segment size of at least 64 bytes. 130 * 131 * However, if the MTU is reduced below a certain size, then the resulting 132 * larger MSS can result in transmitting segmented frames with a packet size 133 * larger than the MTU. 134 * 135 * Avoid this by preventing the MTU from being lowered below this limit. 136 * Alternative solutions require changing the TCP stack to disable offloading 137 * the segmentation when the requested segment size goes below 64 bytes. 138 */ 139 #define IAVF_MIN_MTU 112 140 141 /* 142 * Interrupt Moderation parameters 143 * Multiply ITR values by 2 for real ITR value 144 */ 145 #define IAVF_MAX_ITR 0x0FF0 146 #define IAVF_ITR_100K 0x0005 147 #define IAVF_ITR_20K 0x0019 148 #define IAVF_ITR_8K 0x003E 149 #define IAVF_ITR_4K 0x007A 150 #define IAVF_ITR_1K 0x01F4 151 #define IAVF_ITR_DYNAMIC 0x8000 152 #define IAVF_LOW_LATENCY 0 153 #define IAVF_AVE_LATENCY 1 154 #define IAVF_BULK_LATENCY 2 155 156 /* MacVlan Flags */ 157 #define IAVF_FILTER_USED (u16)(1 << 0) 158 #define IAVF_FILTER_VLAN (u16)(1 << 1) 159 #define IAVF_FILTER_ADD (u16)(1 << 2) 160 #define IAVF_FILTER_DEL (u16)(1 << 3) 161 #define IAVF_FILTER_MC (u16)(1 << 4) 162 /* used in the vlan field of the filter when not a vlan */ 163 #define IAVF_VLAN_ANY -1 164 165 #define CSUM_OFFLOAD_IPV4 (CSUM_IP|CSUM_TCP|CSUM_UDP|CSUM_SCTP) 166 #define CSUM_OFFLOAD_IPV6 (CSUM_TCP_IPV6|CSUM_UDP_IPV6|CSUM_SCTP_IPV6) 167 #define CSUM_OFFLOAD (CSUM_OFFLOAD_IPV4|CSUM_OFFLOAD_IPV6|CSUM_TSO) 168 169 /* Misc flags for iavf_vsi.flags */ 170 #define IAVF_FLAGS_KEEP_TSO4 (1 << 0) 171 #define IAVF_FLAGS_KEEP_TSO6 (1 << 1) 172 173 #define IAVF_DEFAULT_RSS_HENA_BASE (\ 174 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV4_UDP) | \ 175 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV4_TCP) | \ 176 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV4_SCTP) | \ 177 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV4_OTHER) | \ 178 BIT_ULL(IAVF_FILTER_PCTYPE_FRAG_IPV4) | \ 179 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV6_UDP) | \ 180 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV6_TCP) | \ 181 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV6_SCTP) | \ 182 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV6_OTHER) | \ 183 BIT_ULL(IAVF_FILTER_PCTYPE_FRAG_IPV6)) 184 185 #define IAVF_DEFAULT_ADV_RSS_HENA (\ 186 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | \ 187 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) | \ 188 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | \ 189 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) | \ 190 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK) | \ 191 BIT_ULL(IAVF_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK)) 192 193 #define IAVF_DEFAULT_RSS_HENA_XL710 (\ 194 IAVF_DEFAULT_RSS_HENA_BASE | \ 195 BIT_ULL(IAVF_FILTER_PCTYPE_L2_PAYLOAD)) 196 197 #define IAVF_DEFAULT_RSS_HENA_X722 (\ 198 IAVF_DEFAULT_RSS_HENA_XL710 | \ 199 IAVF_DEFAULT_ADV_RSS_HENA) 200 201 #define IAVF_DEFAULT_RSS_HENA_AVF (\ 202 IAVF_DEFAULT_RSS_HENA_BASE | \ 203 IAVF_DEFAULT_ADV_RSS_HENA) 204 205 /* Pre-11 counter(9) compatibility */ 206 #if __FreeBSD_version >= 1100036 207 #define IAVF_SET_IPACKETS(vsi, count) (vsi)->ipackets = (count) 208 #define IAVF_SET_IERRORS(vsi, count) (vsi)->ierrors = (count) 209 #define IAVF_SET_OPACKETS(vsi, count) (vsi)->opackets = (count) 210 #define IAVF_SET_OERRORS(vsi, count) (vsi)->oerrors = (count) 211 #define IAVF_SET_COLLISIONS(vsi, count) /* Do nothing; collisions is always 0. */ 212 #define IAVF_SET_IBYTES(vsi, count) (vsi)->ibytes = (count) 213 #define IAVF_SET_OBYTES(vsi, count) (vsi)->obytes = (count) 214 #define IAVF_SET_IMCASTS(vsi, count) (vsi)->imcasts = (count) 215 #define IAVF_SET_OMCASTS(vsi, count) (vsi)->omcasts = (count) 216 #define IAVF_SET_IQDROPS(vsi, count) (vsi)->iqdrops = (count) 217 #define IAVF_SET_OQDROPS(vsi, count) (vsi)->oqdrops = (count) 218 #define IAVF_SET_NOPROTO(vsi, count) (vsi)->noproto = (count) 219 #else 220 #define IAVF_SET_IPACKETS(vsi, count) (vsi)->ifp->if_ipackets = (count) 221 #define IAVF_SET_IERRORS(vsi, count) (vsi)->ifp->if_ierrors = (count) 222 #define IAVF_SET_OPACKETS(vsi, count) (vsi)->ifp->if_opackets = (count) 223 #define IAVF_SET_OERRORS(vsi, count) (vsi)->ifp->if_oerrors = (count) 224 #define IAVF_SET_COLLISIONS(vsi, count) (vsi)->ifp->if_collisions = (count) 225 #define IAVF_SET_IBYTES(vsi, count) (vsi)->ifp->if_ibytes = (count) 226 #define IAVF_SET_OBYTES(vsi, count) (vsi)->ifp->if_obytes = (count) 227 #define IAVF_SET_IMCASTS(vsi, count) (vsi)->ifp->if_imcasts = (count) 228 #define IAVF_SET_OMCASTS(vsi, count) (vsi)->ifp->if_omcasts = (count) 229 #define IAVF_SET_IQDROPS(vsi, count) (vsi)->ifp->if_iqdrops = (count) 230 #define IAVF_SET_OQDROPS(vsi, odrops) (vsi)->ifp->if_snd.ifq_drops = (odrops) 231 #define IAVF_SET_NOPROTO(vsi, count) (vsi)->noproto = (count) 232 #endif 233 234 /* For stats sysctl naming */ 235 #define IAVF_QUEUE_NAME_LEN 32 236 237 #define IAVF_FLAG_AQ_ENABLE_QUEUES (u32)(1 << 0) 238 #define IAVF_FLAG_AQ_DISABLE_QUEUES (u32)(1 << 1) 239 #define IAVF_FLAG_AQ_ADD_MAC_FILTER (u32)(1 << 2) 240 #define IAVF_FLAG_AQ_ADD_VLAN_FILTER (u32)(1 << 3) 241 #define IAVF_FLAG_AQ_DEL_MAC_FILTER (u32)(1 << 4) 242 #define IAVF_FLAG_AQ_DEL_VLAN_FILTER (u32)(1 << 5) 243 #define IAVF_FLAG_AQ_CONFIGURE_QUEUES (u32)(1 << 6) 244 #define IAVF_FLAG_AQ_MAP_VECTORS (u32)(1 << 7) 245 #define IAVF_FLAG_AQ_HANDLE_RESET (u32)(1 << 8) 246 #define IAVF_FLAG_AQ_CONFIGURE_PROMISC (u32)(1 << 9) 247 #define IAVF_FLAG_AQ_GET_STATS (u32)(1 << 10) 248 #define IAVF_FLAG_AQ_CONFIG_RSS_KEY (u32)(1 << 11) 249 #define IAVF_FLAG_AQ_SET_RSS_HENA (u32)(1 << 12) 250 #define IAVF_FLAG_AQ_GET_RSS_HENA_CAPS (u32)(1 << 13) 251 #define IAVF_FLAG_AQ_CONFIG_RSS_LUT (u32)(1 << 14) 252 253 #define IAVF_CAP_ADV_LINK_SPEED(_sc) \ 254 ((_sc)->vf_res->vf_cap_flags & VIRTCHNL_VF_CAP_ADV_LINK_SPEED) 255 256 #define IAVF_NRXQS(_vsi) ((_vsi)->num_rx_queues) 257 #define IAVF_NTXQS(_vsi) ((_vsi)->num_tx_queues) 258 259 /** 260 * printf %b flag args 261 */ 262 #define IAVF_FLAGS \ 263 "\20\1ENABLE_QUEUES\2DISABLE_QUEUES\3ADD_MAC_FILTER" \ 264 "\4ADD_VLAN_FILTER\5DEL_MAC_FILTER\6DEL_VLAN_FILTER" \ 265 "\7CONFIGURE_QUEUES\10MAP_VECTORS\11HANDLE_RESET" \ 266 "\12CONFIGURE_PROMISC\13GET_STATS\14CONFIG_RSS_KEY" \ 267 "\15SET_RSS_HENA\16GET_RSS_HENA_CAPS\17CONFIG_RSS_LUT" 268 /** 269 * printf %b flag args for offloads from virtchnl.h 270 */ 271 #define IAVF_PRINTF_VF_OFFLOAD_FLAGS \ 272 "\20\1L2" \ 273 "\2IWARP" \ 274 "\3FCOE" \ 275 "\4RSS_AQ" \ 276 "\5RSS_REG" \ 277 "\6WB_ON_ITR" \ 278 "\7REQ_QUEUES" \ 279 "\10ADV_LINK_SPEED" \ 280 "\21VLAN" \ 281 "\22RX_POLLING" \ 282 "\23RSS_PCTYPE_V2" \ 283 "\24RSS_PF" \ 284 "\25ENCAP" \ 285 "\26ENCAP_CSUM" \ 286 "\27RX_ENCAP_CSUM" \ 287 "\30ADQ" 288 289 /** 290 * @enum iavf_ext_link_speed 291 * @brief Extended link speed enumeration 292 * 293 * Enumeration of possible link speeds that the device could be operating in. 294 * Contains an extended list compared to the virtchnl_link_speed, including 295 * additional higher speeds such as 50GB, and 100GB. 296 * 297 * The enumeration is used to convert between the old virtchnl_link_speed, the 298 * newer advanced speed reporting value specified in Mb/s, and the ifmedia 299 * link speeds reported to the operating system. 300 */ 301 enum iavf_ext_link_speed { 302 IAVF_EXT_LINK_SPEED_UNKNOWN, 303 IAVF_EXT_LINK_SPEED_10MB, 304 IAVF_EXT_LINK_SPEED_100MB, 305 IAVF_EXT_LINK_SPEED_1000MB, 306 IAVF_EXT_LINK_SPEED_2500MB, 307 IAVF_EXT_LINK_SPEED_5GB, 308 IAVF_EXT_LINK_SPEED_10GB, 309 IAVF_EXT_LINK_SPEED_20GB, 310 IAVF_EXT_LINK_SPEED_25GB, 311 IAVF_EXT_LINK_SPEED_40GB, 312 IAVF_EXT_LINK_SPEED_50GB, 313 IAVF_EXT_LINK_SPEED_100GB, 314 }; 315 316 /** 317 * @struct iavf_sysctl_info 318 * @brief sysctl statistic info 319 * 320 * Structure describing a single statistics sysctl, used for reporting 321 * specific hardware and software statistics via the sysctl interface. 322 */ 323 struct iavf_sysctl_info { 324 u64 *stat; 325 char *name; 326 char *description; 327 }; 328 329 /* Forward struct declarations */ 330 struct iavf_sc; 331 struct iavf_vsi; 332 333 /** 334 * @enum iavf_state 335 * @brief Driver state flags 336 * 337 * Used to indicate the status of various driver events. Intended to be 338 * modified only using atomic operations, so that we can use it even in places 339 * which aren't locked. 340 */ 341 enum iavf_state { 342 IAVF_STATE_INITIALIZED, 343 IAVF_STATE_RESET_REQUIRED, 344 IAVF_STATE_RESET_PENDING, 345 IAVF_STATE_RUNNING, 346 /* This entry must be last */ 347 IAVF_STATE_LAST, 348 }; 349 350 /* Functions for setting and checking driver state. Note the functions take 351 * bit positions, not bitmasks. The atomic_testandset_32 and 352 * atomic_testandclear_32 operations require bit positions, while the 353 * atomic_set_32 and atomic_clear_32 require bitmasks. This can easily lead to 354 * programming error, so we provide wrapper functions to avoid this. 355 */ 356 357 /** 358 * iavf_set_state - Set the specified state 359 * @s: the state bitmap 360 * @bit: the state to set 361 * 362 * Atomically update the state bitmap with the specified bit set. 363 */ 364 static inline void 365 iavf_set_state(volatile u32 *s, enum iavf_state bit) 366 { 367 /* atomic_set_32 expects a bitmask */ 368 atomic_set_32(s, BIT(bit)); 369 } 370 371 /** 372 * iavf_clear_state - Clear the specified state 373 * @s: the state bitmap 374 * @bit: the state to clear 375 * 376 * Atomically update the state bitmap with the specified bit cleared. 377 */ 378 static inline void 379 iavf_clear_state(volatile u32 *s, enum iavf_state bit) 380 { 381 /* atomic_clear_32 expects a bitmask */ 382 atomic_clear_32(s, BIT(bit)); 383 } 384 385 /** 386 * iavf_testandset_state - Test and set the specified state 387 * @s: the state bitmap 388 * @bit: the bit to test 389 * 390 * Atomically update the state bitmap, setting the specified bit. 391 * 392 * @returns the previous value of the bit. 393 */ 394 static inline u32 395 iavf_testandset_state(volatile u32 *s, enum iavf_state bit) 396 { 397 /* atomic_testandset_32 expects a bit position */ 398 return atomic_testandset_32(s, bit); 399 } 400 401 /** 402 * iavf_testandclear_state - Test and clear the specified state 403 * @s: the state bitmap 404 * @bit: the bit to test 405 * 406 * Atomically update the state bitmap, clearing the specified bit. 407 * 408 * @returns the previous value of the bit. 409 */ 410 static inline u32 411 iavf_testandclear_state(volatile u32 *s, enum iavf_state bit) 412 { 413 /* atomic_testandclear_32 expects a bit position */ 414 return atomic_testandclear_32(s, bit); 415 } 416 417 /** 418 * iavf_test_state - Test the specified state 419 * @s: the state bitmap 420 * @bit: the bit to test 421 * 422 * @returns true if the state is set, false otherwise. 423 * 424 * @remark Use this only if the flow does not need to update the state. If you 425 * must update the state as well, prefer iavf_testandset_state or 426 * iavf_testandclear_state. 427 */ 428 static inline u32 429 iavf_test_state(volatile u32 *s, enum iavf_state bit) 430 { 431 return (*s & BIT(bit)) ? true : false; 432 } 433 434 /** 435 * cmp_etheraddr - Compare two ethernet addresses 436 * @ea1: first ethernet address 437 * @ea2: second ethernet address 438 * 439 * Compares two ethernet addresses. 440 * 441 * @returns true if the addresses are equal, false otherwise. 442 */ 443 static inline bool 444 cmp_etheraddr(const u8 *ea1, const u8 *ea2) 445 { 446 bool cmp = FALSE; 447 448 if ((ea1[0] == ea2[0]) && (ea1[1] == ea2[1]) && 449 (ea1[2] == ea2[2]) && (ea1[3] == ea2[3]) && 450 (ea1[4] == ea2[4]) && (ea1[5] == ea2[5])) 451 cmp = TRUE; 452 453 return (cmp); 454 } 455 456 int iavf_send_vc_msg(struct iavf_sc *sc, u32 op); 457 int iavf_send_vc_msg_sleep(struct iavf_sc *sc, u32 op); 458 void iavf_update_link_status(struct iavf_sc *); 459 bool iavf_driver_is_detaching(struct iavf_sc *sc); 460 void iavf_msec_pause(int msecs); 461 void iavf_get_default_rss_key(u32 *key); 462 int iavf_allocate_pci_resources_common(struct iavf_sc *sc); 463 int iavf_reset_complete(struct iavf_hw *hw); 464 int iavf_setup_vc(struct iavf_sc *sc); 465 int iavf_reset(struct iavf_sc *sc); 466 void iavf_enable_adminq_irq(struct iavf_hw *hw); 467 void iavf_disable_adminq_irq(struct iavf_hw *hw); 468 int iavf_vf_config(struct iavf_sc *sc); 469 void iavf_print_device_info(struct iavf_sc *sc); 470 int iavf_get_vsi_res_from_vf_res(struct iavf_sc *sc); 471 void iavf_set_mac_addresses(struct iavf_sc *sc); 472 void iavf_init_filters(struct iavf_sc *sc); 473 void iavf_free_filters(struct iavf_sc *sc); 474 void iavf_add_device_sysctls_common(struct iavf_sc *sc); 475 void iavf_configure_tx_itr(struct iavf_sc *sc); 476 void iavf_configure_rx_itr(struct iavf_sc *sc); 477 struct sysctl_oid_list * 478 iavf_create_debug_sysctl_tree(struct iavf_sc *sc); 479 void iavf_add_debug_sysctls_common(struct iavf_sc *sc, 480 struct sysctl_oid_list *debug_list); 481 void iavf_add_vsi_sysctls(device_t dev, struct iavf_vsi *vsi, 482 struct sysctl_ctx_list *ctx, const char *sysctl_name); 483 void iavf_add_sysctls_eth_stats(struct sysctl_ctx_list *ctx, 484 struct sysctl_oid_list *child, struct iavf_eth_stats *eth_stats); 485 void iavf_media_status_common(struct iavf_sc *sc, 486 struct ifmediareq *ifmr); 487 int iavf_media_change_common(struct ifnet *ifp); 488 void iavf_set_initial_baudrate(struct ifnet *ifp); 489 u64 iavf_max_vc_speed_to_value(u8 link_speeds); 490 void iavf_config_rss_reg(struct iavf_sc *sc); 491 void iavf_config_rss_pf(struct iavf_sc *sc); 492 void iavf_config_rss(struct iavf_sc *sc); 493 int iavf_config_promisc(struct iavf_sc *sc, int flags); 494 void iavf_init_multi(struct iavf_sc *sc); 495 void iavf_multi_set(struct iavf_sc *sc); 496 int iavf_add_mac_filter(struct iavf_sc *sc, u8 *macaddr, u16 flags); 497 struct iavf_mac_filter * 498 iavf_find_mac_filter(struct iavf_sc *sc, u8 *macaddr); 499 struct iavf_mac_filter * 500 iavf_get_mac_filter(struct iavf_sc *sc); 501 u64 iavf_baudrate_from_link_speed(struct iavf_sc *sc); 502 void iavf_add_vlan_filter(struct iavf_sc *sc, u16 vtag); 503 int iavf_mark_del_vlan_filter(struct iavf_sc *sc, u16 vtag); 504 void iavf_update_msix_devinfo(device_t dev); 505 void iavf_disable_queues_with_retries(struct iavf_sc *); 506 507 int iavf_sysctl_current_speed(SYSCTL_HANDLER_ARGS); 508 int iavf_sysctl_tx_itr(SYSCTL_HANDLER_ARGS); 509 int iavf_sysctl_rx_itr(SYSCTL_HANDLER_ARGS); 510 int iavf_sysctl_sw_filter_list(SYSCTL_HANDLER_ARGS); 511 512 #endif /* _IAVF_LIB_H_ */ 513