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