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_A3700_UTMI 37 tristate "Marvell A3700 UTMI driver" 38 depends on ARCH_MVEBU || COMPILE_TEST 39 depends on OF 40 default y 41 select GENERIC_PHY 42 help 43 Enable this to support Marvell A3700 UTMI PHY driver. 44 45config PHY_MVEBU_A38X_COMPHY 46 tristate "Marvell Armada 38x comphy driver" 47 depends on ARCH_MVEBU || COMPILE_TEST 48 depends on OF 49 select GENERIC_PHY 50 help 51 This driver allows to control the comphy, an hardware block providing 52 shared serdes PHYs on Marvell Armada 38x. Its serdes lanes can be 53 used by various controllers (Ethernet, sata, usb, PCIe...). 54 55config PHY_MVEBU_CP110_COMPHY 56 tristate "Marvell CP110 comphy driver" 57 depends on ARCH_MVEBU || COMPILE_TEST 58 depends on OF 59 select GENERIC_PHY 60 help 61 This driver allows to control the comphy, an hardware block providing 62 shared serdes PHYs on Marvell Armada 7k/8k (in the CP110). Its serdes 63 lanes can be used by various controllers (Ethernet, sata, usb, 64 PCIe...). 65 66config PHY_MVEBU_SATA 67 def_bool y 68 depends on ARCH_DOVE || MACH_DOVE || MACH_KIRKWOOD 69 depends on OF 70 select GENERIC_PHY 71 72config PHY_PXA_28NM_HSIC 73 tristate "Marvell USB HSIC 28nm PHY Driver" 74 depends on HAS_IOMEM 75 select GENERIC_PHY 76 help 77 Enable this to support Marvell USB HSIC PHY driver for Marvell 78 SoC. This driver will do the PHY initialization and shutdown. 79 The PHY driver will be used by Marvell ehci driver. 80 81 To compile this driver as a module, choose M here. 82 83config PHY_PXA_28NM_USB2 84 tristate "Marvell USB 2.0 28nm PHY Driver" 85 depends on HAS_IOMEM 86 select GENERIC_PHY 87 help 88 Enable this to support Marvell USB 2.0 PHY driver for Marvell 89 SoC. This driver will do the PHY initialization and shutdown. 90 The PHY driver will be used by Marvell udc/ehci/otg driver. 91 92 To compile this driver as a module, choose M here. 93 94config PHY_PXA_USB 95 tristate "Marvell PXA USB PHY Driver" 96 depends on ARCH_PXA || ARCH_MMP 97 select GENERIC_PHY 98 help 99 Enable this to support Marvell PXA USB PHY driver for Marvell 100 SoC. This driver will do the PHY initialization and shutdown. 101 The PHY driver will be used by Marvell udc/ehci/otg driver. 102 103 To compile this driver as a module, choose M here. 104