Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. #
  2. # USB Network devices configuration
  3. #
  4. comment "Networking support is needed for USB Network Adapter support"
  5. depends on USB && !NET
  6. menu "USB Network Adapters"
  7. depends on USB && NET
  8. config USB_CATC
  9. tristate "USB CATC NetMate-based Ethernet device support (EXPERIMENTAL)"
  10. depends on EXPERIMENTAL
  11. select CRC32
  12. ---help---
  13. Say Y if you want to use one of the following 10Mbps USB Ethernet
  14. device based on the EL1210A chip. Supported devices are:
  15. Belkin F5U011
  16. Belkin F5U111
  17. CATC NetMate
  18. CATC NetMate II
  19. smartBridges smartNIC
  20. This driver makes the adapter appear as a normal Ethernet interface,
  21. typically on eth0, if it is the only ethernet device, or perhaps on
  22. eth1, if you have a PCI or ISA ethernet card installed.
  23. To compile this driver as a module, choose M here: the
  24. module will be called catc.
  25. config USB_KAWETH
  26. tristate "USB KLSI KL5USB101-based ethernet device support"
  27. ---help---
  28. Say Y here if you want to use one of the following 10Mbps only
  29. USB Ethernet adapters based on the KLSI KL5KUSB101B chipset:
  30. 3Com 3C19250
  31. ADS USB-10BT
  32. ATEN USB Ethernet
  33. ASANTE USB To Ethernet Adapter
  34. AOX Endpoints USB Ethernet
  35. Correga K.K.
  36. D-Link DSB-650C and DU-E10
  37. Entrega / Portgear E45
  38. I-O DATA USB-ET/T
  39. Jaton USB Ethernet Device Adapter
  40. Kingston Technology USB Ethernet Adapter
  41. Linksys USB10T
  42. Mobility USB-Ethernet Adapter
  43. NetGear EA-101
  44. Peracom Enet and Enet2
  45. Portsmith Express Ethernet Adapter
  46. Shark Pocket Adapter
  47. SMC 2202USB
  48. Sony Vaio port extender
  49. This driver is likely to work with most 10Mbps only USB Ethernet
  50. adapters, including some "no brand" devices. It does NOT work on
  51. SmartBridges smartNIC or on Belkin F5U111 devices - you should use
  52. the CATC NetMate driver for those. If you are not sure which one
  53. you need, select both, and the correct one should be selected for
  54. you.
  55. This driver makes the adapter appear as a normal Ethernet interface,
  56. typically on eth0, if it is the only ethernet device, or perhaps on
  57. eth1, if you have a PCI or ISA ethernet card installed.
  58. To compile this driver as a module, choose M here: the
  59. module will be called kaweth.
  60. config USB_PEGASUS
  61. tristate "USB Pegasus/Pegasus-II based ethernet device support"
  62. select MII
  63. ---help---
  64. Say Y here if you know you have Pegasus or Pegasus-II based adapter.
  65. If in doubt then look at <file:drivers/net/usb/pegasus.h> for the
  66. complete list of supported devices.
  67. If your particular adapter is not in the list and you are _sure_ it
  68. is Pegasus or Pegasus II based then send me
  69. <petkan@users.sourceforge.net> vendor and device IDs.
  70. To compile this driver as a module, choose M here: the
  71. module will be called pegasus.
  72. config USB_RTL8150
  73. tristate "USB RTL8150 based ethernet device support (EXPERIMENTAL)"
  74. depends on EXPERIMENTAL
  75. select MII
  76. help
  77. Say Y here if you have RTL8150 based usb-ethernet adapter.
  78. Send me <petkan@users.sourceforge.net> any comments you may have.
  79. You can also check for updates at <http://pegasus2.sourceforge.net/>.
  80. To compile this driver as a module, choose M here: the
  81. module will be called rtl8150.
  82. config USB_USBNET
  83. tristate "Multi-purpose USB Networking Framework"
  84. select MII
  85. ---help---
  86. This driver supports several kinds of network links over USB,
  87. with "minidrivers" built around a common network driver core
  88. that supports deep queues for efficient transfers. (This gives
  89. better performance with small packets and at high speeds).
  90. The USB host runs "usbnet", and the other end of the link might be:
  91. - Another USB host, when using USB "network" or "data transfer"
  92. cables. These are often used to network laptops to PCs, like
  93. "Laplink" parallel cables or some motherboards. These rely
  94. on specialized chips from many suppliers.
  95. - An intelligent USB gadget, perhaps embedding a Linux system.
  96. These include PDAs running Linux (iPaq, Yopy, Zaurus, and
  97. others), and devices that interoperate using the standard
  98. CDC-Ethernet specification (including many cable modems).
  99. - Network adapter hardware (like those for 10/100 Ethernet) which
  100. uses this driver framework.
  101. The link will appear with a name like "usb0", when the link is
  102. a two-node link, or "eth0" for most CDC-Ethernet devices. Those
  103. two-node links are most easily managed with Ethernet Bridging
  104. (CONFIG_BRIDGE) instead of routing.
  105. For more information see <http://www.linux-usb.org/usbnet/>.
  106. To compile this driver as a module, choose M here: the
  107. module will be called usbnet.
  108. config USB_NET_AX8817X
  109. tristate "ASIX AX88xxx Based USB 2.0 Ethernet Adapters"
  110. depends on USB_USBNET
  111. select CRC32
  112. default y
  113. help
  114. This option adds support for ASIX AX88xxx based USB 2.0
  115. 10/100 Ethernet adapters.
  116. This driver should work with at least the following devices:
  117. * Aten UC210T
  118. * ASIX AX88172
  119. * Billionton Systems, USB2AR
  120. * Buffalo LUA-U2-KTX
  121. * Corega FEther USB2-TX
  122. * D-Link DUB-E100
  123. * Hawking UF200
  124. * Linksys USB200M
  125. * Netgear FA120
  126. * Sitecom LN-029
  127. * Intellinet USB 2.0 Ethernet
  128. * ST Lab USB 2.0 Ethernet
  129. * TrendNet TU2-ET100
  130. This driver creates an interface named "ethX", where X depends on
  131. what other networking devices you have in use.
  132. config USB_NET_CDCETHER
  133. tristate "CDC Ethernet support (smart devices such as cable modems)"
  134. depends on USB_USBNET
  135. default y
  136. help
  137. This option supports devices conforming to the Communication Device
  138. Class (CDC) Ethernet Control Model, a specification that's easy to
  139. implement in device firmware. The CDC specifications are available
  140. from <http://www.usb.org/>.
  141. CDC Ethernet is an implementation option for DOCSIS cable modems
  142. that support USB connectivity, used for non-Microsoft USB hosts.
  143. The Linux-USB CDC Ethernet Gadget driver is an open implementation.
  144. This driver should work with at least the following devices:
  145. * Dell Wireless 5530 HSPA
  146. * Ericsson PipeRider (all variants)
  147. * Ericsson Mobile Broadband Module (all variants)
  148. * Motorola (DM100 and SB4100)
  149. * Broadcom Cable Modem (reference design)
  150. * Toshiba (PCX1100U and F3507g/F3607gw)
  151. * ...
  152. This driver creates an interface named "ethX", where X depends on
  153. what other networking devices you have in use. However, if the
  154. IEEE 802 "local assignment" bit is set in the address, a "usbX"
  155. name is used instead.
  156. config USB_NET_CDC_EEM
  157. tristate "CDC EEM support"
  158. depends on USB_USBNET && EXPERIMENTAL
  159. help
  160. This option supports devices conforming to the Communication Device
  161. Class (CDC) Ethernet Emulation Model, a specification that's easy to
  162. implement in device firmware. The CDC EEM specifications are available
  163. from <http://www.usb.org/>.
  164. This driver creates an interface named "ethX", where X depends on
  165. what other networking devices you have in use. However, if the
  166. IEEE 802 "local assignment" bit is set in the address, a "usbX"
  167. name is used instead.
  168. config USB_NET_CDC_NCM
  169. tristate "CDC NCM support"
  170. depends on USB_USBNET
  171. default y
  172. help
  173. This driver provides support for CDC NCM (Network Control Model
  174. Device USB Class Specification). The CDC NCM specification is
  175. available from <http://www.usb.org/>.
  176. Say "y" to link the driver statically, or "m" to build a
  177. dynamically linked module.
  178. This driver should work with at least the following devices:
  179. * ST-Ericsson M700 LTE FDD/TDD Mobile Broadband Modem (ref. design)
  180. * ST-Ericsson M5730 HSPA+ Mobile Broadband Modem (reference design)
  181. * ST-Ericsson M570 HSPA+ Mobile Broadband Modem (reference design)
  182. * ST-Ericsson M343 HSPA Mobile Broadband Modem (reference design)
  183. * Ericsson F5521gw Mobile Broadband Module
  184. config USB_NET_DM9601
  185. tristate "Davicom DM9601 based USB 1.1 10/100 ethernet devices"
  186. depends on USB_USBNET
  187. select CRC32
  188. help
  189. This option adds support for Davicom DM9601 based USB 1.1
  190. 10/100 Ethernet adapters.
  191. config USB_NET_SMSC75XX
  192. tristate "SMSC LAN75XX based USB 2.0 gigabit ethernet devices"
  193. depends on USB_USBNET
  194. select CRC32
  195. help
  196. This option adds support for SMSC LAN95XX based USB 2.0
  197. Gigabit Ethernet adapters.
  198. config USB_NET_SMSC95XX
  199. tristate "SMSC LAN95XX based USB 2.0 10/100 ethernet devices"
  200. depends on USB_USBNET
  201. select CRC32
  202. help
  203. This option adds support for SMSC LAN95XX based USB 2.0
  204. 10/100 Ethernet adapters.
  205. config USB_NET_GL620A
  206. tristate "GeneSys GL620USB-A based cables"
  207. depends on USB_USBNET
  208. help
  209. Choose this option if you're using a host-to-host cable,
  210. or PC2PC motherboard, with this chip.
  211. Note that the half-duplex "GL620USB" is not supported.
  212. config USB_NET_NET1080
  213. tristate "NetChip 1080 based cables (Laplink, ...)"
  214. default y
  215. depends on USB_USBNET
  216. help
  217. Choose this option if you're using a host-to-host cable based
  218. on this design: one NetChip 1080 chip and supporting logic,
  219. optionally with LEDs that indicate traffic
  220. config USB_NET_PLUSB
  221. tristate "Prolific PL-2301/2302/25A1 based cables"
  222. # if the handshake/init/reset problems, from original 'plusb',
  223. # are ever resolved ... then remove "experimental"
  224. depends on USB_USBNET && EXPERIMENTAL
  225. help
  226. Choose this option if you're using a host-to-host cable
  227. with one of these chips.
  228. config USB_NET_MCS7830
  229. tristate "MosChip MCS7830 based Ethernet adapters"
  230. depends on USB_USBNET
  231. help
  232. Choose this option if you're using a 10/100 Ethernet USB2
  233. adapter based on the MosChip 7830 controller. This includes
  234. adapters marketed under the DeLOCK brand.
  235. config USB_NET_RNDIS_HOST
  236. tristate "Host for RNDIS and ActiveSync devices (EXPERIMENTAL)"
  237. depends on USB_USBNET && EXPERIMENTAL
  238. select USB_NET_CDCETHER
  239. help
  240. This option enables hosting "Remote NDIS" USB networking links,
  241. as encouraged by Microsoft (instead of CDC Ethernet!) for use in
  242. various devices that may only support this protocol. A variant
  243. of this protocol (with even less public documentation) seems to
  244. be at the root of Microsoft's "ActiveSync" too.
  245. Avoid using this protocol unless you have no better options.
  246. The protocol specification is incomplete, and is controlled by
  247. (and for) Microsoft; it isn't an "Open" ecosystem or market.
  248. config USB_NET_CDC_SUBSET
  249. tristate "Simple USB Network Links (CDC Ethernet subset)"
  250. depends on USB_USBNET
  251. default y
  252. help
  253. This driver module supports USB network devices that can work
  254. without any device-specific information. Select it if you have
  255. one of these drivers.
  256. Note that while many USB host-to-host cables can work in this mode,
  257. that may mean not being able to talk to Win32 systems or more
  258. commonly not being able to handle certain events (like replugging
  259. the host on the other end) very well. Also, these devices will
  260. not generally have permanently assigned Ethernet addresses.
  261. config USB_ALI_M5632
  262. boolean "ALi M5632 based 'USB 2.0 Data Link' cables"
  263. depends on USB_NET_CDC_SUBSET
  264. help
  265. Choose this option if you're using a host-to-host cable
  266. based on this design, which supports USB 2.0 high speed.
  267. config USB_AN2720
  268. boolean "AnchorChips 2720 based cables (Xircom PGUNET, ...)"
  269. depends on USB_NET_CDC_SUBSET
  270. help
  271. Choose this option if you're using a host-to-host cable
  272. based on this design. Note that AnchorChips is now a
  273. Cypress brand.
  274. config USB_BELKIN
  275. boolean "eTEK based host-to-host cables (Advance, Belkin, ...)"
  276. depends on USB_NET_CDC_SUBSET
  277. default y
  278. help
  279. Choose this option if you're using a host-to-host cable
  280. based on this design: two NetChip 2890 chips and an Atmel
  281. microcontroller, with LEDs that indicate traffic.
  282. config USB_ARMLINUX
  283. boolean "Embedded ARM Linux links (iPaq, ...)"
  284. depends on USB_NET_CDC_SUBSET
  285. default y
  286. help
  287. Choose this option to support the "usb-eth" networking driver
  288. used by most of the ARM Linux community with device controllers
  289. such as the SA-11x0 and PXA-25x UDCs, or the tftp capabilities
  290. in some PXA versions of the "blob" boot loader.
  291. Linux-based "Gumstix" PXA-25x based systems use this protocol
  292. to talk with other Linux systems.
  293. Although the ROMs shipped with Sharp Zaurus products use a
  294. different link level framing protocol, you can have them use
  295. this simpler protocol by installing a different kernel.
  296. config USB_EPSON2888
  297. boolean "Epson 2888 based firmware (DEVELOPMENT)"
  298. depends on USB_NET_CDC_SUBSET
  299. help
  300. Choose this option to support the usb networking links used
  301. by some sample firmware from Epson.
  302. config USB_KC2190
  303. boolean "KT Technology KC2190 based cables (InstaNet)"
  304. depends on USB_NET_CDC_SUBSET && EXPERIMENTAL
  305. help
  306. Choose this option if you're using a host-to-host cable
  307. with one of these chips.
  308. config USB_NET_ZAURUS
  309. tristate "Sharp Zaurus (stock ROMs) and compatible"
  310. depends on USB_USBNET
  311. select USB_NET_CDCETHER
  312. select CRC32
  313. default y
  314. help
  315. Choose this option to support the usb networking links used by
  316. Zaurus models like the SL-5000D, SL-5500, SL-5600, A-300, B-500.
  317. This also supports some related device firmware, as used in some
  318. PDAs from Olympus and some cell phones from Motorola.
  319. If you install an alternate image, such as the Linux 2.6 based
  320. versions of OpenZaurus, you should no longer need to support this
  321. protocol. Only the "eth-fd" or "net_fd" drivers in these devices
  322. really need this non-conformant variant of CDC Ethernet (or in
  323. some cases CDC MDLM) protocol, not "g_ether".
  324. config USB_NET_CX82310_ETH
  325. tristate "Conexant CX82310 USB ethernet port"
  326. depends on USB_USBNET
  327. help
  328. Choose this option if you're using a Conexant CX82310-based ADSL
  329. router with USB ethernet port. This driver is for routers only,
  330. it will not work with ADSL modems (use cxacru driver instead).
  331. config USB_NET_KALMIA
  332. tristate "Samsung Kalmia based LTE USB modem"
  333. depends on USB_USBNET
  334. help
  335. Choose this option if you have a Samsung Kalmia based USB modem
  336. as Samsung GT-B3730.
  337. To compile this driver as a module, choose M here: the
  338. module will be called kalmia.
  339. config USB_HSO
  340. tristate "Option USB High Speed Mobile Devices"
  341. depends on USB && RFKILL
  342. default n
  343. help
  344. Choose this option if you have an Option HSDPA/HSUPA card.
  345. These cards support downlink speeds of 7.2Mbps or greater.
  346. To compile this driver as a module, choose M here: the
  347. module will be called hso.
  348. config USB_NET_INT51X1
  349. tristate "Intellon PLC based usb adapter"
  350. depends on USB_USBNET
  351. help
  352. Choose this option if you're using a 14Mb USB-based PLC
  353. (Powerline Communications) solution with an Intellon
  354. INT51x1/INT5200 chip, like the "devolo dLan duo".
  355. config USB_CDC_PHONET
  356. tristate "CDC Phonet support"
  357. depends on PHONET
  358. help
  359. Choose this option to support the Phonet interface to a Nokia
  360. cellular modem, as found on most Nokia handsets with the
  361. "PC suite" USB profile.
  362. config USB_IPHETH
  363. tristate "Apple iPhone USB Ethernet driver"
  364. default n
  365. ---help---
  366. Module used to share Internet connection (tethering) from your
  367. iPhone (Original, 3G and 3GS) to your system.
  368. Note that you need userspace libraries and programs that are needed
  369. to pair your device with your system and that understand the iPhone
  370. protocol.
  371. For more information: http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver
  372. config USB_SIERRA_NET
  373. tristate "USB-to-WWAN Driver for Sierra Wireless modems"
  374. depends on USB_USBNET
  375. help
  376. Choose this option if you have a Sierra Wireless USB-to-WWAN device.
  377. To compile this driver as a module, choose M here: the
  378. module will be called sierra_net.
  379. config USB_VL600
  380. tristate "LG VL600 modem dongle"
  381. depends on USB_NET_CDCETHER
  382. select USB_ACM
  383. help
  384. Select this if you want to use an LG Electronics 4G/LTE usb modem
  385. called VL600. This driver only handles the ethernet
  386. interface exposed by the modem firmware. To establish a connection
  387. you will first need a userspace program that sends the right
  388. command to the modem through its CDC ACM port, and most
  389. likely also a DHCP client. See this thread about using the
  390. 4G modem from Verizon:
  391. http://ubuntuforums.org/showpost.php?p=10589647&postcount=17
  392. endmenu