1# 2# Phy drivers for Marvell platforms 3# 4config ARMADA375_USBCLUSTER_PHY 5 def_bool y 6 depends on MACH_ARMADA_375 || COMPILE_TEST 7 depends on OF && HAS_IOMEM 8 select GENERIC_PHY 9 10config PHY_BERLIN_SATA 11 tristate "Marvell Berlin SATA PHY driver" 12 depends on ARCH_BERLIN && HAS_IOMEM && OF 13 select GENERIC_PHY 14 help 15 Enable this to support the SATA PHY on Marvell Berlin SoCs. 16 17config PHY_BERLIN_USB 18 tristate "Marvell Berlin USB PHY Driver" 19 depends on ARCH_BERLIN && RESET_CONTROLLER && HAS_IOMEM && OF 20 select GENERIC_PHY 21 help 22 Enable this to support the USB PHY on Marvell Berlin SoCs. 23 24config PHY_MVEBU_A3700_COMPHY 25 tristate "Marvell A3700 comphy driver" 26 depends on ARCH_MVEBU || COMPILE_TEST 27 depends on OF 28 depends on HAVE_ARM_SMCCC 29 default y 30 select GENERIC_PHY 31 help 32 This driver allows to control the comphy, a hardware block providing 33 shared serdes PHYs on Marvell Armada 3700. Its serdes lanes can be 34 used by various controllers: Ethernet, SATA, USB3, PCIe. 35 36config PHY_MVEBU_CP110_COMPHY 37 tristate "Marvell CP110 comphy driver" 38 depends on ARCH_MVEBU || COMPILE_TEST 39 depends on OF 40 select GENERIC_PHY 41 help 42 This driver allows to control the comphy, an hardware block providing 43 shared serdes PHYs on Marvell Armada 7k/8k (in the CP110). Its serdes 44 lanes can be used by various controllers (Ethernet, sata, usb, 45 PCIe...). 46 47config PHY_MVEBU_SATA 48 def_bool y 49 depends on ARCH_DOVE || MACH_DOVE || MACH_KIRKWOOD 50 depends on OF 51 select GENERIC_PHY 52 53config PHY_PXA_28NM_HSIC 54 tristate "Marvell USB HSIC 28nm PHY Driver" 55 depends on HAS_IOMEM 56 select GENERIC_PHY 57 help 58 Enable this to support Marvell USB HSIC PHY driver for Marvell 59 SoC. This driver will do the PHY initialization and shutdown. 60 The PHY driver will be used by Marvell ehci driver. 61 62 To compile this driver as a module, choose M here. 63 64config PHY_PXA_28NM_USB2 65 tristate "Marvell USB 2.0 28nm PHY Driver" 66 depends on HAS_IOMEM 67 select GENERIC_PHY 68 help 69 Enable this to support Marvell USB 2.0 PHY driver for Marvell 70 SoC. This driver will do the PHY initialization and shutdown. 71 The PHY driver will be used by Marvell udc/ehci/otg driver. 72 73 To compile this driver as a module, choose M here. 74 75config PHY_PXA_USB 76 tristate "Marvell PXA USB PHY Driver" 77 depends on ARCH_PXA || ARCH_MMP 78 select GENERIC_PHY 79 help 80 Enable this to support Marvell PXA USB PHY driver for Marvell 81 SoC. This driver will do the PHY initialization and shutdown. 82 The PHY driver will be used by Marvell udc/ehci/otg driver. 83 84 To compile this driver as a module, choose M here. 85