Masahiro Yamada | 1b0a06b | 2014-11-07 18:48:31 +0900 | [diff] [blame] | 1 | # |
| 2 | # USB Host Controller Drivers |
| 3 | # |
| 4 | comment "USB Host Controller Drivers" |
| 5 | |
| 6 | config 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 Yamada | 1b0a06b | 2014-11-07 18:48:31 +0900 | [diff] [blame] | 12 | if USB_XHCI_HCD |
| 13 | |
Masahiro Yamada | 273f84d | 2015-02-27 02:27:00 +0900 | [diff] [blame] | 14 | config USB_XHCI_UNIPHIER |
Masahiro Yamada | 563ee4c | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 15 | bool "Support for UniPhier on-chip xHCI USB controller" |
Masahiro Yamada | 273f84d | 2015-02-27 02:27:00 +0900 | [diff] [blame] | 16 | depends on ARCH_UNIPHIER |
| 17 | default y |
| 18 | ---help--- |
Masahiro Yamada | 563ee4c | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 19 | Enables support for the on-chip xHCI controller on UniPhier SoCs. |
Masahiro Yamada | 273f84d | 2015-02-27 02:27:00 +0900 | [diff] [blame] | 20 | |
Masahiro Yamada | d3b72ca | 2016-06-04 07:35:04 +0900 | [diff] [blame] | 21 | config 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 Yamada | 1b0a06b | 2014-11-07 18:48:31 +0900 | [diff] [blame] | 27 | endif |
| 28 | |
Alexey Brodkin | 83fd312 | 2015-12-14 17:18:50 +0300 | [diff] [blame] | 29 | config 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 Yamada | 1b0a06b | 2014-11-07 18:48:31 +0900 | [diff] [blame] | 37 | config 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 | |
| 55 | config USB_EHCI |
| 56 | bool |
| 57 | default USB_EHCI_HCD |
| 58 | ---help--- |
| 59 | TODO: rename after most boards switch to Kconfig |
| 60 | |
| 61 | if USB_EHCI_HCD |
| 62 | |
Stefan Roese | 0390102 | 2015-09-01 11:39:44 +0200 | [diff] [blame] | 63 | config 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 Kiryanov | 9924103 | 2015-07-23 17:19:35 +0300 | [diff] [blame] | 70 | config 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 Agner | 100fe07 | 2016-07-13 00:25:36 -0700 | [diff] [blame] | 77 | config 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 | |
Stefan Agner | 8652ce9 | 2016-07-13 00:25:38 -0700 | [diff] [blame^] | 84 | if USB_EHCI_MX7 |
| 85 | |
| 86 | config MXC_USB_OTG_HACTIVE |
| 87 | bool "USB Power pin high active" |
| 88 | ---help--- |
| 89 | Set the USB Power pin polarity to be high active (PWR_POL) |
| 90 | |
| 91 | endif |
| 92 | |
Mateusz Kulikowski | dc38117 | 2016-03-31 23:12:26 +0200 | [diff] [blame] | 93 | config USB_EHCI_MSM |
| 94 | bool "Support for Qualcomm on-chip EHCI USB controller" |
| 95 | depends on DM_USB |
| 96 | select USB_ULPI_VIEWPORT |
| 97 | default n |
| 98 | ---help--- |
| 99 | Enables support for the on-chip EHCI controller on Qualcomm |
| 100 | Snapdragon SoCs. |
| 101 | This driver supports combination of Chipidea USB controller |
| 102 | and Synapsys USB PHY in host mode only. |
| 103 | |
Alexey Brodkin | a6aff43 | 2015-12-02 12:32:02 +0300 | [diff] [blame] | 104 | config USB_EHCI_GENERIC |
| 105 | bool "Support for generic EHCI USB controller" |
| 106 | depends on OF_CONTROL |
| 107 | depends on DM_USB |
| 108 | default n |
| 109 | ---help--- |
| 110 | Enables support for generic EHCI controller. |
| 111 | |
Masahiro Yamada | 1b0a06b | 2014-11-07 18:48:31 +0900 | [diff] [blame] | 112 | endif |