ohci.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. 23-Aug-2002
  2. The "ohci-hcd" driver is a USB Host Controller Driver (HCD) that is derived
  3. from the "usb-ohci" driver from the 2.4 kernel series. The "usb-ohci" code
  4. was written primarily by Roman Weissgaerber <weissg@vienna.at> but with
  5. contributions from many others (read its copyright/licencing header).
  6. It supports the "Open Host Controller Interface" (OHCI), which standardizes
  7. hardware register protocols used to talk to USB 1.1 host controllers. As
  8. compared to the earlier "Universal Host Controller Interface" (UHCI) from
  9. Intel, it pushes more intelligence into the hardware. USB 1.1 controllers
  10. from vendors other than Intel and VIA generally use OHCI.
  11. Changes since the 2.4 kernel include
  12. - improved robustness; bugfixes; and less overhead
  13. - supports the updated and simplified usbcore APIs
  14. - interrupt transfers can be larger, and can be queued
  15. - less code, by using the upper level "hcd" framework
  16. - supports some non-PCI implementations of OHCI
  17. - ... more
  18. The "ohci-hcd" driver handles all USB 1.1 transfer types. Transfers of all
  19. types can be queued. That was also true in "usb-ohci", except for interrupt
  20. transfers. Previously, using periods of one frame would risk data loss due
  21. to overhead in IRQ processing. When interrupt transfers are queued, those
  22. risks can be minimized by making sure the hardware always has transfers to
  23. work on while the OS is getting around to the relevant IRQ processing.
  24. - David Brownell
  25. <dbrownell@users.sourceforge.net>