1# SPDX-License-Identifier: GPL-2.0 2# 3# USB/ATM DSL configuration 4# 5 6menuconfig USB_ATM 7 tristate "USB DSL modem support" 8 depends on ATM 9 select CRC32 10 default n 11 help 12 Say Y here if you want to connect a USB Digital Subscriber Line (DSL) 13 modem to your computer's USB port. You will then need to choose your 14 modem from the list below. 15 16 To compile this driver as a module, choose M here: the 17 module will be called usbatm. 18 19if USB_ATM 20 21config USB_SPEEDTOUCH 22 tristate "Speedtouch USB support" 23 select FW_LOADER 24 help 25 Say Y here if you have an SpeedTouch USB or SpeedTouch 330 26 modem. In order to use your modem you will need to install the 27 two parts of the firmware, extracted by the user space tools; see 28 <http://www.linux-usb.org/SpeedTouch/> for details. 29 30 To compile this driver as a module, choose M here: the 31 module will be called speedtch. 32 33config USB_CXACRU 34 tristate "Conexant AccessRunner USB support" 35 select FW_LOADER 36 help 37 Say Y here if you have an ADSL USB modem based on the Conexant 38 AccessRunner chipset. In order to use your modem you will need to 39 install the firmware, extracted by the user space tools; see 40 <http://accessrunner.sourceforge.net/> for details. 41 42 To compile this driver as a module, choose M here: the 43 module will be called cxacru. 44 45config USB_UEAGLEATM 46 tristate "ADI 930 and eagle USB DSL modem" 47 select FW_LOADER 48 help 49 Say Y here if you have an ADSL USB modem based on the ADI 930 50 or eagle chipset. In order to use your modem you will need to 51 install firmwares and CMV (Command Management Variables); see 52 <https://gna.org/projects/ueagleatm/> for details. 53 54 To compile this driver as a module, choose M here: the 55 module will be called ueagle-atm. 56 57config USB_XUSBATM 58 tristate "Other USB DSL modem support" 59 help 60 Say Y here if you have a DSL USB modem not explicitly supported by 61 another USB DSL drivers. In order to use your modem you will need to 62 pass the vendor ID, product ID, and endpoint numbers for transmission 63 and reception as module parameters. You may need to initialize 64 the modem using a user space utility (a firmware loader for example). 65 66 To compile this driver as a module, choose M here: the 67 module will be called xusbatm. 68 69endif # USB_ATM 70