android_kernel_oneplus_msm8998/drivers/usb
Ajay Agarwal 38e5565785 usb: misc: diag_ipc_bridge: Add support for 9900 and 9901 PIDs
Add support for creation of diag and IPC traffic channel in case
the connected device has 0x05C6 VID and 0x9900 or 0x9901 PID.
   0x9900 : WLAN + QMI + DIAG
   0x9901 : BT ACL + BT SCO + WLAN + QMI + DIAG

Change-Id: Iaa803d729516016a3b5043aa1cec78d12a408451
Signed-off-by: Ajay Agarwal <ajaya@codeaurora.org>
2018-06-20 12:19:01 +05:30
..
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: Improve gadget state disconnection handling 2018-04-08 11:51:59 +02:00
dwc3 usb: dwc3: Add support for USB hibernation in host mode 2018-06-01 14:14:16 +05:30
early
gadget usb: gadget: f_cdev: Send zero length packets in modem data calls 2018-06-13 02:02:42 -07:00
host xhci-plat: Add hibernation support to xhci platform 2018-06-01 14:14:17 +05:30
image
isp1760
misc usb: misc: diag_ipc_bridge: Add support for 9900 and 9901 PIDs 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: host: fix potential NULL pointer dereference 2018-05-16 10:06:49 +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: option: adding support for ublox R410M 2018-05-16 10:06:49 +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.