1# 2# PHY Layer Configuration 3# 4 5menuconfig PHYLIB 6 tristate "PHY Device support and infrastructure" 7 depends on NETDEVICES 8 help 9 Ethernet controllers are usually attached to PHY 10 devices. This option provides infrastructure for 11 managing PHY devices. 12 13if PHYLIB 14 15comment "MII PHY device drivers" 16 17config AT803X_PHY 18 tristate "Drivers for Atheros AT803X PHYs" 19 ---help--- 20 Currently supports the AT8030 and AT8035 model 21 22config AMD_PHY 23 tristate "Drivers for the AMD PHYs" 24 ---help--- 25 Currently supports the am79c874 26 27config AMD_XGBE_PHY 28 tristate "Driver for the AMD 10GbE (amd-xgbe) PHYs" 29 depends on (OF || ACPI) && HAS_IOMEM 30 depends on ARM64 || COMPILE_TEST 31 ---help--- 32 Currently supports the AMD 10GbE PHY 33 34config MARVELL_PHY 35 tristate "Drivers for Marvell PHYs" 36 ---help--- 37 Currently has a driver for the 88E1011S 38 39config DAVICOM_PHY 40 tristate "Drivers for Davicom PHYs" 41 ---help--- 42 Currently supports dm9161e and dm9131 43 44config QSEMI_PHY 45 tristate "Drivers for Quality Semiconductor PHYs" 46 ---help--- 47 Currently supports the qs6612 48 49config LXT_PHY 50 tristate "Drivers for the Intel LXT PHYs" 51 ---help--- 52 Currently supports the lxt970, lxt971 53 54config CICADA_PHY 55 tristate "Drivers for the Cicada PHYs" 56 ---help--- 57 Currently supports the cis8204 58 59config VITESSE_PHY 60 tristate "Drivers for the Vitesse PHYs" 61 ---help--- 62 Currently supports the vsc8244 63 64config SMSC_PHY 65 tristate "Drivers for SMSC PHYs" 66 ---help--- 67 Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs 68 69config BROADCOM_PHY 70 tristate "Drivers for Broadcom PHYs" 71 ---help--- 72 Currently supports the BCM5411, BCM5421, BCM5461, BCM54616S, BCM5464, 73 BCM5481 and BCM5482 PHYs. 74 75config BCM63XX_PHY 76 tristate "Drivers for Broadcom 63xx SOCs internal PHY" 77 depends on BCM63XX 78 ---help--- 79 Currently supports the 6348 and 6358 PHYs. 80 81config BCM7XXX_PHY 82 tristate "Drivers for Broadcom 7xxx SOCs internal PHYs" 83 ---help--- 84 Currently supports the BCM7366, BCM7439, BCM7445, and 85 40nm and 65nm generation of BCM7xxx Set Top Box SoCs. 86 87config BCM87XX_PHY 88 tristate "Driver for Broadcom BCM8706 and BCM8727 PHYs" 89 help 90 Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs. 91 92config ICPLUS_PHY 93 tristate "Drivers for ICPlus PHYs" 94 ---help--- 95 Currently supports the IP175C and IP1001 PHYs. 96 97config REALTEK_PHY 98 tristate "Drivers for Realtek PHYs" 99 ---help--- 100 Supports the Realtek 821x PHY. 101 102config NATIONAL_PHY 103 tristate "Drivers for National Semiconductor PHYs" 104 ---help--- 105 Currently supports the DP83865 PHY. 106 107config STE10XP 108 tristate "Driver for STMicroelectronics STe10Xp PHYs" 109 ---help--- 110 This is the driver for the STe100p and STe101p PHYs. 111 112config LSI_ET1011C_PHY 113 tristate "Driver for LSI ET1011C PHY" 114 ---help--- 115 Supports the LSI ET1011C PHY. 116 117config MICREL_PHY 118 tristate "Driver for Micrel PHYs" 119 ---help--- 120 Supports the KSZ9021, VSC8201, KS8001 PHYs. 121 122config FIXED_PHY 123 tristate "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs" 124 depends on PHYLIB 125 ---help--- 126 Adds the platform "fixed" MDIO Bus to cover the boards that use 127 PHYs that are not connected to the real MDIO bus. 128 129 Currently tested with mpc866ads and mpc8349e-mitx. 130 131config MDIO_BITBANG 132 tristate "Support for bitbanged MDIO buses" 133 help 134 This module implements the MDIO bus protocol in software, 135 for use by low level drivers that export the ability to 136 drive the relevant pins. 137 138 If in doubt, say N. 139 140config MDIO_GPIO 141 tristate "Support for GPIO lib-based bitbanged MDIO buses" 142 depends on MDIO_BITBANG && GPIOLIB 143 ---help--- 144 Supports GPIO lib-based MDIO busses. 145 146 To compile this driver as a module, choose M here: the module 147 will be called mdio-gpio. 148 149config MDIO_OCTEON 150 tristate "Support for MDIO buses on Octeon SOCs" 151 depends on CAVIUM_OCTEON_SOC 152 default y 153 help 154 155 This module provides a driver for the Octeon MDIO busses. 156 It is required by the Octeon Ethernet device drivers. 157 158 If in doubt, say Y. 159 160config MDIO_SUN4I 161 tristate "Allwinner sun4i MDIO interface support" 162 depends on ARCH_SUNXI 163 help 164 This driver supports the MDIO interface found in the network 165 interface units of the Allwinner SoC that have an EMAC (A10, 166 A12, A10s, etc.) 167 168config MDIO_MOXART 169 tristate "MOXA ART MDIO interface support" 170 depends on ARCH_MOXART 171 help 172 This driver supports the MDIO interface found in the network 173 interface units of the MOXA ART SoC 174 175config MDIO_BUS_MUX 176 tristate 177 depends on OF_MDIO 178 help 179 This module provides a driver framework for MDIO bus 180 multiplexers which connect one of several child MDIO busses 181 to a parent bus. Switching between child busses is done by 182 device specific drivers. 183 184config MDIO_BUS_MUX_GPIO 185 tristate "Support for GPIO controlled MDIO bus multiplexers" 186 depends on OF_GPIO && OF_MDIO 187 select MDIO_BUS_MUX 188 help 189 This module provides a driver for MDIO bus multiplexers that 190 are controlled via GPIO lines. The multiplexer connects one of 191 several child MDIO busses to a parent bus. Child bus 192 selection is under the control of GPIO lines. 193 194config MDIO_BUS_MUX_MMIOREG 195 tristate "Support for MMIO device-controlled MDIO bus multiplexers" 196 depends on OF_MDIO 197 select MDIO_BUS_MUX 198 help 199 This module provides a driver for MDIO bus multiplexers that 200 are controlled via a simple memory-mapped device, like an FPGA. 201 The multiplexer connects one of several child MDIO busses to a 202 parent bus. Child bus selection is under the control of one of 203 the FPGA's registers. 204 205 Currently, only 8-bit registers are supported. 206 207config MDIO_BCM_UNIMAC 208 tristate "Broadcom UniMAC MDIO bus controller" 209 depends on HAS_IOMEM 210 help 211 This module provides a driver for the Broadcom UniMAC MDIO busses. 212 This hardware can be found in the Broadcom GENET Ethernet MAC 213 controllers as well as some Broadcom Ethernet switches such as the 214 Starfighter 2 switches. 215 216endif # PHYLIB 217 218config MICREL_KS8995MA 219 tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch" 220 depends on SPI 221