Kconfig 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945
  1. #
  2. # USB Gadget support on a system involves
  3. # (a) a peripheral controller, and
  4. # (b) the gadget driver using it.
  5. #
  6. # NOTE: Gadget support ** DOES NOT ** depend on host-side CONFIG_USB !!
  7. #
  8. # - Host systems (like PCs) need CONFIG_USB (with "A" jacks).
  9. # - Peripherals (like PDAs) need CONFIG_USB_GADGET (with "B" jacks).
  10. # - Some systems have both kinds of controllers.
  11. #
  12. # With help from a special transceiver and a "Mini-AB" jack, systems with
  13. # both kinds of controller can also support "USB On-the-Go" (CONFIG_USB_OTG).
  14. #
  15. menuconfig USB_GADGET
  16. tristate "USB Gadget Support"
  17. select NLS
  18. help
  19. USB is a master/slave protocol, organized with one master
  20. host (such as a PC) controlling up to 127 peripheral devices.
  21. The USB hardware is asymmetric, which makes it easier to set up:
  22. you can't connect a "to-the-host" connector to a peripheral.
  23. Linux can run in the host, or in the peripheral. In both cases
  24. you need a low level bus controller driver, and some software
  25. talking to it. Peripheral controllers are often discrete silicon,
  26. or are integrated with the CPU in a microcontroller. The more
  27. familiar host side controllers have names like "EHCI", "OHCI",
  28. or "UHCI", and are usually integrated into southbridges on PC
  29. motherboards.
  30. Enable this configuration option if you want to run Linux inside
  31. a USB peripheral device. Configure one hardware driver for your
  32. peripheral/device side bus controller, and a "gadget driver" for
  33. your peripheral protocol. (If you use modular gadget drivers,
  34. you may configure more than one.)
  35. If in doubt, say "N" and don't enable these drivers; most people
  36. don't have this kind of hardware (except maybe inside Linux PDAs).
  37. For more information, see <http://www.linux-usb.org/gadget> and
  38. the kernel DocBook documentation for this API.
  39. if USB_GADGET
  40. config USB_GADGET_DEBUG
  41. boolean "Debugging messages (DEVELOPMENT)"
  42. depends on DEBUG_KERNEL
  43. help
  44. Many controller and gadget drivers will print some debugging
  45. messages if you use this option to ask for those messages.
  46. Avoid enabling these messages, even if you're actively
  47. debugging such a driver. Many drivers will emit so many
  48. messages that the driver timings are affected, which will
  49. either create new failure modes or remove the one you're
  50. trying to track down. Never enable these messages for a
  51. production build.
  52. config USB_GADGET_DEBUG_FILES
  53. boolean "Debugging information files (DEVELOPMENT)"
  54. depends on PROC_FS
  55. help
  56. Some of the drivers in the "gadget" framework can expose
  57. debugging information in files such as /proc/driver/udc
  58. (for a peripheral controller). The information in these
  59. files may help when you're troubleshooting or bringing up a
  60. driver on a new board. Enable these files by choosing "Y"
  61. here. If in doubt, or to conserve kernel memory, say "N".
  62. config USB_GADGET_DEBUG_FS
  63. boolean "Debugging information files in debugfs (DEVELOPMENT)"
  64. depends on DEBUG_FS
  65. help
  66. Some of the drivers in the "gadget" framework can expose
  67. debugging information in files under /sys/kernel/debug/.
  68. The information in these files may help when you're
  69. troubleshooting or bringing up a driver on a new board.
  70. Enable these files by choosing "Y" here. If in doubt, or
  71. to conserve kernel memory, say "N".
  72. config USB_GADGET_VBUS_DRAW
  73. int "Maximum VBUS Power usage (2-500 mA)"
  74. range 2 500
  75. default 2
  76. help
  77. Some devices need to draw power from USB when they are
  78. configured, perhaps to operate circuitry or to recharge
  79. batteries. This is in addition to any local power supply,
  80. such as an AC adapter or batteries.
  81. Enter the maximum power your device draws through USB, in
  82. milliAmperes. The permitted range of values is 2 - 500 mA;
  83. 0 mA would be legal, but can make some hosts misbehave.
  84. This value will be used except for system-specific gadget
  85. drivers that have more specific information.
  86. config USB_GADGET_STORAGE_NUM_BUFFERS
  87. int "Number of storage pipeline buffers"
  88. range 2 4
  89. default 2
  90. help
  91. Usually 2 buffers are enough to establish a good buffering
  92. pipeline. The number may be increased in order to compensate
  93. for a bursty VFS behaviour. For instance there may be CPU wake up
  94. latencies that makes the VFS to appear bursty in a system with
  95. an CPU on-demand governor. Especially if DMA is doing IO to
  96. offload the CPU. In this case the CPU will go into power
  97. save often and spin up occasionally to move data within VFS.
  98. If selecting USB_GADGET_DEBUG_FILES this value may be set by
  99. a module parameter as well.
  100. If unsure, say 2.
  101. #
  102. # USB Peripheral Controller Support
  103. #
  104. # The order here is alphabetical, except that integrated controllers go
  105. # before discrete ones so they will be the initial/default value:
  106. # - integrated/SOC controllers first
  107. # - licensed IP used in both SOC and discrete versions
  108. # - discrete ones (including all PCI-only controllers)
  109. # - debug/dummy gadget+hcd is last.
  110. #
  111. menu "USB Peripheral Controller"
  112. #
  113. # Integrated controllers
  114. #
  115. config USB_AT91
  116. tristate "Atmel AT91 USB Device Port"
  117. depends on ARCH_AT91
  118. help
  119. Many Atmel AT91 processors (such as the AT91RM2000) have a
  120. full speed USB Device Port with support for five configurable
  121. endpoints (plus endpoint zero).
  122. Say "y" to link the driver statically, or "m" to build a
  123. dynamically linked module called "at91_udc" and force all
  124. gadget drivers to also be dynamically linked.
  125. config USB_LPC32XX
  126. tristate "LPC32XX USB Peripheral Controller"
  127. depends on ARCH_LPC32XX
  128. select USB_ISP1301
  129. help
  130. This option selects the USB device controller in the LPC32xx SoC.
  131. Say "y" to link the driver statically, or "m" to build a
  132. dynamically linked module called "lpc32xx_udc" and force all
  133. gadget drivers to also be dynamically linked.
  134. config USB_ATMEL_USBA
  135. tristate "Atmel USBA"
  136. depends on AVR32 || ARCH_AT91SAM9RL || ARCH_AT91SAM9G45
  137. help
  138. USBA is the integrated high-speed USB Device controller on
  139. the AT32AP700x, some AT91SAM9 and AT91CAP9 processors from Atmel.
  140. config USB_BCM63XX_UDC
  141. tristate "Broadcom BCM63xx Peripheral Controller"
  142. depends on BCM63XX
  143. help
  144. Many Broadcom BCM63xx chipsets (such as the BCM6328) have a
  145. high speed USB Device Port with support for four fixed endpoints
  146. (plus endpoint zero).
  147. Say "y" to link the driver statically, or "m" to build a
  148. dynamically linked module called "bcm63xx_udc".
  149. config USB_FSL_USB2
  150. tristate "Freescale Highspeed USB DR Peripheral Controller"
  151. depends on FSL_SOC || ARCH_MXC
  152. select USB_FSL_MPH_DR_OF if OF
  153. help
  154. Some of Freescale PowerPC and i.MX processors have a High Speed
  155. Dual-Role(DR) USB controller, which supports device mode.
  156. The number of programmable endpoints is different through
  157. SOC revisions.
  158. Say "y" to link the driver statically, or "m" to build a
  159. dynamically linked module called "fsl_usb2_udc" and force
  160. all gadget drivers to also be dynamically linked.
  161. config USB_FUSB300
  162. tristate "Faraday FUSB300 USB Peripheral Controller"
  163. depends on !PHYS_ADDR_T_64BIT
  164. help
  165. Faraday usb device controller FUSB300 driver
  166. config USB_OMAP
  167. tristate "OMAP USB Device Controller"
  168. depends on ARCH_OMAP1
  169. select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3 || MACH_OMAP_H4_OTG
  170. select USB_OTG_UTILS if ARCH_OMAP
  171. help
  172. Many Texas Instruments OMAP processors have flexible full
  173. speed USB device controllers, with support for up to 30
  174. endpoints (plus endpoint zero). This driver supports the
  175. controller in the OMAP 1611, and should work with controllers
  176. in other OMAP processors too, given minor tweaks.
  177. Say "y" to link the driver statically, or "m" to build a
  178. dynamically linked module called "omap_udc" and force all
  179. gadget drivers to also be dynamically linked.
  180. config USB_PXA25X
  181. tristate "PXA 25x or IXP 4xx"
  182. depends on (ARCH_PXA && PXA25x) || ARCH_IXP4XX
  183. select USB_OTG_UTILS
  184. help
  185. Intel's PXA 25x series XScale ARM-5TE processors include
  186. an integrated full speed USB 1.1 device controller. The
  187. controller in the IXP 4xx series is register-compatible.
  188. It has fifteen fixed-function endpoints, as well as endpoint
  189. zero (for control transfers).
  190. Say "y" to link the driver statically, or "m" to build a
  191. dynamically linked module called "pxa25x_udc" and force all
  192. gadget drivers to also be dynamically linked.
  193. # if there's only one gadget driver, using only two bulk endpoints,
  194. # don't waste memory for the other endpoints
  195. config USB_PXA25X_SMALL
  196. depends on USB_PXA25X
  197. bool
  198. default n if USB_ETH_RNDIS
  199. default y if USB_ZERO
  200. default y if USB_ETH
  201. default y if USB_G_SERIAL
  202. config USB_R8A66597
  203. tristate "Renesas R8A66597 USB Peripheral Controller"
  204. help
  205. R8A66597 is a discrete USB host and peripheral controller chip that
  206. supports both full and high speed USB 2.0 data transfers.
  207. It has nine configurable endpoints, and endpoint zero.
  208. Say "y" to link the driver statically, or "m" to build a
  209. dynamically linked module called "r8a66597_udc" and force all
  210. gadget drivers to also be dynamically linked.
  211. config USB_RENESAS_USBHS_UDC
  212. tristate 'Renesas USBHS controller'
  213. depends on USB_RENESAS_USBHS
  214. help
  215. Renesas USBHS is a discrete USB host and peripheral controller chip
  216. that supports both full and high speed USB 2.0 data transfers.
  217. It has nine or more configurable endpoints, and endpoint zero.
  218. Say "y" to link the driver statically, or "m" to build a
  219. dynamically linked module called "renesas_usbhs" and force all
  220. gadget drivers to also be dynamically linked.
  221. config USB_PXA27X
  222. tristate "PXA 27x"
  223. depends on ARCH_PXA && (PXA27x || PXA3xx)
  224. select USB_OTG_UTILS
  225. help
  226. Intel's PXA 27x series XScale ARM v5TE processors include
  227. an integrated full speed USB 1.1 device controller.
  228. It has up to 23 endpoints, as well as endpoint zero (for
  229. control transfers).
  230. Say "y" to link the driver statically, or "m" to build a
  231. dynamically linked module called "pxa27x_udc" and force all
  232. gadget drivers to also be dynamically linked.
  233. config USB_S3C_HSOTG
  234. tristate "S3C HS/OtG USB Device controller"
  235. depends on S3C_DEV_USB_HSOTG
  236. help
  237. The Samsung S3C64XX USB2.0 high-speed gadget controller
  238. integrated into the S3C64XX series SoC.
  239. config USB_IMX
  240. tristate "Freescale i.MX1 USB Peripheral Controller"
  241. depends on ARCH_MXC
  242. help
  243. Freescale's i.MX1 includes an integrated full speed
  244. USB 1.1 device controller.
  245. It has Six fixed-function endpoints, as well as endpoint
  246. zero (for control transfers).
  247. Say "y" to link the driver statically, or "m" to build a
  248. dynamically linked module called "imx_udc" and force all
  249. gadget drivers to also be dynamically linked.
  250. config USB_S3C2410
  251. tristate "S3C2410 USB Device Controller"
  252. depends on ARCH_S3C24XX
  253. help
  254. Samsung's S3C2410 is an ARM-4 processor with an integrated
  255. full speed USB 1.1 device controller. It has 4 configurable
  256. endpoints, as well as endpoint zero (for control transfers).
  257. This driver has been tested on the S3C2410, S3C2412, and
  258. S3C2440 processors.
  259. config USB_S3C2410_DEBUG
  260. boolean "S3C2410 udc debug messages"
  261. depends on USB_S3C2410
  262. config USB_S3C_HSUDC
  263. tristate "S3C2416, S3C2443 and S3C2450 USB Device Controller"
  264. depends on ARCH_S3C24XX
  265. help
  266. Samsung's S3C2416, S3C2443 and S3C2450 is an ARM9 based SoC
  267. integrated with dual speed USB 2.0 device controller. It has
  268. 8 endpoints, as well as endpoint zero.
  269. This driver has been tested on S3C2416 and S3C2450 processors.
  270. config USB_MV_UDC
  271. tristate "Marvell USB2.0 Device Controller"
  272. help
  273. Marvell Socs (including PXA and MMP series) include a high speed
  274. USB2.0 OTG controller, which can be configured as high speed or
  275. full speed USB peripheral.
  276. config USB_MV_U3D
  277. tristate "MARVELL PXA2128 USB 3.0 controller"
  278. depends on CPU_MMP3
  279. select USB_GADGET_DUALSPEED
  280. select USB_GADGET_SUPERSPEED
  281. help
  282. MARVELL PXA2128 Processor series include a super speed USB3.0 device
  283. controller, which support super speed USB peripheral.
  284. #
  285. # Controllers available in both integrated and discrete versions
  286. #
  287. # musb builds in ../musb along with host support
  288. config USB_GADGET_MUSB_HDRC
  289. tristate "Inventra HDRC USB Peripheral (TI, ADI, ...)"
  290. depends on USB_MUSB_HDRC
  291. help
  292. This OTG-capable silicon IP is used in dual designs including
  293. the TI DaVinci, OMAP 243x, OMAP 343x, TUSB 6010, and ADI Blackfin
  294. config USB_M66592
  295. tristate "Renesas M66592 USB Peripheral Controller"
  296. help
  297. M66592 is a discrete USB peripheral controller chip that
  298. supports both full and high speed USB 2.0 data transfers.
  299. It has seven configurable endpoints, and endpoint zero.
  300. Say "y" to link the driver statically, or "m" to build a
  301. dynamically linked module called "m66592_udc" and force all
  302. gadget drivers to also be dynamically linked.
  303. #
  304. # Controllers available only in discrete form (and all PCI controllers)
  305. #
  306. config USB_AMD5536UDC
  307. tristate "AMD5536 UDC"
  308. depends on PCI
  309. help
  310. The AMD5536 UDC is part of the AMD Geode CS5536, an x86 southbridge.
  311. It is a USB Highspeed DMA capable USB device controller. Beside ep0
  312. it provides 4 IN and 4 OUT endpoints (bulk or interrupt type).
  313. The UDC port supports OTG operation, and may be used as a host port
  314. if it's not being used to implement peripheral or OTG roles.
  315. Say "y" to link the driver statically, or "m" to build a
  316. dynamically linked module called "amd5536udc" and force all
  317. gadget drivers to also be dynamically linked.
  318. config USB_FSL_QE
  319. tristate "Freescale QE/CPM USB Device Controller"
  320. depends on FSL_SOC && (QUICC_ENGINE || CPM)
  321. help
  322. Some of Freescale PowerPC processors have a Full Speed
  323. QE/CPM2 USB controller, which support device mode with 4
  324. programmable endpoints. This driver supports the
  325. controller in the MPC8360 and MPC8272, and should work with
  326. controllers having QE or CPM2, given minor tweaks.
  327. Set CONFIG_USB_GADGET to "m" to build this driver as a
  328. dynamically linked module called "fsl_qe_udc".
  329. config USB_NET2272
  330. tristate "PLX NET2272"
  331. help
  332. PLX NET2272 is a USB peripheral controller which supports
  333. both full and high speed USB 2.0 data transfers.
  334. It has three configurable endpoints, as well as endpoint zero
  335. (for control transfer).
  336. Say "y" to link the driver statically, or "m" to build a
  337. dynamically linked module called "net2272" and force all
  338. gadget drivers to also be dynamically linked.
  339. config USB_NET2272_DMA
  340. boolean "Support external DMA controller"
  341. depends on USB_NET2272
  342. help
  343. The NET2272 part can optionally support an external DMA
  344. controller, but your board has to have support in the
  345. driver itself.
  346. If unsure, say "N" here. The driver works fine in PIO mode.
  347. config USB_NET2280
  348. tristate "NetChip 228x"
  349. depends on PCI
  350. help
  351. NetChip 2280 / 2282 is a PCI based USB peripheral controller which
  352. supports both full and high speed USB 2.0 data transfers.
  353. It has six configurable endpoints, as well as endpoint zero
  354. (for control transfers) and several endpoints with dedicated
  355. functions.
  356. Say "y" to link the driver statically, or "m" to build a
  357. dynamically linked module called "net2280" and force all
  358. gadget drivers to also be dynamically linked.
  359. config USB_GOKU
  360. tristate "Toshiba TC86C001 'Goku-S'"
  361. depends on PCI
  362. help
  363. The Toshiba TC86C001 is a PCI device which includes controllers
  364. for full speed USB devices, IDE, I2C, SIO, plus a USB host (OHCI).
  365. The device controller has three configurable (bulk or interrupt)
  366. endpoints, plus endpoint zero (for control transfers).
  367. Say "y" to link the driver statically, or "m" to build a
  368. dynamically linked module called "goku_udc" and to force all
  369. gadget drivers to also be dynamically linked.
  370. config USB_EG20T
  371. tristate "Intel EG20T PCH/LAPIS Semiconductor IOH(ML7213/ML7831) UDC"
  372. depends on PCI
  373. help
  374. This is a USB device driver for EG20T PCH.
  375. EG20T PCH is the platform controller hub that is used in Intel's
  376. general embedded platform. EG20T PCH has USB device interface.
  377. Using this interface, it is able to access system devices connected
  378. to USB device.
  379. This driver enables USB device function.
  380. USB device is a USB peripheral controller which
  381. supports both full and high speed USB 2.0 data transfers.
  382. This driver supports both control transfer and bulk transfer modes.
  383. This driver dose not support interrupt transfer or isochronous
  384. transfer modes.
  385. This driver also can be used for LAPIS Semiconductor's ML7213 which is
  386. for IVI(In-Vehicle Infotainment) use.
  387. ML7831 is for general purpose use.
  388. ML7213/ML7831 is companion chip for Intel Atom E6xx series.
  389. ML7213/ML7831 is completely compatible for Intel EG20T PCH.
  390. #
  391. # LAST -- dummy/emulated controller
  392. #
  393. config USB_DUMMY_HCD
  394. tristate "Dummy HCD (DEVELOPMENT)"
  395. depends on USB=y || (USB=m && USB_GADGET=m)
  396. help
  397. This host controller driver emulates USB, looping all data transfer
  398. requests back to a USB "gadget driver" in the same host. The host
  399. side is the master; the gadget side is the slave. Gadget drivers
  400. can be high, full, or low speed; and they have access to endpoints
  401. like those from NET2280, PXA2xx, or SA1100 hardware.
  402. This may help in some stages of creating a driver to embed in a
  403. Linux device, since it lets you debug several parts of the gadget
  404. driver without its hardware or drivers being involved.
  405. Since such a gadget side driver needs to interoperate with a host
  406. side Linux-USB device driver, this may help to debug both sides
  407. of a USB protocol stack.
  408. Say "y" to link the driver statically, or "m" to build a
  409. dynamically linked module called "dummy_hcd" and force all
  410. gadget drivers to also be dynamically linked.
  411. # NOTE: Please keep dummy_hcd LAST so that "real hardware" appears
  412. # first and will be selected by default.
  413. endmenu
  414. #
  415. # USB Gadget Drivers
  416. #
  417. # composite based drivers
  418. config USB_LIBCOMPOSITE
  419. tristate
  420. depends on USB_GADGET
  421. config USB_F_SS_LB
  422. tristate
  423. choice
  424. tristate "USB Gadget Drivers"
  425. default USB_ETH
  426. help
  427. A Linux "Gadget Driver" talks to the USB Peripheral Controller
  428. driver through the abstract "gadget" API. Some other operating
  429. systems call these "client" drivers, of which "class drivers"
  430. are a subset (implementing a USB device class specification).
  431. A gadget driver implements one or more USB functions using
  432. the peripheral hardware.
  433. Gadget drivers are hardware-neutral, or "platform independent",
  434. except that they sometimes must understand quirks or limitations
  435. of the particular controllers they work with. For example, when
  436. a controller doesn't support alternate configurations or provide
  437. enough of the right types of endpoints, the gadget driver might
  438. not be able work with that controller, or might need to implement
  439. a less common variant of a device class protocol.
  440. # this first set of drivers all depend on bulk-capable hardware.
  441. config USB_ZERO
  442. tristate "Gadget Zero (DEVELOPMENT)"
  443. select USB_LIBCOMPOSITE
  444. select USB_F_SS_LB
  445. help
  446. Gadget Zero is a two-configuration device. It either sinks and
  447. sources bulk data; or it loops back a configurable number of
  448. transfers. It also implements control requests, for "chapter 9"
  449. conformance. The driver needs only two bulk-capable endpoints, so
  450. it can work on top of most device-side usb controllers. It's
  451. useful for testing, and is also a working example showing how
  452. USB "gadget drivers" can be written.
  453. Make this be the first driver you try using on top of any new
  454. USB peripheral controller driver. Then you can use host-side
  455. test software, like the "usbtest" driver, to put your hardware
  456. and its driver through a basic set of functional tests.
  457. Gadget Zero also works with the host-side "usb-skeleton" driver,
  458. and with many kinds of host-side test software. You may need
  459. to tweak product and vendor IDs before host software knows about
  460. this device, and arrange to select an appropriate configuration.
  461. Say "y" to link the driver statically, or "m" to build a
  462. dynamically linked module called "g_zero".
  463. config USB_ZERO_HNPTEST
  464. boolean "HNP Test Device"
  465. depends on USB_ZERO && USB_OTG
  466. help
  467. You can configure this device to enumerate using the device
  468. identifiers of the USB-OTG test device. That means that when
  469. this gadget connects to another OTG device, with this one using
  470. the "B-Peripheral" role, that device will use HNP to let this
  471. one serve as the USB host instead (in the "B-Host" role).
  472. config USB_AUDIO
  473. tristate "Audio Gadget"
  474. depends on SND
  475. select USB_LIBCOMPOSITE
  476. select SND_PCM
  477. help
  478. This Gadget Audio driver is compatible with USB Audio Class
  479. specification 2.0. It implements 1 AudioControl interface,
  480. 1 AudioStreaming Interface each for USB-OUT and USB-IN.
  481. Number of channels, sample rate and sample size can be
  482. specified as module parameters.
  483. This driver doesn't expect any real Audio codec to be present
  484. on the device - the audio streams are simply sinked to and
  485. sourced from a virtual ALSA sound card created. The user-space
  486. application may choose to do whatever it wants with the data
  487. received from the USB Host and choose to provide whatever it
  488. wants as audio data to the USB Host.
  489. Say "y" to link the driver statically, or "m" to build a
  490. dynamically linked module called "g_audio".
  491. config GADGET_UAC1
  492. bool "UAC 1.0 (Legacy)"
  493. depends on USB_AUDIO
  494. help
  495. If you instead want older UAC Spec-1.0 driver that also has audio
  496. paths hardwired to the Audio codec chip on-board and doesn't work
  497. without one.
  498. config USB_ETH
  499. tristate "Ethernet Gadget (with CDC Ethernet support)"
  500. depends on NET
  501. select USB_LIBCOMPOSITE
  502. select CRC32
  503. help
  504. This driver implements Ethernet style communication, in one of
  505. several ways:
  506. - The "Communication Device Class" (CDC) Ethernet Control Model.
  507. That protocol is often avoided with pure Ethernet adapters, in
  508. favor of simpler vendor-specific hardware, but is widely
  509. supported by firmware for smart network devices.
  510. - On hardware can't implement that protocol, a simple CDC subset
  511. is used, placing fewer demands on USB.
  512. - CDC Ethernet Emulation Model (EEM) is a newer standard that has
  513. a simpler interface that can be used by more USB hardware.
  514. RNDIS support is an additional option, more demanding than than
  515. subset.
  516. Within the USB device, this gadget driver exposes a network device
  517. "usbX", where X depends on what other networking devices you have.
  518. Treat it like a two-node Ethernet link: host, and gadget.
  519. The Linux-USB host-side "usbnet" driver interoperates with this
  520. driver, so that deep I/O queues can be supported. On 2.4 kernels,
  521. use "CDCEther" instead, if you're using the CDC option. That CDC
  522. mode should also interoperate with standard CDC Ethernet class
  523. drivers on other host operating systems.
  524. Say "y" to link the driver statically, or "m" to build a
  525. dynamically linked module called "g_ether".
  526. config USB_ETH_RNDIS
  527. bool "RNDIS support"
  528. depends on USB_ETH
  529. select USB_LIBCOMPOSITE
  530. default y
  531. help
  532. Microsoft Windows XP bundles the "Remote NDIS" (RNDIS) protocol,
  533. and Microsoft provides redistributable binary RNDIS drivers for
  534. older versions of Windows.
  535. If you say "y" here, the Ethernet gadget driver will try to provide
  536. a second device configuration, supporting RNDIS to talk to such
  537. Microsoft USB hosts.
  538. To make MS-Windows work with this, use Documentation/usb/linux.inf
  539. as the "driver info file". For versions of MS-Windows older than
  540. XP, you'll need to download drivers from Microsoft's website; a URL
  541. is given in comments found in that info file.
  542. config USB_ETH_EEM
  543. bool "Ethernet Emulation Model (EEM) support"
  544. depends on USB_ETH
  545. select USB_LIBCOMPOSITE
  546. default n
  547. help
  548. CDC EEM is a newer USB standard that is somewhat simpler than CDC ECM
  549. and therefore can be supported by more hardware. Technically ECM and
  550. EEM are designed for different applications. The ECM model extends
  551. the network interface to the target (e.g. a USB cable modem), and the
  552. EEM model is for mobile devices to communicate with hosts using
  553. ethernet over USB. For Linux gadgets, however, the interface with
  554. the host is the same (a usbX device), so the differences are minimal.
  555. If you say "y" here, the Ethernet gadget driver will use the EEM
  556. protocol rather than ECM. If unsure, say "n".
  557. config USB_G_NCM
  558. tristate "Network Control Model (NCM) support"
  559. depends on NET
  560. select USB_LIBCOMPOSITE
  561. select CRC32
  562. help
  563. This driver implements USB CDC NCM subclass standard. NCM is
  564. an advanced protocol for Ethernet encapsulation, allows grouping
  565. of several ethernet frames into one USB transfer and different
  566. alignment possibilities.
  567. Say "y" to link the driver statically, or "m" to build a
  568. dynamically linked module called "g_ncm".
  569. config USB_GADGETFS
  570. tristate "Gadget Filesystem"
  571. help
  572. This driver provides a filesystem based API that lets user mode
  573. programs implement a single-configuration USB device, including
  574. endpoint I/O and control requests that don't relate to enumeration.
  575. All endpoints, transfer speeds, and transfer types supported by
  576. the hardware are available, through read() and write() calls.
  577. Say "y" to link the driver statically, or "m" to build a
  578. dynamically linked module called "gadgetfs".
  579. config USB_FUNCTIONFS
  580. tristate "Function Filesystem"
  581. select USB_LIBCOMPOSITE
  582. select USB_FUNCTIONFS_GENERIC if !(USB_FUNCTIONFS_ETH || USB_FUNCTIONFS_RNDIS)
  583. help
  584. The Function Filesystem (FunctionFS) lets one create USB
  585. composite functions in user space in the same way GadgetFS
  586. lets one create USB gadgets in user space. This allows creation
  587. of composite gadgets such that some of the functions are
  588. implemented in kernel space (for instance Ethernet, serial or
  589. mass storage) and other are implemented in user space.
  590. If you say "y" or "m" here you will be able what kind of
  591. configurations the gadget will provide.
  592. Say "y" to link the driver statically, or "m" to build
  593. a dynamically linked module called "g_ffs".
  594. config USB_FUNCTIONFS_ETH
  595. bool "Include configuration with CDC ECM (Ethernet)"
  596. depends on USB_FUNCTIONFS && NET
  597. help
  598. Include a configuration with CDC ECM function (Ethernet) and the
  599. Function Filesystem.
  600. config USB_FUNCTIONFS_RNDIS
  601. bool "Include configuration with RNDIS (Ethernet)"
  602. depends on USB_FUNCTIONFS && NET
  603. help
  604. Include a configuration with RNDIS function (Ethernet) and the Filesystem.
  605. config USB_FUNCTIONFS_GENERIC
  606. bool "Include 'pure' configuration"
  607. depends on USB_FUNCTIONFS
  608. help
  609. Include a configuration with the Function Filesystem alone with
  610. no Ethernet interface.
  611. config USB_MASS_STORAGE
  612. tristate "Mass Storage Gadget"
  613. depends on BLOCK
  614. select USB_LIBCOMPOSITE
  615. help
  616. The Mass Storage Gadget acts as a USB Mass Storage disk drive.
  617. As its storage repository it can use a regular file or a block
  618. device (in much the same way as the "loop" device driver),
  619. specified as a module parameter or sysfs option.
  620. This driver is a replacement for now removed File-backed
  621. Storage Gadget (g_file_storage).
  622. Say "y" to link the driver statically, or "m" to build
  623. a dynamically linked module called "g_mass_storage".
  624. config USB_GADGET_TARGET
  625. tristate "USB Gadget Target Fabric Module"
  626. depends on TARGET_CORE
  627. select USB_LIBCOMPOSITE
  628. help
  629. This fabric is an USB gadget. Two USB protocols are supported that is
  630. BBB or BOT (Bulk Only Transport) and UAS (USB Attached SCSI). BOT is
  631. advertised on alternative interface 0 (primary) and UAS is on
  632. alternative interface 1. Both protocols can work on USB2.0 and USB3.0.
  633. UAS utilizes the USB 3.0 feature called streams support.
  634. config USB_G_SERIAL
  635. tristate "Serial Gadget (with CDC ACM and CDC OBEX support)"
  636. select USB_LIBCOMPOSITE
  637. help
  638. The Serial Gadget talks to the Linux-USB generic serial driver.
  639. This driver supports a CDC-ACM module option, which can be used
  640. to interoperate with MS-Windows hosts or with the Linux-USB
  641. "cdc-acm" driver.
  642. This driver also supports a CDC-OBEX option. You will need a
  643. user space OBEX server talking to /dev/ttyGS*, since the kernel
  644. itself doesn't implement the OBEX protocol.
  645. Say "y" to link the driver statically, or "m" to build a
  646. dynamically linked module called "g_serial".
  647. For more information, see Documentation/usb/gadget_serial.txt
  648. which includes instructions and a "driver info file" needed to
  649. make MS-Windows work with CDC ACM.
  650. config USB_MIDI_GADGET
  651. tristate "MIDI Gadget"
  652. depends on SND
  653. select USB_LIBCOMPOSITE
  654. select SND_RAWMIDI
  655. help
  656. The MIDI Gadget acts as a USB Audio device, with one MIDI
  657. input and one MIDI output. These MIDI jacks appear as
  658. a sound "card" in the ALSA sound system. Other MIDI
  659. connections can then be made on the gadget system, using
  660. ALSA's aconnect utility etc.
  661. Say "y" to link the driver statically, or "m" to build a
  662. dynamically linked module called "g_midi".
  663. config USB_G_PRINTER
  664. tristate "Printer Gadget"
  665. select USB_LIBCOMPOSITE
  666. help
  667. The Printer Gadget channels data between the USB host and a
  668. userspace program driving the print engine. The user space
  669. program reads and writes the device file /dev/g_printer to
  670. receive or send printer data. It can use ioctl calls to
  671. the device file to get or set printer status.
  672. Say "y" to link the driver statically, or "m" to build a
  673. dynamically linked module called "g_printer".
  674. For more information, see Documentation/usb/gadget_printer.txt
  675. which includes sample code for accessing the device file.
  676. config USB_CDC_COMPOSITE
  677. tristate "CDC Composite Device (Ethernet and ACM)"
  678. depends on NET
  679. select USB_LIBCOMPOSITE
  680. help
  681. This driver provides two functions in one configuration:
  682. a CDC Ethernet (ECM) link, and a CDC ACM (serial port) link.
  683. This driver requires four bulk and two interrupt endpoints,
  684. plus the ability to handle altsettings. Not all peripheral
  685. controllers are that capable.
  686. Say "y" to link the driver statically, or "m" to build a
  687. dynamically linked module.
  688. config USB_G_NOKIA
  689. tristate "Nokia composite gadget"
  690. depends on PHONET
  691. select USB_LIBCOMPOSITE
  692. help
  693. The Nokia composite gadget provides support for acm, obex
  694. and phonet in only one composite gadget driver.
  695. It's only really useful for N900 hardware. If you're building
  696. a kernel for N900, say Y or M here. If unsure, say N.
  697. config USB_G_ACM_MS
  698. tristate "CDC Composite Device (ACM and mass storage)"
  699. depends on BLOCK
  700. select USB_LIBCOMPOSITE
  701. help
  702. This driver provides two functions in one configuration:
  703. a mass storage, and a CDC ACM (serial port) link.
  704. Say "y" to link the driver statically, or "m" to build a
  705. dynamically linked module called "g_acm_ms".
  706. config USB_G_MULTI
  707. tristate "Multifunction Composite Gadget"
  708. depends on BLOCK && NET
  709. select USB_G_MULTI_CDC if !USB_G_MULTI_RNDIS
  710. select USB_LIBCOMPOSITE
  711. help
  712. The Multifunction Composite Gadget provides Ethernet (RNDIS
  713. and/or CDC Ethernet), mass storage and ACM serial link
  714. interfaces.
  715. You will be asked to choose which of the two configurations is
  716. to be available in the gadget. At least one configuration must
  717. be chosen to make the gadget usable. Selecting more than one
  718. configuration will prevent Windows from automatically detecting
  719. the gadget as a composite gadget, so an INF file will be needed to
  720. use the gadget.
  721. Say "y" to link the driver statically, or "m" to build a
  722. dynamically linked module called "g_multi".
  723. config USB_G_MULTI_RNDIS
  724. bool "RNDIS + CDC Serial + Storage configuration"
  725. depends on USB_G_MULTI
  726. default y
  727. help
  728. This option enables a configuration with RNDIS, CDC Serial and
  729. Mass Storage functions available in the Multifunction Composite
  730. Gadget. This is the configuration dedicated for Windows since RNDIS
  731. is Microsoft's protocol.
  732. If unsure, say "y".
  733. config USB_G_MULTI_CDC
  734. bool "CDC Ethernet + CDC Serial + Storage configuration"
  735. depends on USB_G_MULTI
  736. default n
  737. help
  738. This option enables a configuration with CDC Ethernet (ECM), CDC
  739. Serial and Mass Storage functions available in the Multifunction
  740. Composite Gadget.
  741. If unsure, say "y".
  742. config USB_G_HID
  743. tristate "HID Gadget"
  744. select USB_LIBCOMPOSITE
  745. help
  746. The HID gadget driver provides generic emulation of USB
  747. Human Interface Devices (HID).
  748. For more information, see Documentation/usb/gadget_hid.txt which
  749. includes sample code for accessing the device files.
  750. Say "y" to link the driver statically, or "m" to build a
  751. dynamically linked module called "g_hid".
  752. # Standalone / single function gadgets
  753. config USB_G_DBGP
  754. tristate "EHCI Debug Device Gadget"
  755. select USB_LIBCOMPOSITE
  756. help
  757. This gadget emulates an EHCI Debug device. This is useful when you want
  758. to interact with an EHCI Debug Port.
  759. Say "y" to link the driver statically, or "m" to build a
  760. dynamically linked module called "g_dbgp".
  761. if USB_G_DBGP
  762. choice
  763. prompt "EHCI Debug Device mode"
  764. default USB_G_DBGP_SERIAL
  765. config USB_G_DBGP_PRINTK
  766. depends on USB_G_DBGP
  767. bool "printk"
  768. help
  769. Directly printk() received data. No interaction.
  770. config USB_G_DBGP_SERIAL
  771. depends on USB_G_DBGP
  772. bool "serial"
  773. help
  774. Userland can interact using /dev/ttyGSxxx.
  775. endchoice
  776. endif
  777. # put drivers that need isochronous transfer support (for audio
  778. # or video class gadget drivers), or specific hardware, here.
  779. config USB_G_WEBCAM
  780. tristate "USB Webcam Gadget"
  781. depends on VIDEO_DEV
  782. select USB_LIBCOMPOSITE
  783. help
  784. The Webcam Gadget acts as a composite USB Audio and Video Class
  785. device. It provides a userspace API to process UVC control requests
  786. and stream video data to the host.
  787. Say "y" to link the driver statically, or "m" to build a
  788. dynamically linked module called "g_webcam".
  789. endchoice
  790. endif # USB_GADGET