Greg Kroah-Hartman ab21b63e8a Revert "usbtmc: convert to devm_kzalloc" 9 лет назад
..
atm 52879bb190 usb: atm: usbatm: don't print on ENOMEM 9 лет назад
c67x00 e27465f51a c67x00-hcd: use USB_DT_HUB 10 лет назад
chipidea e74e837248 usb: chipidea: udc: Use the preferred form for passing a size of a struct 9 лет назад
class ab21b63e8a Revert "usbtmc: convert to devm_kzalloc" 9 лет назад
common 8152263748 Merge tag 'usb-for-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 9 лет назад
core 4e248000e0 usb: hub: change CLEAR_FEATURE to SET_FEATURE 9 лет назад
dwc2 8152263748 Merge tag 'usb-for-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 9 лет назад
dwc3 8152263748 Merge tag 'usb-for-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 9 лет назад
early 4e84e22195 usb: early/ehci-dbgp: make it explicitly non-modular 9 лет назад
gadget 3a383cc0b8 Revert "usb: gadget: NCM: Protect dev->port_usb using dev->lock" 9 лет назад
host e8624859dd USB: bcma: drop Northstar PHY 2.0 initialization code 9 лет назад
image 600bb21605 usb: microtek: Use "foo *bar" instead of "foo * bar". 9 лет назад
isp1760 2b320d87f3 usb: Remove unnecessary space before open square bracket. 9 лет назад
misc 2fae9e5a7b usb: misc: legousbtower: Fix NULL pointer deference 9 лет назад
mon a4b5d606b9 usb: core: rename mutex usb_bus_list_lock to usb_bus_idr_lock 10 лет назад
musb 984f3be591 usb: musb: da8xx: fix error handling message in probe 9 лет назад
phy 8152263748 Merge tag 'usb-for-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 9 лет назад
renesas_usbhs 8152263748 Merge tag 'usb-for-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 9 лет назад
serial decc5360f2 USB: serial: cp210x: Add ID for a Juniper console 9 лет назад
storage 050bc4e846 scsi: introduce a quirk for false cache reporting 9 лет назад
usbip cb9c1cfc86 usb: Kconfig: using select for USB_COMMON dependency 9 лет назад
wusbcore f409440703 USB: wusbcore: add in missing white space in error message text 9 лет назад
Kconfig cb9c1cfc86 usb: Kconfig: using select for USB_COMMON dependency 9 лет назад
Makefile d0fc35bc08 usb: fsl: drop USB_FSL_MPH_DR_OF Kconfig symbol 9 лет назад
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 лет назад
usb-skeleton.c dc0c32c93e usb: usb-skeleton: don't print on ENOMEM 9 лет назад

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.