Dan Murphy 957bfef413 Merge tag 'v4.19.79' of http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable into ti-linux-4.19.y 6 年之前
..
atm 6453f53b75 USB: atm: fix up some remaining DEVICE_ATTR() usage 7 年之前
c67x00 3efe891f61 USB: add SPDX identifiers to all remaining Makefiles 8 年之前
cdns3 6e9016e797 usb: cdns3: gadget: Fix broken gadget after role switch from host to device 6 年之前
chipidea a209827549 usb: chipidea: udc: don't do hardware access if gadget has stopped 6 年之前
class ebad9fd106 USB: cdc-wdm: fix race between write and disconnect due to flag abuse 6 年之前
common ce0afb26f6 usb:common Simplify usb_decode_get_set_descriptor function. 6 年之前
core 77d4e2a058 USB: usbcore: Fix slab-out-of-bounds bug during device reset 6 年之前
dwc2 b544a6855d usb: dwc2: Fix disable all EP's on disconnect 6 年之前
dwc3 353b230910 usb: dwc3: don't set gadget->is_otg flag 6 年之前
early 4bda35a065 usb: early: Correct the endpoint type value for bulk in endpoint 8 年之前
gadget 8edb847018 Merge branch 'linux-4.19.y' of http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable into ti-linux-4.19.y 6 年之前
host c6d779fd81 usb: host: xhci-tegra: Set DMA mask correctly 6 年之前
image 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 8 年之前
isp1760 2605603226 usb: isp1760: remove redundant variable 'selector' 7 年之前
misc 33f2240acf usb: yurex: Fix use-after-free in yurex_delete 6 年之前
mon 61ef4b9079 USB: mon: use ktime_get_real_ts64 instead of getnstimeofday64 7 年之前
mtu3 614ac345bf usb: mtu3: fix EXTCON dependency 6 年之前
musb 8b330b3efa soc: sunxi: Fix missing dependency on REGMAP_MMIO 6 年之前
phy 377ffe354d usb: phy: fix link errors 6 年之前
renesas_usbhs 57e16e0d8c usb: renesas_usbhs: add a workaround for a race condition of workqueue 6 年之前
roles f295bc9b8c usb: roles: Add a description for the class to Kconfig 7 年之前
serial 3ca5b7b4af USB: serial: option: Add Motorola modem UARTs 6 年之前
storage 5ed36421af USB: storage: ums-realtek: Whitelist auto-delink support 6 年之前
typec 3cfce8b77a usb: typec: tcpm: Try PD-2.0 if sink does not respond to 3.0 source-caps 6 年之前
usbip 2fc485b000 usbip: usbip_host: fix stub_dev lock context imbalance regression 6 年之前
wusbcore d3ac5598c5 usb: wusbcore: security: cast sizeof to int for comparison 7 年之前
Kconfig 60112f7e1d usb:cdns3 Add Cadence USB3 DRD Driver 6 年之前
Makefile 60112f7e1d usb:cdns3 Add Cadence USB3 DRD Driver 6 年之前
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 年之前
usb-skeleton.c 8982c8440f usb: usb-skeleton: use irqsave() in USB's complete callback 7 年之前

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.