1
0
Fork 0
remarkable-linux/drivers/usb
Martin T. H. Sandsmark bfe00d1c04 borrow the IBM rndis vid and pid until we get the code signing certificate and our own driver 2018-06-01 20:15:39 +02:00
..
atm usb: atm: usbatm: don't print on ENOMEM 2016-08-30 19:17:36 +02:00
c67x00 c67x00-hcd: use USB_DT_HUB 2015-04-03 19:03:16 +02:00
chipidea Busfreq: Disable busfreq 2018-06-01 20:15:36 +02:00
class CDC-ACM: apply quirk for card reader 2018-02-03 17:05:42 +01:00
common MLK-9897-2 usb: otg-fsm: check B-device state before sending polling request 2017-02-23 14:21:42 +02:00
core This is the 4.9.76 stable release 2018-01-24 15:03:41 +01:00
dwc2 usb: dwc2: gadget: Fix GUSBCFG.USBTRDTIM value 2017-07-05 14:40:26 +02:00
dwc3 usb: dwc3: of-simple: fix missing clk_disable_unprepare 2018-02-25 11:05:49 +01:00
early treewide: remove redundant #include <linux/kconfig.h> 2016-10-11 15:06:33 -07:00
gadget borrow the IBM rndis vid and pid until we get the code signing certificate and our own driver 2018-06-01 20:15:39 +02:00
host This is the 4.9.84 stable release 2018-02-26 21:54:02 -03:00
image usb: microtek: Use "foo *bar" instead of "foo * bar". 2016-06-07 22:18:39 -07:00
isp1760 usb: Remove unnecessary space before open square bracket. 2016-05-09 13:08:46 +02:00
misc This is the 4.9.84 stable release 2018-02-26 21:54:02 -03:00
mon USB: fix usbmon BUG trigger 2018-01-17 09:38:55 +01:00
musb usb: musb: fix compilation warning on unused function 2018-02-25 11:05:51 +01:00
phy This is the 4.9.84 stable release 2018-02-26 21:54:02 -03:00
renesas_usbhs usb: renesas_usbhs: Fix DMAC sequence for receiving zero-length packet 2017-10-18 09:35:39 +02:00
serial USB: serial: simple: add Motorola Tetra driver 2018-02-03 17:05:42 +01:00
storage usb: uas: unconditionally bring back host after reset 2018-02-03 17:05:42 +01:00
usbip usbip: keep usbip_device sockfd state in sync with tcp_socket 2018-02-25 11:05:45 +01:00
wusbcore USB: wusbcore: fix NULL-deref at probe 2017-03-30 09:41:24 +02:00
Kconfig usb: Move USB_UHCI_BIG_ENDIAN_* out of USB_SUPPORT 2018-02-22 15:43:51 +01:00
Makefile usb: fsl: drop USB_FSL_MPH_DR_OF Kconfig symbol 2016-03-04 15:14:29 +02:00
README usb: hub: rename khubd to hub_wq in documentation and comments 2014-09-23 22:33:19 -07:00
usb-skeleton.c usb: usb-skeleton: don't print on ENOMEM 2016-08-30 19:17:39 +02:00

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.