2019-05-19 13:07:45 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2013-09-27 11:53:25 +05:30
|
|
|
#
|
|
|
|
# PHY
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "PHY Subsystem"
|
|
|
|
|
|
|
|
config GENERIC_PHY
|
2014-02-17 14:29:24 +05:30
|
|
|
bool "PHY Core"
|
2013-09-27 11:53:25 +05:30
|
|
|
help
|
|
|
|
Generic PHY support.
|
|
|
|
|
|
|
|
This framework is designed to provide a generic interface for PHY
|
|
|
|
devices present in the kernel. This layer will have the generic
|
|
|
|
API by which phy drivers can create PHY using the phy framework and
|
|
|
|
phy users can obtain reference to the PHY. All the users of this
|
|
|
|
framework should select this config.
|
|
|
|
|
2018-12-07 14:55:31 +01:00
|
|
|
config GENERIC_PHY_MIPI_DPHY
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Generic MIPI D-PHY support.
|
|
|
|
|
|
|
|
Provides a number of helpers a core functions for MIPI D-PHY
|
|
|
|
drivers to us.
|
|
|
|
|
2015-07-09 22:48:25 +02:00
|
|
|
config PHY_LPC18XX_USB_OTG
|
|
|
|
tristate "NXP LPC18xx/43xx SoC USB OTG PHY driver"
|
|
|
|
depends on OF && (ARCH_LPC18XX || COMPILE_TEST)
|
|
|
|
depends on MFD_SYSCON
|
|
|
|
select GENERIC_PHY
|
|
|
|
help
|
|
|
|
Enable this to support NXP LPC18xx/43xx internal USB OTG PHY.
|
|
|
|
|
|
|
|
This driver is need for USB0 support on LPC18xx/43xx and takes
|
|
|
|
care of enabling and clock setup.
|
|
|
|
|
2015-04-07 15:04:17 -07:00
|
|
|
config PHY_PISTACHIO_USB
|
|
|
|
tristate "IMG Pistachio USB2.0 PHY driver"
|
|
|
|
depends on MACH_PISTACHIO
|
|
|
|
select GENERIC_PHY
|
|
|
|
help
|
|
|
|
Enable this to support the USB2.0 PHY on the IMG Pistachio SoC.
|
|
|
|
|
2014-08-08 11:34:32 -07:00
|
|
|
config PHY_XGENE
|
|
|
|
tristate "APM X-Gene 15Gbps PHY support"
|
|
|
|
depends on HAS_IOMEM && OF && (ARM64 || COMPILE_TEST)
|
|
|
|
select GENERIC_PHY
|
|
|
|
help
|
|
|
|
This option enables support for APM X-Gene SoC multi-purpose PHY.
|
|
|
|
|
2020-08-28 10:23:12 +08:00
|
|
|
config USB_LGM_PHY
|
|
|
|
tristate "INTEL Lightning Mountain USB PHY Driver"
|
2020-09-17 10:51:47 -07:00
|
|
|
depends on USB_SUPPORT
|
2020-08-28 10:23:12 +08:00
|
|
|
select USB_PHY
|
|
|
|
select REGULATOR
|
|
|
|
select REGULATOR_FIXED_VOLTAGE
|
|
|
|
help
|
|
|
|
Enable this to support Intel DWC3 PHY USB phy. This driver provides
|
|
|
|
interface to interact with USB GEN-II and USB 3.x PHY that is part
|
|
|
|
of the Intel network SOC.
|
|
|
|
|
2017-05-11 12:17:42 +05:30
|
|
|
source "drivers/phy/allwinner/Kconfig"
|
|
|
|
source "drivers/phy/amlogic/Kconfig"
|
|
|
|
source "drivers/phy/broadcom/Kconfig"
|
2018-08-09 11:30:30 +01:00
|
|
|
source "drivers/phy/cadence/Kconfig"
|
2018-11-15 15:12:47 +01:00
|
|
|
source "drivers/phy/freescale/Kconfig"
|
2017-05-11 12:17:42 +05:30
|
|
|
source "drivers/phy/hisilicon/Kconfig"
|
2020-11-16 22:19:06 +08:00
|
|
|
source "drivers/phy/ingenic/Kconfig"
|
2017-08-20 00:18:21 +02:00
|
|
|
source "drivers/phy/lantiq/Kconfig"
|
2017-05-11 12:17:42 +05:30
|
|
|
source "drivers/phy/marvell/Kconfig"
|
2017-08-03 18:01:02 +08:00
|
|
|
source "drivers/phy/mediatek/Kconfig"
|
2017-05-22 17:37:23 -07:00
|
|
|
source "drivers/phy/motorola/Kconfig"
|
2018-10-04 14:22:07 +02:00
|
|
|
source "drivers/phy/mscc/Kconfig"
|
2017-05-11 12:17:42 +05:30
|
|
|
source "drivers/phy/qualcomm/Kconfig"
|
2017-08-17 11:33:22 +01:00
|
|
|
source "drivers/phy/ralink/Kconfig"
|
2017-05-11 12:17:42 +05:30
|
|
|
source "drivers/phy/renesas/Kconfig"
|
|
|
|
source "drivers/phy/rockchip/Kconfig"
|
|
|
|
source "drivers/phy/samsung/Kconfig"
|
2018-08-22 12:50:32 +09:00
|
|
|
source "drivers/phy/socionext/Kconfig"
|
2017-05-11 12:17:42 +05:30
|
|
|
source "drivers/phy/st/Kconfig"
|
2015-11-11 18:24:21 +01:00
|
|
|
source "drivers/phy/tegra/Kconfig"
|
2017-05-11 12:17:42 +05:30
|
|
|
source "drivers/phy/ti/Kconfig"
|
2019-12-17 09:56:58 +08:00
|
|
|
source "drivers/phy/intel/Kconfig"
|
2020-06-29 15:00:53 +03:00
|
|
|
source "drivers/phy/xilinx/Kconfig"
|
2016-10-01 14:19:00 +02:00
|
|
|
|
2013-09-27 11:53:25 +05:30
|
|
|
endmenu
|