aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/Kconfig
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2012-03-15 18:49:57 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-04-18 16:43:30 -0400
commit62e11d1bada33102e8827c8d0cca95c020cf5467 (patch)
tree77a9af6b852fc966d7f173834a82db204ec45931 /drivers/usb/host/Kconfig
parente167d9fbb881c030f93563fd364c8a0b8c5cd6d3 (diff)
USB: Add driver for the bcma bus
This adds a USB driver using the generic platform device driver for the USB controller found on the Broadcom bcma bus. The bcma bus just exposes one device which serves the OHCI and the EHCI controller at the same time. This driver probes for this USB controller and creates and registers two new platform devices which will be probed by the new generic platform device driver. This makes it possible to use the EHCI and the OCHI controller on the bcma bus at the same time. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/Kconfig')
-rw-r--r--drivers/usb/host/Kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index f788eb86707c..57d16b16c6d4 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -638,3 +638,15 @@ config USB_OCTEON_OHCI
638config USB_OCTEON2_COMMON 638config USB_OCTEON2_COMMON
639 bool 639 bool
640 default y if USB_OCTEON_EHCI || USB_OCTEON_OHCI 640 default y if USB_OCTEON_EHCI || USB_OCTEON_OHCI
641
642config USB_HCD_BCMA
643 tristate "BCMA usb host driver"
644 depends on BCMA && EXPERIMENTAL
645 select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
646 select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
647 help
648 Enbale support for the EHCI and OCHI host controller on an bcma bus.
649 It converts the bcma driver into two platform device drivers
650 for ehci and ohci.
651
652 If unsure, say N.