blob: 8bb5e87df365ef69cdb4bbbd7de4af05a3d42236 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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)
10 */
11
12#ifndef _LINUX_ETHTOOL_H
13#define _LINUX_ETHTOOL_H
14
Kirill A. Shutemove621e692008-03-07 11:11:13 -080015#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17/* This should work for both 32 and 64 bit userland. */
18struct ethtool_cmd {
David Woodhousec3ce7e22006-04-29 01:53:47 +010019 __u32 cmd;
20 __u32 supported; /* Features this interface supports */
21 __u32 advertising; /* Features this interface advertises */
22 __u16 speed; /* The forced speed, 10Mb, 100Mb, gigabit */
23 __u8 duplex; /* Duplex, half or full */
24 __u8 port; /* Which connector port */
25 __u8 phy_address;
26 __u8 transceiver; /* Which transceiver to use */
27 __u8 autoneg; /* Enable or disable autonegotiation */
28 __u32 maxtxpkt; /* Tx pkts before generating tx int */
29 __u32 maxrxpkt; /* Rx pkts before generating rx int */
30 __u32 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -070031};
32
33#define ETHTOOL_BUSINFO_LEN 32
34/* these strings are set to whatever the driver author decides... */
35struct ethtool_drvinfo {
David Woodhousec3ce7e22006-04-29 01:53:47 +010036 __u32 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 char driver[32]; /* driver short name, "tulip", "eepro100" */
38 char version[32]; /* driver version string */
39 char fw_version[32]; /* firmware version string, if applicable */
40 char bus_info[ETHTOOL_BUSINFO_LEN]; /* Bus info for this IF. */
41 /* For PCI devices, use pci_name(pci_dev). */
42 char reserved1[32];
Jeff Garzik339bf022007-08-15 16:01:32 -070043 char reserved2[12];
44 __u32 n_priv_flags; /* number of flags valid in ETHTOOL_GPFLAGS */
David Woodhousec3ce7e22006-04-29 01:53:47 +010045 __u32 n_stats; /* number of u64's from ETHTOOL_GSTATS */
46 __u32 testinfo_len;
47 __u32 eedump_len; /* Size of data from ETHTOOL_GEEPROM (bytes) */
48 __u32 regdump_len; /* Size of data from ETHTOOL_GREGS (bytes) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
51#define SOPASS_MAX 6
52/* wake-on-lan settings */
53struct ethtool_wolinfo {
David Woodhousec3ce7e22006-04-29 01:53:47 +010054 __u32 cmd;
55 __u32 supported;
56 __u32 wolopts;
57 __u8 sopass[SOPASS_MAX]; /* SecureOn(tm) password */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
60/* for passing single values */
61struct ethtool_value {
David Woodhousec3ce7e22006-04-29 01:53:47 +010062 __u32 cmd;
63 __u32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66/* for passing big chunks of data */
67struct ethtool_regs {
David Woodhousec3ce7e22006-04-29 01:53:47 +010068 __u32 cmd;
69 __u32 version; /* driver-specific, indicates different chips/revs */
70 __u32 len; /* bytes */
71 __u8 data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
74/* for passing EEPROM chunks */
75struct ethtool_eeprom {
David Woodhousec3ce7e22006-04-29 01:53:47 +010076 __u32 cmd;
77 __u32 magic;
78 __u32 offset; /* in bytes */
79 __u32 len; /* in bytes */
80 __u8 data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83/* for configuring coalescing parameters of chip */
84struct ethtool_coalesce {
David Woodhousec3ce7e22006-04-29 01:53:47 +010085 __u32 cmd; /* ETHTOOL_{G,S}COALESCE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* How many usecs to delay an RX interrupt after
88 * a packet arrives. If 0, only rx_max_coalesced_frames
89 * is used.
90 */
David Woodhousec3ce7e22006-04-29 01:53:47 +010091 __u32 rx_coalesce_usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /* How many packets to delay an RX interrupt after
94 * a packet arrives. If 0, only rx_coalesce_usecs is
95 * used. It is illegal to set both usecs and max frames
96 * to zero as this would cause RX interrupts to never be
97 * generated.
98 */
David Woodhousec3ce7e22006-04-29 01:53:47 +010099 __u32 rx_max_coalesced_frames;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 /* Same as above two parameters, except that these values
102 * apply while an IRQ is being serviced by the host. Not
103 * all cards support this feature and the values are ignored
104 * in that case.
105 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100106 __u32 rx_coalesce_usecs_irq;
107 __u32 rx_max_coalesced_frames_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 /* How many usecs to delay a TX interrupt after
110 * a packet is sent. If 0, only tx_max_coalesced_frames
111 * is used.
112 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100113 __u32 tx_coalesce_usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 /* How many packets to delay a TX interrupt after
116 * a packet is sent. If 0, only tx_coalesce_usecs is
117 * used. It is illegal to set both usecs and max frames
118 * to zero as this would cause TX interrupts to never be
119 * generated.
120 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100121 __u32 tx_max_coalesced_frames;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 /* Same as above two parameters, except that these values
124 * apply while an IRQ is being serviced by the host. Not
125 * all cards support this feature and the values are ignored
126 * in that case.
127 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100128 __u32 tx_coalesce_usecs_irq;
129 __u32 tx_max_coalesced_frames_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 /* How many usecs to delay in-memory statistics
132 * block updates. Some drivers do not have an in-memory
133 * statistic block, and in such cases this value is ignored.
134 * This value must not be zero.
135 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100136 __u32 stats_block_coalesce_usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 /* Adaptive RX/TX coalescing is an algorithm implemented by
139 * some drivers to improve latency under low packet rates and
140 * improve throughput under high packet rates. Some drivers
141 * only implement one of RX or TX adaptive coalescing. Anything
142 * not implemented by the driver causes these values to be
143 * silently ignored.
144 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100145 __u32 use_adaptive_rx_coalesce;
146 __u32 use_adaptive_tx_coalesce;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* When the packet rate (measured in packets per second)
149 * is below pkt_rate_low, the {rx,tx}_*_low parameters are
150 * used.
151 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100152 __u32 pkt_rate_low;
153 __u32 rx_coalesce_usecs_low;
154 __u32 rx_max_coalesced_frames_low;
155 __u32 tx_coalesce_usecs_low;
156 __u32 tx_max_coalesced_frames_low;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* When the packet rate is below pkt_rate_high but above
159 * pkt_rate_low (both measured in packets per second) the
160 * normal {rx,tx}_* coalescing parameters are used.
161 */
162
163 /* When the packet rate is (measured in packets per second)
164 * is above pkt_rate_high, the {rx,tx}_*_high parameters are
165 * used.
166 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100167 __u32 pkt_rate_high;
168 __u32 rx_coalesce_usecs_high;
169 __u32 rx_max_coalesced_frames_high;
170 __u32 tx_coalesce_usecs_high;
171 __u32 tx_max_coalesced_frames_high;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /* How often to do adaptive coalescing packet rate sampling,
174 * measured in seconds. Must not be zero.
175 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100176 __u32 rate_sample_interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
179/* for configuring RX/TX ring parameters */
180struct ethtool_ringparam {
David Woodhousec3ce7e22006-04-29 01:53:47 +0100181 __u32 cmd; /* ETHTOOL_{G,S}RINGPARAM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 /* Read only attributes. These indicate the maximum number
184 * of pending RX/TX ring entries the driver will allow the
185 * user to set.
186 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100187 __u32 rx_max_pending;
188 __u32 rx_mini_max_pending;
189 __u32 rx_jumbo_max_pending;
190 __u32 tx_max_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /* Values changeable by the user. The valid values are
193 * in the range 1 to the "*_max_pending" counterpart above.
194 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100195 __u32 rx_pending;
196 __u32 rx_mini_pending;
197 __u32 rx_jumbo_pending;
198 __u32 tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199};
200
201/* for configuring link flow control parameters */
202struct ethtool_pauseparam {
David Woodhousec3ce7e22006-04-29 01:53:47 +0100203 __u32 cmd; /* ETHTOOL_{G,S}PAUSEPARAM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /* If the link is being auto-negotiated (via ethtool_cmd.autoneg
206 * being true) the user may set 'autonet' here non-zero to have the
207 * pause parameters be auto-negotiated too. In such a case, the
208 * {rx,tx}_pause values below determine what capabilities are
209 * advertised.
210 *
211 * If 'autoneg' is zero or the link is not being auto-negotiated,
212 * then {rx,tx}_pause force the driver to use/not-use pause
213 * flow control.
214 */
David Woodhousec3ce7e22006-04-29 01:53:47 +0100215 __u32 autoneg;
216 __u32 rx_pause;
217 __u32 tx_pause;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
220#define ETH_GSTRING_LEN 32
221enum ethtool_stringset {
222 ETH_SS_TEST = 0,
223 ETH_SS_STATS,
Jeff Garzik339bf022007-08-15 16:01:32 -0700224 ETH_SS_PRIV_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225};
226
227/* for passing string sets for data tagging */
228struct ethtool_gstrings {
David Woodhousec3ce7e22006-04-29 01:53:47 +0100229 __u32 cmd; /* ETHTOOL_GSTRINGS */
230 __u32 string_set; /* string set id e.c. ETH_SS_TEST, etc*/
231 __u32 len; /* number of strings in the string set */
232 __u8 data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
235enum ethtool_test_flags {
236 ETH_TEST_FL_OFFLINE = (1 << 0), /* online / offline */
237 ETH_TEST_FL_FAILED = (1 << 1), /* test passed / failed */
238};
239
240/* for requesting NIC test and getting results*/
241struct ethtool_test {
David Woodhousec3ce7e22006-04-29 01:53:47 +0100242 __u32 cmd; /* ETHTOOL_TEST */
243 __u32 flags; /* ETH_TEST_FL_xxx */
244 __u32 reserved;
245 __u32 len; /* result length, in number of u64 elements */
246 __u64 data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247};
248
249/* for dumping NIC-specific statistics */
250struct ethtool_stats {
David Woodhousec3ce7e22006-04-29 01:53:47 +0100251 __u32 cmd; /* ETHTOOL_GSTATS */
252 __u32 n_stats; /* number of u64's being returned */
253 __u64 data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254};
255
Jon Wetzela6f9a702005-08-20 17:15:54 -0700256struct ethtool_perm_addr {
David Woodhousec3ce7e22006-04-29 01:53:47 +0100257 __u32 cmd; /* ETHTOOL_GPERMADDR */
258 __u32 size;
259 __u8 data[0];
Jon Wetzela6f9a702005-08-20 17:15:54 -0700260};
261
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700262/* boolean flags controlling per-interface behavior characteristics.
263 * When reading, the flag indicates whether or not a certain behavior
264 * is enabled/present. When writing, the flag indicates whether
265 * or not the driver should turn on (set) or off (clear) a behavior.
266 *
267 * Some behaviors may read-only (unconditionally absent or present).
268 * If such is the case, return EINVAL in the set-flags operation if the
269 * flag differs from the read-only value.
270 */
271enum ethtool_flags {
272 ETH_FLAG_LRO = (1 << 15), /* LRO is enabled */
273};
274
Santwona Behera0853ad62008-07-02 03:47:41 -0700275struct ethtool_rxnfc {
276 __u32 cmd;
277 __u32 flow_type;
278 __u64 data;
279};
280
David Woodhousec3ce7e22006-04-29 01:53:47 +0100281#ifdef __KERNEL__
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283struct net_device;
284
285/* Some generic methods drivers may use in their ethtool_ops */
286u32 ethtool_op_get_link(struct net_device *dev);
287u32 ethtool_op_get_tx_csum(struct net_device *dev);
288int ethtool_op_set_tx_csum(struct net_device *dev, u32 data);
Jon Mason69f6a0f2005-05-29 20:27:24 -0700289int ethtool_op_set_tx_hw_csum(struct net_device *dev, u32 data);
Michael Chan6460d942007-07-14 19:07:52 -0700290int ethtool_op_set_tx_ipv6_csum(struct net_device *dev, u32 data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291u32 ethtool_op_get_sg(struct net_device *dev);
292int ethtool_op_set_sg(struct net_device *dev, u32 data);
293u32 ethtool_op_get_tso(struct net_device *dev);
294int ethtool_op_set_tso(struct net_device *dev, u32 data);
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700295u32 ethtool_op_get_ufo(struct net_device *dev);
296int ethtool_op_set_ufo(struct net_device *dev, u32 data);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700297u32 ethtool_op_get_flags(struct net_device *dev);
298int ethtool_op_set_flags(struct net_device *dev, u32 data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300/**
301 * &ethtool_ops - Alter and report network device settings
302 * get_settings: Get device-specific settings
303 * set_settings: Set device-specific settings
304 * get_drvinfo: Report driver information
305 * get_regs: Get device registers
306 * get_wol: Report whether Wake-on-Lan is enabled
307 * set_wol: Turn Wake-on-Lan on or off
308 * get_msglevel: Report driver message level
309 * set_msglevel: Set driver message level
310 * nway_reset: Restart autonegotiation
311 * get_link: Get link status
312 * get_eeprom: Read data from the device EEPROM
313 * set_eeprom: Write data to the device EEPROM
314 * get_coalesce: Get interrupt coalescing parameters
315 * set_coalesce: Set interrupt coalescing parameters
316 * get_ringparam: Report ring sizes
317 * set_ringparam: Set ring sizes
318 * get_pauseparam: Report pause parameters
Joe Perchesfd3f8982008-02-03 17:45:46 +0200319 * set_pauseparam: Set pause parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * get_rx_csum: Report whether receive checksums are turned on or off
321 * set_rx_csum: Turn receive checksum on or off
322 * get_tx_csum: Report whether transmit checksums are turned on or off
323 * set_tx_csum: Turn transmit checksums on or off
324 * get_sg: Report whether scatter-gather is enabled
325 * set_sg: Turn scatter-gather on or off
326 * get_tso: Report whether TCP segmentation offload is enabled
327 * set_tso: Turn TCP segmentation offload on or off
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700328 * get_ufo: Report whether UDP fragmentation offload is enabled
329 * set_ufo: Turn UDP fragmentation offload on or off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * self_test: Run specified self-tests
331 * get_strings: Return a set of strings that describe the requested objects
332 * phys_id: Identify the device
333 * get_stats: Return statistics about the device
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700334 * get_flags: get 32-bit flags bitmap
335 * set_flags: set 32-bit flags bitmap
Jon Wetzela6f9a702005-08-20 17:15:54 -0700336 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * Description:
338 *
339 * get_settings:
340 * @get_settings is passed an &ethtool_cmd to fill in. It returns
341 * an negative errno or zero.
342 *
343 * set_settings:
344 * @set_settings is passed an &ethtool_cmd and should attempt to set
345 * all the settings this device supports. It may return an error value
346 * if something goes wrong (otherwise 0).
347 *
348 * get_eeprom:
349 * Should fill in the magic field. Don't need to check len for zero
350 * or wraparound. Fill in the data argument with the eeprom values
351 * from offset to offset + len. Update len to the amount read.
352 * Returns an error or zero.
353 *
354 * set_eeprom:
355 * Should validate the magic field. Don't need to check len for zero
356 * or wraparound. Update len to the amount written. Returns an error
357 * or zero.
358 */
359struct ethtool_ops {
360 int (*get_settings)(struct net_device *, struct ethtool_cmd *);
361 int (*set_settings)(struct net_device *, struct ethtool_cmd *);
362 void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *);
363 int (*get_regs_len)(struct net_device *);
364 void (*get_regs)(struct net_device *, struct ethtool_regs *, void *);
365 void (*get_wol)(struct net_device *, struct ethtool_wolinfo *);
366 int (*set_wol)(struct net_device *, struct ethtool_wolinfo *);
367 u32 (*get_msglevel)(struct net_device *);
368 void (*set_msglevel)(struct net_device *, u32);
369 int (*nway_reset)(struct net_device *);
370 u32 (*get_link)(struct net_device *);
371 int (*get_eeprom_len)(struct net_device *);
372 int (*get_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *);
373 int (*set_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *);
374 int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *);
375 int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *);
376 void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *);
377 int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *);
378 void (*get_pauseparam)(struct net_device *, struct ethtool_pauseparam*);
379 int (*set_pauseparam)(struct net_device *, struct ethtool_pauseparam*);
380 u32 (*get_rx_csum)(struct net_device *);
381 int (*set_rx_csum)(struct net_device *, u32);
382 u32 (*get_tx_csum)(struct net_device *);
383 int (*set_tx_csum)(struct net_device *, u32);
384 u32 (*get_sg)(struct net_device *);
385 int (*set_sg)(struct net_device *, u32);
386 u32 (*get_tso)(struct net_device *);
387 int (*set_tso)(struct net_device *, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 void (*self_test)(struct net_device *, struct ethtool_test *, u64 *);
389 void (*get_strings)(struct net_device *, u32 stringset, u8 *);
390 int (*phys_id)(struct net_device *, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *, u64 *);
392 int (*begin)(struct net_device *);
393 void (*complete)(struct net_device *);
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700394 u32 (*get_ufo)(struct net_device *);
395 int (*set_ufo)(struct net_device *, u32);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700396 u32 (*get_flags)(struct net_device *);
397 int (*set_flags)(struct net_device *, u32);
Jeff Garzik339bf022007-08-15 16:01:32 -0700398 u32 (*get_priv_flags)(struct net_device *);
399 int (*set_priv_flags)(struct net_device *, u32);
Jeff Garzikff03d492007-08-15 16:01:08 -0700400 int (*get_sset_count)(struct net_device *, int);
401
402 /* the following hooks are obsolete */
403 int (*self_test_count)(struct net_device *);/* use get_sset_count */
404 int (*get_stats_count)(struct net_device *);/* use get_sset_count */
Santwona Behera0853ad62008-07-02 03:47:41 -0700405 int (*get_rxhash)(struct net_device *, struct ethtool_rxnfc *);
406 int (*set_rxhash)(struct net_device *, struct ethtool_rxnfc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407};
David Woodhousec3ce7e22006-04-29 01:53:47 +0100408#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410/* CMDs currently supported */
411#define ETHTOOL_GSET 0x00000001 /* Get settings. */
412#define ETHTOOL_SSET 0x00000002 /* Set settings. */
413#define ETHTOOL_GDRVINFO 0x00000003 /* Get driver info. */
414#define ETHTOOL_GREGS 0x00000004 /* Get NIC registers. */
415#define ETHTOOL_GWOL 0x00000005 /* Get wake-on-lan options. */
416#define ETHTOOL_SWOL 0x00000006 /* Set wake-on-lan options. */
417#define ETHTOOL_GMSGLVL 0x00000007 /* Get driver message level */
418#define ETHTOOL_SMSGLVL 0x00000008 /* Set driver msg level. */
419#define ETHTOOL_NWAY_RST 0x00000009 /* Restart autonegotiation. */
420#define ETHTOOL_GLINK 0x0000000a /* Get link status (ethtool_value) */
421#define ETHTOOL_GEEPROM 0x0000000b /* Get EEPROM data */
422#define ETHTOOL_SEEPROM 0x0000000c /* Set EEPROM data. */
423#define ETHTOOL_GCOALESCE 0x0000000e /* Get coalesce config */
424#define ETHTOOL_SCOALESCE 0x0000000f /* Set coalesce config. */
425#define ETHTOOL_GRINGPARAM 0x00000010 /* Get ring parameters */
426#define ETHTOOL_SRINGPARAM 0x00000011 /* Set ring parameters. */
427#define ETHTOOL_GPAUSEPARAM 0x00000012 /* Get pause parameters */
428#define ETHTOOL_SPAUSEPARAM 0x00000013 /* Set pause parameters. */
429#define ETHTOOL_GRXCSUM 0x00000014 /* Get RX hw csum enable (ethtool_value) */
430#define ETHTOOL_SRXCSUM 0x00000015 /* Set RX hw csum enable (ethtool_value) */
431#define ETHTOOL_GTXCSUM 0x00000016 /* Get TX hw csum enable (ethtool_value) */
432#define ETHTOOL_STXCSUM 0x00000017 /* Set TX hw csum enable (ethtool_value) */
433#define ETHTOOL_GSG 0x00000018 /* Get scatter-gather enable
434 * (ethtool_value) */
435#define ETHTOOL_SSG 0x00000019 /* Set scatter-gather enable
436 * (ethtool_value). */
437#define ETHTOOL_TEST 0x0000001a /* execute NIC self-test. */
438#define ETHTOOL_GSTRINGS 0x0000001b /* get specified string set */
439#define ETHTOOL_PHYS_ID 0x0000001c /* identify the NIC */
440#define ETHTOOL_GSTATS 0x0000001d /* get NIC-specific statistics */
441#define ETHTOOL_GTSO 0x0000001e /* Get TSO enable (ethtool_value) */
442#define ETHTOOL_STSO 0x0000001f /* Set TSO enable (ethtool_value) */
Jon Wetzela6f9a702005-08-20 17:15:54 -0700443#define ETHTOOL_GPERMADDR 0x00000020 /* Get permanent hardware address */
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700444#define ETHTOOL_GUFO 0x00000021 /* Get UFO enable (ethtool_value) */
445#define ETHTOOL_SUFO 0x00000022 /* Set UFO enable (ethtool_value) */
Herbert Xu37c31852006-06-22 03:07:29 -0700446#define ETHTOOL_GGSO 0x00000023 /* Get GSO enable (ethtool_value) */
447#define ETHTOOL_SGSO 0x00000024 /* Set GSO enable (ethtool_value) */
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700448#define ETHTOOL_GFLAGS 0x00000025 /* Get flags bitmap(ethtool_value) */
449#define ETHTOOL_SFLAGS 0x00000026 /* Set flags bitmap(ethtool_value) */
Jeff Garzik339bf022007-08-15 16:01:32 -0700450#define ETHTOOL_GPFLAGS 0x00000027 /* Get driver-private flags bitmap */
451#define ETHTOOL_SPFLAGS 0x00000028 /* Set driver-private flags bitmap */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Santwona Behera0853ad62008-07-02 03:47:41 -0700453#define ETHTOOL_GRXFH 0x00000029 /* Get RX flow hash configuration */
454#define ETHTOOL_SRXFH 0x0000002a /* Set RX flow hash configuration */
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/* compatibility with older code */
457#define SPARC_ETH_GSET ETHTOOL_GSET
458#define SPARC_ETH_SSET ETHTOOL_SSET
459
460/* Indicates what features are supported by the interface. */
461#define SUPPORTED_10baseT_Half (1 << 0)
462#define SUPPORTED_10baseT_Full (1 << 1)
463#define SUPPORTED_100baseT_Half (1 << 2)
464#define SUPPORTED_100baseT_Full (1 << 3)
465#define SUPPORTED_1000baseT_Half (1 << 4)
466#define SUPPORTED_1000baseT_Full (1 << 5)
467#define SUPPORTED_Autoneg (1 << 6)
468#define SUPPORTED_TP (1 << 7)
469#define SUPPORTED_AUI (1 << 8)
470#define SUPPORTED_MII (1 << 9)
471#define SUPPORTED_FIBRE (1 << 10)
472#define SUPPORTED_BNC (1 << 11)
473#define SUPPORTED_10000baseT_Full (1 << 12)
Andy Fleming00db8182005-07-30 19:31:23 -0400474#define SUPPORTED_Pause (1 << 13)
475#define SUPPORTED_Asym_Pause (1 << 14)
Michael Chan427c2192007-05-03 13:17:25 -0700476#define SUPPORTED_2500baseX_Full (1 << 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478/* Indicates what features are advertised by the interface. */
479#define ADVERTISED_10baseT_Half (1 << 0)
480#define ADVERTISED_10baseT_Full (1 << 1)
481#define ADVERTISED_100baseT_Half (1 << 2)
482#define ADVERTISED_100baseT_Full (1 << 3)
483#define ADVERTISED_1000baseT_Half (1 << 4)
484#define ADVERTISED_1000baseT_Full (1 << 5)
485#define ADVERTISED_Autoneg (1 << 6)
486#define ADVERTISED_TP (1 << 7)
487#define ADVERTISED_AUI (1 << 8)
488#define ADVERTISED_MII (1 << 9)
489#define ADVERTISED_FIBRE (1 << 10)
490#define ADVERTISED_BNC (1 << 11)
491#define ADVERTISED_10000baseT_Full (1 << 12)
Andy Fleming00db8182005-07-30 19:31:23 -0400492#define ADVERTISED_Pause (1 << 13)
493#define ADVERTISED_Asym_Pause (1 << 14)
Michael Chan427c2192007-05-03 13:17:25 -0700494#define ADVERTISED_2500baseX_Full (1 << 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496/* The following are all involved in forcing a particular link
497 * mode for the device for setting things. When getting the
498 * devices settings, these indicate the current mode and whether
499 * it was foced up into this mode or autonegotiated.
500 */
501
Michael Chan5b0c76a2005-11-04 08:45:49 -0800502/* The forced speed, 10Mb, 100Mb, gigabit, 2.5Gb, 10GbE. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503#define SPEED_10 10
504#define SPEED_100 100
505#define SPEED_1000 1000
Michael Chan5b0c76a2005-11-04 08:45:49 -0800506#define SPEED_2500 2500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507#define SPEED_10000 10000
508
509/* Duplex, half or full. */
510#define DUPLEX_HALF 0x00
511#define DUPLEX_FULL 0x01
512
513/* Which connector port. */
514#define PORT_TP 0x00
515#define PORT_AUI 0x01
516#define PORT_MII 0x02
517#define PORT_FIBRE 0x03
518#define PORT_BNC 0x04
519
520/* Which transceiver to use. */
521#define XCVR_INTERNAL 0x00
522#define XCVR_EXTERNAL 0x01
523#define XCVR_DUMMY1 0x02
524#define XCVR_DUMMY2 0x03
525#define XCVR_DUMMY3 0x04
526
527/* Enable or disable autonegotiation. If this is set to enable,
528 * the forced link modes above are completely ignored.
529 */
530#define AUTONEG_DISABLE 0x00
531#define AUTONEG_ENABLE 0x01
532
533/* Wake-On-Lan options. */
534#define WAKE_PHY (1 << 0)
535#define WAKE_UCAST (1 << 1)
536#define WAKE_MCAST (1 << 2)
537#define WAKE_BCAST (1 << 3)
538#define WAKE_ARP (1 << 4)
539#define WAKE_MAGIC (1 << 5)
540#define WAKE_MAGICSECURE (1 << 6) /* only meaningful if WAKE_MAGIC */
541
Santwona Behera0853ad62008-07-02 03:47:41 -0700542/* L3-L4 network traffic flow types */
543#define TCP_V4_FLOW 0x01
544#define UDP_V4_FLOW 0x02
545#define SCTP_V4_FLOW 0x03
546#define AH_ESP_V4_FLOW 0x04
547#define TCP_V6_FLOW 0x05
548#define UDP_V6_FLOW 0x06
549#define SCTP_V6_FLOW 0x07
550#define AH_ESP_V6_FLOW 0x08
551
552/* L3-L4 network traffic flow hash options */
553#define RXH_DEV_PORT (1 << 0)
554#define RXH_L2DA (1 << 1)
555#define RXH_VLAN (1 << 2)
556#define RXH_L3_PROTO (1 << 3)
557#define RXH_IP_SRC (1 << 4)
558#define RXH_IP_DST (1 << 5)
559#define RXH_L4_B_0_1 (1 << 6) /* src port in case of TCP/UDP/SCTP */
560#define RXH_L4_B_2_3 (1 << 7) /* dst port in case of TCP/UDP/SCTP */
561#define RXH_DISCARD (1 << 31)
562
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#endif /* _LINUX_ETHTOOL_H */