2006-11-27 10:51:21 +00:00
|
|
|
Notes on the the generic USB-OHCI driver
|
|
|
|
========================================
|
|
|
|
|
2007-12-30 02:30:46 +00:00
|
|
|
This driver (drivers/usb/usb_ohci.[ch]) is the result of the merge of
|
2006-11-27 10:51:21 +00:00
|
|
|
various existing OHCI drivers that were basically identical beside
|
|
|
|
cpu/board dependant initalization. This initalization has been moved
|
|
|
|
into cpu/board directories and are called via the hooks below.
|
|
|
|
|
|
|
|
Configuration options
|
|
|
|
----------------------
|
|
|
|
|
2007-06-06 09:49:35 +00:00
|
|
|
CONFIG_USB_OHCI_NEW: enable the new OHCI driver
|
2006-11-27 10:51:21 +00:00
|
|
|
|
2022-11-16 18:10:41 +00:00
|
|
|
CFG_SYS_USB_OHCI_REGS_BASE: defines the base address of the OHCI
|
2007-06-06 09:49:35 +00:00
|
|
|
registers
|
2006-11-27 10:51:21 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_USB_OHCI_SLOT_NAME: slot name
|
2006-11-27 10:51:21 +00:00
|
|
|
|
|
|
|
Endianness issues
|
|
|
|
------------------
|
|
|
|
|
2007-06-06 09:49:35 +00:00
|
|
|
The USB bus operates in little endian, but unfortunately there are
|
2017-06-14 03:49:40 +00:00
|
|
|
OHCI controllers that operate in big endian such as ppc4xx. For these the
|
|
|
|
config option
|
2006-11-27 10:51:21 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_OHCI_BE_CONTROLLER
|
2007-06-06 09:49:35 +00:00
|
|
|
|
2007-08-13 19:57:53 +00:00
|
|
|
needs to be defined.
|
2007-06-06 09:49:35 +00:00
|
|
|
|