hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/phy/Kconfig
....@@ -1,3 +1,4 @@
1
+# SPDX-License-Identifier: GPL-2.0-only
12 #
23 # PHY
34 #
....@@ -14,6 +15,14 @@
1415 API by which phy drivers can create PHY using the phy framework and
1516 phy users can obtain reference to the PHY. All the users of this
1617 framework should select this config.
18
+
19
+config GENERIC_PHY_MIPI_DPHY
20
+ bool
21
+ help
22
+ Generic MIPI D-PHY support.
23
+
24
+ Provides a number of helpers a core functions for MIPI D-PHY
25
+ drivers to us.
1726
1827 config PHY_LPC18XX_USB_OTG
1928 tristate "NXP LPC18xx/43xx SoC USB OTG PHY driver"
....@@ -40,21 +49,39 @@
4049 help
4150 This option enables support for APM X-Gene SoC multi-purpose PHY.
4251
52
+config USB_LGM_PHY
53
+ tristate "INTEL Lightning Mountain USB PHY Driver"
54
+ depends on USB_SUPPORT
55
+ depends on X86 || COMPILE_TEST
56
+ select USB_PHY
57
+ select REGULATOR
58
+ select REGULATOR_FIXED_VOLTAGE
59
+ help
60
+ Enable this to support Intel DWC3 PHY USB phy. This driver provides
61
+ interface to interact with USB GEN-II and USB 3.x PHY that is part
62
+ of the Intel network SOC.
63
+
4364 source "drivers/phy/allwinner/Kconfig"
4465 source "drivers/phy/amlogic/Kconfig"
4566 source "drivers/phy/broadcom/Kconfig"
67
+source "drivers/phy/cadence/Kconfig"
68
+source "drivers/phy/freescale/Kconfig"
4669 source "drivers/phy/hisilicon/Kconfig"
4770 source "drivers/phy/lantiq/Kconfig"
4871 source "drivers/phy/marvell/Kconfig"
4972 source "drivers/phy/mediatek/Kconfig"
5073 source "drivers/phy/motorola/Kconfig"
74
+source "drivers/phy/mscc/Kconfig"
5175 source "drivers/phy/qualcomm/Kconfig"
5276 source "drivers/phy/ralink/Kconfig"
5377 source "drivers/phy/renesas/Kconfig"
5478 source "drivers/phy/rockchip/Kconfig"
5579 source "drivers/phy/samsung/Kconfig"
80
+source "drivers/phy/socionext/Kconfig"
5681 source "drivers/phy/st/Kconfig"
5782 source "drivers/phy/tegra/Kconfig"
5883 source "drivers/phy/ti/Kconfig"
84
+source "drivers/phy/intel/Kconfig"
85
+source "drivers/phy/xilinx/Kconfig"
5986
6087 endmenu