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_CP110_COMPHY 46 tristate "Marvell CP110 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 7k/8k (in the CP110). Its serdes 53 lanes can be used by various controllers (Ethernet, sata, usb, 54 PCIe...). 55 56config PHY_MVEBU_SATA 57 def_bool y 58 depends on ARCH_DOVE || MACH_DOVE || MACH_KIRKWOOD 59 depends on OF 60 select GENERIC_PHY 61 62config PHY_PXA_28NM_HSIC 63 tristate "Marvell USB HSIC 28nm PHY Driver" 64 depends on HAS_IOMEM 65 select GENERIC_PHY 66 help 67 Enable this to support Marvell USB HSIC PHY driver for Marvell 68 SoC. This driver will do the PHY initialization and shutdown. 69 The PHY driver will be used by Marvell ehci driver. 70 71 To compile this driver as a module, choose M here. 72 73config PHY_PXA_28NM_USB2 74 tristate "Marvell USB 2.0 28nm PHY Driver" 75 depends on HAS_IOMEM 76 select GENERIC_PHY 77 help 78 Enable this to support Marvell USB 2.0 PHY driver for Marvell 79 SoC. This driver will do the PHY initialization and shutdown. 80 The PHY driver will be used by Marvell udc/ehci/otg driver. 81 82 To compile this driver as a module, choose M here. 83 84config PHY_PXA_USB 85 tristate "Marvell PXA USB PHY Driver" 86 depends on ARCH_PXA || ARCH_MMP 87 select GENERIC_PHY 88 help 89 Enable this to support Marvell PXA USB PHY driver for Marvell 90 SoC. This driver will do the PHY initialization and shutdown. 91 The PHY driver will be used by Marvell udc/ehci/otg driver. 92 93 To compile this driver as a module, choose M here. 94