diff options
author | Anand Gadiyar <gadiyar@ti.com> | 2010-05-10 12:26:12 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-20 16:21:44 -0400 |
commit | 968b448b22f5a42689cc55648510834010d42379 (patch) | |
tree | a3ca87f9967959591a9410b9cbebbf395dd80291 /drivers/usb/host/Kconfig | |
parent | 88ed0c97c9e9d48dddeca98856645f6ee5c56489 (diff) |
USB: ohci: Add Kconfig entries for ohci-omap3
On OMAP systems, we have two different OHCI controllers. The legacy
one is present in OMAP1/2 chips, and the newer one comes bundled as
a companion to the EHCI controller on OMAP3 and newer chips.
We may have multi-omap configurations where OMAP2 and OMAP3
support may be enabled in the same kernel, and need a mechanism
to keep both drivers around.
This patch adds a Kconfig entry for each of these drivers.
Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/Kconfig')
-rw-r--r-- | drivers/usb/host/Kconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 8d3df0397de3..f865be2276d4 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
@@ -207,6 +207,21 @@ config USB_OHCI_HCD | |||
207 | To compile this driver as a module, choose M here: the | 207 | To compile this driver as a module, choose M here: the |
208 | module will be called ohci-hcd. | 208 | module will be called ohci-hcd. |
209 | 209 | ||
210 | config USB_OHCI_HCD_OMAP1 | ||
211 | bool "OHCI support for OMAP1/2 chips" | ||
212 | depends on USB_OHCI_HCD && (ARCH_OMAP1 || ARCH_OMAP2) | ||
213 | default y | ||
214 | ---help--- | ||
215 | Enables support for the OHCI controller on OMAP1/2 chips. | ||
216 | |||
217 | config USB_OHCI_HCD_OMAP3 | ||
218 | bool "OHCI support for OMAP3 and later chips" | ||
219 | depends on USB_OHCI_HCD && (ARCH_OMAP3 || ARCH_OMAP4) | ||
220 | default y | ||
221 | ---help--- | ||
222 | Enables support for the on-chip OHCI controller on | ||
223 | OMAP3 and later chips. | ||
224 | |||
210 | config USB_OHCI_HCD_PPC_SOC | 225 | config USB_OHCI_HCD_PPC_SOC |
211 | bool "OHCI support for on-chip PPC USB controller" | 226 | bool "OHCI support for on-chip PPC USB controller" |
212 | depends on USB_OHCI_HCD && (STB03xxx || PPC_MPC52xx) | 227 | depends on USB_OHCI_HCD && (STB03xxx || PPC_MPC52xx) |