at v5.12 25 kB view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * ethtool.h: Defines for Linux ethtool. 4 * 5 * Copyright (C) 1998 David S. Miller (davem@redhat.com) 6 * Copyright 2001 Jeff Garzik <jgarzik@pobox.com> 7 * Portions Copyright 2001 Sun Microsystems (thockin@sun.com) 8 * Portions Copyright 2002 Intel (eli.kupermann@intel.com, 9 * christopher.leech@intel.com, 10 * scott.feldman@intel.com) 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 <uapi/linux/ethtool.h> 19 20#ifdef CONFIG_COMPAT 21 22struct compat_ethtool_rx_flow_spec { 23 u32 flow_type; 24 union ethtool_flow_union h_u; 25 struct ethtool_flow_ext h_ext; 26 union ethtool_flow_union m_u; 27 struct ethtool_flow_ext m_ext; 28 compat_u64 ring_cookie; 29 u32 location; 30}; 31 32struct compat_ethtool_rxnfc { 33 u32 cmd; 34 u32 flow_type; 35 compat_u64 data; 36 struct compat_ethtool_rx_flow_spec fs; 37 u32 rule_cnt; 38 u32 rule_locs[]; 39}; 40 41#endif /* CONFIG_COMPAT */ 42 43#include <linux/rculist.h> 44 45/** 46 * enum ethtool_phys_id_state - indicator state for physical identification 47 * @ETHTOOL_ID_INACTIVE: Physical ID indicator should be deactivated 48 * @ETHTOOL_ID_ACTIVE: Physical ID indicator should be activated 49 * @ETHTOOL_ID_ON: LED should be turned on (used iff %ETHTOOL_ID_ACTIVE 50 * is not supported) 51 * @ETHTOOL_ID_OFF: LED should be turned off (used iff %ETHTOOL_ID_ACTIVE 52 * is not supported) 53 */ 54enum ethtool_phys_id_state { 55 ETHTOOL_ID_INACTIVE, 56 ETHTOOL_ID_ACTIVE, 57 ETHTOOL_ID_ON, 58 ETHTOOL_ID_OFF 59}; 60 61enum { 62 ETH_RSS_HASH_TOP_BIT, /* Configurable RSS hash function - Toeplitz */ 63 ETH_RSS_HASH_XOR_BIT, /* Configurable RSS hash function - Xor */ 64 ETH_RSS_HASH_CRC32_BIT, /* Configurable RSS hash function - Crc32 */ 65 66 /* 67 * Add your fresh new hash function bits above and remember to update 68 * rss_hash_func_strings[] in ethtool.c 69 */ 70 ETH_RSS_HASH_FUNCS_COUNT 71}; 72 73#define __ETH_RSS_HASH_BIT(bit) ((u32)1 << (bit)) 74#define __ETH_RSS_HASH(name) __ETH_RSS_HASH_BIT(ETH_RSS_HASH_##name##_BIT) 75 76#define ETH_RSS_HASH_TOP __ETH_RSS_HASH(TOP) 77#define ETH_RSS_HASH_XOR __ETH_RSS_HASH(XOR) 78#define ETH_RSS_HASH_CRC32 __ETH_RSS_HASH(CRC32) 79 80#define ETH_RSS_HASH_UNKNOWN 0 81#define ETH_RSS_HASH_NO_CHANGE 0 82 83struct net_device; 84 85/* Some generic methods drivers may use in their ethtool_ops */ 86u32 ethtool_op_get_link(struct net_device *dev); 87int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *eti); 88 89 90/* Link extended state and substate. */ 91struct ethtool_link_ext_state_info { 92 enum ethtool_link_ext_state link_ext_state; 93 union { 94 enum ethtool_link_ext_substate_autoneg autoneg; 95 enum ethtool_link_ext_substate_link_training link_training; 96 enum ethtool_link_ext_substate_link_logical_mismatch link_logical_mismatch; 97 enum ethtool_link_ext_substate_bad_signal_integrity bad_signal_integrity; 98 enum ethtool_link_ext_substate_cable_issue cable_issue; 99 u8 __link_ext_substate; 100 }; 101}; 102 103/** 104 * ethtool_rxfh_indir_default - get default value for RX flow hash indirection 105 * @index: Index in RX flow hash indirection table 106 * @n_rx_rings: Number of RX rings to use 107 * 108 * This function provides the default policy for RX flow hash indirection. 109 */ 110static inline u32 ethtool_rxfh_indir_default(u32 index, u32 n_rx_rings) 111{ 112 return index % n_rx_rings; 113} 114 115/* declare a link mode bitmap */ 116#define __ETHTOOL_DECLARE_LINK_MODE_MASK(name) \ 117 DECLARE_BITMAP(name, __ETHTOOL_LINK_MODE_MASK_NBITS) 118 119/* drivers must ignore base.cmd and base.link_mode_masks_nwords 120 * fields, but they are allowed to overwrite them (will be ignored). 121 */ 122struct ethtool_link_ksettings { 123 struct ethtool_link_settings base; 124 struct { 125 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported); 126 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising); 127 __ETHTOOL_DECLARE_LINK_MODE_MASK(lp_advertising); 128 } link_modes; 129 u32 lanes; 130}; 131 132/** 133 * ethtool_link_ksettings_zero_link_mode - clear link_ksettings link mode mask 134 * @ptr : pointer to struct ethtool_link_ksettings 135 * @name : one of supported/advertising/lp_advertising 136 */ 137#define ethtool_link_ksettings_zero_link_mode(ptr, name) \ 138 bitmap_zero((ptr)->link_modes.name, __ETHTOOL_LINK_MODE_MASK_NBITS) 139 140/** 141 * ethtool_link_ksettings_add_link_mode - set bit in link_ksettings 142 * link mode mask 143 * @ptr : pointer to struct ethtool_link_ksettings 144 * @name : one of supported/advertising/lp_advertising 145 * @mode : one of the ETHTOOL_LINK_MODE_*_BIT 146 * (not atomic, no bound checking) 147 */ 148#define ethtool_link_ksettings_add_link_mode(ptr, name, mode) \ 149 __set_bit(ETHTOOL_LINK_MODE_ ## mode ## _BIT, (ptr)->link_modes.name) 150 151/** 152 * ethtool_link_ksettings_del_link_mode - clear bit in link_ksettings 153 * link mode mask 154 * @ptr : pointer to struct ethtool_link_ksettings 155 * @name : one of supported/advertising/lp_advertising 156 * @mode : one of the ETHTOOL_LINK_MODE_*_BIT 157 * (not atomic, no bound checking) 158 */ 159#define ethtool_link_ksettings_del_link_mode(ptr, name, mode) \ 160 __clear_bit(ETHTOOL_LINK_MODE_ ## mode ## _BIT, (ptr)->link_modes.name) 161 162/** 163 * ethtool_link_ksettings_test_link_mode - test bit in ksettings link mode mask 164 * @ptr : pointer to struct ethtool_link_ksettings 165 * @name : one of supported/advertising/lp_advertising 166 * @mode : one of the ETHTOOL_LINK_MODE_*_BIT 167 * (not atomic, no bound checking) 168 * 169 * Returns true/false. 170 */ 171#define ethtool_link_ksettings_test_link_mode(ptr, name, mode) \ 172 test_bit(ETHTOOL_LINK_MODE_ ## mode ## _BIT, (ptr)->link_modes.name) 173 174extern int 175__ethtool_get_link_ksettings(struct net_device *dev, 176 struct ethtool_link_ksettings *link_ksettings); 177 178/** 179 * ethtool_intersect_link_masks - Given two link masks, AND them together 180 * @dst: first mask and where result is stored 181 * @src: second mask to intersect with 182 * 183 * Given two link mode masks, AND them together and save the result in dst. 184 */ 185void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst, 186 struct ethtool_link_ksettings *src); 187 188void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst, 189 u32 legacy_u32); 190 191/* return false if src had higher bits set. lower bits always updated. */ 192bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32, 193 const unsigned long *src); 194 195#define ETHTOOL_COALESCE_RX_USECS BIT(0) 196#define ETHTOOL_COALESCE_RX_MAX_FRAMES BIT(1) 197#define ETHTOOL_COALESCE_RX_USECS_IRQ BIT(2) 198#define ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ BIT(3) 199#define ETHTOOL_COALESCE_TX_USECS BIT(4) 200#define ETHTOOL_COALESCE_TX_MAX_FRAMES BIT(5) 201#define ETHTOOL_COALESCE_TX_USECS_IRQ BIT(6) 202#define ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ BIT(7) 203#define ETHTOOL_COALESCE_STATS_BLOCK_USECS BIT(8) 204#define ETHTOOL_COALESCE_USE_ADAPTIVE_RX BIT(9) 205#define ETHTOOL_COALESCE_USE_ADAPTIVE_TX BIT(10) 206#define ETHTOOL_COALESCE_PKT_RATE_LOW BIT(11) 207#define ETHTOOL_COALESCE_RX_USECS_LOW BIT(12) 208#define ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW BIT(13) 209#define ETHTOOL_COALESCE_TX_USECS_LOW BIT(14) 210#define ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW BIT(15) 211#define ETHTOOL_COALESCE_PKT_RATE_HIGH BIT(16) 212#define ETHTOOL_COALESCE_RX_USECS_HIGH BIT(17) 213#define ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH BIT(18) 214#define ETHTOOL_COALESCE_TX_USECS_HIGH BIT(19) 215#define ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH BIT(20) 216#define ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL BIT(21) 217#define ETHTOOL_COALESCE_ALL_PARAMS GENMASK(21, 0) 218 219#define ETHTOOL_COALESCE_USECS \ 220 (ETHTOOL_COALESCE_RX_USECS | ETHTOOL_COALESCE_TX_USECS) 221#define ETHTOOL_COALESCE_MAX_FRAMES \ 222 (ETHTOOL_COALESCE_RX_MAX_FRAMES | ETHTOOL_COALESCE_TX_MAX_FRAMES) 223#define ETHTOOL_COALESCE_USECS_IRQ \ 224 (ETHTOOL_COALESCE_RX_USECS_IRQ | ETHTOOL_COALESCE_TX_USECS_IRQ) 225#define ETHTOOL_COALESCE_MAX_FRAMES_IRQ \ 226 (ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ | \ 227 ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ) 228#define ETHTOOL_COALESCE_USE_ADAPTIVE \ 229 (ETHTOOL_COALESCE_USE_ADAPTIVE_RX | ETHTOOL_COALESCE_USE_ADAPTIVE_TX) 230#define ETHTOOL_COALESCE_USECS_LOW_HIGH \ 231 (ETHTOOL_COALESCE_RX_USECS_LOW | ETHTOOL_COALESCE_TX_USECS_LOW | \ 232 ETHTOOL_COALESCE_RX_USECS_HIGH | ETHTOOL_COALESCE_TX_USECS_HIGH) 233#define ETHTOOL_COALESCE_MAX_FRAMES_LOW_HIGH \ 234 (ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW | \ 235 ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW | \ 236 ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH | \ 237 ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH) 238#define ETHTOOL_COALESCE_PKT_RATE_RX_USECS \ 239 (ETHTOOL_COALESCE_USE_ADAPTIVE_RX | \ 240 ETHTOOL_COALESCE_RX_USECS_LOW | ETHTOOL_COALESCE_RX_USECS_HIGH | \ 241 ETHTOOL_COALESCE_PKT_RATE_LOW | ETHTOOL_COALESCE_PKT_RATE_HIGH | \ 242 ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL) 243 244#define ETHTOOL_STAT_NOT_SET (~0ULL) 245 246/** 247 * struct ethtool_pause_stats - statistics for IEEE 802.3x pause frames 248 * @tx_pause_frames: transmitted pause frame count. Reported to user space 249 * as %ETHTOOL_A_PAUSE_STAT_TX_FRAMES. 250 * 251 * Equivalent to `30.3.4.2 aPAUSEMACCtrlFramesTransmitted` 252 * from the standard. 253 * 254 * @rx_pause_frames: received pause frame count. Reported to user space 255 * as %ETHTOOL_A_PAUSE_STAT_RX_FRAMES. Equivalent to: 256 * 257 * Equivalent to `30.3.4.3 aPAUSEMACCtrlFramesReceived` 258 * from the standard. 259 */ 260struct ethtool_pause_stats { 261 u64 tx_pause_frames; 262 u64 rx_pause_frames; 263}; 264 265/** 266 * struct ethtool_ops - optional netdev operations 267 * @cap_link_lanes_supported: indicates if the driver supports lanes 268 * parameter. 269 * @supported_coalesce_params: supported types of interrupt coalescing. 270 * @get_drvinfo: Report driver/device information. Should only set the 271 * @driver, @version, @fw_version and @bus_info fields. If not 272 * implemented, the @driver and @bus_info fields will be filled in 273 * according to the netdev's parent device. 274 * @get_regs_len: Get buffer length required for @get_regs 275 * @get_regs: Get device registers 276 * @get_wol: Report whether Wake-on-Lan is enabled 277 * @set_wol: Turn Wake-on-Lan on or off. Returns a negative error code 278 * or zero. 279 * @get_msglevel: Report driver message level. This should be the value 280 * of the @msg_enable field used by netif logging functions. 281 * @set_msglevel: Set driver message level 282 * @nway_reset: Restart autonegotiation. Returns a negative error code 283 * or zero. 284 * @get_link: Report whether physical link is up. Will only be called if 285 * the netdev is up. Should usually be set to ethtool_op_get_link(), 286 * which uses netif_carrier_ok(). 287 * @get_link_ext_state: Report link extended state. Should set link_ext_state and 288 * link_ext_substate (link_ext_substate of 0 means link_ext_substate is unknown, 289 * do not attach ext_substate attribute to netlink message). If link_ext_state 290 * and link_ext_substate are unknown, return -ENODATA. If not implemented, 291 * link_ext_state and link_ext_substate will not be sent to userspace. 292 * @get_eeprom_len: Read range of EEPROM addresses for validation of 293 * @get_eeprom and @set_eeprom requests. 294 * Returns 0 if device does not support EEPROM access. 295 * @get_eeprom: Read data from the device EEPROM. 296 * Should fill in the magic field. Don't need to check len for zero 297 * or wraparound. Fill in the data argument with the eeprom values 298 * from offset to offset + len. Update len to the amount read. 299 * Returns an error or zero. 300 * @set_eeprom: Write data to the device EEPROM. 301 * Should validate the magic field. Don't need to check len for zero 302 * or wraparound. Update len to the amount written. Returns an error 303 * or zero. 304 * @get_coalesce: Get interrupt coalescing parameters. Returns a negative 305 * error code or zero. 306 * @set_coalesce: Set interrupt coalescing parameters. Supported coalescing 307 * types should be set in @supported_coalesce_params. 308 * Returns a negative error code or zero. 309 * @get_ringparam: Report ring sizes 310 * @set_ringparam: Set ring sizes. Returns a negative error code or zero. 311 * @get_pause_stats: Report pause frame statistics. Drivers must not zero 312 * statistics which they don't report. The stats structure is initialized 313 * to ETHTOOL_STAT_NOT_SET indicating driver does not report statistics. 314 * @get_pauseparam: Report pause parameters 315 * @set_pauseparam: Set pause parameters. Returns a negative error code 316 * or zero. 317 * @self_test: Run specified self-tests 318 * @get_strings: Return a set of strings that describe the requested objects 319 * @set_phys_id: Identify the physical devices, e.g. by flashing an LED 320 * attached to it. The implementation may update the indicator 321 * asynchronously or synchronously, but in either case it must return 322 * quickly. It is initially called with the argument %ETHTOOL_ID_ACTIVE, 323 * and must either activate asynchronous updates and return zero, return 324 * a negative error or return a positive frequency for synchronous 325 * indication (e.g. 1 for one on/off cycle per second). If it returns 326 * a frequency then it will be called again at intervals with the 327 * argument %ETHTOOL_ID_ON or %ETHTOOL_ID_OFF and should set the state of 328 * the indicator accordingly. Finally, it is called with the argument 329 * %ETHTOOL_ID_INACTIVE and must deactivate the indicator. Returns a 330 * negative error code or zero. 331 * @get_ethtool_stats: Return extended statistics about the device. 332 * This is only useful if the device maintains statistics not 333 * included in &struct rtnl_link_stats64. 334 * @begin: Function to be called before any other operation. Returns a 335 * negative error code or zero. 336 * @complete: Function to be called after any other operation except 337 * @begin. Will be called even if the other operation failed. 338 * @get_priv_flags: Report driver-specific feature flags. 339 * @set_priv_flags: Set driver-specific feature flags. Returns a negative 340 * error code or zero. 341 * @get_sset_count: Get number of strings that @get_strings will write. 342 * @get_rxnfc: Get RX flow classification rules. Returns a negative 343 * error code or zero. 344 * @set_rxnfc: Set RX flow classification rules. Returns a negative 345 * error code or zero. 346 * @flash_device: Write a firmware image to device's flash memory. 347 * Returns a negative error code or zero. 348 * @reset: Reset (part of) the device, as specified by a bitmask of 349 * flags from &enum ethtool_reset_flags. Returns a negative 350 * error code or zero. 351 * @get_rxfh_key_size: Get the size of the RX flow hash key. 352 * Returns zero if not supported for this specific device. 353 * @get_rxfh_indir_size: Get the size of the RX flow hash indirection table. 354 * Returns zero if not supported for this specific device. 355 * @get_rxfh: Get the contents of the RX flow hash indirection table, hash key 356 * and/or hash function. 357 * Returns a negative error code or zero. 358 * @set_rxfh: Set the contents of the RX flow hash indirection table, hash 359 * key, and/or hash function. Arguments which are set to %NULL or zero 360 * will remain unchanged. 361 * Returns a negative error code or zero. An error code must be returned 362 * if at least one unsupported change was requested. 363 * @get_rxfh_context: Get the contents of the RX flow hash indirection table, 364 * hash key, and/or hash function assiciated to the given rss context. 365 * Returns a negative error code or zero. 366 * @set_rxfh_context: Create, remove and configure RSS contexts. Allows setting 367 * the contents of the RX flow hash indirection table, hash key, and/or 368 * hash function associated to the given context. Arguments which are set 369 * to %NULL or zero will remain unchanged. 370 * Returns a negative error code or zero. An error code must be returned 371 * if at least one unsupported change was requested. 372 * @get_channels: Get number of channels. 373 * @set_channels: Set number of channels. Returns a negative error code or 374 * zero. 375 * @get_dump_flag: Get dump flag indicating current dump length, version, 376 * and flag of the device. 377 * @get_dump_data: Get dump data. 378 * @set_dump: Set dump specific flags to the device. 379 * @get_ts_info: Get the time stamping and PTP hardware clock capabilities. 380 * Drivers supporting transmit time stamps in software should set this to 381 * ethtool_op_get_ts_info(). 382 * @get_module_info: Get the size and type of the eeprom contained within 383 * a plug-in module. 384 * @get_module_eeprom: Get the eeprom information from the plug-in module 385 * @get_eee: Get Energy-Efficient (EEE) supported and status. 386 * @set_eee: Set EEE status (enable/disable) as well as LPI timers. 387 * @get_tunable: Read the value of a driver / device tunable. 388 * @set_tunable: Set the value of a driver / device tunable. 389 * @get_per_queue_coalesce: Get interrupt coalescing parameters per queue. 390 * It must check that the given queue number is valid. If neither a RX nor 391 * a TX queue has this number, return -EINVAL. If only a RX queue or a TX 392 * queue has this number, set the inapplicable fields to ~0 and return 0. 393 * Returns a negative error code or zero. 394 * @set_per_queue_coalesce: Set interrupt coalescing parameters per queue. 395 * It must check that the given queue number is valid. If neither a RX nor 396 * a TX queue has this number, return -EINVAL. If only a RX queue or a TX 397 * queue has this number, ignore the inapplicable fields. Supported 398 * coalescing types should be set in @supported_coalesce_params. 399 * Returns a negative error code or zero. 400 * @get_link_ksettings: Get various device settings including Ethernet link 401 * settings. The %cmd and %link_mode_masks_nwords fields should be 402 * ignored (use %__ETHTOOL_LINK_MODE_MASK_NBITS instead of the latter), 403 * any change to them will be overwritten by kernel. Returns a negative 404 * error code or zero. 405 * @set_link_ksettings: Set various device settings including Ethernet link 406 * settings. The %cmd and %link_mode_masks_nwords fields should be 407 * ignored (use %__ETHTOOL_LINK_MODE_MASK_NBITS instead of the latter), 408 * any change to them will be overwritten by kernel. Returns a negative 409 * error code or zero. 410 * @get_fecparam: Get the network device Forward Error Correction parameters. 411 * @set_fecparam: Set the network device Forward Error Correction parameters. 412 * @get_ethtool_phy_stats: Return extended statistics about the PHY device. 413 * This is only useful if the device maintains PHY statistics and 414 * cannot use the standard PHY library helpers. 415 * 416 * All operations are optional (i.e. the function pointer may be set 417 * to %NULL) and callers must take this into account. Callers must 418 * hold the RTNL lock. 419 * 420 * See the structures used by these operations for further documentation. 421 * Note that for all operations using a structure ending with a zero- 422 * length array, the array is allocated separately in the kernel and 423 * is passed to the driver as an additional parameter. 424 * 425 * See &struct net_device and &struct net_device_ops for documentation 426 * of the generic netdev features interface. 427 */ 428struct ethtool_ops { 429 u32 cap_link_lanes_supported:1; 430 u32 supported_coalesce_params; 431 void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *); 432 int (*get_regs_len)(struct net_device *); 433 void (*get_regs)(struct net_device *, struct ethtool_regs *, void *); 434 void (*get_wol)(struct net_device *, struct ethtool_wolinfo *); 435 int (*set_wol)(struct net_device *, struct ethtool_wolinfo *); 436 u32 (*get_msglevel)(struct net_device *); 437 void (*set_msglevel)(struct net_device *, u32); 438 int (*nway_reset)(struct net_device *); 439 u32 (*get_link)(struct net_device *); 440 int (*get_link_ext_state)(struct net_device *, 441 struct ethtool_link_ext_state_info *); 442 int (*get_eeprom_len)(struct net_device *); 443 int (*get_eeprom)(struct net_device *, 444 struct ethtool_eeprom *, u8 *); 445 int (*set_eeprom)(struct net_device *, 446 struct ethtool_eeprom *, u8 *); 447 int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *); 448 int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *); 449 void (*get_ringparam)(struct net_device *, 450 struct ethtool_ringparam *); 451 int (*set_ringparam)(struct net_device *, 452 struct ethtool_ringparam *); 453 void (*get_pause_stats)(struct net_device *dev, 454 struct ethtool_pause_stats *pause_stats); 455 void (*get_pauseparam)(struct net_device *, 456 struct ethtool_pauseparam*); 457 int (*set_pauseparam)(struct net_device *, 458 struct ethtool_pauseparam*); 459 void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); 460 void (*get_strings)(struct net_device *, u32 stringset, u8 *); 461 int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state); 462 void (*get_ethtool_stats)(struct net_device *, 463 struct ethtool_stats *, u64 *); 464 int (*begin)(struct net_device *); 465 void (*complete)(struct net_device *); 466 u32 (*get_priv_flags)(struct net_device *); 467 int (*set_priv_flags)(struct net_device *, u32); 468 int (*get_sset_count)(struct net_device *, int); 469 int (*get_rxnfc)(struct net_device *, 470 struct ethtool_rxnfc *, u32 *rule_locs); 471 int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *); 472 int (*flash_device)(struct net_device *, struct ethtool_flash *); 473 int (*reset)(struct net_device *, u32 *); 474 u32 (*get_rxfh_key_size)(struct net_device *); 475 u32 (*get_rxfh_indir_size)(struct net_device *); 476 int (*get_rxfh)(struct net_device *, u32 *indir, u8 *key, 477 u8 *hfunc); 478 int (*set_rxfh)(struct net_device *, const u32 *indir, 479 const u8 *key, const u8 hfunc); 480 int (*get_rxfh_context)(struct net_device *, u32 *indir, u8 *key, 481 u8 *hfunc, u32 rss_context); 482 int (*set_rxfh_context)(struct net_device *, const u32 *indir, 483 const u8 *key, const u8 hfunc, 484 u32 *rss_context, bool delete); 485 void (*get_channels)(struct net_device *, struct ethtool_channels *); 486 int (*set_channels)(struct net_device *, struct ethtool_channels *); 487 int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); 488 int (*get_dump_data)(struct net_device *, 489 struct ethtool_dump *, void *); 490 int (*set_dump)(struct net_device *, struct ethtool_dump *); 491 int (*get_ts_info)(struct net_device *, struct ethtool_ts_info *); 492 int (*get_module_info)(struct net_device *, 493 struct ethtool_modinfo *); 494 int (*get_module_eeprom)(struct net_device *, 495 struct ethtool_eeprom *, u8 *); 496 int (*get_eee)(struct net_device *, struct ethtool_eee *); 497 int (*set_eee)(struct net_device *, struct ethtool_eee *); 498 int (*get_tunable)(struct net_device *, 499 const struct ethtool_tunable *, void *); 500 int (*set_tunable)(struct net_device *, 501 const struct ethtool_tunable *, const void *); 502 int (*get_per_queue_coalesce)(struct net_device *, u32, 503 struct ethtool_coalesce *); 504 int (*set_per_queue_coalesce)(struct net_device *, u32, 505 struct ethtool_coalesce *); 506 int (*get_link_ksettings)(struct net_device *, 507 struct ethtool_link_ksettings *); 508 int (*set_link_ksettings)(struct net_device *, 509 const struct ethtool_link_ksettings *); 510 int (*get_fecparam)(struct net_device *, 511 struct ethtool_fecparam *); 512 int (*set_fecparam)(struct net_device *, 513 struct ethtool_fecparam *); 514 void (*get_ethtool_phy_stats)(struct net_device *, 515 struct ethtool_stats *, u64 *); 516 int (*get_phy_tunable)(struct net_device *, 517 const struct ethtool_tunable *, void *); 518 int (*set_phy_tunable)(struct net_device *, 519 const struct ethtool_tunable *, const void *); 520}; 521 522int ethtool_check_ops(const struct ethtool_ops *ops); 523 524struct ethtool_rx_flow_rule { 525 struct flow_rule *rule; 526 unsigned long priv[]; 527}; 528 529struct ethtool_rx_flow_spec_input { 530 const struct ethtool_rx_flow_spec *fs; 531 u32 rss_ctx; 532}; 533 534struct ethtool_rx_flow_rule * 535ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input); 536void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *rule); 537 538bool ethtool_virtdev_validate_cmd(const struct ethtool_link_ksettings *cmd); 539int ethtool_virtdev_set_link_ksettings(struct net_device *dev, 540 const struct ethtool_link_ksettings *cmd, 541 u32 *dev_speed, u8 *dev_duplex); 542 543struct netlink_ext_ack; 544struct phy_device; 545struct phy_tdr_config; 546 547/** 548 * struct ethtool_phy_ops - Optional PHY device options 549 * @get_sset_count: Get number of strings that @get_strings will write. 550 * @get_strings: Return a set of strings that describe the requested objects 551 * @get_stats: Return extended statistics about the PHY device. 552 * @start_cable_test: Start a cable test 553 * @start_cable_test_tdr: Start a Time Domain Reflectometry cable test 554 * 555 * All operations are optional (i.e. the function pointer may be set to %NULL) 556 * and callers must take this into account. Callers must hold the RTNL lock. 557 */ 558struct ethtool_phy_ops { 559 int (*get_sset_count)(struct phy_device *dev); 560 int (*get_strings)(struct phy_device *dev, u8 *data); 561 int (*get_stats)(struct phy_device *dev, 562 struct ethtool_stats *stats, u64 *data); 563 int (*start_cable_test)(struct phy_device *phydev, 564 struct netlink_ext_ack *extack); 565 int (*start_cable_test_tdr)(struct phy_device *phydev, 566 struct netlink_ext_ack *extack, 567 const struct phy_tdr_config *config); 568}; 569 570/** 571 * ethtool_set_ethtool_phy_ops - Set the ethtool_phy_ops singleton 572 * @ops: Ethtool PHY operations to set 573 */ 574void ethtool_set_ethtool_phy_ops(const struct ethtool_phy_ops *ops); 575 576/* 577 * ethtool_params_from_link_mode - Derive link parameters from a given link mode 578 * @link_ksettings: Link parameters to be derived from the link mode 579 * @link_mode: Link mode 580 */ 581void 582ethtool_params_from_link_mode(struct ethtool_link_ksettings *link_ksettings, 583 enum ethtool_link_mode_bit_indices link_mode); 584#endif /* _LINUX_ETHTOOL_H */