Mathias Nyman f1f6d9a8b5 xhci: don't dereference a xhci member after removing xhci 9 years ago
..
atm 49e8eccf37 Use "foo *bar" instead of "foo * bar". 9 years ago
c67x00 e27465f51a c67x00-hcd: use USB_DT_HUB 10 years ago
chipidea fb67cb0054 usb: chipidea: Kconfig: improve Kconfig help text 9 years ago
class add125054b cdc-acm: fix wrong pipe type on rx interrupt xfers 9 years ago
common c318a821b9 Merge 4.7-rc6 into usb-next 9 years ago
core 5cce438298 USB: remove race condition in usbfs/libusb when using reap-after-disconnect 9 years ago
dwc2 e43470dbdf USB: dwc2-usb: add USB_GADGET dependency 9 years ago
dwc3 a0ad85ae86 usb: dwc3: gadget: stop processing on HWO set 9 years ago
early 4e84e22195 usb: early/ehci-dbgp: make it explicitly non-modular 9 years ago
gadget 207707d8fd usb: gadget: rndis: free response queue during REMOTE_NDIS_RESET_MSG 9 years ago
host f1f6d9a8b5 xhci: don't dereference a xhci member after removing xhci 9 years ago
image 600bb21605 usb: microtek: Use "foo *bar" instead of "foo * bar". 9 years ago
isp1760 2b320d87f3 usb: Remove unnecessary space before open square bracket. 9 years ago
misc 5395875118 usb: misc: usbtest: add fix for driver hang 9 years ago
mon a4b5d606b9 usb: core: rename mutex usb_bus_list_lock to usb_bus_idr_lock 9 years ago
musb a1ca2c6b29 usb: musb: sunxi: Simplify dr_mode handling 9 years ago
phy ec57fcd042 usb: phy: omap-otg: Fix missing platform_set_drvdata() in omap_otg_probe() 9 years ago
renesas_usbhs 700aa7ff8d usb: renesas_usbhs: Use dmac only if the pipe type is bulk 9 years ago
serial 647024a7df USB: serial: fix memleak in driver-registration error path 9 years ago
storage 593224ea77 USB: uas: Fix slave queue_depth not being set 9 years ago
usbip bc71c2df45 Merge 4.7-rc4 into usb-next 9 years ago
wusbcore ef23db9c5e usb: wusbcore: Do not initialise statics to 0. 9 years ago
Kconfig badf6d47f8 usb: common: rework CONFIG_USB_COMMON logic 9 years ago
Makefile d0fc35bc08 usb: fsl: drop USB_FSL_MPH_DR_OF Kconfig symbol 9 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.