Greg Kroah-Hartman f8359dae68 Merge tag 'fixes-for-v3.19-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus 10 years ago
..
atm 803a536243 usb: delete non-required instances of include <linux/init.h> 11 years ago
c67x00 52830d773e usb: c67x00: drop owner assignment from platform_drivers 11 years ago
chipidea 24c498df1c Revert "usb: chipidea: remove duplicate dev_set_drvdata for host_start" 10 years ago
class 403dff4e2c USB: cdc-acm: check for valid interfaces 10 years ago
common e47d92545c usb: move the OTG state from the USB PHY to the OTG structure 10 years ago
core c0f486fde3 Merge tag 'pm+acpi-3.19-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm 10 years ago
dwc2 62f4f0651c usb: dwc2: gadget: kill requests with 'force' in s3c_hsotg_udc_stop() 10 years ago
dwc3 39e60635a0 usb: dwc3: gadget: Stop TRB preparation after limit is reached 10 years ago
early 8c9247a6b5 USB: ehci-dbgp: drop dead code. 12 years ago
gadget 06087cb42d Merge tag 'fixes-for-v3.19-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus 10 years ago
host 56abcab833 OHCI: add a quirk for ULi M5237 blocking on reset 10 years ago
image 3569843a2b USB: image: correct spelling mistake in comment 11 years ago
misc e6b5be2be4 Merge tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core 10 years ago
mon 25e11ec4fe USB: regroup all depends on USB within an if USB block 12 years ago
musb 68693b8ea4 usb: musb: stuff leak of struct usb_hcd 10 years ago
phy f8359dae68 Merge tag 'fixes-for-v3.19-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus 10 years ago
renesas_usbhs d3cf6a4b01 usb: renesas_usbhs: expand USB-DMAC channels for R-Car Gen2 10 years ago
serial 04f9c6e6d1 usb: serial: handle -ENODEV quietly in generic_submit_read_urb 10 years ago
storage 3ca8c71742 uas: Add US_FL_NO_ATA_1X for 2 more Seagate disk enclosures 10 years ago
usbip e6b5be2be4 Merge tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core 10 years ago
wusbcore eb94ec7a65 wusb: replace memset by memzero_explicit 10 years ago
Kconfig 0cfbd328d6 usb: Add LED triggers for USB activity 11 years ago
Makefile 96c2737716 usbip: move usbip kernel code out of staging 11 years ago
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 years ago
usb-skeleton.c 803a536243 usb: delete non-required instances of include <linux/init.h> 11 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.