blob: e0699d41ac14356b81e6fb9f4e2aa372944ea307 [file] [log] [blame]
Masahiro Yamada6e7e9292014-11-07 18:48:31 +09001#
2# USB Host Controller Drivers
3#
4comment "USB Host Controller Drivers"
5
Masahiro Yamada2b58e1b2016-08-01 00:16:34 +09006config USB_HOST
7 bool
8
Masahiro Yamada6e7e9292014-11-07 18:48:31 +09009config USB_XHCI_HCD
10 bool "xHCI HCD (USB 3.0) support"
Masahiro Yamada2b58e1b2016-08-01 00:16:34 +090011 select USB_HOST
Masahiro Yamada6e7e9292014-11-07 18:48:31 +090012 ---help---
13 The eXtensible Host Controller Interface (xHCI) is standard for USB 3.0
14 "SuperSpeed" host controller hardware.
15
Masahiro Yamada6e7e9292014-11-07 18:48:31 +090016if USB_XHCI_HCD
17
Masahiro Yamada1e7df7c2015-02-27 02:27:00 +090018config USB_XHCI_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +090019 bool "Support for UniPhier on-chip xHCI USB controller"
Masahiro Yamada1e7df7c2015-02-27 02:27:00 +090020 depends on ARCH_UNIPHIER
21 default y
22 ---help---
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +090023 Enables support for the on-chip xHCI controller on UniPhier SoCs.
Masahiro Yamada1e7df7c2015-02-27 02:27:00 +090024
Masahiro Yamada10db7502016-06-04 07:35:04 +090025config USB_XHCI_DWC3
26 bool "DesignWare USB3 DRD Core Support"
27 help
28 Say Y or if your system has a Dual Role SuperSpeed
29 USB controller based on the DesignWare USB3 IP Core.
30
Masahiro Yamada93cb8242016-08-01 00:16:32 +090031endif # USB_XHCI_HCD
Alexey Brodkinfee331f2015-12-14 17:18:50 +030032
Masahiro Yamada6e7e9292014-11-07 18:48:31 +090033config USB_EHCI_HCD
34 bool "EHCI HCD (USB 2.0) support"
Masahiro Yamada2b58e1b2016-08-01 00:16:34 +090035 select USB_HOST
Masahiro Yamada6e7e9292014-11-07 18:48:31 +090036 ---help---
37 The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
38 "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
39 If your USB host controller supports USB 2.0, you will likely want to
40 configure this Host Controller Driver.
41
42 EHCI controllers are packaged with "companion" host controllers (OHCI
43 or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
44 will connect to EHCI if the device is high speed, otherwise they
45 connect to a companion controller. If you configure EHCI, you should
46 probably configure the OHCI (for NEC and some other vendors) USB Host
47 Controller Driver or UHCI (for Via motherboards) Host Controller
48 Driver too.
49
50 You may want to read <file:Documentation/usb/ehci.txt>.
51
52config USB_EHCI
53 bool
54 default USB_EHCI_HCD
55 ---help---
56 TODO: rename after most boards switch to Kconfig
57
58if USB_EHCI_HCD
59
Wenyou Yang17b68b52016-08-05 08:57:35 +080060config USB_EHCI_ATMEL
61 bool "Support for Atmel on-chip EHCI USB controller"
62 depends on ARCH_AT91
63 default y
64 ---help---
65 Enables support for the on-chip EHCI controller on Atmel chips.
66
Stefan Roesecd482252015-09-01 11:39:44 +020067config USB_EHCI_MARVELL
68 bool "Support for MVEBU (AXP / A38x) on-chip EHCI USB controller"
69 depends on ARCH_MVEBU
70 default y
71 ---help---
72 Enables support for the on-chip EHCI controller on MVEBU SoCs.
73
Nikita Kiryanov919e8022015-07-23 17:19:35 +030074config USB_EHCI_MX6
75 bool "Support for i.MX6 on-chip EHCI USB controller"
76 depends on ARCH_MX6
77 default y
78 ---help---
79 Enables support for the on-chip EHCI controller on i.MX6 SoCs.
80
Stefan Agner2deebe22016-07-13 00:25:36 -070081config USB_EHCI_MX7
82 bool "Support for i.MX7 on-chip EHCI USB controller"
83 depends on ARCH_MX7
84 default y
85 ---help---
86 Enables support for the on-chip EHCI controller on i.MX7 SoCs.
87
Stefan Agnerc4483092016-07-13 00:25:38 -070088if USB_EHCI_MX7
89
90config MXC_USB_OTG_HACTIVE
91 bool "USB Power pin high active"
92 ---help---
93 Set the USB Power pin polarity to be high active (PWR_POL)
94
95endif
96
Mateusz Kulikowski5a822112016-03-31 23:12:26 +020097config USB_EHCI_MSM
98 bool "Support for Qualcomm on-chip EHCI USB controller"
99 depends on DM_USB
100 select USB_ULPI_VIEWPORT
101 default n
102 ---help---
103 Enables support for the on-chip EHCI controller on Qualcomm
104 Snapdragon SoCs.
105 This driver supports combination of Chipidea USB controller
106 and Synapsys USB PHY in host mode only.
107
Siva Durga Prasad Paladugu2cdc7782016-07-22 14:51:51 +0530108config USB_EHCI_ZYNQ
109 bool "Support for Xilinx Zynq on-chip EHCI USB controller"
110 depends on ARCH_ZYNQ
111 default y
112 ---help---
113 Enable support for Zynq on-chip EHCI USB controller
114
Alexey Brodkin90fbb282015-12-02 12:32:02 +0300115config USB_EHCI_GENERIC
116 bool "Support for generic EHCI USB controller"
117 depends on OF_CONTROL
118 depends on DM_USB
119 default n
120 ---help---
121 Enables support for generic EHCI controller.
122
Masahiro Yamada93cb8242016-08-01 00:16:32 +0900123endif # USB_EHCI_HCD
124
125config USB_OHCI_HCD
126 bool "OHCI HCD (USB 1.1) support"
127 ---help---
128 The Open Host Controller Interface (OHCI) is a standard for accessing
129 USB 1.1 host controller hardware. It does more in hardware than Intel's
130 UHCI specification. If your USB host controller follows the OHCI spec,
131 say Y. On most non-x86 systems, and on x86 hardware that's not using a
132 USB controller from Intel or VIA, this is appropriate. If your host
133 controller doesn't use PCI, this is probably appropriate. For a PCI
134 based system where you're not sure, the "lspci -v" entry will list the
135 right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
136
137if USB_OHCI_HCD
138
139config USB_OHCI_GENERIC
140 bool "Support for generic OHCI USB controller"
141 depends on OF_CONTROL
142 depends on DM_USB
Masahiro Yamada2b58e1b2016-08-01 00:16:34 +0900143 select USB_HOST
Masahiro Yamada93cb8242016-08-01 00:16:32 +0900144 ---help---
145 Enables support for generic OHCI controller.
146
147endif # USB_OHCI_HCD
Masahiro Yamada96d82842016-08-01 00:16:33 +0900148
149config USB_UHCI_HCD
150 bool "UHCI HCD (most Intel and VIA) support"
Masahiro Yamada2b58e1b2016-08-01 00:16:34 +0900151 select USB_HOST
Masahiro Yamada96d82842016-08-01 00:16:33 +0900152 ---help---
153 The Universal Host Controller Interface is a standard by Intel for
154 accessing the USB hardware in the PC (which is also called the USB
155 host controller). If your USB host controller conforms to this
156 standard, you may want to say Y, but see below. All recent boards
157 with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
158 i810, i820) conform to this standard. Also all VIA PCI chipsets
159 (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
160 133) and LEON/GRLIB SoCs with the GRUSBHC controller.
161 If unsure, say Y.
162
163if USB_UHCI_HCD
164
165endif # USB_UHCI_HCD