Difference between revisions of "OHCI"

From ReactOS Wiki
Jump to: navigation, search
(Link to OHCI document (copied from Wikipedia), known issues link, see also)
(Introduction changed; section "Source Code" added)
Line 1: Line 1:
'''USBOHCI.SYS''' is the [[ReactOS]] driver for the [[USB]] Open Host Controller Interface. OHCI supports USB 1.1 full and low speed devices. It does not support USB 2.0 or "high speed" devices.
+
'''OHCI''' (''Open Host Controller Interface'') is a standardized interface for the connection of an USB 1.1 host controller to the [[PCI]] bus. The driver for OHCI in [[ReactOS]] is ''usbohci.sys''.
  
ReactOS currently has a (functional) OHCI driver.
+
OHCI supports USB 1.1 full and low speed devices. It does not support USB 2.0 or "high speed" devices.
 +
 
 +
==Source Code==
 +
 
 +
The path for the source code of ''usbohci.sys'' is [http://code.reactos.org/browse/reactos/trunk/reactos/drivers/usb/usbohci /reactos/drivers/usb/usbohci/].
 +
 
 +
For high level functionality of the driver the ''[[libusb]]'' is used ([http://code.reactos.org/browse/reactos/trunk/reactos/lib/drivers/libusb reactos/lib/drivers/libusb]). Thus changes in ''libusb'' influence the functionality ''usbohci.sys''.
 +
 
 +
==Known Issues==
  
==Known issues==
 
 
* [http://jira.reactos.org/issues/?jql=text%20~%20%22OHCI%22 ReactOS Jira query for OHCI]
 
* [http://jira.reactos.org/issues/?jql=text%20~%20%22OHCI%22 ReactOS Jira query for OHCI]
  

Revision as of 19:01, 28 July 2013

OHCI (Open Host Controller Interface) is a standardized interface for the connection of an USB 1.1 host controller to the PCI bus. The driver for OHCI in ReactOS is usbohci.sys.

OHCI supports USB 1.1 full and low speed devices. It does not support USB 2.0 or "high speed" devices.

Source Code

The path for the source code of usbohci.sys is /reactos/drivers/usb/usbohci/.

For high level functionality of the driver the libusb is used (reactos/lib/drivers/libusb). Thus changes in libusb influence the functionality usbohci.sys.

Known Issues

See also

External links