1# 2# PHY 3# 4 5menu "PHY Subsystem" 6 7config GENERIC_PHY 8 bool "PHY Core" 9 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 18config PHY_LPC18XX_USB_OTG 19 tristate "NXP LPC18xx/43xx SoC USB OTG PHY driver" 20 depends on OF && (ARCH_LPC18XX || COMPILE_TEST) 21 depends on MFD_SYSCON 22 select GENERIC_PHY 23 help 24 Enable this to support NXP LPC18xx/43xx internal USB OTG PHY. 25 26 This driver is need for USB0 support on LPC18xx/43xx and takes 27 care of enabling and clock setup. 28 29config PHY_MT65XX_USB3 30 tristate "Mediatek USB3.0 PHY Driver" 31 depends on ARCH_MEDIATEK && OF 32 select GENERIC_PHY 33 help 34 Say 'Y' here to add support for Mediatek USB3.0 PHY driver, 35 it supports multiple usb2.0 and usb3.0 ports. 36 37config 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 44config 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 51source "drivers/phy/allwinner/Kconfig" 52source "drivers/phy/amlogic/Kconfig" 53source "drivers/phy/broadcom/Kconfig" 54source "drivers/phy/hisilicon/Kconfig" 55source "drivers/phy/marvell/Kconfig" 56source "drivers/phy/motorola/Kconfig" 57source "drivers/phy/qualcomm/Kconfig" 58source "drivers/phy/renesas/Kconfig" 59source "drivers/phy/rockchip/Kconfig" 60source "drivers/phy/samsung/Kconfig" 61source "drivers/phy/st/Kconfig" 62source "drivers/phy/tegra/Kconfig" 63source "drivers/phy/ti/Kconfig" 64 65endmenu 66