Linus Torvalds e4ee8b85b7 Merge tag 'usb-4.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 роки тому
..
atm 6453f53b75 USB: atm: fix up some remaining DEVICE_ATTR() usage 7 роки тому
c67x00 3efe891f61 USB: add SPDX identifiers to all remaining Makefiles 7 роки тому
chipidea ca35910a1b USB: move many drivers to use DEVICE_ATTR_WO 7 роки тому
class e4ee8b85b7 Merge tag 'usb-4.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 роки тому
common 33c309ebc7 USB: ulpi: fix bus-node lookup 7 роки тому
core e4ee8b85b7 Merge tag 'usb-4.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 роки тому
dwc2 958e052c54 Merge tag 'usb-for-v4.16' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next 7 роки тому
dwc3 f1faf88c13 Merge tag 'phy-for-4.16' of git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy into usb-next 7 роки тому
early 4bda35a065 usb: early: Correct the endpoint type value for bulk in endpoint 7 роки тому
gadget e4ee8b85b7 Merge tag 'usb-4.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 роки тому
host ed5bd7a47f USB: move many drivers to use DEVICE_ATTR_RW 7 роки тому
image 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 роки тому
isp1760 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 роки тому
misc e4ee8b85b7 Merge tag 'usb-4.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 роки тому
mon 168fe32a07 Merge branch 'misc.poll' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 7 роки тому
mtu3 b90c6d1050 usb: mtu3: fix semicolon.cocci warnings 7 роки тому
musb 6e4294d0af USB: musb: fix up one odd DEVICE_ATTR() usage 7 роки тому
phy ca35910a1b USB: move many drivers to use DEVICE_ATTR_WO 7 роки тому
renesas_usbhs aec2927b59 usb: renesas_usbhs: Add support for RZ/A1 7 роки тому
serial d08dd3f3dd USB: serial: pl2303: new device id for Chilitag 7 роки тому
storage 7f26ee4b56 USB: move many drivers to use DEVICE_ATTR_RO 7 роки тому
typec d9e3d899bc Merge 4.15-rc4 into usb-next 7 роки тому
usbip ca35910a1b USB: move many drivers to use DEVICE_ATTR_WO 7 роки тому
wusbcore 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 роки тому
Kconfig 2bb80de74d usb: Kconfig: clarify use of USB_PCI 7 роки тому
Makefile b24413180f License cleanup: add SPDX GPL-2.0 license identifier to files with no license 7 роки тому
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 роки тому
usb-skeleton.c f64cdd0e94 USB: usb-skeleton: Remove redundant license text 7 роки тому

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.