Kconfig 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. #
  2. # Tulip family network device configuration
  3. #
  4. menuconfig NET_TULIP
  5. bool "\"Tulip\" family network device support"
  6. depends on PCI || EISA || CARDBUS
  7. help
  8. This selects the "Tulip" family of EISA/PCI network cards.
  9. if NET_TULIP
  10. config DE2104X
  11. tristate "Early DECchip Tulip (dc2104x) PCI support (EXPERIMENTAL)"
  12. depends on PCI && EXPERIMENTAL
  13. select CRC32
  14. ---help---
  15. This driver is developed for the SMC EtherPower series Ethernet
  16. cards and also works with cards based on the DECchip
  17. 21040 (Tulip series) chips. Some LinkSys PCI cards are
  18. of this type. (If your card is NOT SMC EtherPower 10/100 PCI
  19. (smc9332dst), you can also try the driver for "Generic DECchip"
  20. cards, below. However, most people with a network card of this type
  21. will say Y here.) Do read the Ethernet-HOWTO, available from
  22. <http://www.tldp.org/docs.html#howto>.
  23. To compile this driver as a module, choose M here and read
  24. <file:Documentation/networking/net-modules.txt>. The module will
  25. be called de2104x.
  26. config TULIP
  27. tristate "DECchip Tulip (dc2114x) PCI support"
  28. depends on PCI
  29. select CRC32
  30. ---help---
  31. This driver is developed for the SMC EtherPower series Ethernet
  32. cards and also works with cards based on the DECchip
  33. 21140 (Tulip series) chips. Some LinkSys PCI cards are
  34. of this type. (If your card is NOT SMC EtherPower 10/100 PCI
  35. (smc9332dst), you can also try the driver for "Generic DECchip"
  36. cards, above. However, most people with a network card of this type
  37. will say Y here.) Do read the Ethernet-HOWTO, available from
  38. <http://www.tldp.org/docs.html#howto>.
  39. To compile this driver as a module, choose M here and read
  40. <file:Documentation/networking/net-modules.txt>. The module will
  41. be called tulip.
  42. config TULIP_MWI
  43. bool "New bus configuration (EXPERIMENTAL)"
  44. depends on TULIP && EXPERIMENTAL
  45. help
  46. This configures your Tulip card specifically for the card and
  47. system cache line size type you are using.
  48. This is experimental code, not yet tested on many boards.
  49. If unsure, say N.
  50. config TULIP_MMIO
  51. bool "Use PCI shared mem for NIC registers"
  52. depends on TULIP
  53. help
  54. Use PCI shared memory for the NIC registers, rather than going through
  55. the Tulip's PIO (programmed I/O ports). Faster, but could produce
  56. obscure bugs if your mainboard has memory controller timing issues.
  57. If in doubt, say N.
  58. config TULIP_NAPI
  59. bool "Use RX polling (NAPI)"
  60. depends on TULIP
  61. help
  62. NAPI is a new driver API designed to reduce CPU and interrupt load
  63. when the driver is receiving lots of packets from the card. It is
  64. still somewhat experimental and thus not yet enabled by default.
  65. If your estimated Rx load is 10kpps or more, or if the card will be
  66. deployed on potentially unfriendly networks (e.g. in a firewall),
  67. then say Y here.
  68. If in doubt, say N.
  69. config TULIP_NAPI_HW_MITIGATION
  70. bool "Use Interrupt Mitigation"
  71. depends on TULIP_NAPI
  72. ---help---
  73. Use HW to reduce RX interrupts. Not strictly necessary since NAPI
  74. reduces RX interrupts by itself. Interrupt mitigation reduces RX
  75. interrupts even at low levels of traffic at the cost of a small
  76. latency.
  77. If in doubt, say Y.
  78. config DE4X5
  79. tristate "Generic DECchip & DIGITAL EtherWORKS PCI/EISA"
  80. depends on PCI || EISA
  81. select CRC32
  82. ---help---
  83. This is support for the DIGITAL series of PCI/EISA Ethernet cards.
  84. These include the DE425, DE434, DE435, DE450 and DE500 models. If
  85. you have a network card of this type, say Y and read the
  86. Ethernet-HOWTO, available from
  87. <http://www.tldp.org/docs.html#howto>. More specific
  88. information is contained in
  89. <file:Documentation/networking/de4x5.txt>.
  90. To compile this driver as a module, choose M here and read
  91. <file:Documentation/networking/net-modules.txt>. The module will
  92. be called de4x5.
  93. config WINBOND_840
  94. tristate "Winbond W89c840 Ethernet support"
  95. depends on PCI
  96. select CRC32
  97. select MII
  98. help
  99. This driver is for the Winbond W89c840 chip. It also works with
  100. the TX9882 chip on the Compex RL100-ATX board.
  101. More specific information and updates are available from
  102. <http://www.scyld.com/network/drivers.html>.
  103. config DM9102
  104. tristate "Davicom DM910x/DM980x support"
  105. depends on PCI
  106. select CRC32
  107. ---help---
  108. This driver is for DM9102(A)/DM9132/DM9801 compatible PCI cards from
  109. Davicom (<http://www.davicom.com.tw/>). If you have such a network
  110. (Ethernet) card, say Y. Some information is contained in the file
  111. <file:Documentation/networking/dmfe.txt>.
  112. To compile this driver as a module, choose M here and read
  113. <file:Documentation/networking/net-modules.txt>. The module will
  114. be called dmfe.
  115. config ULI526X
  116. tristate "ULi M526x controller support"
  117. depends on PCI
  118. select CRC32
  119. ---help---
  120. This driver is for ULi M5261/M5263 10/100M Ethernet Controller
  121. (<http://www.uli.com.tw/>).
  122. To compile this driver as a module, choose M here and read
  123. <file:Documentation/networking/net-modules.txt>. The module will
  124. be called uli526x.
  125. config PCMCIA_XIRCOM
  126. tristate "Xircom CardBus support (new driver)"
  127. depends on CARDBUS
  128. ---help---
  129. This driver is for the Digital "Tulip" Ethernet CardBus adapters.
  130. It should work with most DEC 21*4*-based chips/ethercards, as well
  131. as with work-alike chips from Lite-On (PNIC) and Macronix (MXIC) and
  132. ASIX.
  133. To compile this driver as a module, choose M here and read
  134. <file:Documentation/networking/net-modules.txt>. The module will
  135. be called xircom_cb. If unsure, say N.
  136. config PCMCIA_XIRTULIP
  137. tristate "Xircom Tulip-like CardBus support (old driver)"
  138. depends on CARDBUS && BROKEN_ON_SMP
  139. select CRC32
  140. ---help---
  141. This driver is for the Digital "Tulip" Ethernet CardBus adapters.
  142. It should work with most DEC 21*4*-based chips/ethercards, as well
  143. as with work-alike chips from Lite-On (PNIC) and Macronix (MXIC) and
  144. ASIX.
  145. To compile this driver as a module, choose M here and read
  146. <file:Documentation/networking/net-modules.txt>. The module will
  147. be called xircom_tulip_cb. If unsure, say N.
  148. endif # NET_TULIP