Kconfig 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  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. depends on BROKEN || !PPC64
  112. help
  113. This enables HiSax support for the AVM "Fritz!PnP" and "Fritz!PCI".
  114. See <file:Documentation/isdn/README.HiSax> on how to configure it.
  115. config HISAX_AVM_A1_PCMCIA
  116. bool "AVM A1 PCMCIA (Fritz)"
  117. help
  118. This enables HiSax support for the AVM A1 "Fritz!PCMCIA").
  119. See <file:Documentation/isdn/README.HiSax> on how to configure it.
  120. config HISAX_ELSA
  121. bool "Elsa cards"
  122. help
  123. This enables HiSax support for the Elsa Mircolink ISA cards, for the
  124. Elsa Quickstep series cards and Elsa PCMCIA.
  125. See <file:Documentation/isdn/README.HiSax> on how to configure it
  126. using the different cards, a different D-channel protocol, or
  127. non-standard IRQ/port settings.
  128. config HISAX_IX1MICROR2
  129. bool "ITK ix1-micro Revision 2"
  130. depends on ISA
  131. help
  132. This enables HiSax support for the ITK ix1-micro Revision 2 card.
  133. See <file:Documentation/isdn/README.HiSax> on how to configure it
  134. using the different cards, a different D-channel protocol, or
  135. non-standard IRQ/port settings.
  136. config HISAX_DIEHLDIVA
  137. bool "Eicon.Diehl Diva cards"
  138. help
  139. This enables HiSax support for the Eicon.Diehl Diva none PRO
  140. versions passive ISDN cards.
  141. See <file:Documentation/isdn/README.HiSax> on how to configure it
  142. using the different cards, a different D-channel protocol, or
  143. non-standard IRQ/port settings.
  144. config HISAX_ASUSCOM
  145. bool "ASUSCOM ISA cards"
  146. depends on ISA
  147. help
  148. This enables HiSax support for the AsusCom and their OEM versions
  149. passive ISDN ISA cards.
  150. See <file:Documentation/isdn/README.HiSax> on how to configure it
  151. using the different cards, a different D-channel protocol, or
  152. non-standard IRQ/port settings.
  153. config HISAX_TELEINT
  154. bool "TELEINT cards"
  155. depends on ISA
  156. help
  157. This enables HiSax support for the TELEINT SA1 semiactiv ISDN card.
  158. See <file:Documentation/isdn/README.HiSax> on how to configure it
  159. using the different cards, a different D-channel protocol, or
  160. non-standard IRQ/port settings.
  161. config HISAX_HFCS
  162. bool "HFC-S based cards"
  163. depends on ISA
  164. help
  165. This enables HiSax support for the HFC-S 2BDS0 based cards, like
  166. teles 16.3c.
  167. See <file:Documentation/isdn/README.HiSax> on how to configure it
  168. using the different cards, a different D-channel protocol, or
  169. non-standard IRQ/port settings.
  170. config HISAX_SEDLBAUER
  171. bool "Sedlbauer cards"
  172. help
  173. This enables HiSax support for the Sedlbauer passive ISDN cards.
  174. See <file:Documentation/isdn/README.HiSax> on how to configure it
  175. using the different cards, a different D-channel protocol, or
  176. non-standard IRQ/port settings.
  177. config HISAX_SPORTSTER
  178. bool "USR Sportster internal TA"
  179. depends on ISA
  180. help
  181. This enables HiSax support for the USR Sportster internal TA card.
  182. See <file:Documentation/isdn/README.HiSax> on how to configure it
  183. using a different D-channel protocol, or non-standard IRQ/port
  184. settings.
  185. config HISAX_MIC
  186. bool "MIC card"
  187. depends on ISA
  188. help
  189. This enables HiSax support for the ITH MIC card.
  190. See <file:Documentation/isdn/README.HiSax> on how to configure it
  191. using a different D-channel protocol, or non-standard IRQ/port
  192. settings.
  193. config HISAX_NETJET
  194. bool "NETjet card"
  195. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  196. help
  197. This enables HiSax support for the NetJet from Traverse
  198. Technologies.
  199. See <file:Documentation/isdn/README.HiSax> on how to configure it
  200. using a different D-channel protocol, or non-standard IRQ/port
  201. settings.
  202. config HISAX_NETJET_U
  203. bool "NETspider U card"
  204. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  205. help
  206. This enables HiSax support for the Netspider U interface ISDN card
  207. from Traverse Technologies.
  208. See <file:Documentation/isdn/README.HiSax> on how to configure it
  209. using a different D-channel protocol, or non-standard IRQ/port
  210. settings.
  211. config HISAX_NICCY
  212. bool "Niccy PnP/PCI card"
  213. help
  214. This enables HiSax support for the Dr. Neuhaus Niccy PnP or PCI.
  215. See <file:Documentation/isdn/README.HiSax> on how to configure it
  216. using a different D-channel protocol, or non-standard IRQ/port
  217. settings.
  218. config HISAX_ISURF
  219. bool "Siemens I-Surf card"
  220. depends on ISA
  221. help
  222. This enables HiSax support for the Siemens I-Talk/I-Surf card with
  223. ISAR chip.
  224. See <file:Documentation/isdn/README.HiSax> on how to configure it
  225. using a different D-channel protocol, or non-standard IRQ/port
  226. settings.
  227. config HISAX_HSTSAPHIR
  228. bool "HST Saphir card"
  229. depends on ISA
  230. help
  231. This enables HiSax support for the HST Saphir card.
  232. See <file:Documentation/isdn/README.HiSax> on how to configure it
  233. using a different D-channel protocol, or non-standard IRQ/port
  234. settings.
  235. config HISAX_BKM_A4T
  236. bool "Telekom A4T card"
  237. depends on PCI
  238. help
  239. This enables HiSax support for the Telekom A4T card.
  240. See <file:Documentation/isdn/README.HiSax> on how to configure it
  241. using a different D-channel protocol, or non-standard IRQ/port
  242. settings.
  243. config HISAX_SCT_QUADRO
  244. bool "Scitel Quadro card"
  245. depends on PCI
  246. help
  247. This enables HiSax support for the Scitel Quadro card.
  248. See <file:Documentation/isdn/README.HiSax> on how to configure it
  249. using a different D-channel protocol, or non-standard IRQ/port
  250. settings.
  251. config HISAX_GAZEL
  252. bool "Gazel cards"
  253. help
  254. This enables HiSax support for the Gazel cards.
  255. See <file:Documentation/isdn/README.HiSax> on how to configure it
  256. using a different D-channel protocol, or non-standard IRQ/port
  257. settings.
  258. config HISAX_HFC_PCI
  259. bool "HFC PCI-Bus cards"
  260. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  261. help
  262. This enables HiSax support for the HFC-S PCI 2BDS0 based cards.
  263. For more informations see under
  264. <file:Documentation/isdn/README.hfc-pci>.
  265. config HISAX_W6692
  266. bool "Winbond W6692 based cards"
  267. depends on PCI
  268. help
  269. This enables HiSax support for Winbond W6692 based PCI ISDN cards.
  270. See <file:Documentation/isdn/README.HiSax> on how to configure it
  271. using a different D-channel protocol, or non-standard IRQ/port
  272. settings.
  273. config HISAX_HFC_SX
  274. bool "HFC-S+, HFC-SP, HFC-PCMCIA cards"
  275. help
  276. This enables HiSax support for the HFC-S+, HFC-SP and HFC-PCMCIA
  277. cards. This code is not finished yet.
  278. # bool ' TESTEMULATOR (EXPERIMENTAL)' CONFIG_HISAX_TESTEMU
  279. config HISAX_ENTERNOW_PCI
  280. bool "Formula-n enter:now PCI card"
  281. depends on PCI && (BROKEN || !(SPARC64 || PPC))
  282. help
  283. This enables HiSax support for the Formula-n enter:now PCI
  284. ISDN card.
  285. config HISAX_AMD7930
  286. bool "Am7930 (EXPERIMENTAL)"
  287. depends on EXPERIMENTAL && (SPARC32 || SPARC64)
  288. help
  289. This enables HiSax support for the AMD7930 chips on some SPARCs.
  290. This code is not finished yet.
  291. endif
  292. if ISDN_DRV_HISAX
  293. config HISAX_DEBUG
  294. bool "HiSax debugging"
  295. help
  296. This enables debugging code in the new-style HiSax drivers, i.e.
  297. the ST5481 USB driver currently.
  298. If in doubt, say yes.
  299. comment "HiSax PCMCIA card service modules"
  300. config HISAX_SEDLBAUER_CS
  301. tristate "Sedlbauer PCMCIA cards"
  302. depends on PCMCIA && HISAX_SEDLBAUER
  303. help
  304. This enables the PCMCIA client driver for the Sedlbauer Speed Star
  305. and Speed Star II cards.
  306. config HISAX_ELSA_CS
  307. tristate "ELSA PCMCIA MicroLink cards"
  308. depends on PCMCIA && HISAX_ELSA
  309. help
  310. This enables the PCMCIA client driver for the Elsa PCMCIA MicroLink
  311. card.
  312. config HISAX_AVM_A1_CS
  313. tristate "AVM A1 PCMCIA cards"
  314. depends on PCMCIA && ISDN_DRV_HISAX
  315. help
  316. This enables the PCMCIA client driver for the AVM A1 / Fritz!Card
  317. PCMCIA cards.
  318. config HISAX_TELES_CS
  319. tristate "TELES PCMCIA cards"
  320. depends on PCMCIA && HISAX_16_3
  321. help
  322. This enables the PCMCIA client driver for the Teles PCMCIA cards.
  323. comment "HiSax sub driver modules"
  324. config HISAX_ST5481
  325. tristate "ST5481 USB ISDN modem (EXPERIMENTAL)"
  326. depends on USB && EXPERIMENTAL
  327. select CRC_CCITT
  328. help
  329. This enables the driver for ST5481 based USB ISDN adapters,
  330. e.g. the BeWan Gazel 128 USB
  331. config HISAX_HFCUSB
  332. tristate "HFC USB based ISDN modems (EXPERIMENTAL)"
  333. depends on USB && EXPERIMENTAL
  334. help
  335. This enables the driver for HFC USB based ISDN modems.
  336. config HISAX_HFC4S8S
  337. tristate "HFC-4S/8S based ISDN cards (EXPERIMENTAL)"
  338. depends on EXPERIMENTAL
  339. help
  340. This enables the driver for HFC-4S/8S based ISDN cards.
  341. config HISAX_FRITZ_PCIPNP
  342. tristate "AVM Fritz!Card PCI/PCIv2/PnP support (EXPERIMENTAL)"
  343. depends on PCI && EXPERIMENTAL
  344. help
  345. This enables the driver for the AVM Fritz!Card PCI,
  346. Fritz!Card PCI v2 and Fritz!Card PnP.
  347. (the latter also needs you to select "ISA Plug and Play support"
  348. from the menu "Plug and Play configuration")
  349. config HISAX_HDLC
  350. bool
  351. depends on HISAX_ST5481
  352. default y
  353. config HISAX_AVM_A1_PCMCIA
  354. bool
  355. depends on HISAX_AVM_A1_CS
  356. default y
  357. endif
  358. endmenu