exynos-linux-stable/drivers/usb
2024-09-27 17:20:00 +03:00
..
atm USB: atm: ueagle-atm: add missing endpoint check 2019-12-21 10:41:53 +01:00
c67x00
chipidea usb: chipidea: host: Disable port power only if previously enabled 2020-01-14 20:04:25 +01:00
class Merge 4.9.218 branch 'android-4.9-q' into tw10-android-4.9-q 2020-04-09 17:15:01 +03:00
common Merge 4.9.212 branch 'android-4.9-q' into tw10-android-4.9-q 2020-02-12 12:32:38 +02:00
core import G96xFXXU8DTC5 OSRC 2020-04-22 21:16:08 +03:00
dwc2 usb: dwc2: Fix DMA cache alignment issues 2019-06-22 08:17:20 +02:00
dwc3 import G96XFXXUCFTK1 OSRC 2023-02-21 00:10:26 +03:00
early
gadget usb: Add Drivedroid Support 2024-09-27 17:20:00 +03:00
host Merge 4.9.218 branch 'android-4.9-q' into tw10-android-4.9-q 2020-04-09 17:15:01 +03:00
image USB: microtek: fix info-leak at probe 2019-10-17 13:42:38 -07:00
isp1760
manager drivers: usb: manager: fix bcdUSB descriptor 2023-02-21 00:20:02 +03:00
misc Merge 4.9.212 branch 'android-4.9-q' into tw10-android-4.9-q 2020-02-12 12:32:38 +02:00
mon usb: mon: Fix a deadlock in usbmon between mmap and read 2019-12-21 10:41:56 +01:00
musb usb: musb: fix crash with highmen PIO and usbmon 2020-04-02 17:20:37 +02:00
notify import G96XFXXUCFTK1 OSRC 2023-02-21 00:10:26 +03:00
phy Merge 4.9.212 branch 'android-4.9-q' into tw10-android-4.9-q 2020-02-12 12:32:38 +02:00
renesas_usbhs usb: renesas_usbhs: add suspend event support in gadget mode 2020-01-04 13:39:14 +01:00
serial USB: serial: io_edgeport: fix slab-out-of-bounds read in edge_interrupt_callback 2020-04-02 17:20:36 +02:00
storage Merge 4.9.216 branch 'android-4.9-q' into tw10-android-4.9-q 2020-03-15 18:00:10 +02:00
typec import G965FXXU7DTAA OSRC 2020-02-04 13:50:09 +02:00
usbip usbip: Fix error path of vhci_recv_ret_submit() 2020-01-04 13:40:20 +01:00
wusbcore usb: wusbcore: security: cast sizeof to int for comparison 2018-10-03 17:01:45 -07:00
Kconfig import G965FXXU7DTAA OSRC 2020-02-04 13:50:09 +02:00
Makefile import G965FXXU7DTAA OSRC 2020-02-04 13:50:09 +02:00
README
usb-skeleton.c USB: usb-skeleton: fix NULL-deref on disconnect 2019-10-17 13:42:29 -07:00

To understand all the Linux-USB framework, you'll use these resources:

    * This source code.  This is necessarily an evolving work, and
      includes kerneldoc that should help you get a current overview.
      ("make pdfdocs", and then look at "usb.pdf" for host side and
      "gadget.pdf" for peripheral side.)  Also, Documentation/usb has
      more information.

    * The USB 2.0 specification (from www.usb.org), with supplements
      such as those for USB OTG and the various device classes.
      The USB specification has a good overview chapter, and USB
      peripherals conform to the widely known "Chapter 9".

    * Chip specifications for USB controllers.  Examples include
      host controllers (on PCs, servers, and more); peripheral
      controllers (in devices with Linux firmware, like printers or
      cell phones); and hard-wired peripherals like Ethernet adapters.

    * Specifications for other protocols implemented by USB peripheral
      functions.  Some are vendor-specific; others are vendor-neutral
      but just standardized outside of the www.usb.org team.

Here is a list of what each subdirectory here is, and what is contained in
them.

core/		- This is for the core USB host code, including the
		  usbfs files and the hub class driver ("hub_wq").

host/		- This is for USB host controller drivers.  This
		  includes UHCI, OHCI, EHCI, and others that might
		  be used with more specialized "embedded" systems.

gadget/		- This is for USB peripheral controller drivers and
		  the various gadget drivers which talk to them.


Individual USB driver directories.  A new driver should be added to the
first subdirectory in the list below that it fits into.

image/		- This is for still image drivers, like scanners or
		  digital cameras.
../input/	- This is for any driver that uses the input subsystem,
		  like keyboard, mice, touchscreens, tablets, etc.
../media/	- This is for multimedia drivers, like video cameras,
		  radios, and any other drivers that talk to the v4l
		  subsystem.
../net/		- This is for network drivers.
serial/		- This is for USB to serial drivers.
storage/	- This is for USB mass-storage drivers.
class/		- This is for all USB device drivers that do not fit
		  into any of the above categories, and work for a range
		  of USB Class specified devices. 
misc/		- This is for all USB device drivers that do not fit
		  into any of the above categories.