diff options
author | Alexey Brodkin <Alexey.Brodkin@synopsys.com> | 2015-12-14 17:18:50 +0300 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-12-17 21:54:41 +0100 |
commit | fee331f66c923bd1b481b4a72fe7814e5436daed (patch) | |
tree | 50cc38caca87f1f789812fbdfa6b0c0b78e35c32 /drivers/usb/host/Kconfig | |
parent | 70cc443d5833b27dd4dd4a48a771778c39734f75 (diff) |
usb: add support of generic OHCI devices
This driver is meant to be used with any OHCI-compatible host
controller in case if there's no need for platform-specific
glue such as setup of controller or PHY's power mode via
GPIOs etc.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/usb/host/Kconfig')
-rw-r--r-- | drivers/usb/host/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 0096a2f..39f7185 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig @@ -26,6 +26,14 @@ config USB_XHCI_UNIPHIER endif +config USB_OHCI_GENERIC + bool "Support for generic OHCI USB controller" + depends on OF_CONTROL + depends on DM_USB + default n + ---help--- + Enables support for generic OHCI controller. + config USB_EHCI_HCD bool "EHCI HCD (USB 2.0) support" ---help--- |