blob: 2a2bffe06fe0ec8c311b4b2e7b8f2a2687691581 [file] [log] [blame]
Masahiro Yamada1b0a06b2014-11-07 18:48:31 +09001#
2# USB Host Controller Drivers
3#
4comment "USB Host Controller Drivers"
5
6config USB_XHCI_HCD
7 bool "xHCI HCD (USB 3.0) support"
8 ---help---
9 The eXtensible Host Controller Interface (xHCI) is standard for USB 3.0
10 "SuperSpeed" host controller hardware.
11
12config USB_XHCI
13 bool
14 default USB_XHCI_HCD
15 ---help---
16 TODO: rename after most boards switch to Kconfig
17
18if USB_XHCI_HCD
19
Masahiro Yamada273f84d2015-02-27 02:27:00 +090020config USB_XHCI_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +090021 bool "Support for UniPhier on-chip xHCI USB controller"
Masahiro Yamada273f84d2015-02-27 02:27:00 +090022 depends on ARCH_UNIPHIER
23 default y
24 ---help---
Masahiro Yamada563ee4c2015-05-29 17:30:01 +090025 Enables support for the on-chip xHCI controller on UniPhier SoCs.
Masahiro Yamada273f84d2015-02-27 02:27:00 +090026
Masahiro Yamada1b0a06b2014-11-07 18:48:31 +090027endif
28
29config USB_EHCI_HCD
30 bool "EHCI HCD (USB 2.0) support"
31 ---help---
32 The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
33 "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
34 If your USB host controller supports USB 2.0, you will likely want to
35 configure this Host Controller Driver.
36
37 EHCI controllers are packaged with "companion" host controllers (OHCI
38 or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
39 will connect to EHCI if the device is high speed, otherwise they
40 connect to a companion controller. If you configure EHCI, you should
41 probably configure the OHCI (for NEC and some other vendors) USB Host
42 Controller Driver or UHCI (for Via motherboards) Host Controller
43 Driver too.
44
45 You may want to read <file:Documentation/usb/ehci.txt>.
46
47config USB_EHCI
48 bool
49 default USB_EHCI_HCD
50 ---help---
51 TODO: rename after most boards switch to Kconfig
52
53if USB_EHCI_HCD
54
Stefan Roese03901022015-09-01 11:39:44 +020055config USB_EHCI_MARVELL
56 bool "Support for MVEBU (AXP / A38x) on-chip EHCI USB controller"
57 depends on ARCH_MVEBU
58 default y
59 ---help---
60 Enables support for the on-chip EHCI controller on MVEBU SoCs.
61
Nikita Kiryanov99241032015-07-23 17:19:35 +030062config USB_EHCI_MX6
63 bool "Support for i.MX6 on-chip EHCI USB controller"
64 depends on ARCH_MX6
65 default y
66 ---help---
67 Enables support for the on-chip EHCI controller on i.MX6 SoCs.
68
Masahiro Yamada21b88902014-11-07 18:48:33 +090069config USB_EHCI_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +090070 bool "Support for UniPhier on-chip EHCI USB controller"
Masahiro Yamada9a1dff52015-02-27 02:26:54 +090071 depends on ARCH_UNIPHIER && OF_CONTROL
Masahiro Yamada21b88902014-11-07 18:48:33 +090072 default y
73 ---help---
Masahiro Yamada563ee4c2015-05-29 17:30:01 +090074 Enables support for the on-chip EHCI controller on UniPhier SoCs.
Masahiro Yamada21b88902014-11-07 18:48:33 +090075
Masahiro Yamada1b0a06b2014-11-07 18:48:31 +090076endif