blob: e3785e1ac91ec64bc5c1021d255deece5be14e38 [file] [log] [blame]
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05301#
2# PHY
3#
4
5menu "PHY Subsystem"
6
7config GENERIC_PHY
Hans de Goedeb51fbf92014-02-17 14:29:24 +05308 bool "PHY Core"
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +05309 help
10 Generic PHY support.
11
12 This framework is designed to provide a generic interface for PHY
13 devices present in the kernel. This layer will have the generic
14 API by which phy drivers can create PHY using the phy framework and
15 phy users can obtain reference to the PHY. All the users of this
16 framework should select this config.
17
Antoine Tenart13ebb682014-11-20 22:53:25 +010018config PHY_BERLIN_USB
19 tristate "Marvell Berlin USB PHY Driver"
20 depends on ARCH_BERLIN && RESET_CONTROLLER && HAS_IOMEM && OF
21 select GENERIC_PHY
22 help
23 Enable this to support the USB PHY on Marvell Berlin SoCs.
24
Antoine Ténart942a31b2014-07-07 12:16:07 +020025config PHY_BERLIN_SATA
26 tristate "Marvell Berlin SATA PHY driver"
27 depends on ARCH_BERLIN && HAS_IOMEM && OF
28 select GENERIC_PHY
29 help
30 Enable this to support the SATA PHY on Marvell Berlin SoCs.
31
Gregory CLEMENTeee47532014-11-13 12:47:46 +010032config ARMADA375_USBCLUSTER_PHY
33 def_bool y
34 depends on MACH_ARMADA_375 || COMPILE_TEST
35 depends on OF
36 select GENERIC_PHY
37
Tony Lindgren609adde2015-03-19 17:08:07 -070038config PHY_DM816X_USB
39 tristate "TI dm816x USB PHY driver"
40 depends on ARCH_OMAP2PLUS
Felipe Balbi7f7a4d32015-04-28 11:13:15 -050041 depends on USB_SUPPORT
Tony Lindgren609adde2015-03-19 17:08:07 -070042 select GENERIC_PHY
Felipe Balbi7f7a4d32015-04-28 11:13:15 -050043 select USB_PHY
Tony Lindgren609adde2015-03-19 17:08:07 -070044 help
45 Enable this for dm816x USB to work.
46
Sylwester Nawrocki069d2e22013-10-16 21:58:10 +053047config PHY_EXYNOS_MIPI_VIDEO
48 tristate "S5P/EXYNOS SoC series MIPI CSI-2/DSI PHY driver"
Sylwester Nawrocki13454e52014-02-21 17:44:01 +010049 depends on HAS_IOMEM
50 depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
51 select GENERIC_PHY
52 default y if ARCH_S5PV210 || ARCH_EXYNOS
Sylwester Nawrocki069d2e22013-10-16 21:58:10 +053053 help
54 Support for MIPI CSI-2 and MIPI DSI DPHY found on Samsung S5P
55 and EXYNOS SoCs.
56
Rob Herring603c5f92015-05-29 11:38:42 -050057config PHY_PXA_28NM_USB2
58 tristate "Marvell USB 2.0 28nm PHY Driver"
59 select GENERIC_PHY
60 help
61 Enable this to support Marvell USB 2.0 PHY driver for Marvell
62 SoC. This driver will do the PHY initialization and shutdown.
63 The PHY driver will be used by Marvell udc/ehci/otg driver.
64
65 To compile this driver as a module, choose M here.
66
Andrew Lunne3eae852013-12-17 21:21:50 +010067config PHY_MVEBU_SATA
68 def_bool y
Andrew Lunn74d64b52014-07-10 23:36:30 +020069 depends on ARCH_DOVE || MACH_DOVE || MACH_KIRKWOOD
Andrew Lunne3eae852013-12-17 21:21:50 +010070 depends on OF
71 select GENERIC_PHY
72
Gabriel FERNANDEZ2c14e9b2014-11-04 11:51:19 +010073config PHY_MIPHY28LP
74 tristate "STMicroelectronics MIPHY28LP PHY driver for STiH407"
75 depends on ARCH_STI
76 select GENERIC_PHY
77 help
78 Enable this to support the miphy transceiver (for SATA/PCIE/USB3)
79 that is part of STMicroelectronics STiH407 SoC.
80
Lee Jones6e877fe2014-07-09 12:41:12 +010081config PHY_MIPHY365X
82 tristate "STMicroelectronics MIPHY365X PHY driver for STiH41x series"
83 depends on ARCH_STI
Lee Jones6e877fe2014-07-09 12:41:12 +010084 depends on HAS_IOMEM
85 depends on OF
Lee Jonesfbb1a772014-07-22 10:47:37 +010086 select GENERIC_PHY
Lee Jones6e877fe2014-07-09 12:41:12 +010087 help
88 Enable this to support the miphy transceiver (for SATA/PCIE)
89 that is part of STMicroelectronics STiH41x SoC series.
90
Sergei Shtylyov1233f592014-07-22 23:27:14 +040091config PHY_RCAR_GEN2
92 tristate "Renesas R-Car generation 2 USB PHY driver"
93 depends on ARCH_SHMOBILE
94 depends on GENERIC_PHY
95 help
96 Support for USB PHY found on Renesas R-Car generation 2 SoCs.
97
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +020098config OMAP_CONTROL_PHY
99 tristate "OMAP CONTROL PHY Driver"
Jean Delvare907aa3a2014-04-19 08:51:42 +0530100 depends on ARCH_OMAP2PLUS || COMPILE_TEST
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200101 help
102 Enable this to add support for the PHY part present in the control
103 module. This driver has API to power on the USB2 PHY and to write to
104 the mailbox. The mailbox is present only in omap4 and the register to
105 power on the USB2 PHY is present in OMAP4 and OMAP5. OMAP5 has an
106 additional register to power on USB3 PHY/SATA PHY/PCIE PHY
107 (PIPE3 PHY).
108
Kishon Vijay Abraham I5d93d1e2013-09-27 11:53:26 +0530109config OMAP_USB2
110 tristate "OMAP USB2 PHY Driver"
111 depends on ARCH_OMAP2PLUS
Felipe Balbi7f7a4d32015-04-28 11:13:15 -0500112 depends on USB_SUPPORT
Kishon Vijay Abraham I5d93d1e2013-09-27 11:53:26 +0530113 select GENERIC_PHY
Felipe Balbi7f7a4d32015-04-28 11:13:15 -0500114 select USB_PHY
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200115 select OMAP_CONTROL_PHY
Roger Quadros02133b92014-03-06 16:38:45 +0200116 depends on OMAP_OCP2SCP
Kishon Vijay Abraham I5d93d1e2013-09-27 11:53:26 +0530117 help
118 Enable this to support the transceiver that is part of SOC. This
119 driver takes care of all the PHY functionality apart from comparator.
120 The USB OTG controller communicates with the comparator using this
121 driver.
122
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530123config TI_PIPE3
124 tristate "TI PIPE3 PHY Driver"
125 depends on ARCH_OMAP2PLUS || COMPILE_TEST
126 select GENERIC_PHY
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200127 select OMAP_CONTROL_PHY
Roger Quadros02133b92014-03-06 16:38:45 +0200128 depends on OMAP_OCP2SCP
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530129 help
130 Enable this to support the PIPE3 PHY that is part of TI SOCs. This
131 driver takes care of all the PHY functionality apart from comparator.
132 This driver interacts with the "OMAP Control PHY Driver" to power
133 on/off the PHY.
134
Kishon Vijay Abraham I6747caa2013-09-27 11:53:27 +0530135config TWL4030_USB
136 tristate "TWL4030 USB Transceiver Driver"
137 depends on TWL4030_CORE && REGULATOR_TWL4030 && USB_MUSB_OMAP2PLUS
Felipe Balbi7f7a4d32015-04-28 11:13:15 -0500138 depends on USB_SUPPORT
Kishon Vijay Abraham I6747caa2013-09-27 11:53:27 +0530139 select GENERIC_PHY
Felipe Balbi7f7a4d32015-04-28 11:13:15 -0500140 select USB_PHY
Kishon Vijay Abraham I6747caa2013-09-27 11:53:27 +0530141 help
142 Enable this to support the USB OTG transceiver on TWL4030
143 family chips (including the TWL5030 and TPS659x0 devices).
144 This transceiver supports high and full speed devices plus,
145 in host mode, low speed.
146
Jingoo Han74988e82013-10-16 21:58:14 +0530147config PHY_EXYNOS_DP_VIDEO
148 tristate "EXYNOS SoC series Display Port PHY driver"
149 depends on OF
Sylwester Nawrockia50ce202014-02-21 17:44:02 +0100150 depends on ARCH_EXYNOS || COMPILE_TEST
151 default ARCH_EXYNOS
Jingoo Han74988e82013-10-16 21:58:14 +0530152 select GENERIC_PHY
153 help
154 Support for Display Port PHY found on Samsung EXYNOS SoCs.
155
Matt Porter7597fdf2013-12-19 09:23:09 -0500156config BCM_KONA_USB2_PHY
157 tristate "Broadcom Kona USB2 PHY Driver"
Richard Weinberger06c304e2014-02-17 14:29:21 +0530158 depends on HAS_IOMEM
Arnd Bergmann3fc03f32014-05-08 16:46:53 +0200159 select GENERIC_PHY
Matt Porter7597fdf2013-12-19 09:23:09 -0500160 help
161 Enable this to support the Broadcom Kona USB 2.0 PHY.
162
Yuvaraj Kumar C Dbcff4cb2014-03-03 10:52:39 +0530163config PHY_EXYNOS5250_SATA
164 tristate "Exynos5250 Sata SerDes/PHY driver"
165 depends on SOC_EXYNOS5250
166 depends on HAS_IOMEM
167 depends on OF
168 select GENERIC_PHY
169 select I2C
170 select I2C_S3C2410
171 select MFD_SYSCON
172 help
173 Enable this to support SATA SerDes/Phy found on Samsung's
174 Exynos5250 based SoCs.This SerDes/Phy supports SATA 1.5 Gb/s,
175 SATA 3.0 Gb/s, SATA 6.0 Gb/s speeds. It supports one SATA host
176 port to accept one SATA device.
177
Jiancheng Xuee3794132014-07-03 22:28:38 +0800178config PHY_HIX5HD2_SATA
179 tristate "HIX5HD2 SATA PHY Driver"
180 depends on ARCH_HIX5HD2 && OF && HAS_IOMEM
181 select GENERIC_PHY
182 select MFD_SYSCON
183 help
184 Support for SATA PHY on Hisilicon hix5hd2 Soc.
185
Hans de Goedeba4bdc92014-03-01 18:09:26 +0100186config PHY_SUN4I_USB
187 tristate "Allwinner sunxi SoC USB PHY driver"
188 depends on ARCH_SUNXI && HAS_IOMEM && OF
Maxime Ripard9820ccb2014-07-10 11:54:59 +0530189 depends on RESET_CONTROLLER
Hans de Goedeba4bdc92014-03-01 18:09:26 +0100190 select GENERIC_PHY
191 help
192 Enable this to support the transceiver that is part of Allwinner
193 sunxi SoCs.
194
195 This driver controls the entire USB PHY block, both the USB OTG
196 parts, as well as the 2 regular USB 2 host PHYs.
197
Chen-Yu Tsai9c3b4432015-03-14 11:57:16 +0800198config PHY_SUN9I_USB
199 tristate "Allwinner sun9i SoC USB PHY driver"
200 depends on ARCH_SUNXI && HAS_IOMEM && OF
201 depends on RESET_CONTROLLER
202 select GENERIC_PHY
203 help
204 Enable this to support the transceiver that is part of Allwinner
205 sun9i SoCs.
206
207 This driver controls each individual USB 2 host PHY.
208
Kamil Debski06fb0132014-03-06 12:16:48 +0100209config PHY_SAMSUNG_USB2
210 tristate "Samsung USB 2.0 PHY driver"
Chen Gang4732aee2014-06-10 20:04:58 +0800211 depends on HAS_IOMEM
Sachin Kamatd6125af2014-07-14 15:38:41 +0530212 depends on USB_EHCI_EXYNOS || USB_OHCI_EXYNOS || USB_DWC2
Kamil Debski06fb0132014-03-06 12:16:48 +0100213 select GENERIC_PHY
214 select MFD_SYSCON
Sachin Kamatd6125af2014-07-14 15:38:41 +0530215 default ARCH_EXYNOS
Kamil Debski06fb0132014-03-06 12:16:48 +0100216 help
217 Enable this to support the Samsung USB 2.0 PHY driver for Samsung
Sachin Kamatd6125af2014-07-14 15:38:41 +0530218 SoCs. This driver provides the interface for USB 2.0 PHY. Support
219 for particular PHYs will be enabled based on the SoC type in addition
220 to this driver.
Kamil Debski06fb0132014-03-06 12:16:48 +0100221
Mateusz Krawczuk949ccc32013-12-20 14:24:12 +0100222config PHY_S5PV210_USB2
223 bool "Support for S5PV210"
224 depends on PHY_SAMSUNG_USB2
225 depends on ARCH_S5PV210
226 help
227 Enable USB PHY support for S5PV210. This option requires that Samsung
228 USB 2.0 PHY driver is enabled and means that support for this
229 particular SoC is compiled in the driver. In case of S5PV210 two phys
230 are available - device and host.
231
Kamil Debski06fb0132014-03-06 12:16:48 +0100232config PHY_EXYNOS4210_USB2
Sachin Kamatd6125af2014-07-14 15:38:41 +0530233 bool
Kamil Debski06fb0132014-03-06 12:16:48 +0100234 depends on PHY_SAMSUNG_USB2
Sachin Kamatd6125af2014-07-14 15:38:41 +0530235 default CPU_EXYNOS4210
Kamil Debski06fb0132014-03-06 12:16:48 +0100236
237config PHY_EXYNOS4X12_USB2
Sachin Kamatd6125af2014-07-14 15:38:41 +0530238 bool
Kamil Debski06fb0132014-03-06 12:16:48 +0100239 depends on PHY_SAMSUNG_USB2
Sachin Kamatd6125af2014-07-14 15:38:41 +0530240 default SOC_EXYNOS3250 || SOC_EXYNOS4212 || SOC_EXYNOS4412
Kamil Debski64bf2b22014-03-06 12:16:49 +0100241
242config PHY_EXYNOS5250_USB2
Sachin Kamatd6125af2014-07-14 15:38:41 +0530243 bool
Kamil Debski64bf2b22014-03-06 12:16:49 +0100244 depends on PHY_SAMSUNG_USB2
Sachin Kamatd6125af2014-07-14 15:38:41 +0530245 default SOC_EXYNOS5250 || SOC_EXYNOS5420
Kamil Debski64bf2b22014-03-06 12:16:49 +0100246
Vivek Gautam59025882014-05-13 15:30:16 +0530247config PHY_EXYNOS5_USBDRD
248 tristate "Exynos5 SoC series USB DRD PHY driver"
Vivek Gautam556186a2014-11-21 19:05:50 +0530249 depends on ARCH_EXYNOS && OF
Vivek Gautam59025882014-05-13 15:30:16 +0530250 depends on HAS_IOMEM
Sachin Kamatc233f522014-07-14 15:38:42 +0530251 depends on USB_DWC3_EXYNOS
Vivek Gautam59025882014-05-13 15:30:16 +0530252 select GENERIC_PHY
253 select MFD_SYSCON
Sachin Kamatc233f522014-07-14 15:38:42 +0530254 default y
Vivek Gautam59025882014-05-13 15:30:16 +0530255 help
256 Enable USB DRD PHY support for Exynos 5 SoC series.
257 This driver provides PHY interface for USB 3.0 DRD controller
258 present on Exynos5 SoC series.
259
Srinivas Kandagatla1de990d2014-07-14 12:17:59 +0100260config PHY_QCOM_APQ8064_SATA
261 tristate "Qualcomm APQ8064 SATA SerDes/PHY driver"
262 depends on ARCH_QCOM
263 depends on HAS_IOMEM
264 depends on OF
265 select GENERIC_PHY
266
Kumar Gala4f6160d2014-07-16 11:10:08 -0500267config PHY_QCOM_IPQ806X_SATA
268 tristate "Qualcomm IPQ806x SATA SerDes/PHY driver"
269 depends on ARCH_QCOM
270 depends on HAS_IOMEM
271 depends on OF
272 select GENERIC_PHY
273
Yunzhi Li64d11402014-12-12 23:07:46 +0800274config PHY_ROCKCHIP_USB
275 tristate "Rockchip USB2 PHY Driver"
276 depends on ARCH_ROCKCHIP && OF
277 select GENERIC_PHY
278 help
279 Enable this to support the Rockchip USB 2.0 PHY.
280
Pratyush Anand64562e92014-04-14 15:27:36 +0530281config PHY_ST_SPEAR1310_MIPHY
282 tristate "ST SPEAR1310-MIPHY driver"
283 select GENERIC_PHY
Bartlomiej Zolnierkiewicz6100a7c2014-09-01 17:03:17 +0200284 depends on MACH_SPEAR1310 || COMPILE_TEST
Pratyush Anand64562e92014-04-14 15:27:36 +0530285 help
286 Support for ST SPEAr1310 MIPHY which can be used for PCIe and SATA.
287
288config PHY_ST_SPEAR1340_MIPHY
289 tristate "ST SPEAR1340-MIPHY driver"
290 select GENERIC_PHY
Bartlomiej Zolnierkiewicz7652d352014-09-01 17:04:15 +0200291 depends on MACH_SPEAR1340 || COMPILE_TEST
Pratyush Anand64562e92014-04-14 15:27:36 +0530292 help
293 Support for ST SPEAr1340 MIPHY which can be used for PCIe and SATA.
294
Linus Torvalds10c8e052014-08-08 11:34:32 -0700295config PHY_XGENE
296 tristate "APM X-Gene 15Gbps PHY support"
297 depends on HAS_IOMEM && OF && (ARM64 || COMPILE_TEST)
298 select GENERIC_PHY
299 help
300 This option enables support for APM X-Gene SoC multi-purpose PHY.
301
Peter Griffin89ae1f52014-09-11 18:02:44 +0100302config PHY_STIH407_USB
303 tristate "STMicroelectronics USB2 picoPHY driver for STiH407 family"
304 depends on RESET_CONTROLLER
305 depends on ARCH_STI || COMPILE_TEST
306 select GENERIC_PHY
307 help
308 Enable this support to enable the picoPHY device used by USB2
309 and USB3 controllers on STMicroelectronics STiH407 SoC families.
310
Peter Griffin3f8da2e2014-09-08 11:33:00 +0100311config PHY_STIH41X_USB
312 tristate "STMicroelectronics USB2 PHY driver for STiH41x series"
313 depends on ARCH_STI
314 select GENERIC_PHY
315 help
316 Enable this to support the USB transceiver that is part of
317 STMicroelectronics STiH41x SoC series.
318
Yaniv Gardiadaafaa2015-01-15 16:32:35 +0200319config PHY_QCOM_UFS
320 tristate "Qualcomm UFS PHY driver"
Stephen Boyd4d051f72015-04-10 16:11:04 -0700321 depends on OF && ARCH_QCOM
Yaniv Gardiadaafaa2015-01-15 16:32:35 +0200322 select GENERIC_PHY
323 help
324 Support for UFS PHY on QCOM chipsets.
325
Heikki Krogerus1c149052015-05-13 15:26:53 +0300326config PHY_TUSB1210
327 tristate "TI TUSB1210 ULPI PHY module"
328 depends on USB_ULPI_BUS
329 select GENERIC_PHY
330 help
331 Support for TI TUSB1210 USB ULPI PHY.
332
Brian Norris0d486802015-05-20 17:18:40 -0700333config PHY_BRCMSTB_SATA
334 tristate "Broadcom STB SATA PHY driver"
335 depends on ARCH_BRCMSTB
336 depends on OF
337 select GENERIC_PHY
338 help
339 Enable this to support the SATA3 PHY on 28nm Broadcom STB SoCs.
340 Likely useful only with CONFIG_SATA_BRCMSTB enabled.
341
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +0530342endmenu