lineage_android_kernel_xiao.../drivers/usb
Loic Poulain ae893bc61c usb: chipidea: Prevent unbalanced IRQ disable
[ Upstream commit 8b97d73c4d72a2abf58f8e49062a7ee1e5f1334e ]

The ChipIdea IRQ is disabled before scheduling the otg work and
re-enabled on otg work completion. However if the job is already
scheduled we have to undo the effect of disable_irq int order to
balance the IRQ disable-depth value.

Fixes: be6b0c1bd0 ("usb: chipidea: using one inline function to cover queue work operations")
Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
Signed-off-by: Peter Chen <peter.chen@nxp.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2018-11-13 11:16:53 -08:00
..
atm
c67x00
chipidea usb: chipidea: Prevent unbalanced IRQ disable 2018-11-13 11:16:53 -08:00
class cdc-acm: correct counting of UART states in serial state notification 2018-11-10 07:43:00 -08:00
common
core USB: fix the usbfs flag sanitization for control transfers 2018-11-10 07:43:00 -08:00
dwc2 usb: gadget: dwc2: fix memory leak in gadget_init() 2018-08-24 13:12:29 +02:00
dwc3 usb: dwc3: omap: remove IRQ_NOAUTOEN used with shared irq 2018-11-10 07:42:50 -08:00
early
gadget usb: gadget: udc: atmel: handle at91sam9rl PMC 2018-11-13 11:16:52 -08:00
host xhci: Fix USB3 NULL pointer dereference at logical disconnect. 2018-11-10 07:42:56 -08:00
image
isp1760
misc USB: yurex: Check for truncation in yurex_read() 2018-10-10 08:53:21 +02:00
mon usb: usbmon: Read text within supplied buffer size 2018-03-18 11:18:56 +01:00
musb usb: musb: fix remote wakeup racing with suspend 2018-06-26 08:08:06 +08:00
phy usb/phy: fix PPC64 build errors in phy-fsl-usb.c 2018-09-05 09:20:00 +02:00
renesas_usbhs usb: renesas_usbhs: gadget: fix unused-but-set-variable warning 2018-11-10 07:42:50 -08:00
serial USB: serial: simple: add Motorola Tetra MTP6550 id 2018-10-13 09:18:55 +02:00
storage usb: uas: add support for more quirk flags 2018-09-26 08:36:35 +02:00
usbip usbip: vhci_sysfs: fix potential Spectre v1 2018-06-16 09:52:33 +02:00
wusbcore usb: wusbcore: security: cast sizeof to int for comparison 2018-10-03 17:01:45 -07:00
Kconfig usb: Move USB_UHCI_BIG_ENDIAN_* out of USB_SUPPORT 2018-02-22 15:43:51 +01:00
Makefile
README
usb-skeleton.c

README

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.