Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 1 | # |
| 2 | # Physical Layer USB driver configuration |
| 3 | # |
Felipe Balbi | edc7cb2 | 2013-03-07 11:13:43 +0200 | [diff] [blame] | 4 | menuconfig USB_PHY |
| 5 | tristate "USB Physical Layer drivers" |
Felipe Balbi | edc7cb2 | 2013-03-07 11:13:43 +0200 | [diff] [blame] | 6 | help |
| 7 | USB controllers (those which are host, device or DRD) need a |
| 8 | device to handle the physical layer signalling, commonly called |
| 9 | a PHY. |
| 10 | |
| 11 | The following drivers add support for such PHY devices. |
| 12 | |
| 13 | if USB_PHY |
Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 14 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 15 | # |
| 16 | # USB Transceiver Drivers |
| 17 | # |
| 18 | config AB8500_USB |
| 19 | tristate "AB8500 USB Transceiver Driver" |
| 20 | depends on AB8500_CORE |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 21 | help |
| 22 | Enable this to support the USB OTG transceiver in AB8500 chip. |
| 23 | This transceiver supports high and full speed devices plus, |
| 24 | in host mode, low speed. |
| 25 | |
| 26 | config FSL_USB2_OTG |
| 27 | bool "Freescale USB OTG Transceiver Driver" |
| 28 | depends on USB_EHCI_FSL && USB_FSL_USB2 && USB_SUSPEND |
| 29 | select USB_OTG |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 30 | help |
| 31 | Enable this to support Freescale USB OTG transceiver. |
| 32 | |
| 33 | config ISP1301_OMAP |
| 34 | tristate "Philips ISP1301 with OMAP OTG" |
| 35 | depends on I2C && ARCH_OMAP_OTG |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 36 | help |
| 37 | If you say yes here you get support for the Philips ISP1301 |
| 38 | USB-On-The-Go transceiver working with the OMAP OTG controller. |
| 39 | The ISP1301 is a full speed USB transceiver which is used in |
| 40 | products including H2, H3, and H4 development boards for Texas |
| 41 | Instruments OMAP processors. |
| 42 | |
| 43 | This driver can also be built as a module. If so, the module |
| 44 | will be called isp1301_omap. |
| 45 | |
| 46 | config MV_U3D_PHY |
| 47 | bool "Marvell USB 3.0 PHY controller Driver" |
| 48 | depends on USB_MV_U3D |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 49 | help |
| 50 | Enable this to support Marvell USB 3.0 phy controller for Marvell |
| 51 | SoC. |
| 52 | |
| 53 | config NOP_USB_XCEIV |
| 54 | tristate "NOP USB Transceiver Driver" |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 55 | help |
| 56 | This driver is to be used by all the usb transceiver which are either |
| 57 | built-in with usb ip or which are autonomous and doesn't require any |
| 58 | phy programming such as ISP1x04 etc. |
| 59 | |
| 60 | config OMAP_CONTROL_USB |
| 61 | tristate "OMAP CONTROL USB Driver" |
| 62 | help |
| 63 | Enable this to add support for the USB part present in the control |
| 64 | module. This driver has API to power on the USB2 PHY and to write to |
| 65 | the mailbox. The mailbox is present only in omap4 and the register to |
| 66 | power on the USB2 PHY is present in OMAP4 and OMAP5. OMAP5 has an |
| 67 | additional register to power on USB3 PHY. |
| 68 | |
Kishon Vijay Abraham I | 657b306 | 2012-09-06 20:27:06 +0530 | [diff] [blame] | 69 | config OMAP_USB2 |
| 70 | tristate "OMAP USB2 PHY Driver" |
Tony Lindgren | 770b6cb | 2012-12-16 12:28:46 -0800 | [diff] [blame] | 71 | depends on ARCH_OMAP2PLUS |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 72 | select OMAP_CONTROL_USB |
Kishon Vijay Abraham I | 657b306 | 2012-09-06 20:27:06 +0530 | [diff] [blame] | 73 | help |
| 74 | Enable this to support the transceiver that is part of SOC. This |
| 75 | driver takes care of all the PHY functionality apart from comparator. |
| 76 | The USB OTG controller communicates with the comparator using this |
| 77 | driver. |
| 78 | |
Kishon Vijay Abraham I | 57f6ce0 | 2013-01-25 08:21:48 +0530 | [diff] [blame] | 79 | config OMAP_USB3 |
| 80 | tristate "OMAP USB3 PHY Driver" |
Kishon Vijay Abraham I | 57f6ce0 | 2013-01-25 08:21:48 +0530 | [diff] [blame] | 81 | select OMAP_CONTROL_USB |
| 82 | help |
| 83 | Enable this to support the USB3 PHY that is part of SOC. This |
| 84 | driver takes care of all the PHY functionality apart from comparator. |
| 85 | This driver interacts with the "OMAP Control USB Driver" to power |
| 86 | on/off the PHY. |
| 87 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 88 | config SAMSUNG_USBPHY |
| 89 | bool "Samsung USB PHY controller Driver" |
| 90 | depends on USB_S3C_HSOTG || USB_EHCI_S5P || USB_OHCI_EXYNOS |
Kishon Vijay Abraham I | 01658f0 | 2013-01-25 15:53:57 +0530 | [diff] [blame] | 91 | help |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 92 | Enable this to support Samsung USB phy controller for samsung |
| 93 | SoCs. |
| 94 | |
| 95 | config TWL4030_USB |
| 96 | tristate "TWL4030 USB Transceiver Driver" |
| 97 | depends on TWL4030_CORE && REGULATOR_TWL4030 && USB_MUSB_OMAP2PLUS |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 98 | help |
| 99 | Enable this to support the USB OTG transceiver on TWL4030 |
| 100 | family chips (including the TWL5030 and TPS659x0 devices). |
| 101 | This transceiver supports high and full speed devices plus, |
| 102 | in host mode, low speed. |
| 103 | |
| 104 | config TWL6030_USB |
| 105 | tristate "TWL6030 USB Transceiver Driver" |
| 106 | depends on TWL4030_CORE && OMAP_USB2 && USB_MUSB_OMAP2PLUS |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 107 | help |
| 108 | Enable this to support the USB OTG transceiver on TWL6030 |
| 109 | family chips. This TWL6030 transceiver has the VBUS and ID GND |
| 110 | and OTG SRP events capabilities. For all other transceiver functionality |
| 111 | UTMI PHY is embedded in OMAP4430. The internal PHY configurations APIs |
| 112 | are hooked to this driver through platform_data structure. |
| 113 | The definition of internal PHY APIs are in the mach-omap2 layer. |
| 114 | |
| 115 | config USB_GPIO_VBUS |
| 116 | tristate "GPIO based peripheral-only VBUS sensing 'transceiver'" |
| 117 | depends on GENERIC_GPIO |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 118 | help |
| 119 | Provides simple GPIO VBUS sensing for controllers with an |
| 120 | internal transceiver via the usb_phy interface, and |
| 121 | optionally control of a D+ pullup GPIO as well as a VBUS |
| 122 | current limit regulator. |
Kishon Vijay Abraham I | 01658f0 | 2013-01-25 15:53:57 +0530 | [diff] [blame] | 123 | |
Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 124 | config USB_ISP1301 |
| 125 | tristate "NXP ISP1301 USB transceiver support" |
Alexandre Pereira da Silva | c615632 | 2012-06-26 11:56:48 -0300 | [diff] [blame] | 126 | depends on USB || USB_GADGET |
Roland Stigge | 8b7c3b6 | 2012-04-29 16:47:04 +0200 | [diff] [blame] | 127 | depends on I2C |
| 128 | help |
| 129 | Say Y here to add support for the NXP ISP1301 USB transceiver driver. |
| 130 | This chip is typically used as USB transceiver for USB host, gadget |
| 131 | and OTG drivers (to be selected separately). |
| 132 | |
| 133 | To compile this driver as a module, choose M here: the |
| 134 | module will be called isp1301. |
Yu Xu | a67e76a | 2012-08-09 22:29:31 +0800 | [diff] [blame] | 135 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 136 | config USB_MSM_OTG |
| 137 | tristate "OTG support for Qualcomm on-chip USB controller" |
| 138 | depends on (USB || USB_GADGET) && ARCH_MSM |
Yu Xu | a67e76a | 2012-08-09 22:29:31 +0800 | [diff] [blame] | 139 | help |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 140 | Enable this to support the USB OTG transceiver on MSM chips. It |
| 141 | handles PHY initialization, clock management, and workarounds |
| 142 | required after resetting the hardware and power management. |
| 143 | This driver is required even for peripheral only or host only |
| 144 | mode configurations. |
| 145 | This driver is not supported on boards like trout which |
| 146 | has an external PHY. |
| 147 | |
| 148 | config USB_MV_OTG |
| 149 | tristate "Marvell USB OTG support" |
| 150 | depends on USB_EHCI_MV && USB_MV_UDC && USB_SUSPEND |
| 151 | select USB_OTG |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 152 | help |
| 153 | Say Y here if you want to build Marvell USB OTG transciever |
| 154 | driver in kernel (including PXA and MMP series). This driver |
| 155 | implements role switch between EHCI host driver and gadget driver. |
| 156 | |
| 157 | To compile this driver as a module, choose M here. |
| 158 | |
| 159 | config USB_MXS_PHY |
| 160 | tristate "Freescale MXS USB PHY support" |
| 161 | depends on ARCH_MXC || ARCH_MXS |
| 162 | select STMP_DEVICE |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 163 | help |
| 164 | Enable this to support the Freescale MXS USB PHY. |
| 165 | |
| 166 | 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] | 167 | |
| 168 | config USB_RCAR_PHY |
| 169 | tristate "Renesas R-Car USB phy support" |
| 170 | depends on USB || USB_GADGET |
Kuninori Morimoto | 1789e52 | 2012-10-31 19:03:11 -0700 | [diff] [blame] | 171 | help |
| 172 | Say Y here to add support for the Renesas R-Car USB phy driver. |
| 173 | This chip is typically used as USB phy for USB host, gadget. |
| 174 | This driver supports: R8A7779 |
| 175 | |
| 176 | To compile this driver as a module, choose M here: the |
| 177 | module will be called rcar-phy. |
Praveen Paneri | 337dc3a | 2012-11-23 16:03:06 +0530 | [diff] [blame] | 178 | |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 179 | config USB_ULPI |
| 180 | bool "Generic ULPI Transceiver Driver" |
| 181 | depends on ARM |
Praveen Paneri | 337dc3a | 2012-11-23 16:03:06 +0530 | [diff] [blame] | 182 | help |
Felipe Balbi | a0e6312 | 2013-03-07 11:01:15 +0200 | [diff] [blame] | 183 | Enable this to support ULPI connected USB OTG transceivers which |
| 184 | are likely found on embedded boards. |
| 185 | |
| 186 | config USB_ULPI_VIEWPORT |
| 187 | bool |
| 188 | depends on USB_ULPI |
| 189 | help |
| 190 | Provides read/write operations to the ULPI phy register set for |
| 191 | controllers with a viewport register (e.g. Chipidea/ARC controllers). |
| 192 | |
Felipe Balbi | edc7cb2 | 2013-03-07 11:13:43 +0200 | [diff] [blame] | 193 | endif # USB_PHY |