1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * ethtool.h: Defines for Linux ethtool. 4 * 5 * Copyright (C) 1998 David S. Miller ([email protected]) 6 * Copyright 2001 Jeff Garzik <[email protected]> 7 * Portions Copyright 2001 Sun Microsystems ([email protected]) 8 * Portions Copyright 2002 Intel ([email protected], 9 * [email protected], 10 * [email protected]) 11 * Portions Copyright (C) Sun Microsystems 2008 12 */ 13 #ifndef _LINUX_ETHTOOL_H 14 #define _LINUX_ETHTOOL_H 15 16 #include <linux/bitmap.h> 17 #include <linux/compat.h> 18 #include <linux/if_ether.h> 19 #include <linux/netlink.h> 20 #include <uapi/linux/ethtool.h> 21 #include <uapi/linux/net_tstamp.h> 22 23 struct compat_ethtool_rx_flow_spec { 24 u32 flow_type; 25 union ethtool_flow_union h_u; 26 struct ethtool_flow_ext h_ext; 27 union ethtool_flow_union m_u; 28 struct ethtool_flow_ext m_ext; 29 compat_u64 ring_cookie; 30 u32 location; 31 }; 32 33 struct compat_ethtool_rxnfc { 34 u32 cmd; 35 u32 flow_type; 36 compat_u64 data; 37 struct compat_ethtool_rx_flow_spec fs; 38 u32 rule_cnt; 39 u32 rule_locs[]; 40 }; 41 42 #include <linux/rculist.h> 43 44 /** 45 * enum ethtool_phys_id_state - indicator state for physical identification 46 * @ETHTOOL_ID_INACTIVE: Physical ID indicator should be deactivated 47 * @ETHTOOL_ID_ACTIVE: Physical ID indicator should be activated 48 * @ETHTOOL_ID_ON: LED should be turned on (used iff %ETHTOOL_ID_ACTIVE 49 * is not supported) 50 * @ETHTOOL_ID_OFF: LED should be turned off (used iff %ETHTOOL_ID_ACTIVE 51 * is not supported) 52 */ 53 enum ethtool_phys_id_state { 54 ETHTOOL_ID_INACTIVE, 55 ETHTOOL_ID_ACTIVE, 56 ETHTOOL_ID_ON, 57 ETHTOOL_ID_OFF 58 }; 59 60 enum { 61 ETH_RSS_HASH_TOP_BIT, /* Configurable RSS hash function - Toeplitz */ 62 ETH_RSS_HASH_XOR_BIT, /* Configurable RSS hash function - Xor */ 63 ETH_RSS_HASH_CRC32_BIT, /* Configurable RSS hash function - Crc32 */ 64 65 /* 66 * Add your fresh new hash function bits above and remember to update 67 * rss_hash_func_strings[] in ethtool.c 68 */ 69 ETH_RSS_HASH_FUNCS_COUNT 70 }; 71 72 /** 73 * struct kernel_ethtool_ringparam - RX/TX ring configuration 74 * @rx_buf_len: Current length of buffers on the rx ring. 75 * @tcp_data_split: Scatter packet headers and data to separate buffers 76 * @tx_push: The flag of tx push mode 77 * @rx_push: The flag of rx push mode 78 * @cqe_size: Size of TX/RX completion queue event 79 * @tx_push_buf_len: Size of TX push buffer 80 * @tx_push_buf_max_len: Maximum allowed size of TX push buffer 81 * @hds_thresh: Packet size threshold for header data split (HDS) 82 * @hds_thresh_max: Maximum supported setting for @hds_threshold 83 * 84 */ 85 struct kernel_ethtool_ringparam { 86 u32 rx_buf_len; 87 u8 tcp_data_split; 88 u8 tx_push; 89 u8 rx_push; 90 u32 cqe_size; 91 u32 tx_push_buf_len; 92 u32 tx_push_buf_max_len; 93 u32 hds_thresh; 94 u32 hds_thresh_max; 95 }; 96 97 /** 98 * enum ethtool_supported_ring_param - indicator caps for setting ring params 99 * @ETHTOOL_RING_USE_RX_BUF_LEN: capture for setting rx_buf_len 100 * @ETHTOOL_RING_USE_CQE_SIZE: capture for setting cqe_size 101 * @ETHTOOL_RING_USE_TX_PUSH: capture for setting tx_push 102 * @ETHTOOL_RING_USE_RX_PUSH: capture for setting rx_push 103 * @ETHTOOL_RING_USE_TX_PUSH_BUF_LEN: capture for setting tx_push_buf_len 104 * @ETHTOOL_RING_USE_TCP_DATA_SPLIT: capture for setting tcp_data_split 105 * @ETHTOOL_RING_USE_HDS_THRS: capture for setting header-data-split-thresh 106 */ 107 enum ethtool_supported_ring_param { 108 ETHTOOL_RING_USE_RX_BUF_LEN = BIT(0), 109 ETHTOOL_RING_USE_CQE_SIZE = BIT(1), 110 ETHTOOL_RING_USE_TX_PUSH = BIT(2), 111 ETHTOOL_RING_USE_RX_PUSH = BIT(3), 112 ETHTOOL_RING_USE_TX_PUSH_BUF_LEN = BIT(4), 113 ETHTOOL_RING_USE_TCP_DATA_SPLIT = BIT(5), 114 ETHTOOL_RING_USE_HDS_THRS = BIT(6), 115 }; 116 117 #define __ETH_RSS_HASH_BIT(bit) ((u32)1 << (bit)) 118 #define __ETH_RSS_HASH(name) __ETH_RSS_HASH_BIT(ETH_RSS_HASH_##name##_BIT) 119 120 #define ETH_RSS_HASH_TOP __ETH_RSS_HASH(TOP) 121 #define ETH_RSS_HASH_XOR __ETH_RSS_HASH(XOR) 122 #define ETH_RSS_HASH_CRC32 __ETH_RSS_HASH(CRC32) 123 124 #define ETH_RSS_HASH_UNKNOWN 0 125 #define ETH_RSS_HASH_NO_CHANGE 0 126 127 struct net_device; 128 struct netlink_ext_ack; 129 130 /* Link extended state and substate. */ 131 struct ethtool_link_ext_state_info { 132 enum ethtool_link_ext_state link_ext_state; 133 union { 134 enum ethtool_link_ext_substate_autoneg autoneg; 135 enum ethtool_link_ext_substate_link_training link_training; 136 enum ethtool_link_ext_substate_link_logical_mismatch link_logical_mismatch; 137 enum ethtool_link_ext_substate_bad_signal_integrity bad_signal_integrity; 138 enum ethtool_link_ext_substate_cable_issue cable_issue; 139 enum ethtool_link_ext_substate_module module; 140 u32 __link_ext_substate; 141 }; 142 }; 143 144 struct ethtool_link_ext_stats { 145 /* Custom Linux statistic for PHY level link down events. 146 * In a simpler world it should be equal to netdev->carrier_down_count 147 * unfortunately netdev also counts local reconfigurations which don't 148 * actually take the physical link down, not to mention NC-SI which, 149 * if present, keeps the link up regardless of host state. 150 * This statistic counts when PHY _actually_ went down, or lost link. 151 * 152 * Note that we need u64 for ethtool_stats_init() and comparisons 153 * to ETHTOOL_STAT_NOT_SET, but only u32 is exposed to the user. 154 */ 155 u64 link_down_events; 156 }; 157 158 /** 159 * ethtool_rxfh_indir_default - get default value for RX flow hash indirection 160 * @index: Index in RX flow hash indirection table 161 * @n_rx_rings: Number of RX rings to use 162 * 163 * This function provides the default policy for RX flow hash indirection. 164 */ 165 static inline u32 ethtool_rxfh_indir_default(u32 index, u32 n_rx_rings) 166 { 167 return index % n_rx_rings; 168 } 169 170 /** 171 * struct ethtool_rxfh_context - a custom RSS context configuration 172 * @indir_size: Number of u32 entries in indirection table 173 * @key_size: Size of hash key, in bytes 174 * @priv_size: Size of driver private data, in bytes 175 * @hfunc: RSS hash function identifier. One of the %ETH_RSS_HASH_* 176 * @input_xfrm: Defines how the input data is transformed. Valid values are one 177 * of %RXH_XFRM_*. 178 * @indir_configured: indir has been specified (at create time or subsequently) 179 * @key_configured: hkey has been specified (at create time or subsequently) 180 */ 181 struct ethtool_rxfh_context { 182 u32 indir_size; 183 u32 key_size; 184 u16 priv_size; 185 u8 hfunc; 186 u8 input_xfrm; 187 u8 indir_configured:1; 188 u8 key_configured:1; 189 /* private: driver private data, indirection table, and hash key are 190 * stored sequentially in @data area. Use below helpers to access. 191 */ 192 u32 key_off; 193 u8 data[] __aligned(sizeof(void *)); 194 }; 195 196 static inline void *ethtool_rxfh_context_priv(struct ethtool_rxfh_context *ctx) 197 { 198 return ctx->data; 199 } 200 201 static inline u32 *ethtool_rxfh_context_indir(struct ethtool_rxfh_context *ctx) 202 { 203 return (u32 *)(ctx->data + ALIGN(ctx->priv_size, sizeof(u32))); 204 } 205 206 static inline u8 *ethtool_rxfh_context_key(struct ethtool_rxfh_context *ctx) 207 { 208 return &ctx->data[ctx->key_off]; 209 } 210 211 void ethtool_rxfh_context_lost(struct net_device *dev, u32 context_id); 212 213 /* declare a link mode bitmap */ 214 #define __ETHTOOL_DECLARE_LINK_MODE_MASK(name) \ 215 DECLARE_BITMAP(name, __ETHTOOL_LINK_MODE_MASK_NBITS) 216 217 /* drivers must ignore base.cmd and base.link_mode_masks_nwords 218 * fields, but they are allowed to overwrite them (will be ignored). 219 */ 220 struct ethtool_link_ksettings { 221 struct ethtool_link_settings base; 222 struct { 223 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported); 224 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising); 225 __ETHTOOL_DECLARE_LINK_MODE_MASK(lp_advertising); 226 } link_modes; 227 u32 lanes; 228 }; 229 230 /** 231 * ethtool_link_ksettings_zero_link_mode - clear link_ksettings link mode mask 232 * @ptr : pointer to struct ethtool_link_ksettings 233 * @name : one of supported/advertising/lp_advertising 234 */ 235 #define ethtool_link_ksettings_zero_link_mode(ptr, name) \ 236 bitmap_zero((ptr)->link_modes.name, __ETHTOOL_LINK_MODE_MASK_NBITS) 237 238 /** 239 * ethtool_link_ksettings_add_link_mode - set bit in link_ksettings 240 * link mode mask 241 * @ptr : pointer to struct ethtool_link_ksettings 242 * @name : one of supported/advertising/lp_advertising 243 * @mode : one of the ETHTOOL_LINK_MODE_*_BIT 244 * (not atomic, no bound checking) 245 */ 246 #define ethtool_link_ksettings_add_link_mode(ptr, name, mode) \ 247 __set_bit(ETHTOOL_LINK_MODE_ ## mode ## _BIT, (ptr)->link_modes.name) 248 249 /** 250 * ethtool_link_ksettings_del_link_mode - clear bit in link_ksettings 251 * link mode mask 252 * @ptr : pointer to struct ethtool_link_ksettings 253 * @name : one of supported/advertising/lp_advertising 254 * @mode : one of the ETHTOOL_LINK_MODE_*_BIT 255 * (not atomic, no bound checking) 256 */ 257 #define ethtool_link_ksettings_del_link_mode(ptr, name, mode) \ 258 __clear_bit(ETHTOOL_LINK_MODE_ ## mode ## _BIT, (ptr)->link_modes.name) 259 260 /** 261 * ethtool_link_ksettings_test_link_mode - test bit in ksettings link mode mask 262 * @ptr : pointer to struct ethtool_link_ksettings 263 * @name : one of supported/advertising/lp_advertising 264 * @mode : one of the ETHTOOL_LINK_MODE_*_BIT 265 * (not atomic, no bound checking) 266 * 267 * Returns: true/false. 268 */ 269 #define ethtool_link_ksettings_test_link_mode(ptr, name, mode) \ 270 test_bit(ETHTOOL_LINK_MODE_ ## mode ## _BIT, (ptr)->link_modes.name) 271 272 extern int 273 __ethtool_get_link_ksettings(struct net_device *dev, 274 struct ethtool_link_ksettings *link_ksettings); 275 276 struct ethtool_keee { 277 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported); 278 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertised); 279 __ETHTOOL_DECLARE_LINK_MODE_MASK(lp_advertised); 280 u32 tx_lpi_timer; 281 bool tx_lpi_enabled; 282 bool eee_active; 283 bool eee_enabled; 284 }; 285 286 struct kernel_ethtool_coalesce { 287 u8 use_cqe_mode_tx; 288 u8 use_cqe_mode_rx; 289 u32 tx_aggr_max_bytes; 290 u32 tx_aggr_max_frames; 291 u32 tx_aggr_time_usecs; 292 }; 293 294 /** 295 * ethtool_intersect_link_masks - Given two link masks, AND them together 296 * @dst: first mask and where result is stored 297 * @src: second mask to intersect with 298 * 299 * Given two link mode masks, AND them together and save the result in dst. 300 */ 301 void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst, 302 struct ethtool_link_ksettings *src); 303 304 void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst, 305 u32 legacy_u32); 306 307 /* return false if src had higher bits set. lower bits always updated. */ 308 bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32, 309 const unsigned long *src); 310 311 #define ETHTOOL_COALESCE_RX_USECS BIT(0) 312 #define ETHTOOL_COALESCE_RX_MAX_FRAMES BIT(1) 313 #define ETHTOOL_COALESCE_RX_USECS_IRQ BIT(2) 314 #define ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ BIT(3) 315 #define ETHTOOL_COALESCE_TX_USECS BIT(4) 316 #define ETHTOOL_COALESCE_TX_MAX_FRAMES BIT(5) 317 #define ETHTOOL_COALESCE_TX_USECS_IRQ BIT(6) 318 #define ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ BIT(7) 319 #define ETHTOOL_COALESCE_STATS_BLOCK_USECS BIT(8) 320 #define ETHTOOL_COALESCE_USE_ADAPTIVE_RX BIT(9) 321 #define ETHTOOL_COALESCE_USE_ADAPTIVE_TX BIT(10) 322 #define ETHTOOL_COALESCE_PKT_RATE_LOW BIT(11) 323 #define ETHTOOL_COALESCE_RX_USECS_LOW BIT(12) 324 #define ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW BIT(13) 325 #define ETHTOOL_COALESCE_TX_USECS_LOW BIT(14) 326 #define ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW BIT(15) 327 #define ETHTOOL_COALESCE_PKT_RATE_HIGH BIT(16) 328 #define ETHTOOL_COALESCE_RX_USECS_HIGH BIT(17) 329 #define ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH BIT(18) 330 #define ETHTOOL_COALESCE_TX_USECS_HIGH BIT(19) 331 #define ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH BIT(20) 332 #define ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL BIT(21) 333 #define ETHTOOL_COALESCE_USE_CQE_RX BIT(22) 334 #define ETHTOOL_COALESCE_USE_CQE_TX BIT(23) 335 #define ETHTOOL_COALESCE_TX_AGGR_MAX_BYTES BIT(24) 336 #define ETHTOOL_COALESCE_TX_AGGR_MAX_FRAMES BIT(25) 337 #define ETHTOOL_COALESCE_TX_AGGR_TIME_USECS BIT(26) 338 #define ETHTOOL_COALESCE_RX_PROFILE BIT(27) 339 #define ETHTOOL_COALESCE_TX_PROFILE BIT(28) 340 #define ETHTOOL_COALESCE_ALL_PARAMS GENMASK(28, 0) 341 342 #define ETHTOOL_COALESCE_USECS \ 343 (ETHTOOL_COALESCE_RX_USECS | ETHTOOL_COALESCE_TX_USECS) 344 #define ETHTOOL_COALESCE_MAX_FRAMES \ 345 (ETHTOOL_COALESCE_RX_MAX_FRAMES | ETHTOOL_COALESCE_TX_MAX_FRAMES) 346 #define ETHTOOL_COALESCE_USECS_IRQ \ 347 (ETHTOOL_COALESCE_RX_USECS_IRQ | ETHTOOL_COALESCE_TX_USECS_IRQ) 348 #define ETHTOOL_COALESCE_MAX_FRAMES_IRQ \ 349 (ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ | \ 350 ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ) 351 #define ETHTOOL_COALESCE_USE_ADAPTIVE \ 352 (ETHTOOL_COALESCE_USE_ADAPTIVE_RX | ETHTOOL_COALESCE_USE_ADAPTIVE_TX) 353 #define ETHTOOL_COALESCE_USECS_LOW_HIGH \ 354 (ETHTOOL_COALESCE_RX_USECS_LOW | ETHTOOL_COALESCE_TX_USECS_LOW | \ 355 ETHTOOL_COALESCE_RX_USECS_HIGH | ETHTOOL_COALESCE_TX_USECS_HIGH) 356 #define ETHTOOL_COALESCE_MAX_FRAMES_LOW_HIGH \ 357 (ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW | \ 358 ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW | \ 359 ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH | \ 360 ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH) 361 #define ETHTOOL_COALESCE_PKT_RATE_RX_USECS \ 362 (ETHTOOL_COALESCE_USE_ADAPTIVE_RX | \ 363 ETHTOOL_COALESCE_RX_USECS_LOW | ETHTOOL_COALESCE_RX_USECS_HIGH | \ 364 ETHTOOL_COALESCE_PKT_RATE_LOW | ETHTOOL_COALESCE_PKT_RATE_HIGH | \ 365 ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL) 366 #define ETHTOOL_COALESCE_USE_CQE \ 367 (ETHTOOL_COALESCE_USE_CQE_RX | ETHTOOL_COALESCE_USE_CQE_TX) 368 #define ETHTOOL_COALESCE_TX_AGGR \ 369 (ETHTOOL_COALESCE_TX_AGGR_MAX_BYTES | \ 370 ETHTOOL_COALESCE_TX_AGGR_MAX_FRAMES | \ 371 ETHTOOL_COALESCE_TX_AGGR_TIME_USECS) 372 373 #define ETHTOOL_STAT_NOT_SET (~0ULL) 374 375 static inline void ethtool_stats_init(u64 *stats, unsigned int n) 376 { 377 while (n--) 378 stats[n] = ETHTOOL_STAT_NOT_SET; 379 } 380 381 /* Basic IEEE 802.3 MAC statistics (30.3.1.1.*), not otherwise exposed 382 * via a more targeted API. 383 */ 384 struct ethtool_eth_mac_stats { 385 enum ethtool_mac_stats_src src; 386 struct_group(stats, 387 u64 FramesTransmittedOK; 388 u64 SingleCollisionFrames; 389 u64 MultipleCollisionFrames; 390 u64 FramesReceivedOK; 391 u64 FrameCheckSequenceErrors; 392 u64 AlignmentErrors; 393 u64 OctetsTransmittedOK; 394 u64 FramesWithDeferredXmissions; 395 u64 LateCollisions; 396 u64 FramesAbortedDueToXSColls; 397 u64 FramesLostDueToIntMACXmitError; 398 u64 CarrierSenseErrors; 399 u64 OctetsReceivedOK; 400 u64 FramesLostDueToIntMACRcvError; 401 u64 MulticastFramesXmittedOK; 402 u64 BroadcastFramesXmittedOK; 403 u64 FramesWithExcessiveDeferral; 404 u64 MulticastFramesReceivedOK; 405 u64 BroadcastFramesReceivedOK; 406 u64 InRangeLengthErrors; 407 u64 OutOfRangeLengthField; 408 u64 FrameTooLongErrors; 409 ); 410 }; 411 412 /* Basic IEEE 802.3 PHY statistics (30.3.2.1.*), not otherwise exposed 413 * via a more targeted API. 414 */ 415 struct ethtool_eth_phy_stats { 416 enum ethtool_mac_stats_src src; 417 struct_group(stats, 418 u64 SymbolErrorDuringCarrier; 419 ); 420 }; 421 422 /** 423 * struct ethtool_phy_stats - PHY-level statistics counters 424 * @rx_packets: Total successfully received frames 425 * @rx_bytes: Total successfully received bytes 426 * @rx_errors: Total received frames with errors (e.g., CRC errors) 427 * @tx_packets: Total successfully transmitted frames 428 * @tx_bytes: Total successfully transmitted bytes 429 * @tx_errors: Total transmitted frames with errors 430 * 431 * This structure provides a standardized interface for reporting 432 * PHY-level statistics counters. It is designed to expose statistics 433 * commonly provided by PHYs but not explicitly defined in the IEEE 434 * 802.3 standard. 435 */ 436 struct ethtool_phy_stats { 437 u64 rx_packets; 438 u64 rx_bytes; 439 u64 rx_errors; 440 u64 tx_packets; 441 u64 tx_bytes; 442 u64 tx_errors; 443 }; 444 445 /* Basic IEEE 802.3 MAC Ctrl statistics (30.3.3.*), not otherwise exposed 446 * via a more targeted API. 447 */ 448 struct ethtool_eth_ctrl_stats { 449 enum ethtool_mac_stats_src src; 450 struct_group(stats, 451 u64 MACControlFramesTransmitted; 452 u64 MACControlFramesReceived; 453 u64 UnsupportedOpcodesReceived; 454 ); 455 }; 456 457 /** 458 * struct ethtool_pause_stats - statistics for IEEE 802.3x pause frames 459 * @src: input field denoting whether stats should be queried from the eMAC or 460 * pMAC (if the MM layer is supported). To be ignored otherwise. 461 * @tx_pause_frames: transmitted pause frame count. Reported to user space 462 * as %ETHTOOL_A_PAUSE_STAT_TX_FRAMES. 463 * 464 * Equivalent to `30.3.4.2 aPAUSEMACCtrlFramesTransmitted` 465 * from the standard. 466 * 467 * @rx_pause_frames: received pause frame count. Reported to user space 468 * as %ETHTOOL_A_PAUSE_STAT_RX_FRAMES. Equivalent to: 469 * 470 * Equivalent to `30.3.4.3 aPAUSEMACCtrlFramesReceived` 471 * from the standard. 472 */ 473 struct ethtool_pause_stats { 474 enum ethtool_mac_stats_src src; 475 struct_group(stats, 476 u64 tx_pause_frames; 477 u64 rx_pause_frames; 478 ); 479 }; 480 481 #define ETHTOOL_MAX_LANES 8 482 483 /** 484 * struct ethtool_fec_stats - statistics for IEEE 802.3 FEC 485 * @corrected_blocks: number of received blocks corrected by FEC 486 * Reported to user space as %ETHTOOL_A_FEC_STAT_CORRECTED. 487 * 488 * Equivalent to `30.5.1.1.17 aFECCorrectedBlocks` from the standard. 489 * 490 * @uncorrectable_blocks: number of received blocks FEC was not able to correct 491 * Reported to user space as %ETHTOOL_A_FEC_STAT_UNCORR. 492 * 493 * Equivalent to `30.5.1.1.18 aFECUncorrectableBlocks` from the standard. 494 * 495 * @corrected_bits: number of bits corrected by FEC 496 * Similar to @corrected_blocks but counts individual bit changes, 497 * not entire FEC data blocks. This is a non-standard statistic. 498 * Reported to user space as %ETHTOOL_A_FEC_STAT_CORR_BITS. 499 * 500 * For each of the above fields, the two substructure members are: 501 * 502 * - @lanes: per-lane/PCS-instance counts as defined by the standard 503 * - @total: error counts for the entire port, for drivers incapable of reporting 504 * per-lane stats 505 * 506 * Drivers should fill in either only total or per-lane statistics, core 507 * will take care of adding lane values up to produce the total. 508 */ 509 struct ethtool_fec_stats { 510 struct ethtool_fec_stat { 511 u64 total; 512 u64 lanes[ETHTOOL_MAX_LANES]; 513 } corrected_blocks, uncorrectable_blocks, corrected_bits; 514 }; 515 516 /** 517 * struct ethtool_rmon_hist_range - byte range for histogram statistics 518 * @low: low bound of the bucket (inclusive) 519 * @high: high bound of the bucket (inclusive) 520 */ 521 struct ethtool_rmon_hist_range { 522 u16 low; 523 u16 high; 524 }; 525 526 #define ETHTOOL_RMON_HIST_MAX 10 527 528 /** 529 * struct ethtool_rmon_stats - selected RMON (RFC 2819) statistics 530 * @src: input field denoting whether stats should be queried from the eMAC or 531 * pMAC (if the MM layer is supported). To be ignored otherwise. 532 * @undersize_pkts: Equivalent to `etherStatsUndersizePkts` from the RFC. 533 * @oversize_pkts: Equivalent to `etherStatsOversizePkts` from the RFC. 534 * @fragments: Equivalent to `etherStatsFragments` from the RFC. 535 * @jabbers: Equivalent to `etherStatsJabbers` from the RFC. 536 * @hist: Packet counter for packet length buckets (e.g. 537 * `etherStatsPkts128to255Octets` from the RFC). 538 * @hist_tx: Tx counters in similar form to @hist, not defined in the RFC. 539 * 540 * Selection of RMON (RFC 2819) statistics which are not exposed via different 541 * APIs, primarily the packet-length-based counters. 542 * Unfortunately different designs choose different buckets beyond 543 * the 1024B mark (jumbo frame teritory), so the definition of the bucket 544 * ranges is left to the driver. 545 */ 546 struct ethtool_rmon_stats { 547 enum ethtool_mac_stats_src src; 548 struct_group(stats, 549 u64 undersize_pkts; 550 u64 oversize_pkts; 551 u64 fragments; 552 u64 jabbers; 553 554 u64 hist[ETHTOOL_RMON_HIST_MAX]; 555 u64 hist_tx[ETHTOOL_RMON_HIST_MAX]; 556 ); 557 }; 558 559 /** 560 * struct ethtool_ts_stats - HW timestamping statistics 561 * @pkts: Number of packets successfully timestamped by the hardware. 562 * @onestep_pkts_unconfirmed: Number of PTP packets with one-step TX 563 * timestamping that were sent, but for which the 564 * device offers no confirmation whether they made 565 * it onto the wire and the timestamp was inserted 566 * in the originTimestamp or correctionField, or 567 * not. 568 * @lost: Number of hardware timestamping requests where the timestamping 569 * information from the hardware never arrived for submission with 570 * the skb. 571 * @err: Number of arbitrary timestamp generation error events that the 572 * hardware encountered, exclusive of @lost statistics. Cases such 573 * as resource exhaustion, unavailability, firmware errors, and 574 * detected illogical timestamp values not submitted with the skb 575 * are inclusive to this counter. 576 */ 577 struct ethtool_ts_stats { 578 struct_group(tx_stats, 579 u64 pkts; 580 u64 onestep_pkts_unconfirmed; 581 u64 lost; 582 u64 err; 583 ); 584 }; 585 586 #define ETH_MODULE_EEPROM_PAGE_LEN 128 587 #define ETH_MODULE_MAX_I2C_ADDRESS 0x7f 588 589 /** 590 * struct ethtool_module_eeprom - plug-in module EEPROM read / write parameters 591 * @offset: When @offset is 0-127, it is used as an address to the Lower Memory 592 * (@page must be 0). Otherwise, it is used as an address to the 593 * Upper Memory. 594 * @length: Number of bytes to read / write. 595 * @page: Page number. 596 * @bank: Bank number, if supported by EEPROM spec. 597 * @i2c_address: I2C address of a page. Value less than 0x7f expected. Most 598 * EEPROMs use 0x50 or 0x51. 599 * @data: Pointer to buffer with EEPROM data of @length size. 600 */ 601 struct ethtool_module_eeprom { 602 u32 offset; 603 u32 length; 604 u8 page; 605 u8 bank; 606 u8 i2c_address; 607 u8 *data; 608 }; 609 610 /** 611 * struct ethtool_module_power_mode_params - module power mode parameters 612 * @policy: The power mode policy enforced by the host for the plug-in module. 613 * @mode: The operational power mode of the plug-in module. Should be filled by 614 * device drivers on get operations. 615 */ 616 struct ethtool_module_power_mode_params { 617 enum ethtool_module_power_mode_policy policy; 618 enum ethtool_module_power_mode mode; 619 }; 620 621 /** 622 * struct ethtool_mm_state - 802.3 MAC merge layer state 623 * @verify_time: 624 * wait time between verification attempts in ms (according to clause 625 * 30.14.1.6 aMACMergeVerifyTime) 626 * @max_verify_time: 627 * maximum accepted value for the @verify_time variable in set requests 628 * @verify_status: 629 * state of the verification state machine of the MM layer (according to 630 * clause 30.14.1.2 aMACMergeStatusVerify) 631 * @tx_enabled: 632 * set if the MM layer is administratively enabled in the TX direction 633 * (according to clause 30.14.1.3 aMACMergeEnableTx) 634 * @tx_active: 635 * set if the MM layer is enabled in the TX direction, which makes FP 636 * possible (according to 30.14.1.5 aMACMergeStatusTx). This should be 637 * true if MM is enabled, and the verification status is either verified, 638 * or disabled. 639 * @pmac_enabled: 640 * set if the preemptible MAC is powered on and is able to receive 641 * preemptible packets and respond to verification frames. 642 * @verify_enabled: 643 * set if the Verify function of the MM layer (which sends SMD-V 644 * verification requests) is administratively enabled (regardless of 645 * whether it is currently in the ETHTOOL_MM_VERIFY_STATUS_DISABLED state 646 * or not), according to clause 30.14.1.4 aMACMergeVerifyDisableTx (but 647 * using positive rather than negative logic). The device should always 648 * respond to received SMD-V requests as long as @pmac_enabled is set. 649 * @tx_min_frag_size: 650 * the minimum size of non-final mPacket fragments that the link partner 651 * supports receiving, expressed in octets. Compared to the definition 652 * from clause 30.14.1.7 aMACMergeAddFragSize which is expressed in the 653 * range 0 to 3 (requiring a translation to the size in octets according 654 * to the formula 64 * (1 + addFragSize) - 4), a value in a continuous and 655 * unbounded range can be specified here. 656 * @rx_min_frag_size: 657 * the minimum size of non-final mPacket fragments that this device 658 * supports receiving, expressed in octets. 659 */ 660 struct ethtool_mm_state { 661 u32 verify_time; 662 u32 max_verify_time; 663 enum ethtool_mm_verify_status verify_status; 664 bool tx_enabled; 665 bool tx_active; 666 bool pmac_enabled; 667 bool verify_enabled; 668 u32 tx_min_frag_size; 669 u32 rx_min_frag_size; 670 }; 671 672 /** 673 * struct ethtool_mm_cfg - 802.3 MAC merge layer configuration 674 * @verify_time: see struct ethtool_mm_state 675 * @verify_enabled: see struct ethtool_mm_state 676 * @tx_enabled: see struct ethtool_mm_state 677 * @pmac_enabled: see struct ethtool_mm_state 678 * @tx_min_frag_size: see struct ethtool_mm_state 679 */ 680 struct ethtool_mm_cfg { 681 u32 verify_time; 682 bool verify_enabled; 683 bool tx_enabled; 684 bool pmac_enabled; 685 u32 tx_min_frag_size; 686 }; 687 688 /** 689 * struct ethtool_mm_stats - 802.3 MAC merge layer statistics 690 * @MACMergeFrameAssErrorCount: 691 * received MAC frames with reassembly errors 692 * @MACMergeFrameSmdErrorCount: 693 * received MAC frames/fragments rejected due to unknown or incorrect SMD 694 * @MACMergeFrameAssOkCount: 695 * received MAC frames that were successfully reassembled and passed up 696 * @MACMergeFragCountRx: 697 * number of additional correct SMD-C mPackets received due to preemption 698 * @MACMergeFragCountTx: 699 * number of additional mPackets sent due to preemption 700 * @MACMergeHoldCount: 701 * number of times the MM layer entered the HOLD state, which blocks 702 * transmission of preemptible traffic 703 */ 704 struct ethtool_mm_stats { 705 u64 MACMergeFrameAssErrorCount; 706 u64 MACMergeFrameSmdErrorCount; 707 u64 MACMergeFrameAssOkCount; 708 u64 MACMergeFragCountRx; 709 u64 MACMergeFragCountTx; 710 u64 MACMergeHoldCount; 711 }; 712 713 /** 714 * struct ethtool_rxfh_param - RXFH (RSS) parameters 715 * @hfunc: Defines the current RSS hash function used by HW (or to be set to). 716 * Valid values are one of the %ETH_RSS_HASH_*. 717 * @indir_size: On SET, the array size of the user buffer for the 718 * indirection table, which may be zero, or 719 * %ETH_RXFH_INDIR_NO_CHANGE. On GET (read from the driver), 720 * the array size of the hardware indirection table. 721 * @indir: The indirection table of size @indir_size entries. 722 * @key_size: On SET, the array size of the user buffer for the hash key, 723 * which may be zero. On GET (read from the driver), the size of the 724 * hardware hash key. 725 * @key: The hash key of size @key_size bytes. 726 * @rss_context: RSS context identifier. Context 0 is the default for normal 727 * traffic; other contexts can be referenced as the destination for RX flow 728 * classification rules. On SET, %ETH_RXFH_CONTEXT_ALLOC is used 729 * to allocate a new RSS context; on return this field will 730 * contain the ID of the newly allocated context. 731 * @rss_delete: Set to non-ZERO to remove the @rss_context context. 732 * @input_xfrm: Defines how the input data is transformed. Valid values are one 733 * of %RXH_XFRM_*. 734 */ 735 struct ethtool_rxfh_param { 736 u8 hfunc; 737 u32 indir_size; 738 u32 *indir; 739 u32 key_size; 740 u8 *key; 741 u32 rss_context; 742 u8 rss_delete; 743 u8 input_xfrm; 744 }; 745 746 /** 747 * struct kernel_ethtool_ts_info - kernel copy of struct ethtool_ts_info 748 * @cmd: command number = %ETHTOOL_GET_TS_INFO 749 * @so_timestamping: bit mask of the sum of the supported SO_TIMESTAMPING flags 750 * @phc_index: device index of the associated PHC, or -1 if there is none 751 * @phc_qualifier: qualifier of the associated PHC 752 * @tx_types: bit mask of the supported hwtstamp_tx_types enumeration values 753 * @rx_filters: bit mask of the supported hwtstamp_rx_filters enumeration values 754 */ 755 struct kernel_ethtool_ts_info { 756 u32 cmd; 757 u32 so_timestamping; 758 int phc_index; 759 enum hwtstamp_provider_qualifier phc_qualifier; 760 enum hwtstamp_tx_types tx_types; 761 enum hwtstamp_rx_filters rx_filters; 762 }; 763 764 /** 765 * struct ethtool_ops - optional netdev operations 766 * @supported_input_xfrm: supported types of input xfrm from %RXH_XFRM_*. 767 * @cap_link_lanes_supported: indicates if the driver supports lanes 768 * parameter. 769 * @cap_rss_ctx_supported: indicates if the driver supports RSS 770 * contexts via legacy API, drivers implementing @create_rxfh_context 771 * do not have to set this bit. 772 * @rxfh_per_ctx_key: device supports setting different RSS key for each 773 * additional context. Netlink API should report hfunc, key, and input_xfrm 774 * for every context, not just context 0. 775 * @cap_rss_rxnfc_adds: device supports nonzero ring_cookie in filters with 776 * %FLOW_RSS flag; the queue ID from the filter is added to the value from 777 * the indirection table to determine the delivery queue. 778 * @rxfh_indir_space: max size of RSS indirection tables, if indirection table 779 * size as returned by @get_rxfh_indir_size may change during lifetime 780 * of the device. Leave as 0 if the table size is constant. 781 * @rxfh_key_space: same as @rxfh_indir_space, but for the key. 782 * @rxfh_priv_size: size of the driver private data area the core should 783 * allocate for an RSS context (in &struct ethtool_rxfh_context). 784 * @rxfh_max_num_contexts: maximum (exclusive) supported RSS context ID. 785 * If this is zero then the core may choose any (nonzero) ID, otherwise 786 * the core will only use IDs strictly less than this value, as the 787 * @rss_context argument to @create_rxfh_context and friends. 788 * @supported_coalesce_params: supported types of interrupt coalescing. 789 * @supported_ring_params: supported ring params. 790 * @supported_hwtstamp_qualifiers: bitfield of supported hwtstamp qualifier. 791 * @get_drvinfo: Report driver/device information. Modern drivers no 792 * longer have to implement this callback. Most fields are 793 * correctly filled in by the core using system information, or 794 * populated using other driver operations. 795 * @get_regs_len: Get buffer length required for @get_regs 796 * @get_regs: Get device registers 797 * @get_wol: Report whether Wake-on-Lan is enabled 798 * @set_wol: Turn Wake-on-Lan on or off. Returns a negative error code 799 * or zero. 800 * @get_msglevel: Report driver message level. This should be the value 801 * of the @msg_enable field used by netif logging functions. 802 * @set_msglevel: Set driver message level 803 * @nway_reset: Restart autonegotiation. Returns a negative error code 804 * or zero. 805 * @get_link: Report whether physical link is up. Will only be called if 806 * the netdev is up. Should usually be set to ethtool_op_get_link(), 807 * which uses netif_carrier_ok(). 808 * @get_link_ext_state: Report link extended state. Should set link_ext_state and 809 * link_ext_substate (link_ext_substate of 0 means link_ext_substate is unknown, 810 * do not attach ext_substate attribute to netlink message). If link_ext_state 811 * and link_ext_substate are unknown, return -ENODATA. If not implemented, 812 * link_ext_state and link_ext_substate will not be sent to userspace. 813 * @get_link_ext_stats: Read extra link-related counters. 814 * @get_eeprom_len: Read range of EEPROM addresses for validation of 815 * @get_eeprom and @set_eeprom requests. 816 * Returns 0 if device does not support EEPROM access. 817 * @get_eeprom: Read data from the device EEPROM. 818 * Should fill in the magic field. Don't need to check len for zero 819 * or wraparound. Fill in the data argument with the eeprom values 820 * from offset to offset + len. Update len to the amount read. 821 * Returns an error or zero. 822 * @set_eeprom: Write data to the device EEPROM. 823 * Should validate the magic field. Don't need to check len for zero 824 * or wraparound. Update len to the amount written. Returns an error 825 * or zero. 826 * @get_coalesce: Get interrupt coalescing parameters. Returns a negative 827 * error code or zero. 828 * @set_coalesce: Set interrupt coalescing parameters. Supported coalescing 829 * types should be set in @supported_coalesce_params. 830 * Returns a negative error code or zero. 831 * @get_ringparam: Report ring sizes 832 * @set_ringparam: Set ring sizes. Returns a negative error code or zero. 833 * @get_pause_stats: Report pause frame statistics. Drivers must not zero 834 * statistics which they don't report. The stats structure is initialized 835 * to ETHTOOL_STAT_NOT_SET indicating driver does not report statistics. 836 * @get_pauseparam: Report pause parameters 837 * @set_pauseparam: Set pause parameters. Returns a negative error code 838 * or zero. 839 * @self_test: Run specified self-tests 840 * @get_strings: Return a set of strings that describe the requested objects 841 * @set_phys_id: Identify the physical devices, e.g. by flashing an LED 842 * attached to it. The implementation may update the indicator 843 * asynchronously or synchronously, but in either case it must return 844 * quickly. It is initially called with the argument %ETHTOOL_ID_ACTIVE, 845 * and must either activate asynchronous updates and return zero, return 846 * a negative error or return a positive frequency for synchronous 847 * indication (e.g. 1 for one on/off cycle per second). If it returns 848 * a frequency then it will be called again at intervals with the 849 * argument %ETHTOOL_ID_ON or %ETHTOOL_ID_OFF and should set the state of 850 * the indicator accordingly. Finally, it is called with the argument 851 * %ETHTOOL_ID_INACTIVE and must deactivate the indicator. Returns a 852 * negative error code or zero. 853 * @get_ethtool_stats: Return extended statistics about the device. 854 * This is only useful if the device maintains statistics not 855 * included in &struct rtnl_link_stats64. 856 * @begin: Function to be called before any other operation. Returns a 857 * negative error code or zero. 858 * @complete: Function to be called after any other operation except 859 * @begin. Will be called even if the other operation failed. 860 * @get_priv_flags: Report driver-specific feature flags. 861 * @set_priv_flags: Set driver-specific feature flags. Returns a negative 862 * error code or zero. 863 * @get_sset_count: Get number of strings that @get_strings will write. 864 * @get_rxnfc: Get RX flow classification rules. Returns a negative 865 * error code or zero. 866 * @set_rxnfc: Set RX flow classification rules. Returns a negative 867 * error code or zero. 868 * @flash_device: Write a firmware image to device's flash memory. 869 * Returns a negative error code or zero. 870 * @reset: Reset (part of) the device, as specified by a bitmask of 871 * flags from &enum ethtool_reset_flags. Returns a negative 872 * error code or zero. 873 * @get_rxfh_key_size: Get the size of the RX flow hash key. 874 * Returns zero if not supported for this specific device. 875 * @get_rxfh_indir_size: Get the size of the RX flow hash indirection table. 876 * Returns zero if not supported for this specific device. 877 * @get_rxfh: Get the contents of the RX flow hash indirection table, hash key 878 * and/or hash function. 879 * Returns a negative error code or zero. 880 * @set_rxfh: Set the contents of the RX flow hash indirection table, hash 881 * key, and/or hash function. Arguments which are set to %NULL or zero 882 * will remain unchanged. 883 * Returns a negative error code or zero. An error code must be returned 884 * if at least one unsupported change was requested. 885 * @create_rxfh_context: Create a new RSS context with the specified RX flow 886 * hash indirection table, hash key, and hash function. 887 * The &struct ethtool_rxfh_context for this context is passed in @ctx; 888 * note that the indir table, hkey and hfunc are not yet populated as 889 * of this call. The driver does not need to update these; the core 890 * will do so if this op succeeds. 891 * However, if @rxfh.indir is set to %NULL, the driver must update the 892 * indir table in @ctx with the (default or inherited) table actually in 893 * use; similarly, if @rxfh.key is %NULL, @rxfh.hfunc is 894 * %ETH_RSS_HASH_NO_CHANGE, or @rxfh.input_xfrm is %RXH_XFRM_NO_CHANGE, 895 * the driver should update the corresponding information in @ctx. 896 * If the driver provides this method, it must also provide 897 * @modify_rxfh_context and @remove_rxfh_context. 898 * Returns a negative error code or zero. 899 * @modify_rxfh_context: Reconfigure the specified RSS context. Allows setting 900 * the contents of the RX flow hash indirection table, hash key, and/or 901 * hash function associated with the given context. 902 * Parameters which are set to %NULL or zero will remain unchanged. 903 * The &struct ethtool_rxfh_context for this context is passed in @ctx; 904 * note that it will still contain the *old* settings. The driver does 905 * not need to update these; the core will do so if this op succeeds. 906 * Returns a negative error code or zero. An error code must be returned 907 * if at least one unsupported change was requested. 908 * @remove_rxfh_context: Remove the specified RSS context. 909 * The &struct ethtool_rxfh_context for this context is passed in @ctx. 910 * Returns a negative error code or zero. 911 * @get_channels: Get number of channels. 912 * @set_channels: Set number of channels. Returns a negative error code or 913 * zero. 914 * @get_dump_flag: Get dump flag indicating current dump length, version, 915 * and flag of the device. 916 * @get_dump_data: Get dump data. 917 * @set_dump: Set dump specific flags to the device. 918 * @get_ts_info: Get the time stamping and PTP hardware clock capabilities. 919 * It may be called with RCU, or rtnl or reference on the device. 920 * Drivers supporting transmit time stamps in software should set this to 921 * ethtool_op_get_ts_info(). Drivers must not zero statistics which they 922 * don't report. The stats structure is initialized to ETHTOOL_STAT_NOT_SET 923 * indicating driver does not report statistics. 924 * @get_ts_stats: Query the device hardware timestamping statistics. 925 * @get_module_info: Get the size and type of the eeprom contained within 926 * a plug-in module. 927 * @get_module_eeprom: Get the eeprom information from the plug-in module 928 * @get_eee: Get Energy-Efficient (EEE) supported and status. 929 * @set_eee: Set EEE status (enable/disable) as well as LPI timers. 930 * @get_tunable: Read the value of a driver / device tunable. 931 * @set_tunable: Set the value of a driver / device tunable. 932 * @get_per_queue_coalesce: Get interrupt coalescing parameters per queue. 933 * It must check that the given queue number is valid. If neither a RX nor 934 * a TX queue has this number, return -EINVAL. If only a RX queue or a TX 935 * queue has this number, set the inapplicable fields to ~0 and return 0. 936 * Returns a negative error code or zero. 937 * @set_per_queue_coalesce: Set interrupt coalescing parameters per queue. 938 * It must check that the given queue number is valid. If neither a RX nor 939 * a TX queue has this number, return -EINVAL. If only a RX queue or a TX 940 * queue has this number, ignore the inapplicable fields. Supported 941 * coalescing types should be set in @supported_coalesce_params. 942 * Returns a negative error code or zero. 943 * @get_link_ksettings: Get various device settings including Ethernet link 944 * settings. The %cmd and %link_mode_masks_nwords fields should be 945 * ignored (use %__ETHTOOL_LINK_MODE_MASK_NBITS instead of the latter), 946 * any change to them will be overwritten by kernel. Returns a negative 947 * error code or zero. 948 * @set_link_ksettings: Set various device settings including Ethernet link 949 * settings. The %cmd and %link_mode_masks_nwords fields should be 950 * ignored (use %__ETHTOOL_LINK_MODE_MASK_NBITS instead of the latter), 951 * any change to them will be overwritten by kernel. Returns a negative 952 * error code or zero. 953 * @get_fec_stats: Report FEC statistics. 954 * Core will sum up per-lane stats to get the total. 955 * Drivers must not zero statistics which they don't report. The stats 956 * structure is initialized to ETHTOOL_STAT_NOT_SET indicating driver does 957 * not report statistics. 958 * @get_fecparam: Get the network device Forward Error Correction parameters. 959 * @set_fecparam: Set the network device Forward Error Correction parameters. 960 * @get_ethtool_phy_stats: Return extended statistics about the PHY device. 961 * This is only useful if the device maintains PHY statistics and 962 * cannot use the standard PHY library helpers. 963 * @get_phy_tunable: Read the value of a PHY tunable. 964 * @set_phy_tunable: Set the value of a PHY tunable. 965 * @get_module_eeprom_by_page: Get a region of plug-in module EEPROM data from 966 * specified page. Returns a negative error code or the amount of bytes 967 * read. 968 * @set_module_eeprom_by_page: Write to a region of plug-in module EEPROM, 969 * from kernel space only. Returns a negative error code or zero. 970 * @get_eth_phy_stats: Query some of the IEEE 802.3 PHY statistics. 971 * @get_eth_mac_stats: Query some of the IEEE 802.3 MAC statistics. 972 * @get_eth_ctrl_stats: Query some of the IEEE 802.3 MAC Ctrl statistics. 973 * @get_rmon_stats: Query some of the RMON (RFC 2819) statistics. 974 * Set %ranges to a pointer to zero-terminated array of byte ranges. 975 * @get_module_power_mode: Get the power mode policy for the plug-in module 976 * used by the network device and its operational power mode, if 977 * plugged-in. 978 * @set_module_power_mode: Set the power mode policy for the plug-in module 979 * used by the network device. 980 * @get_mm: Query the 802.3 MAC Merge layer state. 981 * @set_mm: Set the 802.3 MAC Merge layer parameters. 982 * @get_mm_stats: Query the 802.3 MAC Merge layer statistics. 983 * 984 * All operations are optional (i.e. the function pointer may be set 985 * to %NULL) and callers must take this into account. Callers must 986 * hold the RTNL lock. 987 * 988 * See the structures used by these operations for further documentation. 989 * Note that for all operations using a structure ending with a zero- 990 * length array, the array is allocated separately in the kernel and 991 * is passed to the driver as an additional parameter. 992 * 993 * See &struct net_device and &struct net_device_ops for documentation 994 * of the generic netdev features interface. 995 */ 996 struct ethtool_ops { 997 u32 supported_input_xfrm:8; 998 u32 cap_link_lanes_supported:1; 999 u32 cap_rss_ctx_supported:1; 1000 u32 rxfh_per_ctx_key:1; 1001 u32 cap_rss_rxnfc_adds:1; 1002 u32 rxfh_indir_space; 1003 u16 rxfh_key_space; 1004 u16 rxfh_priv_size; 1005 u32 rxfh_max_num_contexts; 1006 u32 supported_coalesce_params; 1007 u32 supported_ring_params; 1008 u32 supported_hwtstamp_qualifiers; 1009 void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *); 1010 int (*get_regs_len)(struct net_device *); 1011 void (*get_regs)(struct net_device *, struct ethtool_regs *, void *); 1012 void (*get_wol)(struct net_device *, struct ethtool_wolinfo *); 1013 int (*set_wol)(struct net_device *, struct ethtool_wolinfo *); 1014 u32 (*get_msglevel)(struct net_device *); 1015 void (*set_msglevel)(struct net_device *, u32); 1016 int (*nway_reset)(struct net_device *); 1017 u32 (*get_link)(struct net_device *); 1018 int (*get_link_ext_state)(struct net_device *, 1019 struct ethtool_link_ext_state_info *); 1020 void (*get_link_ext_stats)(struct net_device *dev, 1021 struct ethtool_link_ext_stats *stats); 1022 int (*get_eeprom_len)(struct net_device *); 1023 int (*get_eeprom)(struct net_device *, 1024 struct ethtool_eeprom *, u8 *); 1025 int (*set_eeprom)(struct net_device *, 1026 struct ethtool_eeprom *, u8 *); 1027 int (*get_coalesce)(struct net_device *, 1028 struct ethtool_coalesce *, 1029 struct kernel_ethtool_coalesce *, 1030 struct netlink_ext_ack *); 1031 int (*set_coalesce)(struct net_device *, 1032 struct ethtool_coalesce *, 1033 struct kernel_ethtool_coalesce *, 1034 struct netlink_ext_ack *); 1035 void (*get_ringparam)(struct net_device *, 1036 struct ethtool_ringparam *, 1037 struct kernel_ethtool_ringparam *, 1038 struct netlink_ext_ack *); 1039 int (*set_ringparam)(struct net_device *, 1040 struct ethtool_ringparam *, 1041 struct kernel_ethtool_ringparam *, 1042 struct netlink_ext_ack *); 1043 void (*get_pause_stats)(struct net_device *dev, 1044 struct ethtool_pause_stats *pause_stats); 1045 void (*get_pauseparam)(struct net_device *, 1046 struct ethtool_pauseparam*); 1047 int (*set_pauseparam)(struct net_device *, 1048 struct ethtool_pauseparam*); 1049 void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); 1050 void (*get_strings)(struct net_device *, u32 stringset, u8 *); 1051 int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state); 1052 void (*get_ethtool_stats)(struct net_device *, 1053 struct ethtool_stats *, u64 *); 1054 int (*begin)(struct net_device *); 1055 void (*complete)(struct net_device *); 1056 u32 (*get_priv_flags)(struct net_device *); 1057 int (*set_priv_flags)(struct net_device *, u32); 1058 int (*get_sset_count)(struct net_device *, int); 1059 int (*get_rxnfc)(struct net_device *, 1060 struct ethtool_rxnfc *, u32 *rule_locs); 1061 int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *); 1062 int (*flash_device)(struct net_device *, struct ethtool_flash *); 1063 int (*reset)(struct net_device *, u32 *); 1064 u32 (*get_rxfh_key_size)(struct net_device *); 1065 u32 (*get_rxfh_indir_size)(struct net_device *); 1066 int (*get_rxfh)(struct net_device *, struct ethtool_rxfh_param *); 1067 int (*set_rxfh)(struct net_device *, struct ethtool_rxfh_param *, 1068 struct netlink_ext_ack *extack); 1069 int (*create_rxfh_context)(struct net_device *, 1070 struct ethtool_rxfh_context *ctx, 1071 const struct ethtool_rxfh_param *rxfh, 1072 struct netlink_ext_ack *extack); 1073 int (*modify_rxfh_context)(struct net_device *, 1074 struct ethtool_rxfh_context *ctx, 1075 const struct ethtool_rxfh_param *rxfh, 1076 struct netlink_ext_ack *extack); 1077 int (*remove_rxfh_context)(struct net_device *, 1078 struct ethtool_rxfh_context *ctx, 1079 u32 rss_context, 1080 struct netlink_ext_ack *extack); 1081 void (*get_channels)(struct net_device *, struct ethtool_channels *); 1082 int (*set_channels)(struct net_device *, struct ethtool_channels *); 1083 int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); 1084 int (*get_dump_data)(struct net_device *, 1085 struct ethtool_dump *, void *); 1086 int (*set_dump)(struct net_device *, struct ethtool_dump *); 1087 int (*get_ts_info)(struct net_device *, struct kernel_ethtool_ts_info *); 1088 void (*get_ts_stats)(struct net_device *dev, 1089 struct ethtool_ts_stats *ts_stats); 1090 int (*get_module_info)(struct net_device *, 1091 struct ethtool_modinfo *); 1092 int (*get_module_eeprom)(struct net_device *, 1093 struct ethtool_eeprom *, u8 *); 1094 int (*get_eee)(struct net_device *dev, struct ethtool_keee *eee); 1095 int (*set_eee)(struct net_device *dev, struct ethtool_keee *eee); 1096 int (*get_tunable)(struct net_device *, 1097 const struct ethtool_tunable *, void *); 1098 int (*set_tunable)(struct net_device *, 1099 const struct ethtool_tunable *, const void *); 1100 int (*get_per_queue_coalesce)(struct net_device *, u32, 1101 struct ethtool_coalesce *); 1102 int (*set_per_queue_coalesce)(struct net_device *, u32, 1103 struct ethtool_coalesce *); 1104 int (*get_link_ksettings)(struct net_device *, 1105 struct ethtool_link_ksettings *); 1106 int (*set_link_ksettings)(struct net_device *, 1107 const struct ethtool_link_ksettings *); 1108 void (*get_fec_stats)(struct net_device *dev, 1109 struct ethtool_fec_stats *fec_stats); 1110 int (*get_fecparam)(struct net_device *, 1111 struct ethtool_fecparam *); 1112 int (*set_fecparam)(struct net_device *, 1113 struct ethtool_fecparam *); 1114 void (*get_ethtool_phy_stats)(struct net_device *, 1115 struct ethtool_stats *, u64 *); 1116 int (*get_phy_tunable)(struct net_device *, 1117 const struct ethtool_tunable *, void *); 1118 int (*set_phy_tunable)(struct net_device *, 1119 const struct ethtool_tunable *, const void *); 1120 int (*get_module_eeprom_by_page)(struct net_device *dev, 1121 const struct ethtool_module_eeprom *page, 1122 struct netlink_ext_ack *extack); 1123 int (*set_module_eeprom_by_page)(struct net_device *dev, 1124 const struct ethtool_module_eeprom *page, 1125 struct netlink_ext_ack *extack); 1126 void (*get_eth_phy_stats)(struct net_device *dev, 1127 struct ethtool_eth_phy_stats *phy_stats); 1128 void (*get_eth_mac_stats)(struct net_device *dev, 1129 struct ethtool_eth_mac_stats *mac_stats); 1130 void (*get_eth_ctrl_stats)(struct net_device *dev, 1131 struct ethtool_eth_ctrl_stats *ctrl_stats); 1132 void (*get_rmon_stats)(struct net_device *dev, 1133 struct ethtool_rmon_stats *rmon_stats, 1134 const struct ethtool_rmon_hist_range **ranges); 1135 int (*get_module_power_mode)(struct net_device *dev, 1136 struct ethtool_module_power_mode_params *params, 1137 struct netlink_ext_ack *extack); 1138 int (*set_module_power_mode)(struct net_device *dev, 1139 const struct ethtool_module_power_mode_params *params, 1140 struct netlink_ext_ack *extack); 1141 int (*get_mm)(struct net_device *dev, struct ethtool_mm_state *state); 1142 int (*set_mm)(struct net_device *dev, struct ethtool_mm_cfg *cfg, 1143 struct netlink_ext_ack *extack); 1144 void (*get_mm_stats)(struct net_device *dev, struct ethtool_mm_stats *stats); 1145 }; 1146 1147 int ethtool_check_ops(const struct ethtool_ops *ops); 1148 1149 struct ethtool_rx_flow_rule { 1150 struct flow_rule *rule; 1151 unsigned long priv[]; 1152 }; 1153 1154 struct ethtool_rx_flow_spec_input { 1155 const struct ethtool_rx_flow_spec *fs; 1156 u32 rss_ctx; 1157 }; 1158 1159 struct ethtool_rx_flow_rule * 1160 ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input); 1161 void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *rule); 1162 1163 bool ethtool_virtdev_validate_cmd(const struct ethtool_link_ksettings *cmd); 1164 int ethtool_virtdev_set_link_ksettings(struct net_device *dev, 1165 const struct ethtool_link_ksettings *cmd, 1166 u32 *dev_speed, u8 *dev_duplex); 1167 1168 /** 1169 * struct ethtool_netdev_state - per-netdevice state for ethtool features 1170 * @rss_ctx: XArray of custom RSS contexts 1171 * @rss_lock: Protects entries in @rss_ctx. May be taken from 1172 * within RTNL. 1173 * @wol_enabled: Wake-on-LAN is enabled 1174 * @module_fw_flash_in_progress: Module firmware flashing is in progress. 1175 */ 1176 struct ethtool_netdev_state { 1177 struct xarray rss_ctx; 1178 struct mutex rss_lock; 1179 unsigned wol_enabled:1; 1180 unsigned module_fw_flash_in_progress:1; 1181 }; 1182 1183 struct phy_device; 1184 struct phy_tdr_config; 1185 struct phy_plca_cfg; 1186 struct phy_plca_status; 1187 1188 /** 1189 * struct ethtool_phy_ops - Optional PHY device options 1190 * @get_sset_count: Get number of strings that @get_strings will write. 1191 * @get_strings: Return a set of strings that describe the requested objects 1192 * @get_stats: Return extended statistics about the PHY device. 1193 * @get_plca_cfg: Return PLCA configuration. 1194 * @set_plca_cfg: Set PLCA configuration. 1195 * @get_plca_status: Get PLCA configuration. 1196 * @start_cable_test: Start a cable test 1197 * @start_cable_test_tdr: Start a Time Domain Reflectometry cable test 1198 * 1199 * All operations are optional (i.e. the function pointer may be set to %NULL) 1200 * and callers must take this into account. Callers must hold the RTNL lock. 1201 */ 1202 struct ethtool_phy_ops { 1203 int (*get_sset_count)(struct phy_device *dev); 1204 int (*get_strings)(struct phy_device *dev, u8 *data); 1205 int (*get_stats)(struct phy_device *dev, 1206 struct ethtool_stats *stats, u64 *data); 1207 int (*get_plca_cfg)(struct phy_device *dev, 1208 struct phy_plca_cfg *plca_cfg); 1209 int (*set_plca_cfg)(struct phy_device *dev, 1210 const struct phy_plca_cfg *plca_cfg, 1211 struct netlink_ext_ack *extack); 1212 int (*get_plca_status)(struct phy_device *dev, 1213 struct phy_plca_status *plca_st); 1214 int (*start_cable_test)(struct phy_device *phydev, 1215 struct netlink_ext_ack *extack); 1216 int (*start_cable_test_tdr)(struct phy_device *phydev, 1217 struct netlink_ext_ack *extack, 1218 const struct phy_tdr_config *config); 1219 }; 1220 1221 /** 1222 * ethtool_set_ethtool_phy_ops - Set the ethtool_phy_ops singleton 1223 * @ops: Ethtool PHY operations to set 1224 */ 1225 void ethtool_set_ethtool_phy_ops(const struct ethtool_phy_ops *ops); 1226 1227 /** 1228 * ethtool_params_from_link_mode - Derive link parameters from a given link mode 1229 * @link_ksettings: Link parameters to be derived from the link mode 1230 * @link_mode: Link mode 1231 */ 1232 void 1233 ethtool_params_from_link_mode(struct ethtool_link_ksettings *link_ksettings, 1234 enum ethtool_link_mode_bit_indices link_mode); 1235 1236 /** 1237 * ethtool_get_phc_vclocks - Derive phc vclocks information, and caller 1238 * is responsible to free memory of vclock_index 1239 * @dev: pointer to net_device structure 1240 * @vclock_index: pointer to pointer of vclock index 1241 * 1242 * Return: number of phc vclocks 1243 */ 1244 int ethtool_get_phc_vclocks(struct net_device *dev, int **vclock_index); 1245 1246 /* Some generic methods drivers may use in their ethtool_ops */ 1247 u32 ethtool_op_get_link(struct net_device *dev); 1248 int ethtool_op_get_ts_info(struct net_device *dev, 1249 struct kernel_ethtool_ts_info *eti); 1250 1251 /** 1252 * ethtool_mm_frag_size_add_to_min - Translate (standard) additional fragment 1253 * size expressed as multiplier into (absolute) minimum fragment size 1254 * value expressed in octets 1255 * @val_add: Value of addFragSize multiplier 1256 */ 1257 static inline u32 ethtool_mm_frag_size_add_to_min(u32 val_add) 1258 { 1259 return (ETH_ZLEN + ETH_FCS_LEN) * (1 + val_add) - ETH_FCS_LEN; 1260 } 1261 1262 /** 1263 * ethtool_mm_frag_size_min_to_add - Translate (absolute) minimum fragment size 1264 * expressed in octets into (standard) additional fragment size expressed 1265 * as multiplier 1266 * @val_min: Value of addFragSize variable in octets 1267 * @val_add: Pointer where the standard addFragSize value is to be returned 1268 * @extack: Netlink extended ack 1269 * 1270 * Translate a value in octets to one of 0, 1, 2, 3 according to the reverse 1271 * application of the 802.3 formula 64 * (1 + addFragSize) - 4. To be called 1272 * by drivers which do not support programming the minimum fragment size to a 1273 * continuous range. Returns error on other fragment length values. 1274 */ 1275 static inline int ethtool_mm_frag_size_min_to_add(u32 val_min, u32 *val_add, 1276 struct netlink_ext_ack *extack) 1277 { 1278 u32 add_frag_size; 1279 1280 for (add_frag_size = 0; add_frag_size < 4; add_frag_size++) { 1281 if (ethtool_mm_frag_size_add_to_min(add_frag_size) == val_min) { 1282 *val_add = add_frag_size; 1283 return 0; 1284 } 1285 } 1286 1287 NL_SET_ERR_MSG_MOD(extack, 1288 "minFragSize required to be one of 60, 124, 188 or 252"); 1289 return -EINVAL; 1290 } 1291 1292 /** 1293 * ethtool_get_ts_info_by_layer - Obtains time stamping capabilities from the MAC or PHY layer. 1294 * @dev: pointer to net_device structure 1295 * @info: buffer to hold the result 1296 * Returns: zero on success, non-zero otherwise. 1297 */ 1298 int ethtool_get_ts_info_by_layer(struct net_device *dev, 1299 struct kernel_ethtool_ts_info *info); 1300 1301 /** 1302 * ethtool_sprintf - Write formatted string to ethtool string data 1303 * @data: Pointer to a pointer to the start of string to update 1304 * @fmt: Format of string to write 1305 * 1306 * Write formatted string to *data. Update *data to point at start of 1307 * next string. 1308 */ 1309 extern __printf(2, 3) void ethtool_sprintf(u8 **data, const char *fmt, ...); 1310 1311 /** 1312 * ethtool_puts - Write string to ethtool string data 1313 * @data: Pointer to a pointer to the start of string to update 1314 * @str: String to write 1315 * 1316 * Write string to *data without a trailing newline. Update *data 1317 * to point at start of next string. 1318 * 1319 * Prefer this function to ethtool_sprintf() when given only 1320 * two arguments or if @fmt is just "%s". 1321 */ 1322 extern void ethtool_puts(u8 **data, const char *str); 1323 1324 /* Link mode to forced speed capabilities maps */ 1325 struct ethtool_forced_speed_map { 1326 u32 speed; 1327 __ETHTOOL_DECLARE_LINK_MODE_MASK(caps); 1328 1329 const u32 *cap_arr; 1330 u32 arr_size; 1331 }; 1332 1333 #define ETHTOOL_FORCED_SPEED_MAP(prefix, value) \ 1334 { \ 1335 .speed = SPEED_##value, \ 1336 .cap_arr = prefix##_##value, \ 1337 .arr_size = ARRAY_SIZE(prefix##_##value), \ 1338 } 1339 1340 void 1341 ethtool_forced_speed_maps_init(struct ethtool_forced_speed_map *maps, u32 size); 1342 #endif /* _LINUX_ETHTOOL_H */ 1343