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