Nicolas Boichat aa071a92bb usb: hub: Per-port setting to reduce TRSTRCY to 10 ms 7 yıl önce
..
atm 6453f53b75 USB: atm: fix up some remaining DEVICE_ATTR() usage 8 yıl önce
c67x00 3efe891f61 USB: add SPDX identifiers to all remaining Makefiles 8 yıl önce
chipidea 03e6275ae3 usb: chipidea: Fix ULPI on imx51 7 yıl önce
class baf12d6dde usb: usbtmc: Remove rigol_quirk 7 yıl önce
common fde0aa6c17 usb: common: Small class for USB role switches 7 yıl önce
core aa071a92bb usb: hub: Per-port setting to reduce TRSTRCY to 10 ms 7 yıl önce
dwc2 47265c067c usb: dwc2: gadget: Fix coverity issue 7 yıl önce
dwc3 3bea1cfcff usb: dwc3: Remove DEBUG define from Qualcomm DWC3 glue driver 7 yıl önce
early 4bda35a065 usb: early: Correct the endpoint type value for bulk in endpoint 8 yıl önce
gadget 4a014a7339 usb: gadget: function: printer: avoid wrong list handling in printer_write() 7 yıl önce
host 380375b937 usb: xhci: tegra: Fix runtime PM support 7 yıl önce
image 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 8 yıl önce
isp1760 de0611b27d usb: isp1760: Replace mdelay with msleep in isp1760_stop 7 yıl önce
misc a4a00f6b9d usb-misc: sisusbvga: fix spelling mistake: "asymmeric" -> "asymmetric" 7 yıl önce
mon 03eb4c3314 usb: mon: Change return type to vm_fault_t 7 yıl önce
mtu3 681e948524 usb: mtu3: fix warning of sleep in atomic context in notifier callback 7 yıl önce
musb edf380046b usb: musb: remove an unused variable 7 yıl önce
phy ee30ec0cba usb: phy: Add Kconfig entry for Tegra PHY driver 7 yıl önce
renesas_usbhs d8351953fb USB: renesas_usbhs: drop unused legacy-phy support 7 yıl önce
roles cb29684686 usb: roles: intel_xhci: Enable runtime PM 7 yıl önce
serial 7eeb11190f Merge tag 'usb-serial-4.18-rc1' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-next 7 yıl önce
storage ca7d9515d0 usb-storage: Add compatibility quirk flags for G-Technologies G-Drive 7 yıl önce
typec 05826ff135 usb: typec: wcove: Remove dependency on HW FSM 7 yıl önce
usbip a0d6ec8809 usbip: vhci_sysfs: fix potential Spectre v1 7 yıl önce
wusbcore 225b3dc92d USB: wusbcore: crypto: Remove VLA usage 7 yıl önce
Kconfig 602f4fb71d usb: select USB_COMMON for usb role switch config 7 yıl önce
Makefile f6fb9ec02b usb: roles: Add Intel xHCI USB role switch driver 7 yıl önce
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 yıl önce
usb-skeleton.c e4c4835171 usb: usb-skeleton: make MODULE_LICENSE and SPDX tag match 7 yıl önce

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.