100db8189SAndy Fleming# 200db8189SAndy Fleming# PHY Layer Configuration 300db8189SAndy Fleming# 400db8189SAndy Fleming 590eff909SFlorian Fainellimenuconfig MDIO_DEVICE 690eff909SFlorian Fainelli tristate "MDIO bus device drivers" 700db8189SAndy Fleming help 890eff909SFlorian Fainelli MDIO devices and driver infrastructure code. 900db8189SAndy Fleming 104c3464a8SArnd Bergmannconfig MDIO_BUS 114c3464a8SArnd Bergmann tristate 129e8d438eSFlorian Fainelli default m if PHYLIB=m 134c3464a8SArnd Bergmann default MDIO_DEVICE 144c3464a8SArnd Bergmann help 154c3464a8SArnd Bergmann This internal symbol is used for link time dependencies and it 164c3464a8SArnd Bergmann reflects whether the mdio_bus/mdio_device code is built as a 174c3464a8SArnd Bergmann loadable module or built-in. 184c3464a8SArnd Bergmann 194c3464a8SArnd Bergmannif MDIO_BUS 2000db8189SAndy Fleming 21d75b4a22SAndrew Lunnconfig MDIO_BCM_IPROC 22d75b4a22SAndrew Lunn tristate "Broadcom iProc MDIO bus controller" 23d75b4a22SAndrew Lunn depends on ARCH_BCM_IPROC || COMPILE_TEST 24d75b4a22SAndrew Lunn depends on HAS_IOMEM && OF_MDIO 25e9976d7cSDavid Daney help 26d75b4a22SAndrew Lunn This module provides a driver for the MDIO busses found in the 27d75b4a22SAndrew Lunn Broadcom iProc SoC's. 28e9976d7cSDavid Daney 29d75b4a22SAndrew Lunnconfig MDIO_BCM_UNIMAC 30d75b4a22SAndrew Lunn tristate "Broadcom UniMAC MDIO bus controller" 318be7d96eSFlorian Fainelli depends on HAS_IOMEM 32792aec47SWoojung.Huh@microchip.com help 33d75b4a22SAndrew Lunn This module provides a driver for the Broadcom UniMAC MDIO busses. 34d75b4a22SAndrew Lunn This hardware can be found in the Broadcom GENET Ethernet MAC 35d75b4a22SAndrew Lunn controllers as well as some Broadcom Ethernet switches such as the 36d75b4a22SAndrew Lunn Starfighter 2 switches. 377c32f470SVitaly Bordug 38e2ec4581SScott Woodconfig MDIO_BITBANG 3997c84389SAndrew Lunn tristate "Bitbanged MDIO buses" 40e2ec4581SScott Wood help 41e2ec4581SScott Wood This module implements the MDIO bus protocol in software, 42e2ec4581SScott Wood for use by low level drivers that export the ability to 43e2ec4581SScott Wood drive the relevant pins. 44e2ec4581SScott Wood 45e2ec4581SScott Wood If in doubt, say N. 46e2ec4581SScott Wood 470ca2997dSDavid Daneyconfig MDIO_BUS_MUX 480ca2997dSDavid Daney tristate 490ca2997dSDavid Daney depends on OF_MDIO 500ca2997dSDavid Daney help 510ca2997dSDavid Daney This module provides a driver framework for MDIO bus 520ca2997dSDavid Daney multiplexers which connect one of several child MDIO busses 530ca2997dSDavid Daney to a parent bus. Switching between child busses is done by 540ca2997dSDavid Daney device specific drivers. 550ca2997dSDavid Daney 56d75b4a22SAndrew Lunnconfig MDIO_BUS_MUX_BCM_IPROC 5797c84389SAndrew Lunn tristate "Broadcom iProc based MDIO bus multiplexers" 58d75b4a22SAndrew Lunn depends on OF && OF_MDIO && (ARCH_BCM_IPROC || COMPILE_TEST) 59d75b4a22SAndrew Lunn select MDIO_BUS_MUX 60d75b4a22SAndrew Lunn default ARCH_BCM_IPROC 61d75b4a22SAndrew Lunn help 62d75b4a22SAndrew Lunn This module provides a driver for MDIO bus multiplexers found in 63d75b4a22SAndrew Lunn iProc based Broadcom SoCs. This multiplexer connects one of several 64d75b4a22SAndrew Lunn child MDIO bus to a parent bus. Buses could be internal as well as 65d75b4a22SAndrew Lunn external and selection logic lies inside the same multiplexer. 66d75b4a22SAndrew Lunn 67416912a1SDavid Daneyconfig MDIO_BUS_MUX_GPIO 6897c84389SAndrew Lunn tristate "GPIO controlled MDIO bus multiplexers" 69416912a1SDavid Daney depends on OF_GPIO && OF_MDIO 70416912a1SDavid Daney select MDIO_BUS_MUX 71416912a1SDavid Daney help 72416912a1SDavid Daney This module provides a driver for MDIO bus multiplexers that 73416912a1SDavid Daney are controlled via GPIO lines. The multiplexer connects one of 74416912a1SDavid Daney several child MDIO busses to a parent bus. Child bus 75416912a1SDavid Daney selection is under the control of GPIO lines. 76416912a1SDavid Daney 776cc2ff82STimur Tabiconfig MDIO_BUS_MUX_MMIOREG 7897c84389SAndrew Lunn tristate "MMIO device-controlled MDIO bus multiplexers" 79cfa52005SRob Herring depends on OF_MDIO && HAS_IOMEM 806cc2ff82STimur Tabi select MDIO_BUS_MUX 816cc2ff82STimur Tabi help 826cc2ff82STimur Tabi This module provides a driver for MDIO bus multiplexers that 836cc2ff82STimur Tabi are controlled via a simple memory-mapped device, like an FPGA. 846cc2ff82STimur Tabi The multiplexer connects one of several child MDIO busses to a 856cc2ff82STimur Tabi parent bus. Child bus selection is under the control of one of 866cc2ff82STimur Tabi the FPGA's registers. 876cc2ff82STimur Tabi 88c642bbbcSCorentin Labbe Currently, only 8/16/32 bits registers are supported. 896cc2ff82STimur Tabi 907865ad65SPankaj Bansalconfig MDIO_BUS_MUX_MULTIPLEXER 917865ad65SPankaj Bansal tristate "MDIO bus multiplexer using kernel multiplexer subsystem" 9264af7dc3SArnd Bergmann depends on OF_MDIO 937865ad65SPankaj Bansal select MULTIPLEXER 947865ad65SPankaj Bansal select MDIO_BUS_MUX 957865ad65SPankaj Bansal help 967865ad65SPankaj Bansal This module provides a driver for MDIO bus multiplexer 977865ad65SPankaj Bansal that is controlled via the kernel multiplexer subsystem. The 987865ad65SPankaj Bansal bus multiplexer connects one of several child MDIO busses to 997865ad65SPankaj Bansal a parent bus. Child bus selection is under the control of 1007865ad65SPankaj Bansal the kernel multiplexer subsystem. 1017865ad65SPankaj Bansal 102d75b4a22SAndrew Lunnconfig MDIO_CAVIUM 103d75b4a22SAndrew Lunn tristate 10498bc865aSPramod Kumar 105d75b4a22SAndrew Lunnconfig MDIO_GPIO 10697c84389SAndrew Lunn tristate "GPIO lib-based bitbanged MDIO buses" 107d55207e3SGeert Uytterhoeven depends on MDIO_BITBANG 108d55207e3SGeert Uytterhoeven depends on GPIOLIB || COMPILE_TEST 109d75b4a22SAndrew Lunn ---help--- 110d75b4a22SAndrew Lunn Supports GPIO lib-based MDIO busses. 111ddc24ae1SArun Parameswaran 112d75b4a22SAndrew Lunn To compile this driver as a module, choose M here: the module 113d75b4a22SAndrew Lunn will be called mdio-gpio. 114d75b4a22SAndrew Lunn 115d75b4a22SAndrew Lunnconfig MDIO_HISI_FEMAC 116d75b4a22SAndrew Lunn tristate "Hisilicon FEMAC MDIO bus controller" 117ddc24ae1SArun Parameswaran depends on HAS_IOMEM && OF_MDIO 118ddc24ae1SArun Parameswaran help 119ddc24ae1SArun Parameswaran This module provides a driver for the MDIO busses found in the 120d75b4a22SAndrew Lunn Hisilicon SoC that have an Fast Ethernet MAC. 121d75b4a22SAndrew Lunn 122453d00deSRussell Kingconfig MDIO_I2C 123453d00deSRussell King tristate 124453d00deSRussell King depends on I2C 125453d00deSRussell King help 126453d00deSRussell King Support I2C based PHYs. This provides a MDIO bus bridged 127453d00deSRussell King to I2C to allow PHYs connected in I2C mode to be accessed 128453d00deSRussell King using the existing infrastructure. 129453d00deSRussell King 130453d00deSRussell King This is library mode. 131453d00deSRussell King 132d75b4a22SAndrew Lunnconfig MDIO_MOXART 133d75b4a22SAndrew Lunn tristate "MOXA ART MDIO interface support" 1343c0596f8SFlorian Fainelli depends on ARCH_MOXART || COMPILE_TEST 135d75b4a22SAndrew Lunn help 136d75b4a22SAndrew Lunn This driver supports the MDIO interface found in the network 137d75b4a22SAndrew Lunn interface units of the MOXA ART SoC 138d75b4a22SAndrew Lunn 139542671feSAlexandre Belloniconfig MDIO_MSCC_MIIM 140542671feSAlexandre Belloni tristate "Microsemi MIIM interface support" 141542671feSAlexandre Belloni depends on HAS_IOMEM 142542671feSAlexandre Belloni help 143542671feSAlexandre Belloni This driver supports the MIIM (MDIO) interface found in the network 144542671feSAlexandre Belloni switches of the Microsemi SoCs 145542671feSAlexandre Belloni 146d75b4a22SAndrew Lunnconfig MDIO_OCTEON 14797c84389SAndrew Lunn tristate "Octeon and some ThunderX SOCs MDIO buses" 148d75b4a22SAndrew Lunn depends on 64BIT 149cd47512eSRandy Dunlap depends on HAS_IOMEM && OF_MDIO 150d75b4a22SAndrew Lunn select MDIO_CAVIUM 151d75b4a22SAndrew Lunn help 152d75b4a22SAndrew Lunn This module provides a driver for the Octeon and ThunderX MDIO 153d75b4a22SAndrew Lunn buses. It is required by the Octeon and ThunderX ethernet device 154d75b4a22SAndrew Lunn drivers on some systems. 155d75b4a22SAndrew Lunn 156d75b4a22SAndrew Lunnconfig MDIO_SUN4I 157d75b4a22SAndrew Lunn tristate "Allwinner sun4i MDIO interface support" 1583c0596f8SFlorian Fainelli depends on ARCH_SUNXI || COMPILE_TEST 159d75b4a22SAndrew Lunn help 160d75b4a22SAndrew Lunn This driver supports the MDIO interface found in the network 161d75b4a22SAndrew Lunn interface units of the Allwinner SoC that have an EMAC (A10, 162d75b4a22SAndrew Lunn A12, A10s, etc.) 163d75b4a22SAndrew Lunn 164d75b4a22SAndrew Lunnconfig MDIO_THUNDER 16597c84389SAndrew Lunn tristate "ThunderX SOCs MDIO buses" 166d75b4a22SAndrew Lunn depends on 64BIT 167d75b4a22SAndrew Lunn depends on PCI 168d75b4a22SAndrew Lunn select MDIO_CAVIUM 169d75b4a22SAndrew Lunn help 170d75b4a22SAndrew Lunn This driver supports the MDIO interfaces found on Cavium 171d75b4a22SAndrew Lunn ThunderX SoCs when the MDIO bus device appears as a PCI 172d75b4a22SAndrew Lunn device. 173d75b4a22SAndrew Lunn 174d75b4a22SAndrew Lunnconfig MDIO_XGENE 175d75b4a22SAndrew Lunn tristate "APM X-Gene SoC MDIO bus controller" 1767aa6ec22SLaura Abbott depends on ARCH_XGENE || COMPILE_TEST 177d75b4a22SAndrew Lunn help 178d75b4a22SAndrew Lunn This module provides a driver for the MDIO busses found in the 179d75b4a22SAndrew Lunn APM X-Gene SoC's. 180d75b4a22SAndrew Lunn 18190eff909SFlorian Fainelliendif 18290eff909SFlorian Fainelli 1839525ae83SRussell Kingconfig PHYLINK 1849525ae83SRussell King tristate 1859525ae83SRussell King depends on NETDEVICES 1869525ae83SRussell King select PHYLIB 1879525ae83SRussell King select SWPHY 1889525ae83SRussell King help 1899525ae83SRussell King PHYlink models the link between the PHY and MAC, allowing fixed 1909525ae83SRussell King configuration links, PHYs, and Serdes links with MAC level 1919525ae83SRussell King autonegotiation modes. 1929525ae83SRussell King 1936073512cSJerome Brunetmenuconfig PHYLIB 1949e8d438eSFlorian Fainelli tristate "PHY Device support and infrastructure" 1956073512cSJerome Brunet depends on NETDEVICES 1966073512cSJerome Brunet select MDIO_DEVICE 1976073512cSJerome Brunet help 1986073512cSJerome Brunet Ethernet controllers are usually attached to PHY 1996073512cSJerome Brunet devices. This option provides infrastructure for 2006073512cSJerome Brunet managing PHY devices. 2016073512cSJerome Brunet 20290eff909SFlorian Fainelliif PHYLIB 20390eff909SFlorian Fainelli 20490eff909SFlorian Fainelliconfig SWPHY 20590eff909SFlorian Fainelli bool 20690eff909SFlorian Fainelli 20790eff909SFlorian Fainelliconfig LED_TRIGGER_PHY 20890eff909SFlorian Fainelli bool "Support LED triggers for tracking link state" 20990eff909SFlorian Fainelli depends on LEDS_TRIGGERS 21090eff909SFlorian Fainelli ---help--- 21190eff909SFlorian Fainelli Adds support for a set of LED trigger events per-PHY. Link 21290eff909SFlorian Fainelli state change will trigger the events, for consumption by an 21390eff909SFlorian Fainelli LED class driver. There are triggers for each link speed currently 2143928ee64SMaciej S. Szmigiero supported by the PHY and also a one common "link" trigger as a 2153928ee64SMaciej S. Szmigiero logical-or of all the link speed ones. 2163928ee64SMaciej S. Szmigiero All these triggers are named according to the following pattern: 21790eff909SFlorian Fainelli <mii bus id>:<phy>:<speed> 21890eff909SFlorian Fainelli 21990eff909SFlorian Fainelli Where speed is in the form: 2203928ee64SMaciej S. Szmigiero <Speed in megabits>Mbps OR <Speed in gigabits>Gbps OR link 2213928ee64SMaciej S. Szmigiero for any speed known to the PHY. 22290eff909SFlorian Fainelli 22390eff909SFlorian Fainelli 224d75b4a22SAndrew Lunncomment "MII PHY device drivers" 225d75b4a22SAndrew Lunn 22673970055SRussell Kingconfig SFP 22773970055SRussell King tristate "SFP cage support" 22873970055SRussell King depends on I2C && PHYLINK 229b5293443SGuenter Roeck depends on HWMON || HWMON=n 23073970055SRussell King select MDIO_I2C 23173970055SRussell King 232d75b4a22SAndrew Lunnconfig AMD_PHY 23397c84389SAndrew Lunn tristate "AMD PHYs" 234d75b4a22SAndrew Lunn ---help--- 235d75b4a22SAndrew Lunn Currently supports the am79c874 236d75b4a22SAndrew Lunn 237d75b4a22SAndrew Lunnconfig AQUANTIA_PHY 23897c84389SAndrew Lunn tristate "Aquantia PHYs" 239d75b4a22SAndrew Lunn ---help--- 240d75b4a22SAndrew Lunn Currently supports the Aquantia AQ1202, AQ2104, AQR105, AQR405 241d75b4a22SAndrew Lunn 24231dd83b9SMichael Schmitzconfig ASIX_PHY 24331dd83b9SMichael Schmitz tristate "Asix PHYs" 24431dd83b9SMichael Schmitz help 24531dd83b9SMichael Schmitz Currently supports the Asix Electronics PHY found in the X-Surf 100 24631dd83b9SMichael Schmitz AX88796B package. 24731dd83b9SMichael Schmitz 248d75b4a22SAndrew Lunnconfig AT803X_PHY 24997c84389SAndrew Lunn tristate "AT803X PHYs" 250d75b4a22SAndrew Lunn ---help--- 251d75b4a22SAndrew Lunn Currently supports the AT8030 and AT8035 model 252d75b4a22SAndrew Lunn 253d75b4a22SAndrew Lunnconfig BCM63XX_PHY 25497c84389SAndrew Lunn tristate "Broadcom 63xx SOCs internal PHY" 25515d8daf7SAndrew Lunn depends on BCM63XX || COMPILE_TEST 256d75b4a22SAndrew Lunn select BCM_NET_PHYLIB 257d75b4a22SAndrew Lunn ---help--- 258d75b4a22SAndrew Lunn Currently supports the 6348 and 6358 PHYs. 259d75b4a22SAndrew Lunn 260d75b4a22SAndrew Lunnconfig BCM7XXX_PHY 26197c84389SAndrew Lunn tristate "Broadcom 7xxx SOCs internal PHYs" 262d75b4a22SAndrew Lunn select BCM_NET_PHYLIB 263d75b4a22SAndrew Lunn ---help--- 264d75b4a22SAndrew Lunn Currently supports the BCM7366, BCM7439, BCM7445, and 265d75b4a22SAndrew Lunn 40nm and 65nm generation of BCM7xxx Set Top Box SoCs. 266d75b4a22SAndrew Lunn 267d75b4a22SAndrew Lunnconfig BCM87XX_PHY 26897c84389SAndrew Lunn tristate "Broadcom BCM8706 and BCM8727 PHYs" 269d75b4a22SAndrew Lunn help 270d75b4a22SAndrew Lunn Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs. 271d75b4a22SAndrew Lunn 272d75b4a22SAndrew Lunnconfig BCM_CYGNUS_PHY 27397c84389SAndrew Lunn tristate "Broadcom Cygnus SoC internal PHY" 274*17cc9821SFlorian Fainelli depends on ARCH_BCM_IPROC || COMPILE_TEST 275d75b4a22SAndrew Lunn depends on MDIO_BCM_IPROC 276*17cc9821SFlorian Fainelli tristate "Broadcom Cygnus/Omega SoC internal PHY" 277d75b4a22SAndrew Lunn select BCM_NET_PHYLIB 278d75b4a22SAndrew Lunn ---help--- 279d75b4a22SAndrew Lunn This PHY driver is for the 1G internal PHYs of the Broadcom 280*17cc9821SFlorian Fainelli Cygnus and Omega Family SoC. 281d75b4a22SAndrew Lunn 282d75b4a22SAndrew Lunn Currently supports internal PHY's used in the BCM11300, 283d75b4a22SAndrew Lunn BCM11320, BCM11350, BCM11360, BCM58300, BCM58302, 284d75b4a22SAndrew Lunn BCM58303 & BCM58305 Broadcom Cygnus SoCs. 285d75b4a22SAndrew Lunn 286d75b4a22SAndrew Lunnconfig BCM_NET_PHYLIB 287d75b4a22SAndrew Lunn tristate 288d75b4a22SAndrew Lunn 289d75b4a22SAndrew Lunnconfig BROADCOM_PHY 29097c84389SAndrew Lunn tristate "Broadcom PHYs" 291d75b4a22SAndrew Lunn select BCM_NET_PHYLIB 292d75b4a22SAndrew Lunn ---help--- 293d75b4a22SAndrew Lunn Currently supports the BCM5411, BCM5421, BCM5461, BCM54616S, BCM5464, 294b14995acSJon Mason BCM5481, BCM54810 and BCM5482 PHYs. 295d75b4a22SAndrew Lunn 296d75b4a22SAndrew Lunnconfig CICADA_PHY 29797c84389SAndrew Lunn tristate "Cicada PHYs" 298d75b4a22SAndrew Lunn ---help--- 299d75b4a22SAndrew Lunn Currently supports the cis8204 300d75b4a22SAndrew Lunn 30115b9e533SBogdan Purcareataconfig CORTINA_PHY 30215b9e533SBogdan Purcareata tristate "Cortina EDC CDR 10G Ethernet PHY" 30315b9e533SBogdan Purcareata ---help--- 30415b9e533SBogdan Purcareata Currently supports the CS4340 phy. 30515b9e533SBogdan Purcareata 306d75b4a22SAndrew Lunnconfig DAVICOM_PHY 30797c84389SAndrew Lunn tristate "Davicom PHYs" 308d75b4a22SAndrew Lunn ---help--- 309d75b4a22SAndrew Lunn Currently supports dm9161e and dm9131 310d75b4a22SAndrew Lunn 31187461f7aSDan Murphyconfig DP83822_PHY 31287461f7aSDan Murphy tristate "Texas Instruments DP83822 PHY" 31387461f7aSDan Murphy ---help--- 31487461f7aSDan Murphy Supports the DP83822 PHY. 31587461f7aSDan Murphy 316b753a9faSDan Murphyconfig DP83TC811_PHY 317b753a9faSDan Murphy tristate "Texas Instruments DP83TC822 PHY" 318b753a9faSDan Murphy ---help--- 319b753a9faSDan Murphy Supports the DP83TC822 PHY. 320b753a9faSDan Murphy 321d75b4a22SAndrew Lunnconfig DP83848_PHY 32297c84389SAndrew Lunn tristate "Texas Instruments DP83848 PHY" 323d75b4a22SAndrew Lunn ---help--- 324d75b4a22SAndrew Lunn Supports the DP83848 PHY. 325d75b4a22SAndrew Lunn 326d75b4a22SAndrew Lunnconfig DP83867_PHY 32797c84389SAndrew Lunn tristate "Texas Instruments DP83867 Gigabit PHY" 328d75b4a22SAndrew Lunn ---help--- 329d75b4a22SAndrew Lunn Currently supports the DP83867 PHY. 330d75b4a22SAndrew Lunn 331d75b4a22SAndrew Lunnconfig FIXED_PHY 33297c84389SAndrew Lunn tristate "MDIO Bus/PHY emulation with fixed speed/link PHYs" 333d75b4a22SAndrew Lunn depends on PHYLIB 334d75b4a22SAndrew Lunn select SWPHY 335d75b4a22SAndrew Lunn ---help--- 336d75b4a22SAndrew Lunn Adds the platform "fixed" MDIO Bus to cover the boards that use 337d75b4a22SAndrew Lunn PHYs that are not connected to the real MDIO bus. 338d75b4a22SAndrew Lunn 339d75b4a22SAndrew Lunn Currently tested with mpc866ads and mpc8349e-mitx. 340d75b4a22SAndrew Lunn 341d75b4a22SAndrew Lunnconfig ICPLUS_PHY 34297c84389SAndrew Lunn tristate "ICPlus PHYs" 343d75b4a22SAndrew Lunn ---help--- 344d75b4a22SAndrew Lunn Currently supports the IP175C and IP1001 PHYs. 345ddc24ae1SArun Parameswaran 346112b558dSHauke Mehrtensconfig INTEL_XWAY_PHY 34797c84389SAndrew Lunn tristate "Intel XWAY PHYs" 348112b558dSHauke Mehrtens ---help--- 349112b558dSHauke Mehrtens Supports the Intel XWAY (former Lantiq) 11G and 22E PHYs. 350112b558dSHauke Mehrtens These PHYs are marked as standalone chips under the names 351112b558dSHauke Mehrtens PEF 7061, PEF 7071 and PEF 7072 or integrated into the Intel 352112b558dSHauke Mehrtens SoCs xRX200, xRX300, xRX330, xRX350 and xRX550. 353112b558dSHauke Mehrtens 354d75b4a22SAndrew Lunnconfig LSI_ET1011C_PHY 35597c84389SAndrew Lunn tristate "LSI ET1011C PHY" 356d75b4a22SAndrew Lunn ---help--- 357d75b4a22SAndrew Lunn Supports the LSI ET1011C PHY. 3584960e4b1SDongpo Li 359d75b4a22SAndrew Lunnconfig LXT_PHY 36097c84389SAndrew Lunn tristate "Intel LXT PHYs" 361d75b4a22SAndrew Lunn ---help--- 362d75b4a22SAndrew Lunn Currently supports the lxt970, lxt971 363d75b4a22SAndrew Lunn 364d75b4a22SAndrew Lunnconfig MARVELL_PHY 36597c84389SAndrew Lunn tristate "Marvell PHYs" 366d75b4a22SAndrew Lunn ---help--- 367d75b4a22SAndrew Lunn Currently has a driver for the 88E1011S 368d75b4a22SAndrew Lunn 36920b2af32SRussell Kingconfig MARVELL_10G_PHY 37020b2af32SRussell King tristate "Marvell Alaska 10Gbit PHYs" 37120b2af32SRussell King ---help--- 37220b2af32SRussell King Support for the Marvell Alaska MV88X3310 and compatible PHYs. 37320b2af32SRussell King 3747334b3e4SNeil Armstrongconfig MESON_GXL_PHY 3757334b3e4SNeil Armstrong tristate "Amlogic Meson GXL Internal PHY" 3762ebae8bdSJean Delvare depends on ARCH_MESON || COMPILE_TEST 3777334b3e4SNeil Armstrong ---help--- 3787334b3e4SNeil Armstrong Currently has a driver for the Amlogic Meson GXL Internal PHY 3797334b3e4SNeil Armstrong 380d75b4a22SAndrew Lunnconfig MICREL_PHY 38197c84389SAndrew Lunn tristate "Micrel PHYs" 382d75b4a22SAndrew Lunn ---help--- 383d75b4a22SAndrew Lunn Supports the KSZ9021, VSC8201, KS8001 PHYs. 384d75b4a22SAndrew Lunn 385d75b4a22SAndrew Lunnconfig MICROCHIP_PHY 38697c84389SAndrew Lunn tristate "Microchip PHYs" 38743b3cf66SIyappan Subramanian help 388d75b4a22SAndrew Lunn Supports the LAN88XX PHYs. 38943b3cf66SIyappan Subramanian 3903e50d2daSNisar Sayedconfig MICROCHIP_T1_PHY 3913e50d2daSNisar Sayed tristate "Microchip T1 PHYs" 3923e50d2daSNisar Sayed ---help--- 3933e50d2daSNisar Sayed Supports the LAN87XX PHYs. 3943e50d2daSNisar Sayed 395d50736a8SRaju Lakkarajuconfig MICROSEMI_PHY 39697c84389SAndrew Lunn tristate "Microsemi PHYs" 397d50736a8SRaju Lakkaraju ---help--- 398af1fee98SRaju Lakkaraju Currently supports VSC8530, VSC8531, VSC8540 and VSC8541 PHYs 399d50736a8SRaju Lakkaraju 400d75b4a22SAndrew Lunnconfig NATIONAL_PHY 40197c84389SAndrew Lunn tristate "National Semiconductor PHYs" 402d75b4a22SAndrew Lunn ---help--- 403d75b4a22SAndrew Lunn Currently supports the DP83865 PHY. 404d75b4a22SAndrew Lunn 405d75b4a22SAndrew Lunnconfig QSEMI_PHY 40697c84389SAndrew Lunn tristate "Quality Semiconductor PHYs" 407d75b4a22SAndrew Lunn ---help--- 408d75b4a22SAndrew Lunn Currently supports the qs6612 409d75b4a22SAndrew Lunn 410d75b4a22SAndrew Lunnconfig REALTEK_PHY 41197c84389SAndrew Lunn tristate "Realtek PHYs" 412d75b4a22SAndrew Lunn ---help--- 413d75b4a22SAndrew Lunn Supports the Realtek 821x PHY. 414d75b4a22SAndrew Lunn 415812b5ca7SBernd Edlingerconfig RENESAS_PHY 416812b5ca7SBernd Edlinger tristate "Driver for Renesas PHYs" 417812b5ca7SBernd Edlinger ---help--- 418812b5ca7SBernd Edlinger Supports the Renesas PHYs uPD60620 and uPD60620A. 419812b5ca7SBernd Edlinger 420baf6ee81SDavid Wuconfig ROCKCHIP_PHY 421baf6ee81SDavid Wu tristate "Driver for Rockchip Ethernet PHYs" 422baf6ee81SDavid Wu ---help--- 423baf6ee81SDavid Wu Currently supports the integrated Ethernet PHY. 424baf6ee81SDavid Wu 425d75b4a22SAndrew Lunnconfig SMSC_PHY 42697c84389SAndrew Lunn tristate "SMSC PHYs" 427d75b4a22SAndrew Lunn ---help--- 428d75b4a22SAndrew Lunn Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs 429d75b4a22SAndrew Lunn 430d75b4a22SAndrew Lunnconfig STE10XP 43197c84389SAndrew Lunn tristate "STMicroelectronics STe10Xp PHYs" 432d75b4a22SAndrew Lunn ---help--- 433d75b4a22SAndrew Lunn This is the driver for the STe100p and STe101p PHYs. 434d75b4a22SAndrew Lunn 435d75b4a22SAndrew Lunnconfig TERANETICS_PHY 43697c84389SAndrew Lunn tristate "Teranetics PHYs" 437d75b4a22SAndrew Lunn ---help--- 438d75b4a22SAndrew Lunn Currently supports the Teranetics TN2020 439d75b4a22SAndrew Lunn 440d75b4a22SAndrew Lunnconfig VITESSE_PHY 44197c84389SAndrew Lunn tristate "Vitesse PHYs" 442d75b4a22SAndrew Lunn ---help--- 443d75b4a22SAndrew Lunn Currently supports the vsc8244 444d75b4a22SAndrew Lunn 445f411a616SAppana Durga Kedareswara Raoconfig XILINX_GMII2RGMII 446f411a616SAppana Durga Kedareswara Rao tristate "Xilinx GMII2RGMII converter driver" 447f411a616SAppana Durga Kedareswara Rao ---help--- 448f411a616SAppana Durga Kedareswara Rao This driver support xilinx GMII to RGMII IP core it provides 449f411a616SAppana Durga Kedareswara Rao the Reduced Gigabit Media Independent Interface(RGMII) between 450f411a616SAppana Durga Kedareswara Rao Ethernet physical media devices and the Gigabit Ethernet controller. 451f411a616SAppana Durga Kedareswara Rao 45253f99941SJan Engelhardtendif # PHYLIB 453a8e510f6SFrederic LAMBERT 454a8e510f6SFrederic LAMBERTconfig MICREL_KS8995MA 455a8e510f6SFrederic LAMBERT tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch" 456a8e510f6SFrederic LAMBERT depends on SPI 457