Thinh Nguyen 3fe314ca8c usb: dwc3: Add a glue driver for Synopsys HAPS platform 7 роки тому
..
atm 6453f53b75 USB: atm: fix up some remaining DEVICE_ATTR() usage 8 роки тому
c67x00 3efe891f61 USB: add SPDX identifiers to all remaining Makefiles 8 роки тому
chipidea 90f26cc6bb usb: chipidea: host: fix disconnection detect issue 7 роки тому
class 4a762569a2 usb: cdc_acm: Add quirk for Uniden UBC125 scanner 7 роки тому
common fde0aa6c17 usb: common: Small class for USB role switches 7 роки тому
core bba57eddad usb: quirks: add delay quirks for Corsair Strafe 7 роки тому
dwc2 0f548098af usb: dwc2: Move dwc2_readl/writel functions after hsotg structure 7 роки тому
dwc3 3fe314ca8c usb: dwc3: Add a glue driver for Synopsys HAPS platform 7 роки тому
early 4bda35a065 usb: early: Correct the endpoint type value for bulk in endpoint 8 роки тому
gadget e610257e46 usb: gadget: f_fs: Only return delayed status when len is 0 7 роки тому
host 313db3d648 xhci: xhci-mem: off by one in xhci_stream_id_to_ring() 7 роки тому
image 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 8 роки тому
isp1760 de0611b27d usb: isp1760: Replace mdelay with msleep in isp1760_stop 7 роки тому
misc f1e255d60a USB: yurex: fix out-of-bounds uaccess in read handler 7 роки тому
mon 6396bb2215 treewide: kzalloc() -> kcalloc() 7 роки тому
mtu3 71cae9ad42 USB: mtu3: no need to check return value of debugfs_create_dir() 7 роки тому
musb 8a1ef171ff USB: musb: clean up debugfs file and directory creation 7 роки тому
phy 822852f203 phy: tegra: select USB_COMMON 7 роки тому
renesas_usbhs 6396bb2215 treewide: kzalloc() -> kcalloc() 7 роки тому
roles cb29684686 usb: roles: intel_xhci: Enable runtime PM 7 роки тому
serial 794744abff USB: serial: mos7840: fix status-register error handling 7 роки тому
storage 6da2ec5605 treewide: kmalloc() -> kmalloc_array() 7 роки тому
typec 146971e624 typec: tcpm: Correctly report power_supply current and voltage for non pd supply 7 роки тому
usbip a0d6ec8809 usbip: vhci_sysfs: fix potential Spectre v1 7 роки тому
wusbcore 6396bb2215 treewide: kzalloc() -> kcalloc() 7 роки тому
Kconfig 602f4fb71d usb: select USB_COMMON for usb role switch config 7 роки тому
Makefile f6fb9ec02b usb: roles: Add Intel xHCI USB role switch driver 7 роки тому
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 роки тому
usb-skeleton.c e4c4835171 usb: usb-skeleton: make MODULE_LICENSE and SPDX tag match 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.