• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

atm/23-Jun-2016-7,0035,112

c67x00/23-Jun-2016-2,7401,744

chipidea/23-Jun-2016-7,0364,764

class/23-Jun-2016-5,9634,501

common/23-Jun-2016-596458

core/23-Jun-2016-22,86414,689

dwc2/23-Jun-2016-17,90711,356

dwc3/23-Jun-2016-9,7376,638

early/23-Jun-2016-1,104825

gadget/23-Jun-2016-122,94387,612

host/23-Jun-2016-98,48068,458

image/23-Jun-2016-1,9951,322

isp1760/23-Jun-2016-4,8003,329

misc/23-Jun-2016-24,18418,083

mon/23-Jun-2016-2,7512,008

musb/23-Jun-2016-21,85714,574

phy/23-Jun-2016-13,5479,914

renesas_usbhs/23-Jun-2016-7,0844,425

serial/23-Jun-2016-55,13239,074

storage/23-Jun-2016-23,06615,081

usbip/23-Jun-2016-5,6553,842

wusbcore/23-Jun-2016-9,4495,837

KconfigD23-Jun-20164.6 KiB165117

MakefileD23-Jun-20161.6 KiB6544

READMED23-Jun-20162.4 KiB5543

usb-skeleton.cD23-Jun-201615.8 KiB665459

README

1To understand all the Linux-USB framework, you'll use these resources:
2
3    * This source code.  This is necessarily an evolving work, and
4      includes kerneldoc that should help you get a current overview.
5      ("make pdfdocs", and then look at "usb.pdf" for host side and
6      "gadget.pdf" for peripheral side.)  Also, Documentation/usb has
7      more information.
8
9    * The USB 2.0 specification (from www.usb.org), with supplements
10      such as those for USB OTG and the various device classes.
11      The USB specification has a good overview chapter, and USB
12      peripherals conform to the widely known "Chapter 9".
13
14    * Chip specifications for USB controllers.  Examples include
15      host controllers (on PCs, servers, and more); peripheral
16      controllers (in devices with Linux firmware, like printers or
17      cell phones); and hard-wired peripherals like Ethernet adapters.
18
19    * Specifications for other protocols implemented by USB peripheral
20      functions.  Some are vendor-specific; others are vendor-neutral
21      but just standardized outside of the www.usb.org team.
22
23Here is a list of what each subdirectory here is, and what is contained in
24them.
25
26core/		- This is for the core USB host code, including the
27		  usbfs files and the hub class driver ("hub_wq").
28
29host/		- This is for USB host controller drivers.  This
30		  includes UHCI, OHCI, EHCI, and others that might
31		  be used with more specialized "embedded" systems.
32
33gadget/		- This is for USB peripheral controller drivers and
34		  the various gadget drivers which talk to them.
35
36
37Individual USB driver directories.  A new driver should be added to the
38first subdirectory in the list below that it fits into.
39
40image/		- This is for still image drivers, like scanners or
41		  digital cameras.
42../input/	- This is for any driver that uses the input subsystem,
43		  like keyboard, mice, touchscreens, tablets, etc.
44../media/	- This is for multimedia drivers, like video cameras,
45		  radios, and any other drivers that talk to the v4l
46		  subsystem.
47../net/		- This is for network drivers.
48serial/		- This is for USB to serial drivers.
49storage/	- This is for USB mass-storage drivers.
50class/		- This is for all USB device drivers that do not fit
51		  into any of the above categories, and work for a range
52		  of USB Class specified devices.
53misc/		- This is for all USB device drivers that do not fit
54		  into any of the above categories.
55