]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/ethtool.h
net/ethtool: support get coalesce per queue
[mirror_ubuntu-bionic-kernel.git] / include / linux / ethtool.h
CommitLineData
1da177e4
LT
1/*
2 * ethtool.h: Defines for Linux ethtool.
3 *
4 * Copyright (C) 1998 David S. Miller (davem@redhat.com)
5 * Copyright 2001 Jeff Garzik <jgarzik@pobox.com>
6 * Portions Copyright 2001 Sun Microsystems (thockin@sun.com)
7 * Portions Copyright 2002 Intel (eli.kupermann@intel.com,
8 * christopher.leech@intel.com,
9 * scott.feldman@intel.com)
59089d8d 10 * Portions Copyright (C) Sun Microsystems 2008
1da177e4 11 */
1da177e4
LT
12#ifndef _LINUX_ETHTOOL_H
13#define _LINUX_ETHTOOL_H
14
3a7da39d 15#include <linux/compat.h>
607ca46e 16#include <uapi/linux/ethtool.h>
3ae7c0b2 17
3a7da39d
BH
18#ifdef CONFIG_COMPAT
19
20struct compat_ethtool_rx_flow_spec {
21 u32 flow_type;
127fe533
AD
22 union ethtool_flow_union h_u;
23 struct ethtool_flow_ext h_ext;
24 union ethtool_flow_union m_u;
25 struct ethtool_flow_ext m_ext;
3a7da39d
BH
26 compat_u64 ring_cookie;
27 u32 location;
28};
29
30struct compat_ethtool_rxnfc {
31 u32 cmd;
32 u32 flow_type;
33 compat_u64 data;
34 struct compat_ethtool_rx_flow_spec fs;
35 u32 rule_cnt;
36 u32 rule_locs[0];
37};
38
39#endif /* CONFIG_COMPAT */
c3ce7e20 40
a1467085
DM
41#include <linux/rculist.h>
42
4bc71cb9
JP
43extern int __ethtool_get_settings(struct net_device *dev,
44 struct ethtool_cmd *cmd);
45
68f512f2
BH
46/**
47 * enum ethtool_phys_id_state - indicator state for physical identification
48 * @ETHTOOL_ID_INACTIVE: Physical ID indicator should be deactivated
49 * @ETHTOOL_ID_ACTIVE: Physical ID indicator should be activated
50 * @ETHTOOL_ID_ON: LED should be turned on (used iff %ETHTOOL_ID_ACTIVE
51 * is not supported)
52 * @ETHTOOL_ID_OFF: LED should be turned off (used iff %ETHTOOL_ID_ACTIVE
53 * is not supported)
54 */
55enum ethtool_phys_id_state {
56 ETHTOOL_ID_INACTIVE,
57 ETHTOOL_ID_ACTIVE,
58 ETHTOOL_ID_ON,
59 ETHTOOL_ID_OFF
60};
61
892311f6
EP
62enum {
63 ETH_RSS_HASH_TOP_BIT, /* Configurable RSS hash function - Toeplitz */
64 ETH_RSS_HASH_XOR_BIT, /* Configurable RSS hash function - Xor */
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
79#define ETH_RSS_HASH_UNKNOWN 0
80#define ETH_RSS_HASH_NO_CHANGE 0
81
1da177e4
LT
82struct net_device;
83
84/* Some generic methods drivers may use in their ethtool_ops */
85u32 ethtool_op_get_link(struct net_device *dev);
02eacbd0 86int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *eti);
1da177e4 87
278bc429
BH
88/**
89 * ethtool_rxfh_indir_default - get default value for RX flow hash indirection
90 * @index: Index in RX flow hash indirection table
91 * @n_rx_rings: Number of RX rings to use
92 *
93 * This function provides the default policy for RX flow hash indirection.
94 */
95static inline u32 ethtool_rxfh_indir_default(u32 index, u32 n_rx_rings)
96{
97 return index % n_rx_rings;
98}
99
1da177e4 100/**
8717d07b
BH
101 * struct ethtool_ops - optional netdev operations
102 * @get_settings: Get various device settings including Ethernet link
8ae6daca
DD
103 * settings. The @cmd parameter is expected to have been cleared
104 * before get_settings is called. Returns a negative error code or
105 * zero.
8717d07b
BH
106 * @set_settings: Set various device settings including Ethernet link
107 * settings. Returns a negative error code or zero.
108 * @get_drvinfo: Report driver/device information. Should only set the
109 * @driver, @version, @fw_version and @bus_info fields. If not
110 * implemented, the @driver and @bus_info fields will be filled in
111 * according to the netdev's parent device.
112 * @get_regs_len: Get buffer length required for @get_regs
e20b5b61
BH
113 * @get_regs: Get device registers
114 * @get_wol: Report whether Wake-on-Lan is enabled
8717d07b
BH
115 * @set_wol: Turn Wake-on-Lan on or off. Returns a negative error code
116 * or zero.
117 * @get_msglevel: Report driver message level. This should be the value
118 * of the @msg_enable field used by netif logging functions.
e20b5b61 119 * @set_msglevel: Set driver message level
8717d07b
BH
120 * @nway_reset: Restart autonegotiation. Returns a negative error code
121 * or zero.
122 * @get_link: Report whether physical link is up. Will only be called if
123 * the netdev is up. Should usually be set to ethtool_op_get_link(),
124 * which uses netif_carrier_ok().
e20b5b61 125 * @get_eeprom: Read data from the device EEPROM.
1da177e4
LT
126 * Should fill in the magic field. Don't need to check len for zero
127 * or wraparound. Fill in the data argument with the eeprom values
128 * from offset to offset + len. Update len to the amount read.
129 * Returns an error or zero.
e20b5b61 130 * @set_eeprom: Write data to the device EEPROM.
1da177e4
LT
131 * Should validate the magic field. Don't need to check len for zero
132 * or wraparound. Update len to the amount written. Returns an error
133 * or zero.
8717d07b
BH
134 * @get_coalesce: Get interrupt coalescing parameters. Returns a negative
135 * error code or zero.
136 * @set_coalesce: Set interrupt coalescing parameters. Returns a negative
137 * error code or zero.
e20b5b61 138 * @get_ringparam: Report ring sizes
8717d07b 139 * @set_ringparam: Set ring sizes. Returns a negative error code or zero.
e20b5b61 140 * @get_pauseparam: Report pause parameters
8717d07b
BH
141 * @set_pauseparam: Set pause parameters. Returns a negative error code
142 * or zero.
e20b5b61
BH
143 * @self_test: Run specified self-tests
144 * @get_strings: Return a set of strings that describe the requested objects
68f512f2
BH
145 * @set_phys_id: Identify the physical devices, e.g. by flashing an LED
146 * attached to it. The implementation may update the indicator
147 * asynchronously or synchronously, but in either case it must return
148 * quickly. It is initially called with the argument %ETHTOOL_ID_ACTIVE,
fce55922
AB
149 * and must either activate asynchronous updates and return zero, return
150 * a negative error or return a positive frequency for synchronous
151 * indication (e.g. 1 for one on/off cycle per second). If it returns
152 * a frequency then it will be called again at intervals with the
68f512f2
BH
153 * argument %ETHTOOL_ID_ON or %ETHTOOL_ID_OFF and should set the state of
154 * the indicator accordingly. Finally, it is called with the argument
155 * %ETHTOOL_ID_INACTIVE and must deactivate the indicator. Returns a
156 * negative error code or zero.
8717d07b
BH
157 * @get_ethtool_stats: Return extended statistics about the device.
158 * This is only useful if the device maintains statistics not
159 * included in &struct rtnl_link_stats64.
160 * @begin: Function to be called before any other operation. Returns a
161 * negative error code or zero.
162 * @complete: Function to be called after any other operation except
163 * @begin. Will be called even if the other operation failed.
8717d07b
BH
164 * @get_priv_flags: Report driver-specific feature flags.
165 * @set_priv_flags: Set driver-specific feature flags. Returns a negative
166 * error code or zero.
167 * @get_sset_count: Get number of strings that @get_strings will write.
168 * @get_rxnfc: Get RX flow classification rules. Returns a negative
169 * error code or zero.
170 * @set_rxnfc: Set RX flow classification rules. Returns a negative
171 * error code or zero.
172 * @flash_device: Write a firmware image to device's flash memory.
173 * Returns a negative error code or zero.
174 * @reset: Reset (part of) the device, as specified by a bitmask of
175 * flags from &enum ethtool_reset_flags. Returns a negative
176 * error code or zero.
3de0b592
VD
177 * @get_rxfh_key_size: Get the size of the RX flow hash key.
178 * Returns zero if not supported for this specific device.
7850f63f
BH
179 * @get_rxfh_indir_size: Get the size of the RX flow hash indirection table.
180 * Returns zero if not supported for this specific device.
892311f6
EP
181 * @get_rxfh: Get the contents of the RX flow hash indirection table, hash key
182 * and/or hash function.
8717d07b 183 * Returns a negative error code or zero.
892311f6
EP
184 * @set_rxfh: Set the contents of the RX flow hash indirection table, hash
185 * key, and/or hash function. Arguments which are set to %NULL or zero
186 * will remain unchanged.
187 * Returns a negative error code or zero. An error code must be returned
188 * if at least one unsupported change was requested.
8b5933c3 189 * @get_channels: Get number of channels.
190 * @set_channels: Set number of channels. Returns a negative error code or
191 * zero.
29dd54b7
AC
192 * @get_dump_flag: Get dump flag indicating current dump length, version,
193 * and flag of the device.
194 * @get_dump_data: Get dump data.
195 * @set_dump: Set dump specific flags to the device.
c8f3a8c3
RC
196 * @get_ts_info: Get the time stamping and PTP hardware clock capabilities.
197 * Drivers supporting transmit time stamps in software should set this to
198 * ethtool_op_get_ts_info().
41c3cb6d
SH
199 * @get_module_info: Get the size and type of the eeprom contained within
200 * a plug-in module.
201 * @get_module_eeprom: Get the eeprom information from the plug-in module
80f12ecc
YM
202 * @get_eee: Get Energy-Efficient (EEE) supported and status.
203 * @set_eee: Set EEE status (enable/disable) as well as LPI timers.
421797b1
KL
204 * @get_per_queue_coalesce: Get interrupt coalescing parameters per queue.
205 * It must check that the given queue number is valid. If neither a RX nor
206 * a TX queue has this number, return -EINVAL. If only a RX queue or a TX
207 * queue has this number, set the inapplicable fields to ~0 and return 0.
208 * Returns a negative error code or zero.
8717d07b
BH
209 *
210 * All operations are optional (i.e. the function pointer may be set
211 * to %NULL) and callers must take this into account. Callers must
b4f79e5c 212 * hold the RTNL lock.
8717d07b
BH
213 *
214 * See the structures used by these operations for further documentation.
6e201c85
BH
215 * Note that for all operations using a structure ending with a zero-
216 * length array, the array is allocated separately in the kernel and
217 * is passed to the driver as an additional parameter.
8717d07b
BH
218 *
219 * See &struct net_device and &struct net_device_ops for documentation
220 * of the generic netdev features interface.
1da177e4
LT
221 */
222struct ethtool_ops {
223 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
224 int (*set_settings)(struct net_device *, struct ethtool_cmd *);
225 void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *);
226 int (*get_regs_len)(struct net_device *);
227 void (*get_regs)(struct net_device *, struct ethtool_regs *, void *);
228 void (*get_wol)(struct net_device *, struct ethtool_wolinfo *);
229 int (*set_wol)(struct net_device *, struct ethtool_wolinfo *);
230 u32 (*get_msglevel)(struct net_device *);
231 void (*set_msglevel)(struct net_device *, u32);
232 int (*nway_reset)(struct net_device *);
233 u32 (*get_link)(struct net_device *);
234 int (*get_eeprom_len)(struct net_device *);
97f8aefb 235 int (*get_eeprom)(struct net_device *,
236 struct ethtool_eeprom *, u8 *);
237 int (*set_eeprom)(struct net_device *,
238 struct ethtool_eeprom *, u8 *);
1da177e4
LT
239 int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *);
240 int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *);
97f8aefb 241 void (*get_ringparam)(struct net_device *,
242 struct ethtool_ringparam *);
243 int (*set_ringparam)(struct net_device *,
244 struct ethtool_ringparam *);
245 void (*get_pauseparam)(struct net_device *,
246 struct ethtool_pauseparam*);
247 int (*set_pauseparam)(struct net_device *,
248 struct ethtool_pauseparam*);
1da177e4
LT
249 void (*self_test)(struct net_device *, struct ethtool_test *, u64 *);
250 void (*get_strings)(struct net_device *, u32 stringset, u8 *);
68f512f2 251 int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state);
97f8aefb 252 void (*get_ethtool_stats)(struct net_device *,
253 struct ethtool_stats *, u64 *);
1da177e4
LT
254 int (*begin)(struct net_device *);
255 void (*complete)(struct net_device *);
97f8aefb 256 u32 (*get_priv_flags)(struct net_device *);
257 int (*set_priv_flags)(struct net_device *, u32);
ff03d49f 258 int (*get_sset_count)(struct net_device *, int);
97f8aefb 259 int (*get_rxnfc)(struct net_device *,
815c7db5 260 struct ethtool_rxnfc *, u32 *rule_locs);
59089d8d 261 int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *);
97f8aefb 262 int (*flash_device)(struct net_device *, struct ethtool_flash *);
d73d3a8c 263 int (*reset)(struct net_device *, u32 *);
3de0b592 264 u32 (*get_rxfh_key_size)(struct net_device *);
7850f63f 265 u32 (*get_rxfh_indir_size)(struct net_device *);
892311f6
EP
266 int (*get_rxfh)(struct net_device *, u32 *indir, u8 *key,
267 u8 *hfunc);
33cb0fa7 268 int (*set_rxfh)(struct net_device *, const u32 *indir,
892311f6 269 const u8 *key, const u8 hfunc);
8b5933c3 270 void (*get_channels)(struct net_device *, struct ethtool_channels *);
271 int (*set_channels)(struct net_device *, struct ethtool_channels *);
29dd54b7
AC
272 int (*get_dump_flag)(struct net_device *, struct ethtool_dump *);
273 int (*get_dump_data)(struct net_device *,
274 struct ethtool_dump *, void *);
275 int (*set_dump)(struct net_device *, struct ethtool_dump *);
c8f3a8c3 276 int (*get_ts_info)(struct net_device *, struct ethtool_ts_info *);
41c3cb6d
SH
277 int (*get_module_info)(struct net_device *,
278 struct ethtool_modinfo *);
279 int (*get_module_eeprom)(struct net_device *,
280 struct ethtool_eeprom *, u8 *);
80f12ecc
YM
281 int (*get_eee)(struct net_device *, struct ethtool_eee *);
282 int (*set_eee)(struct net_device *, struct ethtool_eee *);
f0db9b07
GV
283 int (*get_tunable)(struct net_device *,
284 const struct ethtool_tunable *, void *);
285 int (*set_tunable)(struct net_device *,
286 const struct ethtool_tunable *, const void *);
421797b1
KL
287 int (*get_per_queue_coalesce)(struct net_device *, u32,
288 struct ethtool_coalesce *);
8b5933c3 289
1da177e4 290};
1da177e4 291#endif /* _LINUX_ETHTOOL_H */