Markus Klotzbuecher | 58b4857 | 2006-11-27 11:51:21 +0100 | [diff] [blame] | 1 | Notes on the the generic USB-OHCI driver |
| 2 | ======================================== |
| 3 | |
Marcel Ziswiler | 7817cb2 | 2007-12-30 03:30:46 +0100 | [diff] [blame] | 4 | This driver (drivers/usb/usb_ohci.[ch]) is the result of the merge of |
Markus Klotzbuecher | 58b4857 | 2006-11-27 11:51:21 +0100 | [diff] [blame] | 5 | various existing OHCI drivers that were basically identical beside |
| 6 | cpu/board dependant initalization. This initalization has been moved |
| 7 | into cpu/board directories and are called via the hooks below. |
| 8 | |
| 9 | Configuration options |
| 10 | ---------------------- |
| 11 | |
Markus Klotzbuecher | fc43be4 | 2007-06-06 11:49:35 +0200 | [diff] [blame] | 12 | CONFIG_USB_OHCI_NEW: enable the new OHCI driver |
Markus Klotzbuecher | 58b4857 | 2006-11-27 11:51:21 +0100 | [diff] [blame] | 13 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 14 | CFG_SYS_USB_OHCI_REGS_BASE: defines the base address of the OHCI |
Markus Klotzbuecher | fc43be4 | 2007-06-06 11:49:35 +0200 | [diff] [blame] | 15 | registers |
Markus Klotzbuecher | 58b4857 | 2006-11-27 11:51:21 +0100 | [diff] [blame] | 16 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 17 | CONFIG_SYS_USB_OHCI_SLOT_NAME: slot name |
Markus Klotzbuecher | 58b4857 | 2006-11-27 11:51:21 +0100 | [diff] [blame] | 18 | |
Markus Klotzbuecher | 58b4857 | 2006-11-27 11:51:21 +0100 | [diff] [blame] | 19 | Endianness issues |
| 20 | ------------------ |
| 21 | |
Markus Klotzbuecher | fc43be4 | 2007-06-06 11:49:35 +0200 | [diff] [blame] | 22 | The USB bus operates in little endian, but unfortunately there are |
Heiko Schocher | 064b55c | 2017-06-14 05:49:40 +0200 | [diff] [blame] | 23 | OHCI controllers that operate in big endian such as ppc4xx. For these the |
| 24 | config option |
Markus Klotzbuecher | 58b4857 | 2006-11-27 11:51:21 +0100 | [diff] [blame] | 25 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 26 | CONFIG_SYS_OHCI_BE_CONTROLLER |
Markus Klotzbuecher | fc43be4 | 2007-06-06 11:49:35 +0200 | [diff] [blame] | 27 | |
Wolfgang Denk | be5d72d | 2007-08-13 21:57:53 +0200 | [diff] [blame] | 28 | needs to be defined. |
Markus Klotzbuecher | fc43be4 | 2007-06-06 11:49:35 +0200 | [diff] [blame] | 29 | |