Kconfig 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. #
  2. # Intel network device configuration
  3. #
  4. config NET_VENDOR_INTEL
  5. bool "Intel devices"
  6. default y
  7. ---help---
  8. If you have a network (Ethernet) card belonging to this class, say Y
  9. and read the Ethernet-HOWTO, available from
  10. <http://www.tldp.org/docs.html#howto>.
  11. Note that the answer to this question doesn't directly affect the
  12. kernel: saying N will just cause the configurator to skip all
  13. the questions about Intel cards. If you say Y, you will be asked for
  14. your specific card in the following questions.
  15. if NET_VENDOR_INTEL
  16. config E100
  17. tristate "Intel(R) PRO/100+ support"
  18. depends on PCI
  19. select NET_CORE
  20. select MII
  21. ---help---
  22. This driver supports Intel(R) PRO/100 family of adapters.
  23. To verify that your adapter is supported, find the board ID number
  24. on the adapter. Look for a label that has a barcode and a number
  25. in the format 123456-001 (six digits hyphen three digits).
  26. Use the above information and the Adapter & Driver ID Guide at:
  27. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  28. to identify the adapter.
  29. For the latest Intel PRO/100 network driver for Linux, see:
  30. <http://www.intel.com/p/en_US/support/highlights/network/pro100plus>
  31. More specific information on configuring the driver is in
  32. <file:Documentation/networking/e100.txt>.
  33. To compile this driver as a module, choose M here. The module
  34. will be called e100.
  35. config E1000
  36. tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
  37. depends on PCI
  38. ---help---
  39. This driver supports Intel(R) PRO/1000 gigabit ethernet family of
  40. adapters. For more information on how to identify your adapter, go
  41. to the Adapter & Driver ID Guide at:
  42. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  43. For general information and support, go to the Intel support
  44. website at:
  45. <http://support.intel.com>
  46. More specific information on configuring the driver is in
  47. <file:Documentation/networking/e1000.txt>.
  48. To compile this driver as a module, choose M here. The module
  49. will be called e1000.
  50. config E1000E
  51. tristate "Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support"
  52. depends on PCI && (!SPARC32 || BROKEN)
  53. select CRC32
  54. select PTP_1588_CLOCK
  55. ---help---
  56. This driver supports the PCI-Express Intel(R) PRO/1000 gigabit
  57. ethernet family of adapters. For PCI or PCI-X e1000 adapters,
  58. use the regular e1000 driver For more information on how to
  59. identify your adapter, go to the Adapter & Driver ID Guide at:
  60. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  61. For general information and support, go to the Intel support
  62. website at:
  63. <http://support.intel.com>
  64. To compile this driver as a module, choose M here. The module
  65. will be called e1000e.
  66. config IGB
  67. tristate "Intel(R) 82575/82576 PCI-Express Gigabit Ethernet support"
  68. depends on PCI
  69. select PTP_1588_CLOCK
  70. select I2C
  71. select I2C_ALGOBIT
  72. ---help---
  73. This driver supports Intel(R) 82575/82576 gigabit ethernet family of
  74. adapters. For more information on how to identify your adapter, go
  75. to the Adapter & Driver ID Guide at:
  76. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  77. For general information and support, go to the Intel support
  78. website at:
  79. <http://support.intel.com>
  80. More specific information on configuring the driver is in
  81. <file:Documentation/networking/e1000.txt>.
  82. To compile this driver as a module, choose M here. The module
  83. will be called igb.
  84. config IGB_HWMON
  85. bool "Intel(R) PCI-Express Gigabit adapters HWMON support"
  86. default y
  87. depends on IGB && HWMON && !(IGB=y && HWMON=m)
  88. ---help---
  89. Say Y if you want to expose thermal sensor data on Intel devices.
  90. Some of our devices contain thermal sensors, both external and internal.
  91. This data is available via the hwmon sysfs interface and exposes
  92. the onboard sensors.
  93. config IGB_DCA
  94. bool "Direct Cache Access (DCA) Support"
  95. default y
  96. depends on IGB && DCA && !(IGB=y && DCA=m)
  97. ---help---
  98. Say Y here if you want to use Direct Cache Access (DCA) in the
  99. driver. DCA is a method for warming the CPU cache before data
  100. is used, with the intent of lessening the impact of cache misses.
  101. config IGBVF
  102. tristate "Intel(R) 82576 Virtual Function Ethernet support"
  103. depends on PCI
  104. ---help---
  105. This driver supports Intel(R) 82576 virtual functions. For more
  106. information on how to identify your adapter, go to the Adapter &
  107. Driver ID Guide at:
  108. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  109. For general information and support, go to the Intel support
  110. website at:
  111. <http://support.intel.com>
  112. More specific information on configuring the driver is in
  113. <file:Documentation/networking/e1000.txt>.
  114. To compile this driver as a module, choose M here. The module
  115. will be called igbvf.
  116. config IXGB
  117. tristate "Intel(R) PRO/10GbE support"
  118. depends on PCI
  119. ---help---
  120. This driver supports Intel(R) PRO/10GbE family of adapters for
  121. PCI-X type cards. For PCI-E type cards, use the "ixgbe" driver
  122. instead. For more information on how to identify your adapter, go
  123. to the Adapter & Driver ID Guide at:
  124. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  125. For general information and support, go to the Intel support
  126. website at:
  127. <http://support.intel.com>
  128. More specific information on configuring the driver is in
  129. <file:Documentation/networking/ixgb.txt>.
  130. To compile this driver as a module, choose M here. The module
  131. will be called ixgb.
  132. config IXGBE
  133. tristate "Intel(R) 10GbE PCI Express adapters support"
  134. depends on PCI
  135. select MDIO
  136. select PTP_1588_CLOCK
  137. ---help---
  138. This driver supports Intel(R) 10GbE PCI Express family of
  139. adapters. For more information on how to identify your adapter, go
  140. to the Adapter & Driver ID Guide at:
  141. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  142. For general information and support, go to the Intel support
  143. website at:
  144. <http://support.intel.com>
  145. To compile this driver as a module, choose M here. The module
  146. will be called ixgbe.
  147. config IXGBE_HWMON
  148. bool "Intel(R) 10GbE PCI Express adapters HWMON support"
  149. default y
  150. depends on IXGBE && HWMON && !(IXGBE=y && HWMON=m)
  151. ---help---
  152. Say Y if you want to expose the thermal sensor data on some of
  153. our cards, via a hwmon sysfs interface.
  154. config IXGBE_DCA
  155. bool "Direct Cache Access (DCA) Support"
  156. default y
  157. depends on IXGBE && DCA && !(IXGBE=y && DCA=m)
  158. ---help---
  159. Say Y here if you want to use Direct Cache Access (DCA) in the
  160. driver. DCA is a method for warming the CPU cache before data
  161. is used, with the intent of lessening the impact of cache misses.
  162. config IXGBE_DCB
  163. bool "Data Center Bridging (DCB) Support"
  164. default n
  165. depends on IXGBE && DCB
  166. ---help---
  167. Say Y here if you want to use Data Center Bridging (DCB) in the
  168. driver.
  169. If unsure, say N.
  170. config IXGBEVF
  171. tristate "Intel(R) 82599 Virtual Function Ethernet support"
  172. depends on PCI_MSI
  173. ---help---
  174. This driver supports Intel(R) 82599 virtual functions. For more
  175. information on how to identify your adapter, go to the Adapter &
  176. Driver ID Guide at:
  177. <http://support.intel.com/support/network/sb/CS-008441.htm>
  178. For general information and support, go to the Intel support
  179. website at:
  180. <http://support.intel.com>
  181. More specific information on configuring the driver is in
  182. <file:Documentation/networking/ixgbevf.txt>.
  183. To compile this driver as a module, choose M here. The module
  184. will be called ixgbevf. MSI-X interrupt support is required
  185. for this driver to work correctly.
  186. endif # NET_VENDOR_INTEL