Kconfig 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. #
  2. # Intel network device configuration
  3. #
  4. config NET_VENDOR_INTEL
  5. bool "Intel devices"
  6. depends on PCI || PCI_MSI
  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. ---help---
  54. This driver supports the PCI-Express Intel(R) PRO/1000 gigabit
  55. ethernet family of adapters. For PCI or PCI-X e1000 adapters,
  56. use the regular e1000 driver For more information on how to
  57. identify your adapter, go to the Adapter & Driver ID Guide at:
  58. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  59. For general information and support, go to the Intel support
  60. website at:
  61. <http://support.intel.com>
  62. To compile this driver as a module, choose M here. The module
  63. will be called e1000e.
  64. config IGB
  65. tristate "Intel(R) 82575/82576 PCI-Express Gigabit Ethernet support"
  66. depends on PCI
  67. ---help---
  68. This driver supports Intel(R) 82575/82576 gigabit ethernet family of
  69. adapters. For more information on how to identify your adapter, go
  70. to the Adapter & Driver ID Guide at:
  71. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  72. For general information and support, go to the Intel support
  73. website at:
  74. <http://support.intel.com>
  75. More specific information on configuring the driver is in
  76. <file:Documentation/networking/e1000.txt>.
  77. To compile this driver as a module, choose M here. The module
  78. will be called igb.
  79. config IGB_DCA
  80. bool "Direct Cache Access (DCA) Support"
  81. default y
  82. depends on IGB && DCA && !(IGB=y && DCA=m)
  83. ---help---
  84. Say Y here if you want to use Direct Cache Access (DCA) in the
  85. driver. DCA is a method for warming the CPU cache before data
  86. is used, with the intent of lessening the impact of cache misses.
  87. config IGBVF
  88. tristate "Intel(R) 82576 Virtual Function Ethernet support"
  89. depends on PCI
  90. ---help---
  91. This driver supports Intel(R) 82576 virtual functions. For more
  92. information on how to identify your adapter, go to the Adapter &
  93. Driver ID Guide at:
  94. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  95. For general information and support, go to the Intel support
  96. website at:
  97. <http://support.intel.com>
  98. More specific information on configuring the driver is in
  99. <file:Documentation/networking/e1000.txt>.
  100. To compile this driver as a module, choose M here. The module
  101. will be called igbvf.
  102. config IXGB
  103. tristate "Intel(R) PRO/10GbE support"
  104. depends on PCI
  105. ---help---
  106. This driver supports Intel(R) PRO/10GbE family of adapters for
  107. PCI-X type cards. For PCI-E type cards, use the "ixgbe" driver
  108. instead. For more information on how to identify your adapter, go
  109. to the Adapter & Driver ID Guide at:
  110. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  111. For general information and support, go to the Intel support
  112. website at:
  113. <http://support.intel.com>
  114. More specific information on configuring the driver is in
  115. <file:Documentation/networking/ixgb.txt>.
  116. To compile this driver as a module, choose M here. The module
  117. will be called ixgb.
  118. config IXGBE
  119. tristate "Intel(R) 10GbE PCI Express adapters support"
  120. depends on PCI && INET
  121. select MDIO
  122. ---help---
  123. This driver supports Intel(R) 10GbE PCI Express family of
  124. adapters. For more information on how to identify your adapter, go
  125. to the Adapter & Driver ID Guide at:
  126. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  127. For general information and support, go to the Intel support
  128. website at:
  129. <http://support.intel.com>
  130. To compile this driver as a module, choose M here. The module
  131. will be called ixgbe.
  132. config IXGBE_DCA
  133. bool "Direct Cache Access (DCA) Support"
  134. default y
  135. depends on IXGBE && DCA && !(IXGBE=y && DCA=m)
  136. ---help---
  137. Say Y here if you want to use Direct Cache Access (DCA) in the
  138. driver. DCA is a method for warming the CPU cache before data
  139. is used, with the intent of lessening the impact of cache misses.
  140. config IXGBE_DCB
  141. bool "Data Center Bridging (DCB) Support"
  142. default n
  143. depends on IXGBE && DCB
  144. ---help---
  145. Say Y here if you want to use Data Center Bridging (DCB) in the
  146. driver.
  147. If unsure, say N.
  148. config IXGBEVF
  149. tristate "Intel(R) 82599 Virtual Function Ethernet support"
  150. depends on PCI_MSI
  151. ---help---
  152. This driver supports Intel(R) 82599 virtual functions. For more
  153. information on how to identify your adapter, go to the Adapter &
  154. Driver ID Guide at:
  155. <http://support.intel.com/support/network/sb/CS-008441.htm>
  156. For general information and support, go to the Intel support
  157. website at:
  158. <http://support.intel.com>
  159. More specific information on configuring the driver is in
  160. <file:Documentation/networking/ixgbevf.txt>.
  161. To compile this driver as a module, choose M here. The module
  162. will be called ixgbevf. MSI-X interrupt support is required
  163. for this driver to work correctly.
  164. endif # NET_VENDOR_INTEL