Felipe Balbi 55fa4396b2 usb: host: xhci: introduce xhci_td_cleanup() 8 years ago
..
atm 7c0f6ba682 Replace <asm/uaccess.h> with <linux/uaccess.h> globally 8 years ago
c67x00 e27465f51a c67x00-hcd: use USB_DT_HUB 10 years ago
chipidea 2456e85535 ktime: Get rid of the union 8 years ago
class 301216044e USB: cdc-acm: add device id for GW Instek AFG-125 8 years ago
common 8152263748 Merge tag 'usb-for-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 9 years ago
core 76b8db0d48 usb: hcd: initialize hcd->flags to 0 when rm hcd 8 years ago
dwc2 efe357f463 usb: dwc2: host: fix Wmaybe-uninitialized warning 8 years ago
dwc3 8ae584d195 usb: dwc3: exynos fix axius clock error path to do cleanup 8 years ago
early 97139d4a6f treewide: remove redundant #include <linux/kconfig.h> 9 years ago
gadget 692665c621 Merge 4.10-rc5 into usb-next 8 years ago
host 55fa4396b2 usb: host: xhci: introduce xhci_td_cleanup() 8 years ago
image 600bb21605 usb: microtek: Use "foo *bar" instead of "foo * bar". 9 years ago
isp1760 3774e02c74 usb: isp1760: constify usb_gadget_ops structures 8 years ago
misc 7c0f6ba682 Replace <asm/uaccess.h> with <linux/uaccess.h> globally 8 years ago
mon 7c0f6ba682 Replace <asm/uaccess.h> with <linux/uaccess.h> globally 8 years ago
mtu3 4d70d0c6c1 usb: mtu3: add reference clock 8 years ago
musb 1e572aa568 usb: musb: constify musb_hdrc_config structures 8 years ago
phy 1ad528db1a usb: twl6030-usb: make driver DT only 8 years ago
renesas_usbhs 9038a03875 usb: renesas_usbhs: mod_host: fix typo: "connecte" -> "connected" 8 years ago
serial 2d5a9c72d0 USB: serial: ch341: fix control-message error handling 8 years ago
storage 92190e365a usb: storage: sddr09: Remove a set-but-not-used variable 8 years ago
usbip 918b8ac55b usbip: fix warning in vhci_hcd_probe/lockdep_init_map 8 years ago
wusbcore 620f1a632e wusbcore: Fix one more crypto-on-the-stack bug 8 years ago
Kconfig df2069acb0 usb: Add MediaTek USB3 DRD driver 9 years ago
Makefile df2069acb0 usb: Add MediaTek USB3 DRD driver 9 years ago
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 years ago
usb-skeleton.c dc0c32c93e usb: usb-skeleton: don't print on ENOMEM 9 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.