Kconfig 5.6 KB

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