Loic Poulain 59739131e0 usb: chipidea: Fix otg event handler 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 59739131e0 usb: chipidea: Fix otg event handler 6 年之前
class df3aa13c7b Revert "cdc-acm: implement put_char() and flush_chars()" 7 年之前
common fa82796609 usb: Change usb_of_get_companion_dev() place to usb/common 7 年之前
core 1652a83fa4 Merge 4.19-rc4 into usb-next 6 年之前
dwc2 d970749007 usb: dwc2: Fix call location of dwc2_check_core_endianness 7 年之前
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 年之前
early 4bda35a065 usb: early: Correct the endpoint type value for bulk in endpoint 7 年之前
gadget dfe1a51d2a usb: gadget: udc: renesas_usb3: fix maxpacket size of ep0 7 年之前
host 1652a83fa4 Merge 4.19-rc4 into usb-next 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 1652a83fa4 Merge 4.19-rc4 into usb-next 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 169d3606dc USB: musb: mark expected switch fall-throughs 7 年之前
phy a39ba90a1c usb/phy: fix PPC64 build errors in phy-fsl-usb.c 7 年之前
renesas_usbhs 479af32163 usb: renesas_usbhs: Kconfig: convert to SPDX identifiers 7 年之前
roles cb29684686 usb: roles: intel_xhci: Enable runtime PM 7 年之前
serial 5dfdd24eb3 USB: serial: ti_usb_3410_5052: fix array underflow in completion handler 7 年之前
storage 1652a83fa4 Merge 4.19-rc4 into usb-next 6 年之前
typec 1652a83fa4 Merge 4.19-rc4 into usb-next 6 年之前
usbip a7d8205eae usb: usbip: remove redundant pointer ep 7 年之前
wusbcore 1973d029d6 USB: wusbcore: Switch to bitmap_zalloc() 7 年之前
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.