Linus Torvalds 44adbac8f7 Merge branch 'work.tty-ioctl' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 6 yıl önce
..
atm 6453f53b75 USB: atm: fix up some remaining DEVICE_ATTR() usage 7 yıl önce
c67x00 3efe891f61 USB: add SPDX identifiers to all remaining Makefiles 7 yıl önce
chipidea 8a7b5d0f75 Merge 4.18-rc7 into usb-next 7 yıl önce
class 44adbac8f7 Merge branch 'work.tty-ioctl' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 6 yıl önce
common 5c54fcac9a usb: roles: Take care of driver module reference counting 6 yıl önce
core ba9f6f8954 Merge branch 'siginfo-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace 6 yıl önce
dwc2 d970749007 usb: dwc2: Fix call location of dwc2_check_core_endianness 7 yıl önce
dwc3 bfa150f37f Merge tag 'fixes-for-v4.19-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus 7 yıl önce
early 4bda35a065 usb: early: Correct the endpoint type value for bulk in endpoint 7 yıl önce
gadget ba9f6f8954 Merge branch 'siginfo-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace 6 yıl önce
host c02588a352 usb: xhci: pci: Enable Intel USB role mux on Apollo Lake platforms 6 yıl önce
image 894025f24b Merge tag 'usb-4.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb 7 yıl önce
isp1760 2605603226 usb: isp1760: remove redundant variable 'selector' 7 yıl önce
misc bc8acc214d usb: misc: uss720: Fix two sleep-in-atomic-context bugs 7 yıl önce
mon 61ef4b9079 USB: mon: use ktime_get_real_ts64 instead of getnstimeofday64 7 yıl önce
mtu3 78af87b8bb usb: mtu3: fix error of xhci port id when enable U3 dual role 7 yıl önce
musb 783f3b4e9e usb: musb: dsps: do not disable CPPI41 irq in driver teardown 6 yıl önce
phy a39ba90a1c usb/phy: fix PPC64 build errors in phy-fsl-usb.c 7 yıl önce
renesas_usbhs 479af32163 usb: renesas_usbhs: Kconfig: convert to SPDX identifiers 7 yıl önce
roles 009b1948e1 usb: roles: intel_xhci: Fix Unbalanced pm_runtime_enable 6 yıl önce
serial 44adbac8f7 Merge branch 'work.tty-ioctl' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 6 yıl önce
storage 42d1c6d4a0 usb: uas: add support for more quirk flags 7 yıl önce
typec 3e3b81965c usb: typec: mux: Take care of driver module reference counting 6 yıl önce
usbip 81f7567c51 usb: usbip: Fix BUG: KASAN: slab-out-of-bounds in vhci_hub_control() 6 yıl önce
wusbcore d3ac5598c5 usb: wusbcore: security: cast sizeof to int for comparison 7 yıl önce
Kconfig 602f4fb71d usb: select USB_COMMON for usb role switch config 7 yıl önce
Makefile f6fb9ec02b usb: roles: Add Intel xHCI USB role switch driver 7 yıl önce
README 37ebb54915 usb: hub: rename khubd to hub_wq in documentation and comments 11 yıl önce
usb-skeleton.c 8982c8440f usb: usb-skeleton: use irqsave() in USB's complete callback 7 yıl önce

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.