2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2013-09-27 14:23:25 +08:00
|
|
|
#
|
|
|
|
# PHY
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "PHY Subsystem"
|
|
|
|
|
|
|
|
config GENERIC_PHY
|
2014-02-17 16:59:24 +08:00
|
|
|
bool "PHY Core"
|
2013-09-27 14:23:25 +08:00
|
|
|
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 21:55:31 +08:00
|
|
|
config GENERIC_PHY_MIPI_DPHY
|
|
|
|
bool
|
2023-10-17 16:03:54 +08:00
|
|
|
select GENERIC_PHY
|
2018-12-07 21:55:31 +08:00
|
|
|
help
|
|
|
|
Generic MIPI D-PHY support.
|
|
|
|
|
|
|
|
Provides a number of helpers a core functions for MIPI D-PHY
|
|
|
|
drivers to us.
|
|
|
|
|
2015-07-10 04:48:25 +08: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-08 06:04:17 +08:00
|
|
|
config PHY_PISTACHIO_USB
|
|
|
|
tristate "IMG Pistachio USB2.0 PHY driver"
|
2021-07-23 10:25:39 +08:00
|
|
|
depends on MIPS || COMPILE_TEST
|
2015-04-08 06:04:17 +08:00
|
|
|
select GENERIC_PHY
|
|
|
|
help
|
|
|
|
Enable this to support the USB2.0 PHY on the IMG Pistachio SoC.
|
|
|
|
|
2014-08-09 02:34:32 +08:00
|
|
|
config PHY_XGENE
|
|
|
|
tristate "APM X-Gene 15Gbps PHY support"
|
2023-03-07 01:05:35 +08:00
|
|
|
depends on HAS_IOMEM && OF && (ARCH_XGENE || COMPILE_TEST)
|
2014-08-09 02:34:32 +08:00
|
|
|
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-18 01:51:47 +08:00
|
|
|
depends on USB_SUPPORT
|
2021-01-29 21:17:53 +08:00
|
|
|
depends on X86 || COMPILE_TEST
|
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.
|
|
|
|
|
2021-05-10 13:10:05 +08:00
|
|
|
config PHY_CAN_TRANSCEIVER
|
|
|
|
tristate "CAN transceiver PHY"
|
|
|
|
select GENERIC_PHY
|
2022-04-08 19:13:16 +08:00
|
|
|
select MULTIPLEXER
|
2021-05-10 13:10:05 +08:00
|
|
|
help
|
|
|
|
This option enables support for CAN transceivers as a PHY. This
|
|
|
|
driver provides function for putting the transceivers in various
|
|
|
|
functional modes using gpios and sets the attribute max link
|
|
|
|
rate, for CAN drivers.
|
|
|
|
|
2024-06-16 05:15:42 +08:00
|
|
|
config PHY_AIROHA_PCIE
|
|
|
|
tristate "Airoha PCIe-PHY Driver"
|
|
|
|
depends on ARCH_AIROHA || COMPILE_TEST
|
|
|
|
depends on OF
|
|
|
|
select GENERIC_PHY
|
|
|
|
help
|
|
|
|
Say Y here to add support for Airoha PCIe PHY driver.
|
|
|
|
This driver create the basic PHY instance and provides initialize
|
|
|
|
callback for PCIe GEN3 port.
|
|
|
|
|
2017-05-11 14:47:42 +08:00
|
|
|
source "drivers/phy/allwinner/Kconfig"
|
|
|
|
source "drivers/phy/amlogic/Kconfig"
|
|
|
|
source "drivers/phy/broadcom/Kconfig"
|
2018-08-09 18:30:30 +08:00
|
|
|
source "drivers/phy/cadence/Kconfig"
|
2018-11-15 22:12:47 +08:00
|
|
|
source "drivers/phy/freescale/Kconfig"
|
2017-05-11 14:47:42 +08:00
|
|
|
source "drivers/phy/hisilicon/Kconfig"
|
2020-11-16 22:19:06 +08:00
|
|
|
source "drivers/phy/ingenic/Kconfig"
|
2017-08-20 06:18:21 +08:00
|
|
|
source "drivers/phy/lantiq/Kconfig"
|
2017-05-11 14:47:42 +08:00
|
|
|
source "drivers/phy/marvell/Kconfig"
|
2017-08-03 18:01:02 +08:00
|
|
|
source "drivers/phy/mediatek/Kconfig"
|
2021-02-19 00:14:50 +08:00
|
|
|
source "drivers/phy/microchip/Kconfig"
|
2017-05-23 08:37:23 +08:00
|
|
|
source "drivers/phy/motorola/Kconfig"
|
2018-10-04 20:22:07 +08:00
|
|
|
source "drivers/phy/mscc/Kconfig"
|
2017-05-11 14:47:42 +08:00
|
|
|
source "drivers/phy/qualcomm/Kconfig"
|
2017-08-17 18:33:22 +08:00
|
|
|
source "drivers/phy/ralink/Kconfig"
|
2023-12-13 11:10:07 +08:00
|
|
|
source "drivers/phy/realtek/Kconfig"
|
2017-05-11 14:47:42 +08:00
|
|
|
source "drivers/phy/renesas/Kconfig"
|
|
|
|
source "drivers/phy/rockchip/Kconfig"
|
|
|
|
source "drivers/phy/samsung/Kconfig"
|
2018-08-22 11:50:32 +08:00
|
|
|
source "drivers/phy/socionext/Kconfig"
|
2017-05-11 14:47:42 +08:00
|
|
|
source "drivers/phy/st/Kconfig"
|
2023-06-29 15:51:13 +08:00
|
|
|
source "drivers/phy/starfive/Kconfig"
|
2022-07-25 10:44:11 +08:00
|
|
|
source "drivers/phy/sunplus/Kconfig"
|
2015-11-12 01:24:21 +08:00
|
|
|
source "drivers/phy/tegra/Kconfig"
|
2017-05-11 14:47:42 +08:00
|
|
|
source "drivers/phy/ti/Kconfig"
|
2019-12-17 09:56:58 +08:00
|
|
|
source "drivers/phy/intel/Kconfig"
|
2020-06-29 20:00:53 +08:00
|
|
|
source "drivers/phy/xilinx/Kconfig"
|
2016-10-01 20:19:00 +08:00
|
|
|
|
2013-09-27 14:23:25 +08:00
|
|
|
endmenu
|