ethtool.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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@mandrakesoft.com>
  6.  * Portions Copyright 2001 Sun Microsystems (thockin@sun.com)
  7.  */
  8. #ifndef _LINUX_ETHTOOL_H
  9. #define _LINUX_ETHTOOL_H
  10. /* This should work for both 32 and 64 bit userland. */
  11. struct ethtool_cmd {
  12. u32 cmd;
  13. u32 supported; /* Features this interface supports */
  14. u32 advertising; /* Features this interface advertises */
  15. u16 speed; /* The forced speed, 10Mb, 100Mb, gigabit */
  16. u8 duplex; /* Duplex, half or full */
  17. u8 port; /* Which connector port */
  18. u8 phy_address;
  19. u8 transceiver; /* Which tranceiver to use */
  20. u8 autoneg; /* Enable or disable autonegotiation */
  21. u32 maxtxpkt; /* Tx pkts before generating tx int */
  22. u32 maxrxpkt; /* Rx pkts before generating rx int */
  23. u32 reserved[4];
  24. };
  25. #define ETHTOOL_BUSINFO_LEN 32
  26. /* these strings are set to whatever the driver author decides... */
  27. struct ethtool_drvinfo {
  28. u32 cmd;
  29. char driver[32]; /* driver short name, "tulip", "eepro100" */
  30. char version[32]; /* driver version string */
  31. char fw_version[32]; /* firmware version string, if applicable */
  32. char bus_info[ETHTOOL_BUSINFO_LEN]; /* Bus info for this IF. */
  33. /* For PCI devices, use pci_dev->slot_name. */
  34. char reserved1[32];
  35. char reserved2[24];
  36. u32 eedump_len; /* Size of data from ETHTOOL_GEEPROM (bytes) */
  37. u32 regdump_len; /* Size of data from ETHTOOL_GREGS (bytes) */
  38. };
  39. #define SOPASS_MAX 6
  40. /* wake-on-lan settings */
  41. struct ethtool_wolinfo {
  42. u32 cmd;
  43. u32 supported;
  44. u32 wolopts;
  45. u8 sopass[SOPASS_MAX]; /* SecureOn(tm) password */
  46. };
  47. /* for passing single values */
  48. struct ethtool_value {
  49. u32 cmd;
  50. u32 data;
  51. };
  52. /* for passing big chunks of data */
  53. struct ethtool_regs {
  54. u32 cmd;
  55. u32 version; /* driver-specific, indicates different chips/revs */
  56. u32 len; /* bytes */
  57. u8 data[0];
  58. };
  59. /* for passing EEPROM chunks */
  60. struct ethtool_eeprom {
  61. u32 cmd;
  62. u32 magic;
  63. u32 offset; /* in bytes */
  64. u32 len; /* in bytes */
  65. u8 data[0];
  66. };
  67. /* CMDs currently supported */
  68. #define ETHTOOL_GSET 0x00000001 /* Get settings. */
  69. #define ETHTOOL_SSET 0x00000002 /* Set settings, privileged. */
  70. #define ETHTOOL_GDRVINFO 0x00000003 /* Get driver info. */
  71. #define ETHTOOL_GREGS 0x00000004 /* Get NIC registers, privileged. */
  72. #define ETHTOOL_GWOL 0x00000005 /* Get wake-on-lan options. */
  73. #define ETHTOOL_SWOL 0x00000006 /* Set wake-on-lan options, priv. */
  74. #define ETHTOOL_GMSGLVL 0x00000007 /* Get driver message level */
  75. #define ETHTOOL_SMSGLVL 0x00000008 /* Set driver msg level, priv. */
  76. #define ETHTOOL_NWAY_RST 0x00000009 /* Restart autonegotiation, priv. */
  77. #define ETHTOOL_GLINK 0x0000000a /* Get link status */
  78. #define ETHTOOL_GEEPROM 0x0000000b /* Get EEPROM data */
  79. #define ETHTOOL_SEEPROM 0x0000000c /* Set EEPROM data */
  80. /* compatibility with older code */
  81. #define SPARC_ETH_GSET ETHTOOL_GSET
  82. #define SPARC_ETH_SSET ETHTOOL_SSET
  83. /* Indicates what features are supported by the interface. */
  84. #define SUPPORTED_10baseT_Half (1 << 0)
  85. #define SUPPORTED_10baseT_Full (1 << 1)
  86. #define SUPPORTED_100baseT_Half (1 << 2)
  87. #define SUPPORTED_100baseT_Full (1 << 3)
  88. #define SUPPORTED_1000baseT_Half (1 << 4)
  89. #define SUPPORTED_1000baseT_Full (1 << 5)
  90. #define SUPPORTED_Autoneg (1 << 6)
  91. #define SUPPORTED_TP (1 << 7)
  92. #define SUPPORTED_AUI (1 << 8)
  93. #define SUPPORTED_MII (1 << 9)
  94. #define SUPPORTED_FIBRE (1 << 10)
  95. #define SUPPORTED_BNC (1 << 11)
  96. /* Indicates what features are advertised by the interface. */
  97. #define ADVERTISED_10baseT_Half (1 << 0)
  98. #define ADVERTISED_10baseT_Full (1 << 1)
  99. #define ADVERTISED_100baseT_Half (1 << 2)
  100. #define ADVERTISED_100baseT_Full (1 << 3)
  101. #define ADVERTISED_1000baseT_Half (1 << 4)
  102. #define ADVERTISED_1000baseT_Full (1 << 5)
  103. #define ADVERTISED_Autoneg (1 << 6)
  104. #define ADVERTISED_TP (1 << 7)
  105. #define ADVERTISED_AUI (1 << 8)
  106. #define ADVERTISED_MII (1 << 9)
  107. #define ADVERTISED_FIBRE (1 << 10)
  108. #define ADVERTISED_BNC (1 << 11)
  109. /* The following are all involved in forcing a particular link
  110.  * mode for the device for setting things.  When getting the
  111.  * devices settings, these indicate the current mode and whether
  112.  * it was foced up into this mode or autonegotiated.
  113.  */
  114. /* The forced speed, 10Mb, 100Mb, gigabit. */
  115. #define SPEED_10 10
  116. #define SPEED_100 100
  117. #define SPEED_1000 1000
  118. /* Duplex, half or full. */
  119. #define DUPLEX_HALF 0x00
  120. #define DUPLEX_FULL 0x01
  121. /* Which connector port. */
  122. #define PORT_TP 0x00
  123. #define PORT_AUI 0x01
  124. #define PORT_MII 0x02
  125. #define PORT_FIBRE 0x03
  126. #define PORT_BNC 0x04
  127. /* Which tranceiver to use. */
  128. #define XCVR_INTERNAL 0x00
  129. #define XCVR_EXTERNAL 0x01
  130. #define XCVR_DUMMY1 0x02
  131. #define XCVR_DUMMY2 0x03
  132. #define XCVR_DUMMY3 0x04
  133. /* Enable or disable autonegotiation.  If this is set to enable,
  134.  * the forced link modes above are completely ignored.
  135.  */
  136. #define AUTONEG_DISABLE 0x00
  137. #define AUTONEG_ENABLE 0x01
  138. /* Wake-On-Lan options. */
  139. #define WAKE_PHY (1 << 0)
  140. #define WAKE_UCAST (1 << 1)
  141. #define WAKE_MCAST (1 << 2)
  142. #define WAKE_BCAST (1 << 3)
  143. #define WAKE_ARP (1 << 4)
  144. #define WAKE_MAGIC (1 << 5)
  145. #define WAKE_MAGICSECURE (1 << 6) /* only meaningful if WAKE_MAGIC */
  146. #endif /* _LINUX_ETHTOOL_H */