blob: 250abe290ca12788a3ef1e99821194d6c8a73fc1 [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
Maxime Riparddddc97e2018-12-07 14:55:31 +010018config GENERIC_PHY_MIPI_DPHY
19 bool
20 help
21 Generic MIPI D-PHY support.
22
23 Provides a number of helpers a core functions for MIPI D-PHY
24 drivers to us.
25
Joachim Eastwoodcbf919b2015-07-09 22:48:25 +020026config PHY_LPC18XX_USB_OTG
27 tristate "NXP LPC18xx/43xx SoC USB OTG PHY driver"
28 depends on OF && (ARCH_LPC18XX || COMPILE_TEST)
29 depends on MFD_SYSCON
30 select GENERIC_PHY
31 help
32 Enable this to support NXP LPC18xx/43xx internal USB OTG PHY.
33
34 This driver is need for USB0 support on LPC18xx/43xx and takes
35 care of enabling and clock setup.
36
Andrew Bresticker57991eb2015-04-07 15:04:17 -070037config PHY_PISTACHIO_USB
38 tristate "IMG Pistachio USB2.0 PHY driver"
39 depends on MACH_PISTACHIO
40 select GENERIC_PHY
41 help
42 Enable this to support the USB2.0 PHY on the IMG Pistachio SoC.
43
Linus Torvalds10c8e052014-08-08 11:34:32 -070044config PHY_XGENE
45 tristate "APM X-Gene 15Gbps PHY support"
46 depends on HAS_IOMEM && OF && (ARM64 || COMPILE_TEST)
47 select GENERIC_PHY
48 help
49 This option enables support for APM X-Gene SoC multi-purpose PHY.
50
Vivek Gautam0b56e9a2017-05-11 12:17:42 +053051source "drivers/phy/allwinner/Kconfig"
52source "drivers/phy/amlogic/Kconfig"
53source "drivers/phy/broadcom/Kconfig"
Scott Telfordc8b427e2018-08-09 11:30:30 +010054source "drivers/phy/cadence/Kconfig"
Li Junefe81be2018-11-15 15:12:47 +010055source "drivers/phy/freescale/Kconfig"
Vivek Gautam0b56e9a2017-05-11 12:17:42 +053056source "drivers/phy/hisilicon/Kconfig"
Hauke Mehrtensdea54fb2017-08-20 00:18:21 +020057source "drivers/phy/lantiq/Kconfig"
Vivek Gautam0b56e9a2017-05-11 12:17:42 +053058source "drivers/phy/marvell/Kconfig"
Chunfeng Yuncd4ec4b2017-08-03 18:01:02 +080059source "drivers/phy/mediatek/Kconfig"
Tony Lindgren6d6ce402017-05-22 17:37:23 -070060source "drivers/phy/motorola/Kconfig"
Quentin Schulz51f6b412018-10-04 14:22:07 +020061source "drivers/phy/mscc/Kconfig"
Vivek Gautam0b56e9a2017-05-11 12:17:42 +053062source "drivers/phy/qualcomm/Kconfig"
John Crispin2411a732017-08-17 11:33:22 +010063source "drivers/phy/ralink/Kconfig"
Vivek Gautam0b56e9a2017-05-11 12:17:42 +053064source "drivers/phy/renesas/Kconfig"
65source "drivers/phy/rockchip/Kconfig"
66source "drivers/phy/samsung/Kconfig"
Kunihiko Hayashi5ab43d02018-08-22 12:50:32 +090067source "drivers/phy/socionext/Kconfig"
Vivek Gautam0b56e9a2017-05-11 12:17:42 +053068source "drivers/phy/st/Kconfig"
Thierry Reding53d2a712015-11-11 18:24:21 +010069source "drivers/phy/tegra/Kconfig"
Vivek Gautam0b56e9a2017-05-11 12:17:42 +053070source "drivers/phy/ti/Kconfig"
Martin Blumenstingl7965ba02016-10-01 14:19:00 +020071
Kishon Vijay Abraham Iff764962013-09-27 11:53:25 +053072endmenu