blob: 7992cb4632cb6af3ee2a7387849f97a807179afe [file] [log] [blame]
Masahiro Yamada6e7e9292014-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
Masahiro Yamada6e7e9292014-11-07 18:48:31 +090012if USB_XHCI_HCD
13
Masahiro Yamada1e7df7c2015-02-27 02:27:00 +090014config USB_XHCI_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +090015 bool "Support for UniPhier on-chip xHCI USB controller"
Masahiro Yamada1e7df7c2015-02-27 02:27:00 +090016 depends on ARCH_UNIPHIER
17 default y
18 ---help---
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +090019 Enables support for the on-chip xHCI controller on UniPhier SoCs.
Masahiro Yamada1e7df7c2015-02-27 02:27:00 +090020
Masahiro Yamada10db7502016-06-04 07:35:04 +090021config USB_XHCI_DWC3
22 bool "DesignWare USB3 DRD Core Support"
23 help
24 Say Y or if your system has a Dual Role SuperSpeed
25 USB controller based on the DesignWare USB3 IP Core.
26
Masahiro Yamada6e7e9292014-11-07 18:48:31 +090027endif
28
Alexey Brodkinfee331f2015-12-14 17:18:50 +030029config USB_OHCI_GENERIC
30 bool "Support for generic OHCI USB controller"
31 depends on OF_CONTROL
32 depends on DM_USB
33 default n
34 ---help---
35 Enables support for generic OHCI controller.
36
Masahiro Yamada6e7e9292014-11-07 18:48:31 +090037config USB_EHCI_HCD
38 bool "EHCI HCD (USB 2.0) support"
39 ---help---
40 The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
41 "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
42 If your USB host controller supports USB 2.0, you will likely want to
43 configure this Host Controller Driver.
44
45 EHCI controllers are packaged with "companion" host controllers (OHCI
46 or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
47 will connect to EHCI if the device is high speed, otherwise they
48 connect to a companion controller. If you configure EHCI, you should
49 probably configure the OHCI (for NEC and some other vendors) USB Host
50 Controller Driver or UHCI (for Via motherboards) Host Controller
51 Driver too.
52
53 You may want to read <file:Documentation/usb/ehci.txt>.
54
55config USB_EHCI
56 bool
57 default USB_EHCI_HCD
58 ---help---
59 TODO: rename after most boards switch to Kconfig
60
61if USB_EHCI_HCD
62
Stefan Roesecd482252015-09-01 11:39:44 +020063config USB_EHCI_MARVELL
64 bool "Support for MVEBU (AXP / A38x) on-chip EHCI USB controller"
65 depends on ARCH_MVEBU
66 default y
67 ---help---
68 Enables support for the on-chip EHCI controller on MVEBU SoCs.
69
Nikita Kiryanov919e8022015-07-23 17:19:35 +030070config USB_EHCI_MX6
71 bool "Support for i.MX6 on-chip EHCI USB controller"
72 depends on ARCH_MX6
73 default y
74 ---help---
75 Enables support for the on-chip EHCI controller on i.MX6 SoCs.
76
Stefan Agner2deebe22016-07-13 00:25:36 -070077config USB_EHCI_MX7
78 bool "Support for i.MX7 on-chip EHCI USB controller"
79 depends on ARCH_MX7
80 default y
81 ---help---
82 Enables support for the on-chip EHCI controller on i.MX7 SoCs.
83
Mateusz Kulikowski5a822112016-03-31 23:12:26 +020084config USB_EHCI_MSM
85 bool "Support for Qualcomm on-chip EHCI USB controller"
86 depends on DM_USB
87 select USB_ULPI_VIEWPORT
88 default n
89 ---help---
90 Enables support for the on-chip EHCI controller on Qualcomm
91 Snapdragon SoCs.
92 This driver supports combination of Chipidea USB controller
93 and Synapsys USB PHY in host mode only.
94
Alexey Brodkin90fbb282015-12-02 12:32:02 +030095config USB_EHCI_GENERIC
96 bool "Support for generic EHCI USB controller"
97 depends on OF_CONTROL
98 depends on DM_USB
99 default n
100 ---help---
101 Enables support for generic EHCI controller.
102
Masahiro Yamada6e7e9292014-11-07 18:48:31 +0900103endif