Greg Kroah-Hartman 6844dc4272 Merge tag 'usb-serial-4.17-rc4' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus 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 b86b8eb6fe usb: cdc_acm: prevent race at write to acm while system resumes 7 years ago
common fde0aa6c17 usb: common: Small class for USB role switches 7 years ago
core fb5ee84ea7 USB: Accept bulk endpoints with 1024-byte maxpacket 7 years ago
dwc2 a53097c231 usb: dwc2: pci: Fix error return code in dwc2_pci_probe() 7 years ago
dwc3 96bd39df29 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 064b407542 usb: gadget: f_phonet: fix pn_net_xmit()'s return type 7 years ago
host 43b78f1155 Revert "usb: host: ehci: Use dma_pool_zalloc()" 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 01812ba34a usb: isp1760: Use kasprintf 7 years ago
misc 9abf8acea2 Merge tag 'tty-4.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty 7 years ago
mon a5f596830e usb: usbmon: Read text within supplied buffer size 7 years ago
mtu3 b90c6d1050 usb: mtu3: fix semicolon.cocci warnings 7 years ago
musb 9aea9b6cc7 usb: musb: trace: fix NULL pointer dereference in musb_g_tx() 7 years ago
phy 2f710c1bb6 usb: phy: ab8500: Drop AB8540/9540 support 7 years ago
renesas_usbhs d6efa938ac usb: renesas_usbhs: missed the "running" flag in usb_dmac with rx path 7 years ago
roles 97eba3260e usb: roles: Fix return value check in intel_xhci_usb_probe() 7 years ago
serial 4842ed5bfc USB: serial: visor: handle potential invalid device configuration 7 years ago
storage 5126a504b6 USB: storage: Add JMicron bridge 152d:2567 to unusual_devs.h 7 years ago
typec 1a2f474d32 usb: typec: tps6598x: handle block reads separately with plain-I2C adapters 7 years ago
usbip 4c98248234 usbip: usbip_event: fix to not print kernel pointer address 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.