Alexander Kappner ca7d9515d0 usb-storage: Add compatibility quirk flags for G-Technologies G-Drive 7 years ago
..
atm 6453f53b75 USB: atm: fix up some remaining DEVICE_ATTR() usage 7 years ago
c67x00 3efe891f61 USB: add SPDX identifiers to all remaining Makefiles 7 years ago
chipidea be9cae2479 usb: chipidea: imx: Fix ULPI on imx53 7 years ago
class baf12d6dde usb: usbtmc: Remove rigol_quirk 7 years ago
common fde0aa6c17 usb: common: Small class for USB role switches 7 years ago
core 58318cd4df Merge 4.17-rc4 into usb-next 7 years ago
dwc2 47265c067c usb: dwc2: gadget: Fix coverity issue 7 years ago
dwc3 05645366f3 usb: dwc3: gadget: Fix list_del corruption in dwc3_ep_dequeue 7 years ago
early 4bda35a065 usb: early: Correct the endpoint type value for bulk in endpoint 7 years ago
gadget 4a014a7339 usb: gadget: function: printer: avoid wrong list handling in printer_write() 7 years ago
host 87a0380218 xhci: debugfs: add debugfs interface to enable compliance mode for a port 7 years ago
image 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 years ago
isp1760 de0611b27d usb: isp1760: Replace mdelay with msleep in isp1760_stop 7 years ago
misc a4a00f6b9d usb-misc: sisusbvga: fix spelling mistake: "asymmeric" -> "asymmetric" 7 years ago
mon 03eb4c3314 usb: mon: Change return type to vm_fault_t 7 years ago
mtu3 681e948524 usb: mtu3: fix warning of sleep in atomic context in notifier callback 7 years ago
musb ddf12f04dc usb: musb: gadget: fix to_musb_ep() to not return NULL 7 years ago
phy ee30ec0cba usb: phy: Add Kconfig entry for Tegra PHY driver 7 years ago
renesas_usbhs d8351953fb USB: renesas_usbhs: drop unused legacy-phy support 7 years ago
roles cb29684686 usb: roles: intel_xhci: Enable runtime PM 7 years ago
serial 4842ed5bfc USB: serial: visor: handle potential invalid device configuration 7 years ago
storage ca7d9515d0 usb-storage: Add compatibility quirk flags for G-Technologies G-Drive 7 years ago
typec 05826ff135 usb: typec: wcove: Remove dependency on HW FSM 7 years ago
usbip a0d6ec8809 usbip: vhci_sysfs: fix potential Spectre v1 7 years ago
wusbcore 225b3dc92d USB: wusbcore: crypto: Remove VLA usage 7 years ago
Kconfig 602f4fb71d usb: select USB_COMMON for usb role switch config 7 years ago
Makefile f6fb9ec02b usb: roles: Add Intel xHCI USB role switch driver 7 years ago
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 years ago
usb-skeleton.c e4c4835171 usb: usb-skeleton: make MODULE_LICENSE and SPDX tag match 7 years ago

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.