diff options
| author | Charles Coldwell <coldwell@gmail.com> | 2013-02-21 08:25:52 -0500 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2013-06-24 19:11:13 -0500 | 
| commit | de1d786edf01035f60a87e1e0f917a4169dc6964 (patch) | |
| tree | 770e415d1040e27470598eb94d85bdc6f1729f88 /include/linux/ethtool.h | |
| parent | 5da7cf81c8d76c7b5ddf5225224141eae4e706be (diff) | |
| download | olio-uboot-2014.01-de1d786edf01035f60a87e1e0f917a4169dc6964.tar.xz olio-uboot-2014.01-de1d786edf01035f60a87e1e0f917a4169dc6964.zip | |
add support for Xilinx 1000BASE-X phy (GTX)
commit 39695029bc15041c809df3db4ba19bd729c447fa
Author: Charles Coldwell <coldwell@ll.mit.edu>
Date:   Tue Feb 19 08:27:33 2013 -0500
    Changes to support the Xilinx 1000BASE-X phy (GTX/MGT)
Signed-off-by: Charles Coldwell <coldwell@ll.mit.edu>
Diffstat (limited to 'include/linux/ethtool.h')
| -rw-r--r-- | include/linux/ethtool.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h index fcb20fe10..f6dbdb096 100644 --- a/include/linux/ethtool.h +++ b/include/linux/ethtool.h @@ -580,6 +580,8 @@ enum ethtool_sfeatures_retval_bits {  #define SUPPORTED_10000baseKX4_Full	(1 << 18)  #define SUPPORTED_10000baseKR_Full	(1 << 19)  #define SUPPORTED_10000baseR_FEC	(1 << 20) +#define SUPPORTED_1000baseX_Half	(1 << 21) +#define SUPPORTED_1000baseX_Full	(1 << 22)  /* Indicates what features are advertised by the interface. */  #define ADVERTISED_10baseT_Half		(1 << 0) @@ -603,6 +605,8 @@ enum ethtool_sfeatures_retval_bits {  #define ADVERTISED_10000baseKX4_Full	(1 << 18)  #define ADVERTISED_10000baseKR_Full	(1 << 19)  #define ADVERTISED_10000baseR_FEC	(1 << 20) +#define ADVERTISED_1000baseX_Half	(1 << 21) +#define ADVERTISED_1000baseX_Full	(1 << 22)  /* The following are all involved in forcing a particular link   * mode for the device for setting things.  When getting the |