Kconfig 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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 MII
  20. ---help---
  21. This driver supports Intel(R) PRO/100 family of adapters.
  22. To verify that your adapter is supported, find the board ID number
  23. on the adapter. Look for a label that has a barcode and a number
  24. in the format 123456-001 (six digits hyphen three digits).
  25. Use the above information and the Adapter & Driver ID Guide at:
  26. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  27. to identify the adapter.
  28. For the latest Intel PRO/100 network driver for Linux, see:
  29. <http://www.intel.com/p/en_US/support/highlights/network/pro100plus>
  30. More specific information on configuring the driver is in
  31. <file:Documentation/networking/e100.txt>.
  32. To compile this driver as a module, choose M here. The module
  33. will be called e100.
  34. config E1000
  35. tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
  36. depends on PCI
  37. ---help---
  38. This driver supports Intel(R) PRO/1000 gigabit ethernet family of
  39. adapters. For more information on how to identify your adapter, go
  40. to the Adapter & Driver ID Guide at:
  41. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  42. For general information and support, go to the Intel support
  43. website at:
  44. <http://support.intel.com>
  45. More specific information on configuring the driver is in
  46. <file:Documentation/networking/e1000.txt>.
  47. To compile this driver as a module, choose M here. The module
  48. will be called e1000.
  49. config E1000E
  50. tristate "Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support"
  51. depends on PCI && (!SPARC32 || BROKEN)
  52. select CRC32
  53. select PTP_1588_CLOCK
  54. ---help---
  55. This driver supports the PCI-Express Intel(R) PRO/1000 gigabit
  56. ethernet family of adapters. For PCI or PCI-X e1000 adapters,
  57. use the regular e1000 driver For more information on how to
  58. identify your adapter, go to the Adapter & Driver ID Guide at:
  59. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  60. For general information and support, go to the Intel support
  61. website at:
  62. <http://support.intel.com>
  63. To compile this driver as a module, choose M here. The module
  64. will be called e1000e.
  65. config IGB
  66. tristate "Intel(R) 82575/82576 PCI-Express Gigabit Ethernet support"
  67. depends on PCI
  68. select PTP_1588_CLOCK
  69. select I2C
  70. select I2C_ALGOBIT
  71. ---help---
  72. This driver supports Intel(R) 82575/82576 gigabit ethernet family of
  73. adapters. For more information on how to identify your adapter, go
  74. to the Adapter & Driver ID Guide at:
  75. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  76. For general information and support, go to the Intel support
  77. website at:
  78. <http://support.intel.com>
  79. More specific information on configuring the driver is in
  80. <file:Documentation/networking/e1000.txt>.
  81. To compile this driver as a module, choose M here. The module
  82. will be called igb.
  83. config IGB_HWMON
  84. bool "Intel(R) PCI-Express Gigabit adapters HWMON support"
  85. default y
  86. depends on IGB && HWMON && !(IGB=y && HWMON=m)
  87. ---help---
  88. Say Y if you want to expose thermal sensor data on Intel devices.
  89. Some of our devices contain thermal sensors, both external and internal.
  90. This data is available via the hwmon sysfs interface and exposes
  91. the onboard sensors.
  92. config IGB_DCA
  93. bool "Direct Cache Access (DCA) Support"
  94. default y
  95. depends on IGB && DCA && !(IGB=y && DCA=m)
  96. ---help---
  97. Say Y here if you want to use Direct Cache Access (DCA) in the
  98. driver. DCA is a method for warming the CPU cache before data
  99. is used, with the intent of lessening the impact of cache misses.
  100. config IGBVF
  101. tristate "Intel(R) 82576 Virtual Function Ethernet support"
  102. depends on PCI
  103. ---help---
  104. This driver supports Intel(R) 82576 virtual functions. For more
  105. information on how to identify your adapter, go to the Adapter &
  106. Driver ID Guide at:
  107. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  108. For general information and support, go to the Intel support
  109. website at:
  110. <http://support.intel.com>
  111. More specific information on configuring the driver is in
  112. <file:Documentation/networking/e1000.txt>.
  113. To compile this driver as a module, choose M here. The module
  114. will be called igbvf.
  115. config IXGB
  116. tristate "Intel(R) PRO/10GbE support"
  117. depends on PCI
  118. ---help---
  119. This driver supports Intel(R) PRO/10GbE family of adapters for
  120. PCI-X type cards. For PCI-E type cards, use the "ixgbe" driver
  121. instead. For more information on how to identify your adapter, go
  122. to the Adapter & Driver ID Guide at:
  123. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  124. For general information and support, go to the Intel support
  125. website at:
  126. <http://support.intel.com>
  127. More specific information on configuring the driver is in
  128. <file:Documentation/networking/ixgb.txt>.
  129. To compile this driver as a module, choose M here. The module
  130. will be called ixgb.
  131. config IXGBE
  132. tristate "Intel(R) 10GbE PCI Express adapters support"
  133. depends on PCI
  134. select MDIO
  135. select PTP_1588_CLOCK
  136. ---help---
  137. This driver supports Intel(R) 10GbE PCI Express family of
  138. adapters. For more information on how to identify your adapter, go
  139. to the Adapter & Driver ID Guide at:
  140. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  141. For general information and support, go to the Intel support
  142. website at:
  143. <http://support.intel.com>
  144. To compile this driver as a module, choose M here. The module
  145. will be called ixgbe.
  146. config IXGBE_VXLAN
  147. bool "Virtual eXtensible Local Area Network Support"
  148. default n
  149. depends on IXGBE && VXLAN && !(IXGBE=y && VXLAN=m)
  150. ---help---
  151. This allows one to create VXLAN virtual interfaces that provide
  152. Layer 2 Networks over Layer 3 Networks. VXLAN is often used
  153. to tunnel virtual network infrastructure in virtualized environments.
  154. Say Y here if you want to use Virtual eXtensible Local Area Network
  155. (VXLAN) in the driver.
  156. config IXGBE_HWMON
  157. bool "Intel(R) 10GbE PCI Express adapters HWMON support"
  158. default y
  159. depends on IXGBE && HWMON && !(IXGBE=y && HWMON=m)
  160. ---help---
  161. Say Y if you want to expose the thermal sensor data on some of
  162. our cards, via a hwmon sysfs interface.
  163. config IXGBE_DCA
  164. bool "Direct Cache Access (DCA) Support"
  165. default y
  166. depends on IXGBE && DCA && !(IXGBE=y && DCA=m)
  167. ---help---
  168. Say Y here if you want to use Direct Cache Access (DCA) in the
  169. driver. DCA is a method for warming the CPU cache before data
  170. is used, with the intent of lessening the impact of cache misses.
  171. config IXGBE_DCB
  172. bool "Data Center Bridging (DCB) Support"
  173. default n
  174. depends on IXGBE && DCB
  175. ---help---
  176. Say Y here if you want to use Data Center Bridging (DCB) in the
  177. driver.
  178. If unsure, say N.
  179. config IXGBEVF
  180. tristate "Intel(R) 10GbE PCI Express Virtual Function Ethernet support"
  181. depends on PCI_MSI
  182. ---help---
  183. This driver supports Intel(R) PCI Express virtual functions for the
  184. Intel(R) ixgbe driver. For more information on how to identify your
  185. adapter, go to the Adapter & Driver ID Guide at:
  186. <http://support.intel.com/support/network/sb/CS-008441.htm>
  187. For general information and support, go to the Intel support
  188. website at:
  189. <http://support.intel.com>
  190. More specific information on configuring the driver is in
  191. <file:Documentation/networking/ixgbevf.txt>.
  192. To compile this driver as a module, choose M here. The module
  193. will be called ixgbevf. MSI-X interrupt support is required
  194. for this driver to work correctly.
  195. config I40E
  196. tristate "Intel(R) Ethernet Controller XL710 Family support"
  197. select PTP_1588_CLOCK
  198. depends on PCI
  199. ---help---
  200. This driver supports Intel(R) Ethernet Controller XL710 Family of
  201. devices. For more information on how to identify your adapter, go
  202. to the Adapter & Driver ID Guide at:
  203. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  204. For general information and support, go to the Intel support
  205. website at:
  206. <http://support.intel.com>
  207. To compile this driver as a module, choose M here. The module
  208. will be called i40e.
  209. config I40E_VXLAN
  210. bool "Virtual eXtensible Local Area Network Support"
  211. default n
  212. depends on I40E && VXLAN && !(I40E=y && VXLAN=m)
  213. ---help---
  214. This allows one to create VXLAN virtual interfaces that provide
  215. Layer 2 Networks over Layer 3 Networks. VXLAN is often used
  216. to tunnel virtual network infrastructure in virtualized environments.
  217. Say Y here if you want to use Virtual eXtensible Local Area Network
  218. (VXLAN) in the driver.
  219. config I40E_DCB
  220. bool "Data Center Bridging (DCB) Support"
  221. default n
  222. depends on I40E && DCB
  223. ---help---
  224. Say Y here if you want to use Data Center Bridging (DCB) in the
  225. driver.
  226. If unsure, say N.
  227. config I40E_FCOE
  228. bool "Fibre Channel over Ethernet (FCoE)"
  229. default n
  230. depends on I40E && DCB && FCOE
  231. ---help---
  232. Say Y here if you want to use Fibre Channel over Ethernet (FCoE)
  233. in the driver. This will create new netdev for exclusive FCoE
  234. use with XL710 FCoE offloads enabled.
  235. If unsure, say N.
  236. config I40EVF
  237. tristate "Intel(R) XL710 X710 Virtual Function Ethernet support"
  238. depends on PCI_MSI
  239. ---help---
  240. This driver supports Intel(R) XL710 and X710 virtual functions.
  241. For more information on how to identify your adapter, go to the
  242. Adapter & Driver ID Guide at:
  243. <http://support.intel.com/support/network/sb/CS-008441.htm>
  244. For general information and support, go to the Intel support
  245. website at:
  246. <http://support.intel.com>
  247. To compile this driver as a module, choose M here. The module
  248. will be called i40evf. MSI-X interrupt support is required
  249. for this driver to work correctly.
  250. config FM10K
  251. tristate "Intel(R) FM10000 Ethernet Switch Host Interface Support"
  252. default n
  253. depends on PCI_MSI
  254. select PTP_1588_CLOCK
  255. ---help---
  256. This driver supports Intel(R) FM10000 Ethernet Switch Host
  257. Interface. For more information on how to identify your adapter,
  258. go to the Adapter & Driver ID Guide at:
  259. <http://support.intel.com/support/network/sb/CS-008441.htm>
  260. For general information and support, go to the Intel support
  261. website at:
  262. <http://support.intel.com>
  263. To compile this driver as a module, choose M here. The module
  264. will be called fm10k. MSI-X interrupt support is required
  265. config FM10K_VXLAN
  266. bool "Virtual eXtensible Local Area Network Support"
  267. default n
  268. depends on FM10K && VXLAN && !(FM10K=y && VXLAN=m)
  269. ---help---
  270. This allows one to create VXLAN virtual interfaces that provide
  271. Layer 2 Networks over Layer 3 Networks. VXLAN is often used
  272. to tunnel virtual network infrastructure in virtualized environments.
  273. Say Y here if you want to use Virtual eXtensible Local Area Network
  274. (VXLAN) in the driver.
  275. endif # NET_VENDOR_INTEL