Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 1 | # |
| 2 | # Physical Layer USB driver configuration |
| 3 | # |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 4 | menu "USB Physical Layer drivers" |
Kishon Vijay Abraham I | 657b306 | 2012-09-06 20:27:06 +0530 | [diff] [blame] | 5 | |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 6 | config USB_PHY |
| 7 | def_bool n |
Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 8 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 9 | # |
| 10 | # USB Transceiver Drivers |
| 11 | # |
| 12 | config AB8500_USB |
| 13 | tristate "AB8500 USB Transceiver Driver" |
| 14 | depends on AB8500_CORE |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 15 | select USB_PHY |
Kishon Vijay Abraham I | 57f6ce0 | 2013-01-25 08:21:48 +0530 | [diff] [blame] | 16 | help |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 17 | Enable this to support the USB OTG transceiver in AB8500 chip. |
| 18 | This transceiver supports high and full speed devices plus, |
| 19 | in host mode, low speed. |
| 20 | |
| 21 | config FSL_USB2_OTG |
| 22 | bool "Freescale USB OTG Transceiver Driver" |
Rafael J. Wysocki | 1b3e3aa | 2014-12-13 00:44:04 +0100 | [diff] [blame] | 23 | depends on USB_EHCI_FSL && USB_FSL_USB2 && USB_OTG_FSM && PM |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 24 | depends on USB_GADGET || !USB_GADGET # if USB_GADGET=m, this can't be 'y' |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 25 | select USB_PHY |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 26 | help |
| 27 | Enable this to support Freescale USB OTG transceiver. |
| 28 | |
| 29 | config ISP1301_OMAP |
| 30 | tristate "Philips ISP1301 with OMAP OTG" |
| 31 | depends on I2C && ARCH_OMAP_OTG |
Felipe Balbi | 7cd0c29 | 2013-12-10 17:00:06 -0600 | [diff] [blame] | 32 | depends on USB |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 33 | depends on USB_GADGET || !USB_GADGET # if USB_GADGET=m, this can't be 'y' |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 34 | select USB_PHY |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 35 | help |
| 36 | If you say yes here you get support for the Philips ISP1301 |
| 37 | USB-On-The-Go transceiver working with the OMAP OTG controller. |
| 38 | The ISP1301 is a full speed USB transceiver which is used in |
| 39 | products including H2, H3, and H4 development boards for Texas |
| 40 | Instruments OMAP processors. |
| 41 | |
| 42 | This driver can also be built as a module. If so, the module |
Aaro Koskinen | 12c8d64 | 2013-12-21 20:37:38 +0200 | [diff] [blame] | 43 | will be called phy-isp1301-omap. |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 44 | |
WingMan Kwok | 25acdd0 | 2013-12-12 12:25:30 -0500 | [diff] [blame] | 45 | config KEYSTONE_USB_PHY |
| 46 | tristate "Keystone USB PHY Driver" |
| 47 | depends on ARCH_KEYSTONE || COMPILE_TEST |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 48 | depends on NOP_USB_XCEIV |
WingMan Kwok | 25acdd0 | 2013-12-12 12:25:30 -0500 | [diff] [blame] | 49 | help |
| 50 | Enable this to support Keystone USB phy. This driver provides |
| 51 | interface to interact with USB 2.0 and USB 3.0 PHY that is part |
| 52 | of the Keystone SOC. |
| 53 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 54 | config NOP_USB_XCEIV |
| 55 | tristate "NOP USB Transceiver Driver" |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 56 | depends on USB_GADGET || !USB_GADGET # if USB_GADGET=m, NOP can't be built-in |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 57 | select USB_PHY |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 58 | help |
| 59 | This driver is to be used by all the usb transceiver which are either |
| 60 | built-in with usb ip or which are autonomous and doesn't require any |
| 61 | phy programming such as ISP1x04 etc. |
Kishon Vijay Abraham I | 57f6ce0 | 2013-01-25 08:21:48 +0530 | [diff] [blame] | 62 | |
Sebastian Andrzej Siewior | 3bb869c | 2013-07-30 21:43:45 +0200 | [diff] [blame] | 63 | config AM335X_CONTROL_USB |
| 64 | tristate |
| 65 | |
| 66 | config AM335X_PHY_USB |
| 67 | tristate "AM335x USB PHY Driver" |
Dave Jones | 7ba0127 | 2013-09-03 17:35:52 -0400 | [diff] [blame] | 68 | depends on ARM || COMPILE_TEST |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 69 | depends on NOP_USB_XCEIV |
Sebastian Andrzej Siewior | 3bb869c | 2013-07-30 21:43:45 +0200 | [diff] [blame] | 70 | select USB_PHY |
| 71 | select AM335X_CONTROL_USB |
Bin Liu | 59f042f | 2015-12-08 10:31:50 -0600 | [diff] [blame] | 72 | select USB_COMMON |
Sebastian Andrzej Siewior | 3bb869c | 2013-07-30 21:43:45 +0200 | [diff] [blame] | 73 | help |
| 74 | This driver provides PHY support for that phy which part for the |
| 75 | AM335x SoC. |
| 76 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 77 | config SAMSUNG_USBPHY |
Tomasz Figa | 6278703 | 2013-05-16 11:57:06 +0200 | [diff] [blame] | 78 | tristate |
Kishon Vijay Abraham I | 01658f0 | 2013-01-25 15:53:57 +0530 | [diff] [blame] | 79 | help |
Vivek Gautam | dc2377d | 2013-03-14 15:59:10 +0530 | [diff] [blame] | 80 | Enable this to support Samsung USB phy helper driver for Samsung SoCs. |
| 81 | This driver provides common interface to interact, for Samsung USB 2.0 PHY |
| 82 | driver and later for Samsung USB 3.0 PHY driver. |
| 83 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 84 | config TWL6030_USB |
| 85 | tristate "TWL6030 USB Transceiver Driver" |
| 86 | depends on TWL4030_CORE && OMAP_USB2 && USB_MUSB_OMAP2PLUS |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 87 | help |
| 88 | Enable this to support the USB OTG transceiver on TWL6030 |
| 89 | family chips. This TWL6030 transceiver has the VBUS and ID GND |
| 90 | and OTG SRP events capabilities. For all other transceiver functionality |
| 91 | UTMI PHY is embedded in OMAP4430. The internal PHY configurations APIs |
| 92 | are hooked to this driver through platform_data structure. |
| 93 | The definition of internal PHY APIs are in the mach-omap2 layer. |
| 94 | |
| 95 | config USB_GPIO_VBUS |
| 96 | tristate "GPIO based peripheral-only VBUS sensing 'transceiver'" |
Geert Uytterhoeven | db978e2 | 2015-05-05 18:32:38 +0200 | [diff] [blame] | 97 | depends on GPIOLIB || COMPILE_TEST |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 98 | depends on USB_GADGET || !USB_GADGET # if USB_GADGET=m, this can't be 'y' |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 99 | select USB_PHY |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 100 | help |
| 101 | Provides simple GPIO VBUS sensing for controllers with an |
| 102 | internal transceiver via the usb_phy interface, and |
| 103 | optionally control of a D+ pullup GPIO as well as a VBUS |
| 104 | current limit regulator. |
Kishon Vijay Abraham I | 01658f0 | 2013-01-25 15:53:57 +0530 | [diff] [blame] | 105 | |
Aaro Koskinen | 449d2ba | 2013-12-06 16:13:06 +0200 | [diff] [blame] | 106 | config OMAP_OTG |
| 107 | tristate "OMAP USB OTG controller driver" |
| 108 | depends on ARCH_OMAP_OTG && EXTCON |
| 109 | help |
| 110 | Enable this to support some transceivers on OMAP1 platforms. OTG |
| 111 | controller is needed to switch between host and peripheral modes. |
| 112 | |
| 113 | This driver can also be built as a module. If so, the module |
Aaro Koskinen | 12c8d64 | 2013-12-21 20:37:38 +0200 | [diff] [blame] | 114 | will be called phy-omap-otg. |
Aaro Koskinen | 449d2ba | 2013-12-06 16:13:06 +0200 | [diff] [blame] | 115 | |
Aaro Koskinen | 9ba96ae | 2013-12-06 16:13:07 +0200 | [diff] [blame] | 116 | config TAHVO_USB |
| 117 | tristate "Tahvo USB transceiver driver" |
| 118 | depends on MFD_RETU && EXTCON |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 119 | depends on USB_GADGET || !USB_GADGET # if USB_GADGET=m, this can't be 'y' |
Aaro Koskinen | 9ba96ae | 2013-12-06 16:13:07 +0200 | [diff] [blame] | 120 | select USB_PHY |
| 121 | help |
| 122 | Enable this to support USB transceiver on Tahvo. This is used |
| 123 | at least on Nokia 770. |
| 124 | |
| 125 | config TAHVO_USB_HOST_BY_DEFAULT |
| 126 | depends on TAHVO_USB |
Christoph Jaeger | 6341e62 | 2014-12-20 15:41:11 -0500 | [diff] [blame] | 127 | bool "Device in USB host mode by default" |
Aaro Koskinen | 9ba96ae | 2013-12-06 16:13:07 +0200 | [diff] [blame] | 128 | help |
| 129 | Say Y here, if you want the device to enter USB host mode |
| 130 | by default on bootup. |
| 131 | |
Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 132 | config USB_ISP1301 |
| 133 | tristate "NXP ISP1301 USB transceiver support" |
Alexandre Pereira da Silva | c615632 | 2012-06-26 11:56:48 -0300 | [diff] [blame] | 134 | depends on USB || USB_GADGET |
Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 135 | depends on I2C |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 136 | select USB_PHY |
Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 137 | help |
| 138 | Say Y here to add support for the NXP ISP1301 USB transceiver driver. |
| 139 | This chip is typically used as USB transceiver for USB host, gadget |
| 140 | and OTG drivers (to be selected separately). |
| 141 | |
| 142 | To compile this driver as a module, choose M here: the |
Aaro Koskinen | 12c8d64 | 2013-12-21 20:37:38 +0200 | [diff] [blame] | 143 | module will be called phy-isp1301. |
Yu Xu | a67e76a | 2012-08-09 22:29:31 +0800 | [diff] [blame] | 144 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 145 | config USB_MSM_OTG |
Ivan T. Ivanov | 0d092fd | 2014-04-28 16:34:04 +0300 | [diff] [blame] | 146 | tristate "Qualcomm on-chip USB OTG controller support" |
Stephen Boyd | 46f5cac | 2015-03-13 11:09:42 -0700 | [diff] [blame] | 147 | depends on (USB || USB_GADGET) && (ARCH_QCOM || COMPILE_TEST) |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 148 | depends on USB_GADGET || !USB_GADGET # if USB_GADGET=m, this can't be 'y' |
Arnd Bergmann | c5ab571 | 2014-05-13 21:46:52 +0200 | [diff] [blame] | 149 | depends on RESET_CONTROLLER |
Ivan T. Ivanov | 591fc11 | 2015-04-09 11:34:22 +0300 | [diff] [blame] | 150 | depends on EXTCON |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 151 | select USB_PHY |
Yu Xu | a67e76a | 2012-08-09 22:29:31 +0800 | [diff] [blame] | 152 | help |
Ivan T. Ivanov | 0d092fd | 2014-04-28 16:34:04 +0300 | [diff] [blame] | 153 | Enable this to support the USB OTG transceiver on Qualcomm chips. It |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 154 | handles PHY initialization, clock management, and workarounds |
| 155 | required after resetting the hardware and power management. |
| 156 | This driver is required even for peripheral only or host only |
| 157 | mode configurations. |
| 158 | This driver is not supported on boards like trout which |
| 159 | has an external PHY. |
| 160 | |
Ivan T. Ivanov | 3511699 | 2015-07-08 17:57:40 +0300 | [diff] [blame] | 161 | config USB_QCOM_8X16_PHY |
| 162 | tristate "Qualcomm APQ8016/MSM8916 on-chip USB PHY controller support" |
| 163 | depends on ARCH_QCOM || COMPILE_TEST |
Randy Dunlap | 88ccdbd | 2015-09-10 10:37:39 -0700 | [diff] [blame] | 164 | depends on RESET_CONTROLLER && EXTCON |
Ivan T. Ivanov | 3511699 | 2015-07-08 17:57:40 +0300 | [diff] [blame] | 165 | select USB_PHY |
| 166 | select USB_ULPI_VIEWPORT |
| 167 | help |
| 168 | Enable this to support the USB transceiver on Qualcomm 8x16 chipsets. |
| 169 | It handles PHY initialization, clock management, power management, |
| 170 | and workarounds required after resetting the hardware. |
| 171 | |
| 172 | To compile this driver as a module, choose M here: the |
| 173 | module will be called phy-qcom-8x16-usb. |
| 174 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 175 | config USB_MV_OTG |
| 176 | tristate "Marvell USB OTG support" |
Peter Chen | c4f1613 | 2015-11-19 11:47:47 +0800 | [diff] [blame] | 177 | depends on USB_EHCI_MV && USB_MV_UDC && PM && USB_OTG |
Felipe Balbi | 5a8d651 | 2016-05-31 13:07:47 +0300 | [diff] [blame] | 178 | depends on USB_GADGET || !USB_GADGET # if USB_GADGET=m, this can't be 'y' |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 179 | select USB_PHY |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 180 | help |
| 181 | Say Y here if you want to build Marvell USB OTG transciever |
| 182 | driver in kernel (including PXA and MMP series). This driver |
| 183 | implements role switch between EHCI host driver and gadget driver. |
| 184 | |
| 185 | To compile this driver as a module, choose M here. |
| 186 | |
| 187 | config USB_MXS_PHY |
| 188 | tristate "Freescale MXS USB PHY support" |
| 189 | depends on ARCH_MXC || ARCH_MXS |
| 190 | select STMP_DEVICE |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 191 | select USB_PHY |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 192 | help |
| 193 | Enable this to support the Freescale MXS USB PHY. |
| 194 | |
| 195 | MXS Phy is used by some of the i.MX SoCs, for example imx23/28/6x. |
Kuninori Morimoto | 1789e52 | 2012-10-31 19:03:11 -0700 | [diff] [blame] | 196 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 197 | config USB_ULPI |
| 198 | bool "Generic ULPI Transceiver Driver" |
Liviu Dudau | 113229b | 2014-05-14 20:17:30 +0100 | [diff] [blame] | 199 | depends on ARM || ARM64 |
Ivan T. Ivanov | 1ea276c | 2015-03-21 15:25:52 +0200 | [diff] [blame] | 200 | select USB_ULPI_VIEWPORT |
Praveen Paneri | 337dc3a | 2012-11-23 16:03:06 +0530 | [diff] [blame] | 201 | help |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 202 | Enable this to support ULPI connected USB OTG transceivers which |
| 203 | are likely found on embedded boards. |
| 204 | |
| 205 | config USB_ULPI_VIEWPORT |
| 206 | bool |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 207 | help |
| 208 | Provides read/write operations to the ULPI phy register set for |
| 209 | controllers with a viewport register (e.g. Chipidea/ARC controllers). |
| 210 | |
Roger Quadros | 052a11d | 2013-06-14 12:51:41 +0300 | [diff] [blame] | 211 | endmenu |