aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/Kconfig
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2012-03-15 18:49:58 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-04-18 16:43:30 -0400
commit7043c2ccf7483f170df4abcd4c95919050ac0760 (patch)
tree2d0c419f0e49cc475a3a63633a4cd061ac1cddbf /drivers/usb/host/Kconfig
parent62e11d1bada33102e8827c8d0cca95c020cf5467 (diff)
USB: Add driver for the ssb bus
This adds a USB driver using the generic platform device driver for the USB controller found on the Broadcom ssb bus. The ssb 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 ssb bus at the same time. The old ssb OHCI USB driver will be removed in the next step as this driver also provide an OHCI driver and an EHCI for the cores supporting it. 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 57d16b16c6d4..2fc5637c4c1f 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -650,3 +650,15 @@ config USB_HCD_BCMA
650 for ehci and ohci. 650 for ehci and ohci.
651 651
652 If unsure, say N. 652 If unsure, say N.
653
654config USB_HCD_SSB
655 tristate "SSB usb host driver"
656 depends on SSB && EXPERIMENTAL
657 select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
658 select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
659 help
660 Enbale support for the EHCI and OCHI host controller on an bcma bus.
661 It converts the bcma driver into two platform device drivers
662 for ehci and ohci.
663
664 If unsure, say N.