Greg Kroah-Hartman 3caad34eab Merge tag 'usb-serial-4.20-rc6' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus пре 6 година
..
atm 6453f53b75 USB: atm: fix up some remaining DEVICE_ATTR() usage пре 7 година
c67x00 3efe891f61 USB: add SPDX identifiers to all remaining Makefiles пре 7 година
chipidea 59739131e0 usb: chipidea: Fix otg event handler пре 6 година
class 63529eaa61 usb: cdc-acm: add entry for Hiro (Conexant) modem пре 6 година
common 5c54fcac9a usb: roles: Take care of driver module reference counting пре 6 година
core 704620afc7 USB: check usb_get_extra_descriptor for proper size пре 6 година
dwc2 3c135e8900 usb: dwc2: pci: Fix an error code in probe пре 6 година
dwc3 38317f5c0f Revert "usb: dwc3: gadget: skip Set/Clear Halt when invalid" пре 6 година
early 57c8a661d9 mm: remove include/linux/bootmem.h пре 6 година
gadget c9287fa657 usb: gadget: u_ether: fix unsafe list iteration пре 6 година
host 0472bf06c6 xhci: Prevent U1/U2 link pm states if exit latency is too long пре 6 година
image 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb пре 7 година
isp1760 2605603226 usb: isp1760: remove redundant variable 'selector' пре 7 година
misc d785990530 usb: appledisplay: Add 27" Apple Cinema Display пре 6 година
mon 61ef4b9079 USB: mon: use ktime_get_real_ts64 instead of getnstimeofday64 пре 7 година
mtu3 1652a83fa4 Merge 4.19-rc4 into usb-next пре 6 година
musb 783f3b4e9e usb: musb: dsps: do not disable CPPI41 irq in driver teardown пре 6 година
phy b8d9ee2449 usb: phy: ab8500: silence some uninitialized variable warnings пре 6 година
renesas_usbhs 4d2a863fe9 usb: renesas_usbhs: add support for R-Car E3 пре 6 година
roles 009b1948e1 usb: roles: intel_xhci: Fix Unbalanced pm_runtime_enable пре 6 година
serial f51ccf4621 USB: serial: console: fix reported terminal settings пре 6 година
storage a84a1bcc99 USB: usb-storage: Add new IDs to ums-realtek пре 6 година
typec 247c554a14 usb: typec: ucsi: add support for Cypress CCGx пре 6 година
usbip 9931a07d51 Merge branch 'work.afs' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs пре 6 година
wusbcore 9703fc8caf Merge tag 'usb-4.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb пре 6 година
Kconfig 602f4fb71d usb: select USB_COMMON for usb role switch config пре 7 година
Makefile f6fb9ec02b usb: roles: Add Intel xHCI USB role switch driver пре 7 година
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments пре 11 година
usb-skeleton.c 8982c8440f usb: usb-skeleton: use irqsave() in USB's complete callback пре 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.