Kconfig 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. menu "Passive cards"
  2. depends on ISDN_I4L
  3. config ISDN_DRV_HISAX
  4. tristate "HiSax SiemensChipSet driver support"
  5. select CRC_CCITT
  6. ---help---
  7. This is a driver supporting the Siemens chipset on various
  8. ISDN-cards (like AVM A1, Elsa ISDN cards, Teles S0-16.0, Teles
  9. S0-16.3, Teles S0-8, Teles/Creatix PnP, ITK micro ix1 and many
  10. compatibles).
  11. HiSax is just the name of this driver, not the name of any hardware.
  12. If you have a card with such a chipset, you should say Y here and
  13. also to the configuration option of the driver for your particular
  14. card, below.
  15. if ISDN_DRV_HISAX!=n
  16. comment "D-channel protocol features"
  17. config HISAX_EURO
  18. bool "HiSax Support for EURO/DSS1"
  19. help
  20. Say Y or N according to the D-channel protocol which your local
  21. telephone service company provides.
  22. The call control protocol E-DSS1 is used in most European countries.
  23. If unsure, say Y.
  24. config DE_AOC
  25. bool "Support for german chargeinfo"
  26. depends on HISAX_EURO
  27. help
  28. If you want that the HiSax hardware driver sends messages to the
  29. upper level of the isdn code on each AOCD (Advice Of Charge, During
  30. the call -- transmission of the fee information during a call) and
  31. on each AOCE (Advice Of Charge, at the End of the call --
  32. transmission of fee information at the end of the call), say Y here.
  33. This works only in Germany.
  34. config HISAX_NO_SENDCOMPLETE
  35. bool "Disable sending complete"
  36. depends on HISAX_EURO
  37. help
  38. If you have trouble with some ugly exchanges or you live in
  39. Australia select this option.
  40. config HISAX_NO_LLC
  41. bool "Disable sending low layer compatibility"
  42. depends on HISAX_EURO
  43. help
  44. If you have trouble with some ugly exchanges try to select this
  45. option.
  46. config HISAX_NO_KEYPAD
  47. bool "Disable keypad protocol option"
  48. depends on HISAX_EURO
  49. help
  50. If you like to send special dial strings including * or # without
  51. using the keypad protocol, select this option.
  52. config HISAX_1TR6
  53. bool "HiSax Support for german 1TR6"
  54. help
  55. Say Y or N according to the D-channel protocol which your local
  56. telephone service company provides.
  57. 1TR6 is an old call control protocol which was used in Germany
  58. before E-DSS1 was established. Nowadays, all new lines in Germany
  59. use E-DSS1.
  60. config HISAX_NI1
  61. bool "HiSax Support for US NI1"
  62. help
  63. Enable this if you like to use ISDN in US on a NI1 basic rate
  64. interface.
  65. config HISAX_MAX_CARDS
  66. int "Maximum number of cards supported by HiSax"
  67. default "8"
  68. help
  69. This option allows you to specify the maximum number of cards which
  70. the HiSax driver will be able to handle.
  71. comment "HiSax supported cards"
  72. config HISAX_16_0
  73. bool "Teles 16.0/8.0"
  74. depends on ISA
  75. help
  76. This enables HiSax support for the Teles ISDN-cards S0-16.0, S0-8
  77. and many compatibles.
  78. See <file:Documentation/isdn/README.HiSax> on how to configure it
  79. using the different cards, a different D-channel protocol, or
  80. non-standard IRQ/port/shmem settings.
  81. config HISAX_16_3
  82. bool "Teles 16.3 or PNP or PCMCIA"
  83. help
  84. This enables HiSax support for the Teles ISDN-cards S0-16.3 the
  85. Teles/Creatix PnP and the Teles PCMCIA.
  86. See <file:Documentation/isdn/README.HiSax> on how to configure it
  87. using the different cards, a different D-channel protocol, or
  88. non-standard IRQ/port settings.
  89. config HISAX_TELESPCI
  90. bool "Teles PCI"
  91. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  92. help
  93. This enables HiSax support for the Teles PCI.
  94. See <file:Documentation/isdn/README.HiSax> on how to configure it.
  95. config HISAX_S0BOX
  96. bool "Teles S0Box"
  97. help
  98. This enables HiSax support for the Teles/Creatix parallel port
  99. S0BOX. See <file:Documentation/isdn/README.HiSax> on how to
  100. configure it.
  101. config HISAX_AVM_A1
  102. bool "AVM A1 (Fritz)"
  103. depends on ISA
  104. help
  105. This enables HiSax support for the AVM A1 (aka "Fritz").
  106. See <file:Documentation/isdn/README.HiSax> on how to configure it
  107. using the different cards, a different D-channel protocol, or
  108. non-standard IRQ/port settings.
  109. config HISAX_FRITZPCI
  110. bool "AVM PnP/PCI (Fritz!PnP/PCI)"
  111. help
  112. This enables HiSax support for the AVM "Fritz!PnP" and "Fritz!PCI".
  113. See <file:Documentation/isdn/README.HiSax> on how to configure it.
  114. config HISAX_AVM_A1_PCMCIA
  115. bool "AVM A1 PCMCIA (Fritz)"
  116. help
  117. This enables HiSax support for the AVM A1 "Fritz!PCMCIA").
  118. See <file:Documentation/isdn/README.HiSax> on how to configure it.
  119. config HISAX_ELSA
  120. bool "Elsa cards"
  121. help
  122. This enables HiSax support for the Elsa Mircolink ISA cards, for the
  123. Elsa Quickstep series cards and Elsa PCMCIA.
  124. See <file:Documentation/isdn/README.HiSax> on how to configure it
  125. using the different cards, a different D-channel protocol, or
  126. non-standard IRQ/port settings.
  127. config HISAX_IX1MICROR2
  128. bool "ITK ix1-micro Revision 2"
  129. depends on ISA
  130. help
  131. This enables HiSax support for the ITK ix1-micro Revision 2 card.
  132. See <file:Documentation/isdn/README.HiSax> on how to configure it
  133. using the different cards, a different D-channel protocol, or
  134. non-standard IRQ/port settings.
  135. config HISAX_DIEHLDIVA
  136. bool "Eicon.Diehl Diva cards"
  137. help
  138. This enables HiSax support for the Eicon.Diehl Diva none PRO
  139. versions passive ISDN cards.
  140. See <file:Documentation/isdn/README.HiSax> on how to configure it
  141. using the different cards, a different D-channel protocol, or
  142. non-standard IRQ/port settings.
  143. config HISAX_ASUSCOM
  144. bool "ASUSCOM ISA cards"
  145. depends on ISA
  146. help
  147. This enables HiSax support for the AsusCom and their OEM versions
  148. passive ISDN ISA cards.
  149. See <file:Documentation/isdn/README.HiSax> on how to configure it
  150. using the different cards, a different D-channel protocol, or
  151. non-standard IRQ/port settings.
  152. config HISAX_TELEINT
  153. bool "TELEINT cards"
  154. depends on ISA
  155. help
  156. This enables HiSax support for the TELEINT SA1 semiactiv ISDN card.
  157. See <file:Documentation/isdn/README.HiSax> on how to configure it
  158. using the different cards, a different D-channel protocol, or
  159. non-standard IRQ/port settings.
  160. config HISAX_HFCS
  161. bool "HFC-S based cards"
  162. depends on ISA
  163. help
  164. This enables HiSax support for the HFC-S 2BDS0 based cards, like
  165. teles 16.3c.
  166. See <file:Documentation/isdn/README.HiSax> on how to configure it
  167. using the different cards, a different D-channel protocol, or
  168. non-standard IRQ/port settings.
  169. config HISAX_SEDLBAUER
  170. bool "Sedlbauer cards"
  171. help
  172. This enables HiSax support for the Sedlbauer passive ISDN cards.
  173. See <file:Documentation/isdn/README.HiSax> on how to configure it
  174. using the different cards, a different D-channel protocol, or
  175. non-standard IRQ/port settings.
  176. config HISAX_SPORTSTER
  177. bool "USR Sportster internal TA"
  178. depends on ISA
  179. help
  180. This enables HiSax support for the USR Sportster internal TA card.
  181. See <file:Documentation/isdn/README.HiSax> on how to configure it
  182. using a different D-channel protocol, or non-standard IRQ/port
  183. settings.
  184. config HISAX_MIC
  185. bool "MIC card"
  186. depends on ISA
  187. help
  188. This enables HiSax support for the ITH MIC card.
  189. See <file:Documentation/isdn/README.HiSax> on how to configure it
  190. using a different D-channel protocol, or non-standard IRQ/port
  191. settings.
  192. config HISAX_NETJET
  193. bool "NETjet card"
  194. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  195. help
  196. This enables HiSax support for the NetJet from Traverse
  197. Technologies.
  198. See <file:Documentation/isdn/README.HiSax> on how to configure it
  199. using a different D-channel protocol, or non-standard IRQ/port
  200. settings.
  201. config HISAX_NETJET_U
  202. bool "NETspider U card"
  203. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  204. help
  205. This enables HiSax support for the Netspider U interface ISDN card
  206. from Traverse Technologies.
  207. See <file:Documentation/isdn/README.HiSax> on how to configure it
  208. using a different D-channel protocol, or non-standard IRQ/port
  209. settings.
  210. config HISAX_NICCY
  211. bool "Niccy PnP/PCI card"
  212. help
  213. This enables HiSax support for the Dr. Neuhaus Niccy PnP or PCI.
  214. See <file:Documentation/isdn/README.HiSax> on how to configure it
  215. using a different D-channel protocol, or non-standard IRQ/port
  216. settings.
  217. config HISAX_ISURF
  218. bool "Siemens I-Surf card"
  219. depends on ISA
  220. help
  221. This enables HiSax support for the Siemens I-Talk/I-Surf card with
  222. ISAR chip.
  223. See <file:Documentation/isdn/README.HiSax> on how to configure it
  224. using a different D-channel protocol, or non-standard IRQ/port
  225. settings.
  226. config HISAX_HSTSAPHIR
  227. bool "HST Saphir card"
  228. depends on ISA
  229. help
  230. This enables HiSax support for the HST Saphir card.
  231. See <file:Documentation/isdn/README.HiSax> on how to configure it
  232. using a different D-channel protocol, or non-standard IRQ/port
  233. settings.
  234. config HISAX_BKM_A4T
  235. bool "Telekom A4T card"
  236. depends on PCI
  237. help
  238. This enables HiSax support for the Telekom A4T card.
  239. See <file:Documentation/isdn/README.HiSax> on how to configure it
  240. using a different D-channel protocol, or non-standard IRQ/port
  241. settings.
  242. config HISAX_SCT_QUADRO
  243. bool "Scitel Quadro card"
  244. depends on PCI
  245. help
  246. This enables HiSax support for the Scitel Quadro card.
  247. See <file:Documentation/isdn/README.HiSax> on how to configure it
  248. using a different D-channel protocol, or non-standard IRQ/port
  249. settings.
  250. config HISAX_GAZEL
  251. bool "Gazel cards"
  252. help
  253. This enables HiSax support for the Gazel cards.
  254. See <file:Documentation/isdn/README.HiSax> on how to configure it
  255. using a different D-channel protocol, or non-standard IRQ/port
  256. settings.
  257. config HISAX_HFC_PCI
  258. bool "HFC PCI-Bus cards"
  259. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  260. help
  261. This enables HiSax support for the HFC-S PCI 2BDS0 based cards.
  262. For more informations see under
  263. <file:Documentation/isdn/README.hfc-pci>.
  264. config HISAX_W6692
  265. bool "Winbond W6692 based cards"
  266. depends on PCI
  267. help
  268. This enables HiSax support for Winbond W6692 based PCI ISDN cards.
  269. See <file:Documentation/isdn/README.HiSax> on how to configure it
  270. using a different D-channel protocol, or non-standard IRQ/port
  271. settings.
  272. config HISAX_HFC_SX
  273. bool "HFC-S+, HFC-SP, HFC-PCMCIA cards"
  274. help
  275. This enables HiSax support for the HFC-S+, HFC-SP and HFC-PCMCIA
  276. cards. This code is not finished yet.
  277. # bool ' TESTEMULATOR (EXPERIMENTAL)' CONFIG_HISAX_TESTEMU
  278. config HISAX_ENTERNOW_PCI
  279. bool "Formula-n enter:now PCI card"
  280. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  281. help
  282. This enables HiSax support for the Formula-n enter:now PCI
  283. ISDN card.
  284. config HISAX_AMD7930
  285. bool "Am7930 (EXPERIMENTAL)"
  286. depends on EXPERIMENTAL && (SPARC32 || SPARC64)
  287. help
  288. This enables HiSax support for the AMD7930 chips on some SPARCs.
  289. This code is not finished yet.
  290. endif
  291. if ISDN_DRV_HISAX
  292. config HISAX_DEBUG
  293. bool "HiSax debugging"
  294. help
  295. This enables debugging code in the new-style HiSax drivers, i.e.
  296. the ST5481 USB driver currently.
  297. If in doubt, say yes.
  298. comment "HiSax PCMCIA card service modules"
  299. config HISAX_SEDLBAUER_CS
  300. tristate "Sedlbauer PCMCIA cards"
  301. depends on PCMCIA && HISAX_SEDLBAUER
  302. help
  303. This enables the PCMCIA client driver for the Sedlbauer Speed Star
  304. and Speed Star II cards.
  305. config HISAX_ELSA_CS
  306. tristate "ELSA PCMCIA MicroLink cards"
  307. depends on PCMCIA && HISAX_ELSA
  308. help
  309. This enables the PCMCIA client driver for the Elsa PCMCIA MicroLink
  310. card.
  311. config HISAX_AVM_A1_CS
  312. tristate "AVM A1 PCMCIA cards"
  313. depends on PCMCIA && ISDN_DRV_HISAX
  314. help
  315. This enables the PCMCIA client driver for the AVM A1 / Fritz!Card
  316. PCMCIA cards.
  317. config HISAX_TELES_CS
  318. tristate "TELES PCMCIA cards"
  319. depends on PCMCIA && HISAX_16_3
  320. help
  321. This enables the PCMCIA client driver for the Teles PCMCIA cards.
  322. comment "HiSax sub driver modules"
  323. config HISAX_ST5481
  324. tristate "ST5481 USB ISDN modem (EXPERIMENTAL)"
  325. depends on USB && EXPERIMENTAL
  326. select CRC_CCITT
  327. help
  328. This enables the driver for ST5481 based USB ISDN adapters,
  329. e.g. the BeWan Gazel 128 USB
  330. config HISAX_HFCUSB
  331. tristate "HFC USB based ISDN modems (EXPERIMENTAL)"
  332. depends on USB && EXPERIMENTAL
  333. help
  334. This enables the driver for HFC USB based ISDN modems.
  335. config HISAX_HFC4S8S
  336. tristate "HFC-4S/8S based ISDN cards (EXPERIMENTAL)"
  337. depends on EXPERIMENTAL
  338. help
  339. This enables the driver for HFC-4S/8S based ISDN cards.
  340. config HISAX_FRITZ_PCIPNP
  341. tristate "AVM Fritz!Card PCI/PCIv2/PnP support (EXPERIMENTAL)"
  342. depends on PCI && EXPERIMENTAL
  343. help
  344. This enables the driver for the AVM Fritz!Card PCI,
  345. Fritz!Card PCI v2 and Fritz!Card PnP.
  346. (the latter also needs you to select "ISA Plug and Play support"
  347. from the menu "Plug and Play configuration")
  348. config HISAX_HDLC
  349. bool
  350. depends on HISAX_ST5481
  351. default y
  352. config HISAX_AVM_A1_PCMCIA
  353. bool
  354. depends on HISAX_AVM_A1_CS
  355. default y
  356. endif
  357. endmenu