android_kernel_oneplus_msm8998/drivers/usb
Zhiqiang Tu 2372ea3938 usb: dwc3-msm: Add boot marker
Add boot marker for booting KPI measurement.

Change-Id: Idf57bed89437d85abc419f7774e0c2d975d214c9
Signed-off-by: Zhiqiang Tu <ztu@codeaurora.org>
2018-07-06 08:44:32 +08:00
..
atm
c67x00
chipidea usb: chipidea: properly handle host or gadget initialization failure 2018-04-13 19:50:07 +02:00
class CDC-ACM: apply quirk for card reader 2018-02-03 17:04:30 +01:00
common
core usb: core: Resume the devices on pm restore 2018-06-01 14:14:17 +05:30
dwc2 usb: dwc2: Fix interval type issue 2018-05-30 07:49:12 +02:00
dwc3 usb: dwc3-msm: Add boot marker 2018-07-06 08:44:32 +08:00
early
gadget Merge android-4.4.135 (c9d74f2) into msm-4.4 2018-06-27 14:42:55 +05:30
host Merge android-4.4.135 (c9d74f2) into msm-4.4 2018-06-27 14:42:55 +05:30
image
isp1760
misc usb: misc: diag_ipc_bridge: Add support for QMI messages over BULK 2018-06-20 12:19:01 +05:30
mon Merge android-4.4.127 (d6bbe8b) into msm-4.4 2018-04-20 12:27:57 +05:30
musb usb: musb: call pm_runtime_{get,put}_sync before reading vbus registers 2018-05-30 07:49:03 +02:00
pd usb: pd: avoid out-of-bounds access when reading PDOs 2018-01-17 18:04:52 -08:00
phy qmp-phy: Power down PHY durng disconnect to avoid leakage 2018-06-04 13:17:02 +05:30
renesas_usbhs usb: renesas_usbhs: missed the "running" flag in usb_dmac with rx path 2018-02-28 10:17:23 +01:00
serial USB: serial: cp210x: use tcflag_t to fix incompatible pointer type 2018-06-06 16:46:20 +02:00
storage USB: ene_usb6250: fix SCSI residue overwriting 2018-04-13 19:50:07 +02:00
usbip usbip: usbip_host: fix bad unlock balance during stub_probe() 2018-05-26 08:48:52 +02:00
wusbcore
Kconfig
Makefile
README
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 ("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.