mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-09-03 02:16:09 +02:00

-----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEZH8oZUiU471FcZm+ONu9yGCSaT4FAmXjYIIACgkQONu9yGCS aT5mvw/9GnG2BWbZp9BgVzBnT00CXnIpiGlsoSU0I0Uiso3XqpNYBu7jIZ+vmsqz 3H2bpkToEwJgg40I+w3iRaY84FWJZtl6HWtXydVQghQzXdA7qSuKBmbqQdUGKqZq Uqy7SFabkqQmlmF+RX1tYsgj7Vg3tqThERLUKQRhZIRa+Xek6Izi16RKEXcBNoXv vN+Q6AJ6vgjzHdw/UndsTH48bA/NofLlGapf7ZRGaSO7vY6bO5N23Xeg8gBIUh3M RHYf0ubKOvOw6LfZrE8BAbLd9Om2IHRAwHTqvDUNaIOl6y7exwCCIMK2lDdlzQ3W 7gug4HzlQjVz93OtL8MjLnfINOO7en65gyqvwit9N7O7nJKvuIMtt5vVam+h4ikB xF/QmFj95GNeRLwBmOJxOS89KyC8BrjE3PfYtL1mUO9joH8vZBccon6WIV7C2u5M d+0UglxC4lNTJ3s3FcnrzEKCn5YaE8WvFYQX0xvFQL3GWGDkyrNaafqoz19a8yd2 ndf3xUh5QKYWI2UGhqV6FdfYC9BolEh/niMKrJYCEJ6BroO3nzh1L8keC+MHbJwp Yuu9FCT+vNDKfR/HQwUhUGX/3wyBKb8jqzDXUB2s4FLPUSBX+/RAso13FWua1TGd E432ZXaobuUx3+kHsqB+0dc99QVblnMFMPEoM4ye3lYHzq8PDJ0= =7IL4 -----END PGP SIGNATURE----- Merge tag 'v6.6.20' into lf-6.6.y This is the 6.6.20 stable release * tag 'v6.6.20': (3154 commits) Linux 6.6.20 fs/ntfs3: fix build without CONFIG_NTFS3_LZX_XPRESS Linux 6.6.19 ... Signed-off-by: Jason Liu <jason.hui.liu@nxp.com> Conflicts: arch/arm64/boot/dts/freescale/imx8mm.dtsi arch/arm64/boot/dts/freescale/imx8mq.dtsi drivers/clk/imx/clk-imx8qxp.c drivers/dma/fsl-edma.c drivers/firmware/arm_scmi/perf.c drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c drivers/net/ethernet/freescale/dpaa2/dpaa2-switch.c drivers/net/ethernet/freescale/fec_main.c drivers/scsi/scsi_error.c drivers/spi/spi-imx.c sound/soc/fsl/fsl_sai.c
114 lines
3.2 KiB
Plaintext
114 lines
3.2 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# PHY
|
|
#
|
|
|
|
menu "PHY Subsystem"
|
|
|
|
config GENERIC_PHY
|
|
bool "PHY Core"
|
|
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.
|
|
|
|
config GENERIC_PHY_MIPI_DPHY
|
|
bool
|
|
depends on GENERIC_PHY
|
|
help
|
|
Generic MIPI D-PHY support.
|
|
|
|
Provides a number of helpers a core functions for MIPI D-PHY
|
|
drivers to us.
|
|
|
|
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.
|
|
|
|
config PHY_PISTACHIO_USB
|
|
tristate "IMG Pistachio USB2.0 PHY driver"
|
|
depends on MIPS || COMPILE_TEST
|
|
select GENERIC_PHY
|
|
help
|
|
Enable this to support the USB2.0 PHY on the IMG Pistachio SoC.
|
|
|
|
config PHY_XGENE
|
|
tristate "APM X-Gene 15Gbps PHY support"
|
|
depends on HAS_IOMEM && OF && (ARCH_XGENE || COMPILE_TEST)
|
|
select GENERIC_PHY
|
|
help
|
|
This option enables support for APM X-Gene SoC multi-purpose PHY.
|
|
|
|
config USB_LGM_PHY
|
|
tristate "INTEL Lightning Mountain USB PHY Driver"
|
|
depends on USB_SUPPORT
|
|
depends on X86 || COMPILE_TEST
|
|
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.
|
|
|
|
config PHY_CAN_TRANSCEIVER
|
|
tristate "CAN transceiver PHY"
|
|
select GENERIC_PHY
|
|
select MULTIPLEXER
|
|
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.
|
|
|
|
config PHY_MIXEL_LVDS
|
|
tristate "MIXEL LVDS PHY support"
|
|
depends on OF
|
|
select GENERIC_PHY
|
|
|
|
config PHY_MIXEL_LVDS_COMBO
|
|
tristate "MIXEL LVDS PHY(LVDS+MIPI DSI combo PHY) support"
|
|
depends on OF
|
|
select GENERIC_PHY
|
|
|
|
source "drivers/phy/allwinner/Kconfig"
|
|
source "drivers/phy/amlogic/Kconfig"
|
|
source "drivers/phy/broadcom/Kconfig"
|
|
source "drivers/phy/cadence/Kconfig"
|
|
source "drivers/phy/freescale/Kconfig"
|
|
source "drivers/phy/hisilicon/Kconfig"
|
|
source "drivers/phy/ingenic/Kconfig"
|
|
source "drivers/phy/lantiq/Kconfig"
|
|
source "drivers/phy/marvell/Kconfig"
|
|
source "drivers/phy/mediatek/Kconfig"
|
|
source "drivers/phy/microchip/Kconfig"
|
|
source "drivers/phy/motorola/Kconfig"
|
|
source "drivers/phy/mscc/Kconfig"
|
|
source "drivers/phy/qualcomm/Kconfig"
|
|
source "drivers/phy/ralink/Kconfig"
|
|
source "drivers/phy/renesas/Kconfig"
|
|
source "drivers/phy/rockchip/Kconfig"
|
|
source "drivers/phy/samsung/Kconfig"
|
|
source "drivers/phy/socionext/Kconfig"
|
|
source "drivers/phy/st/Kconfig"
|
|
source "drivers/phy/starfive/Kconfig"
|
|
source "drivers/phy/sunplus/Kconfig"
|
|
source "drivers/phy/tegra/Kconfig"
|
|
source "drivers/phy/ti/Kconfig"
|
|
source "drivers/phy/intel/Kconfig"
|
|
source "drivers/phy/xilinx/Kconfig"
|
|
source "drivers/phy/inphi/Kconfig"
|
|
|
|
endmenu
|