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.