Kconfig 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Tulip family network device configuration
  4. #
  5. config NET_TULIP
  6. bool "DEC - Tulip devices"
  7. depends on (PCI || EISA || CARDBUS)
  8. help
  9. This selects the "Tulip" family of EISA/PCI network cards.
  10. if NET_TULIP
  11. config DE2104X
  12. tristate "Early DECchip Tulip (dc2104x) PCI support"
  13. depends on PCI
  14. select CRC32
  15. help
  16. This driver is developed for the SMC EtherPower series Ethernet
  17. cards and also works with cards based on the DECchip
  18. 21040 (Tulip series) chips. Some LinkSys PCI cards are
  19. of this type. (If your card is NOT SMC EtherPower 10/100 PCI
  20. (smc9332dst), you can also try the driver for "Generic DECchip"
  21. cards, below. However, most people with a network card of this type
  22. will say Y here.)
  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.)
  48. To compile this driver as a module, choose M here. The module will
  49. be called tulip.
  50. config TULIP_MWI
  51. bool "New bus configuration"
  52. depends on TULIP
  53. help
  54. This configures your Tulip card specifically for the card and
  55. system cache line size type you are using.
  56. This is experimental code, not yet tested on many boards.
  57. If unsure, say N.
  58. config TULIP_MMIO
  59. bool "Use PCI shared mem for NIC registers"
  60. depends on TULIP
  61. help
  62. Use PCI shared memory for the NIC registers, rather than going through
  63. the Tulip's PIO (programmed I/O ports). Faster, but could produce
  64. obscure bugs if your mainboard has memory controller timing issues.
  65. If in doubt, say N.
  66. config TULIP_NAPI
  67. bool "Use RX polling (NAPI)"
  68. depends on TULIP
  69. help
  70. NAPI is a new driver API designed to reduce CPU and interrupt load
  71. when the driver is receiving lots of packets from the card. It is
  72. still somewhat experimental and thus not yet enabled by default.
  73. If your estimated Rx load is 10kpps or more, or if the card will be
  74. deployed on potentially unfriendly networks (e.g. in a firewall),
  75. then say Y here.
  76. If in doubt, say N.
  77. config TULIP_NAPI_HW_MITIGATION
  78. bool "Use Interrupt Mitigation"
  79. depends on TULIP_NAPI
  80. help
  81. Use HW to reduce RX interrupts. Not strictly necessary since NAPI
  82. reduces RX interrupts by itself. Interrupt mitigation reduces RX
  83. interrupts even at low levels of traffic at the cost of a small
  84. latency.
  85. If in doubt, say Y.
  86. config TULIP_DM910X
  87. def_bool y
  88. depends on TULIP && SPARC
  89. config WINBOND_840
  90. tristate "Winbond W89c840 Ethernet support"
  91. depends on PCI
  92. select CRC32
  93. select MII
  94. help
  95. This driver is for the Winbond W89c840 chip. It also works with
  96. the TX9882 chip on the Compex RL100-ATX board.
  97. More specific information and updates are available from
  98. <http://www.scyld.com/network/drivers.html>.
  99. config DM9102
  100. tristate "Davicom DM910x/DM980x support"
  101. depends on PCI
  102. select CRC32
  103. help
  104. This driver is for DM9102(A)/DM9132/DM9801 compatible PCI cards from
  105. Davicom (<http://www.davicom.com.tw/>). If you have such a network
  106. (Ethernet) card, say Y. Some information is contained in the file
  107. <file:Documentation/networking/device_drivers/ethernet/dec/dmfe.rst>.
  108. To compile this driver as a module, choose M here. The module will
  109. be called dmfe.
  110. config ULI526X
  111. tristate "ULi M526x controller support"
  112. depends on PCI
  113. select CRC32
  114. help
  115. This driver is for ULi M5261/M5263 10/100M Ethernet Controller
  116. (<http://www.nvidia.com/page/uli_drivers.html>).
  117. To compile this driver as a module, choose M here. The module will
  118. be called uli526x.
  119. config PCMCIA_XIRCOM
  120. tristate "Xircom CardBus support"
  121. depends on CARDBUS
  122. help
  123. This driver is for the Digital "Tulip" Ethernet CardBus adapters.
  124. It should work with most DEC 21*4*-based chips/ethercards, as well
  125. as with work-alike chips from Lite-On (PNIC) and Macronix (MXIC) and
  126. ASIX.
  127. To compile this driver as a module, choose M here. The module will
  128. be called xircom_cb. If unsure, say N.
  129. endif # NET_TULIP