Kconfig 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # ATM device configuration
  4. #
  5. menuconfig ATM_DRIVERS
  6. bool "ATM drivers"
  7. depends on NETDEVICES && ATM
  8. default y
  9. help
  10. Say Y here to get to see options for Asynchronous Transfer Mode
  11. device drivers. This option alone does not add any kernel code.
  12. If you say N, all options in this submenu will be skipped and disabled.
  13. if ATM_DRIVERS && NETDEVICES && ATM
  14. config ATM_DUMMY
  15. tristate "Dummy ATM driver"
  16. help
  17. Dummy ATM driver. Useful for proxy signalling, testing,
  18. and development. If unsure, say N.
  19. config ATM_TCP
  20. tristate "ATM over TCP"
  21. depends on INET
  22. help
  23. ATM over TCP driver. Useful mainly for development and for
  24. experiments. If unsure, say N.
  25. config ATM_LANAI
  26. tristate "Efficient Networks Speedstream 3010"
  27. depends on PCI && ATM
  28. help
  29. Supports ATM cards based on the Efficient Networks "Lanai"
  30. chipset such as the Speedstream 3010 and the ENI-25p. The
  31. Speedstream 3060 is currently not supported since we don't
  32. have the code to drive the on-board Alcatel DSL chipset (yet).
  33. config ATM_ENI
  34. tristate "Efficient Networks ENI155P"
  35. depends on PCI
  36. help
  37. Driver for the Efficient Networks ENI155p series and SMC ATM
  38. Power155 155 Mbps ATM adapters. Both, the versions with 512KB and
  39. 2MB on-board RAM (Efficient calls them "C" and "S", respectively),
  40. and the FPGA and the ASIC Tonga versions of the board are supported.
  41. The driver works with MMF (-MF or ...F) and UTP-5 (-U5 or ...D)
  42. adapters.
  43. To compile this driver as a module, choose M here: the module will
  44. be called eni.
  45. config ATM_ENI_DEBUG
  46. bool "Enable extended debugging"
  47. depends on ATM_ENI
  48. help
  49. Extended debugging records various events and displays that list
  50. when an inconsistency is detected. This mechanism is faster than
  51. generally using printks, but still has some impact on performance.
  52. Note that extended debugging may create certain race conditions
  53. itself. Enable this ONLY if you suspect problems with the driver.
  54. config ATM_ENI_TUNE_BURST
  55. bool "Fine-tune burst settings"
  56. depends on ATM_ENI
  57. help
  58. In order to obtain good throughput, the ENI NIC can transfer
  59. multiple words of data per PCI bus access cycle. Such a multi-word
  60. transfer is called a burst.
  61. The default settings for the burst sizes are suitable for most PCI
  62. chipsets. However, in some cases, large bursts may overrun buffers
  63. in the PCI chipset and cause data corruption. In such cases, large
  64. bursts must be disabled and only (slower) small bursts can be used.
  65. The burst sizes can be set independently in the send (TX) and
  66. receive (RX) direction.
  67. Note that enabling many different burst sizes in the same direction
  68. may increase the cost of setting up a transfer such that the
  69. resulting throughput is lower than when using only the largest
  70. available burst size.
  71. Also, sometimes larger bursts lead to lower throughput, e.g. on an
  72. Intel 440FX board, a drop from 135 Mbps to 103 Mbps was observed
  73. when going from 8W to 16W bursts.
  74. config ATM_ENI_BURST_TX_16W
  75. bool "Enable 16W TX bursts (discouraged)"
  76. depends on ATM_ENI_TUNE_BURST
  77. help
  78. Burst sixteen words at once in the send direction. This may work
  79. with recent PCI chipsets, but is known to fail with older chipsets.
  80. config ATM_ENI_BURST_TX_8W
  81. bool "Enable 8W TX bursts (recommended)"
  82. depends on ATM_ENI_TUNE_BURST
  83. help
  84. Burst eight words at once in the send direction. This is the default
  85. setting.
  86. config ATM_ENI_BURST_TX_4W
  87. bool "Enable 4W TX bursts (optional)"
  88. depends on ATM_ENI_TUNE_BURST
  89. help
  90. Burst four words at once in the send direction. You may want to try
  91. this if you have disabled 8W bursts. Enabling 4W if 8W is also set
  92. may or may not improve throughput.
  93. config ATM_ENI_BURST_TX_2W
  94. bool "Enable 2W TX bursts (optional)"
  95. depends on ATM_ENI_TUNE_BURST
  96. help
  97. Burst two words at once in the send direction. You may want to try
  98. this if you have disabled 4W and 8W bursts. Enabling 2W if 4W or 8W
  99. are also set may or may not improve throughput.
  100. config ATM_ENI_BURST_RX_16W
  101. bool "Enable 16W RX bursts (discouraged)"
  102. depends on ATM_ENI_TUNE_BURST
  103. help
  104. Burst sixteen words at once in the receive direction. This may work
  105. with recent PCI chipsets, but is known to fail with older chipsets.
  106. config ATM_ENI_BURST_RX_8W
  107. bool "Enable 8W RX bursts (discouraged)"
  108. depends on ATM_ENI_TUNE_BURST
  109. help
  110. Burst eight words at once in the receive direction. This may work
  111. with recent PCI chipsets, but is known to fail with older chipsets,
  112. such as the Intel Neptune series.
  113. config ATM_ENI_BURST_RX_4W
  114. bool "Enable 4W RX bursts (recommended)"
  115. depends on ATM_ENI_TUNE_BURST
  116. help
  117. Burst four words at once in the receive direction. This is the
  118. default setting. Enabling 4W if 8W is also set may or may not
  119. improve throughput.
  120. config ATM_ENI_BURST_RX_2W
  121. bool "Enable 2W RX bursts (optional)"
  122. depends on ATM_ENI_TUNE_BURST
  123. help
  124. Burst two words at once in the receive direction. You may want to
  125. try this if you have disabled 4W and 8W bursts. Enabling 2W if 4W or
  126. 8W are also set may or may not improve throughput.
  127. config ATM_NICSTAR
  128. tristate "IDT 77201 (NICStAR) (ForeRunnerLE)"
  129. depends on PCI
  130. help
  131. The NICStAR chipset family is used in a large number of ATM NICs for
  132. 25 and for 155 Mbps, including IDT cards and the Fore ForeRunnerLE
  133. series. Say Y if you have one of those.
  134. To compile this driver as a module, choose M here: the module will
  135. be called nicstar.
  136. config ATM_NICSTAR_USE_SUNI
  137. bool "Use suni PHY driver (155Mbps)"
  138. depends on ATM_NICSTAR
  139. help
  140. Support for the S-UNI and compatible PHYsical layer chips. These are
  141. found in most 155Mbps NICStAR based ATM cards, namely in the
  142. ForeRunner LE155 cards. This driver provides detection of cable~
  143. removal and reinsertion and provides some statistics. This driver
  144. doesn't have removal capability when compiled as a module, so if you
  145. need that capability don't include S-UNI support (it's not needed to
  146. make the card work).
  147. config ATM_NICSTAR_USE_IDT77105
  148. bool "Use IDT77105 PHY driver (25Mbps)"
  149. depends on ATM_NICSTAR
  150. help
  151. Support for the PHYsical layer chip in ForeRunner LE25 cards. In
  152. addition to cable removal/reinsertion detection, this driver allows
  153. you to control the loopback mode of the chip via a dedicated IOCTL.
  154. This driver is required for proper handling of temporary carrier
  155. loss, so if you have a 25Mbps NICStAR based ATM card you must say Y.
  156. config ATM_IDT77252
  157. tristate "IDT 77252 (NICStAR II)"
  158. depends on PCI
  159. help
  160. Driver for the IDT 77252 ATM PCI chips.
  161. To compile this driver as a module, choose M here: the module will
  162. be called idt77252.
  163. config ATM_IDT77252_DEBUG
  164. bool "Enable debugging messages"
  165. depends on ATM_IDT77252
  166. help
  167. Somewhat useful debugging messages are available. The choice of
  168. messages is controlled by a bitmap. This may be specified as a
  169. module argument. See the file <file:drivers/atm/idt77252.h> for
  170. the meanings of the bits in the mask.
  171. When active, these messages can have a significant impact on the
  172. speed of the driver, and the size of your syslog files! When
  173. inactive, they will have only a modest impact on performance.
  174. config ATM_IDT77252_RCV_ALL
  175. bool "Receive ALL cells in raw queue"
  176. depends on ATM_IDT77252
  177. help
  178. Enable receiving of all cells on the ATM link, that do not match
  179. an open connection in the raw cell queue of the driver. Useful
  180. for debugging or special applications only, so the safe answer is N.
  181. config ATM_IDT77252_USE_SUNI
  182. bool
  183. depends on ATM_IDT77252
  184. default y
  185. config ATM_IA
  186. tristate "Interphase ATM PCI x575/x525/x531"
  187. depends on PCI
  188. help
  189. This is a driver for the Interphase (i)ChipSAR adapter cards
  190. which include a variety of variants in term of the size of the
  191. control memory (128K-1KVC, 512K-4KVC), the size of the packet
  192. memory (128K, 512K, 1M), and the PHY type (Single/Multi mode OC3,
  193. UTP155, UTP25, DS3 and E3). Go to:
  194. <http://www.iphase.com/>
  195. for more info about the cards. Say Y (or M to compile as a module
  196. named iphase) here if you have one of these cards.
  197. See the file
  198. <file:Documentation/networking/device_drivers/atm/iphase.rst>
  199. for further details.
  200. config ATM_IA_DEBUG
  201. bool "Enable debugging messages"
  202. depends on ATM_IA
  203. help
  204. Somewhat useful debugging messages are available. The choice of
  205. messages is controlled by a bitmap. This may be specified as a
  206. module argument (kernel command line argument as well?), changed
  207. dynamically using an ioctl (Get the debug utility, iadbg, from
  208. <ftp://ftp.iphase.com/pub/atm/pci/>).
  209. See the file <file:drivers/atm/iphase.h> for the meanings of the
  210. bits in the mask.
  211. When active, these messages can have a significant impact on the
  212. speed of the driver, and the size of your syslog files! When
  213. inactive, they will have only a modest impact on performance.
  214. config ATM_FORE200E
  215. tristate "FORE Systems 200E-series"
  216. depends on (PCI || SBUS)
  217. select FW_LOADER
  218. help
  219. This is a driver for the FORE Systems 200E-series ATM adapter
  220. cards. It simultaneously supports PCA-200E and SBA-200E models
  221. on PCI and SBUS hosts. Say Y (or M to compile as a module
  222. named fore_200e) here if you have one of these ATM adapters.
  223. See the file
  224. <file:Documentation/networking/device_drivers/atm/fore200e.rst> for
  225. further details.
  226. config ATM_FORE200E_USE_TASKLET
  227. bool "Defer interrupt work to a tasklet"
  228. depends on ATM_FORE200E
  229. default n
  230. help
  231. This defers work to be done by the interrupt handler to a
  232. tasklet instead of handling everything at interrupt time. This
  233. may improve the responsive of the host.
  234. config ATM_FORE200E_TX_RETRY
  235. int "Maximum number of tx retries"
  236. depends on ATM_FORE200E
  237. default "16"
  238. help
  239. Specifies the number of times the driver attempts to transmit
  240. a message before giving up, if the transmit queue of the ATM card
  241. is transiently saturated.
  242. Saturation of the transmit queue may occur only under extreme
  243. conditions, e.g. when a fast host continuously submits very small
  244. frames (<64 bytes) or raw AAL0 cells (48 bytes) to the ATM adapter.
  245. Note that under common conditions, it is unlikely that you encounter
  246. a saturation of the transmit queue, so the retry mechanism never
  247. comes into play.
  248. config ATM_FORE200E_DEBUG
  249. int "Debugging level (0-3)"
  250. depends on ATM_FORE200E
  251. default "0"
  252. help
  253. Specifies the level of debugging messages issued by the driver.
  254. The verbosity of the driver increases with the value of this
  255. parameter.
  256. When active, these messages can have a significant impact on
  257. the performances of the driver, and the size of your syslog files!
  258. Keep the debugging level to 0 during normal operations.
  259. config ATM_HE
  260. tristate "ForeRunner HE Series"
  261. depends on PCI
  262. help
  263. This is a driver for the Marconi ForeRunner HE-series ATM adapter
  264. cards. It simultaneously supports the 155 and 622 versions.
  265. config ATM_HE_USE_SUNI
  266. bool "Use S/UNI PHY driver"
  267. depends on ATM_HE
  268. help
  269. Support for the S/UNI-Ultra and S/UNI-622 found in the ForeRunner
  270. HE cards. This driver provides carrier detection some statistics.
  271. config ATM_SOLOS
  272. tristate "Solos ADSL2+ PCI Multiport card driver"
  273. depends on PCI
  274. select FW_LOADER
  275. help
  276. Support for the Solos multiport ADSL2+ card.
  277. endif # ATM