android_kernel_sony_msm8994/drivers/usb
Olivier Karasangabo c8d5289eb1
32.4.A.0.160
Change-Id: I06b24a90791d31f252fd7cc4f8ae412a0e182726
2017-09-21 14:19:17 +02:00
..
atm
c67x00
chipidea Merge upstream linux-stable v3.10.36 into msm-3.10 2014-04-23 16:23:49 -07:00
class USB: cdc-acm: more sanity checking 2017-09-14 17:05:41 +02:00
core Merge remote-tracking branch 'caf/LA.BF64.1.2.3_rb1.11' into HEAD 2017-04-17 14:23:09 +02:00
dwc3 32.4.A.0.160 2017-09-21 14:19:17 +02:00
early usb: replace %p with %pK 2017-03-08 14:07:51 +05:30
gadget Merge remote-tracking branch 'caf/LA.BF64.1.2.3_rb1.15' into HEAD 2017-09-02 17:48:55 +02:00
host Merge remote-tracking branch 'caf/LA.BF64.1.2.3_rb1.11' into HEAD 2017-04-17 14:23:09 +02:00
image
misc This is the 3.10.84 stable release 2015-08-13 14:38:09 -07:00
mon usb: replace %p with %pK 2017-03-08 14:07:51 +05:30
musb Merge upstream tag 'v3.10.40' into msm-3.10 2014-06-18 13:10:54 -07:00
phy Merge remote-tracking branch 'caf/LA.BF64.1.2.3_rb1.11' into HEAD 2017-04-17 14:23:09 +02:00
renesas_usbhs Remove GENERIC_HARDIRQ config option 2014-02-07 13:49:47 -08:00
serial USB: cypress_m8: add endpoint sanity check 2017-09-14 17:05:40 +02:00
storage Merge remote-tracking branch 'caf/LA.BF64.1.2.3_rb1.11' into HEAD 2017-04-17 14:23:09 +02:00
wusbcore
Kconfig usb: host: make USB_ARCH_HAS_?HCI obsolete 2014-03-04 20:35:20 -08:00
Makefile USB: ice40-hcd: Add ICE40 FPGA based SPI to Inter-Chip USB host driver 2014-03-10 11:18:35 +05:30
README
usb-common.c
usb-skeleton.c

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 ("khubd").

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.