Kconfig 7.7 KB

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