Greg Kroah-Hartman b51e0ceed1 Merge tag 'usb-serial-4.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus 8 years ago
..
atm 78f74f75bd usb: atm: remove unnecessary code 8 years ago
c67x00 e27465f51a c67x00-hcd: use USB_DT_HUB 10 years ago
chipidea ac9d947683 Merge tag 'usb-ci-v4.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-next 8 years ago
class 1944581699 USB: Revert "cdc-wdm: fix "out-of-sync" due to missing notifications" 8 years ago
common 3ef2bc099d Merge tag 'devicetree-for-4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux 8 years ago
core 93491ced3c USB: hub: fix SS max number of ports 8 years ago
dwc2 ba7756d082 Merge tag 'usb-for-v4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 8 years ago
dwc3 018047a1db usb: dwc3: keystone: check return value 8 years ago
early aeb9dd1de9 usb/early: Add driver for xhci debug capability 8 years ago
gadget d81182ce30 USB: gadget: dummy_hcd: fix hub-descriptor removable fields 8 years ago
host 4b148d5144 usb: host: xhci-plat: propagate return value of platform_get_irq() 8 years ago
image 174cd4b1e5 sched/headers: Prepare to move signal wakeup & sigpending methods from <linux/sched.h> into <linux/sched/signal.h> 8 years ago
isp1760 2c93e790e8 usb: add CONFIG_USB_PCI for system have both PCI HW and non-PCI based USB HW 8 years ago
misc dd5ca753fa USB: iowarrior: fix info ioctl on big-endian hosts 8 years ago
mon 174cd4b1e5 sched/headers: Prepare to move signal wakeup & sigpending methods from <linux/sched.h> into <linux/sched/signal.h> 8 years ago
mtu3 a2cfed4338 usb: mtu3: Replace the extcon API 8 years ago
musb 6df2b42f7c usb: musb: tusb6010_omap: Do not reset the other direction's packet size 8 years ago
phy ba7756d082 Merge tag 'usb-for-v4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 8 years ago
renesas_usbhs ea07b8cf08 usb: renesas_usbhs: Replace the deprecated extcon API 8 years ago
serial 8d7a10dd32 USB: serial: qcserial: add more Lenovo EM74xx device IDs 8 years ago
storage 628c2893d4 USB: ene_usb6250: fix DMA to the stack 8 years ago
typec d2061f9cc3 usb: typec: add driver for Intel Whiskey Cove PMIC USB Type-C PHY 8 years ago
usbip ec963b412a USB: usbip: fix nonconforming hub descriptor 8 years ago
wusbcore 03ace948a4 USB: wusbcore: fix NULL-deref at probe 8 years ago
Kconfig fab9288428 usb: USB Type-C connector class 8 years ago
Makefile 8f28472a73 Merge tag 'usb-4.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 8 years ago
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 years ago
usb-skeleton.c af59f8955f USB: usb-skeleton: refactor endpoint retrieval 8 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.