xref: /linux/drivers/net/phy/Kconfig (revision e4f9ba642f0b59a7ba3d34e7df7b82c732c31640)
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
10a7fb107bSFlorian Fainelliif MDIO_DEVICE
11a7fb107bSFlorian Fainelli
124c3464a8SArnd Bergmannconfig MDIO_BUS
134c3464a8SArnd Bergmann	tristate
149e8d438eSFlorian Fainelli	default m if PHYLIB=m
154c3464a8SArnd Bergmann	default MDIO_DEVICE
164c3464a8SArnd Bergmann	help
174c3464a8SArnd Bergmann	  This internal symbol is used for link time dependencies and it
184c3464a8SArnd Bergmann	  reflects whether the mdio_bus/mdio_device code is built as a
194c3464a8SArnd Bergmann	  loadable module or built-in.
204c3464a8SArnd Bergmann
214c3464a8SArnd Bergmannif MDIO_BUS
2200db8189SAndy Fleming
23d75b4a22SAndrew Lunnconfig MDIO_BCM_IPROC
24d75b4a22SAndrew Lunn	tristate "Broadcom iProc MDIO bus controller"
25d75b4a22SAndrew Lunn	depends on ARCH_BCM_IPROC || COMPILE_TEST
26d75b4a22SAndrew Lunn	depends on HAS_IOMEM && OF_MDIO
27e9976d7cSDavid Daney	help
28d75b4a22SAndrew Lunn	  This module provides a driver for the MDIO busses found in the
29d75b4a22SAndrew Lunn	  Broadcom iProc SoC's.
30e9976d7cSDavid Daney
31d75b4a22SAndrew Lunnconfig MDIO_BCM_UNIMAC
32d75b4a22SAndrew Lunn	tristate "Broadcom UniMAC MDIO bus controller"
338be7d96eSFlorian Fainelli	depends on HAS_IOMEM
34792aec47SWoojung.Huh@microchip.com	help
35d75b4a22SAndrew Lunn	  This module provides a driver for the Broadcom UniMAC MDIO busses.
36d75b4a22SAndrew Lunn	  This hardware can be found in the Broadcom GENET Ethernet MAC
37d75b4a22SAndrew Lunn	  controllers as well as some Broadcom Ethernet switches such as the
38d75b4a22SAndrew Lunn	  Starfighter 2 switches.
397c32f470SVitaly Bordug
40e2ec4581SScott Woodconfig MDIO_BITBANG
4197c84389SAndrew Lunn	tristate "Bitbanged MDIO buses"
42e2ec4581SScott Wood	help
43e2ec4581SScott Wood	  This module implements the MDIO bus protocol in software,
44e2ec4581SScott Wood	  for use by low level drivers that export the ability to
45e2ec4581SScott Wood	  drive the relevant pins.
46e2ec4581SScott Wood
47e2ec4581SScott Wood	  If in doubt, say N.
48e2ec4581SScott Wood
490ca2997dSDavid Daneyconfig MDIO_BUS_MUX
500ca2997dSDavid Daney	tristate
510ca2997dSDavid Daney	depends on OF_MDIO
520ca2997dSDavid Daney	help
530ca2997dSDavid Daney	  This module provides a driver framework for MDIO bus
540ca2997dSDavid Daney	  multiplexers which connect one of several child MDIO busses
550ca2997dSDavid Daney	  to a parent bus.  Switching between child busses is done by
560ca2997dSDavid Daney	  device specific drivers.
570ca2997dSDavid Daney
58d75b4a22SAndrew Lunnconfig MDIO_BUS_MUX_BCM_IPROC
5997c84389SAndrew Lunn	tristate "Broadcom iProc based MDIO bus multiplexers"
60d75b4a22SAndrew Lunn	depends on OF && OF_MDIO && (ARCH_BCM_IPROC || COMPILE_TEST)
61d75b4a22SAndrew Lunn	select MDIO_BUS_MUX
62d75b4a22SAndrew Lunn	default ARCH_BCM_IPROC
63d75b4a22SAndrew Lunn	help
64d75b4a22SAndrew Lunn	  This module provides a driver for MDIO bus multiplexers found in
65d75b4a22SAndrew Lunn	  iProc based Broadcom SoCs. This multiplexer connects one of several
66d75b4a22SAndrew Lunn	  child MDIO bus to a parent bus. Buses could be internal as well as
67d75b4a22SAndrew Lunn	  external and selection logic lies inside the same multiplexer.
68d75b4a22SAndrew Lunn
69416912a1SDavid Daneyconfig MDIO_BUS_MUX_GPIO
7097c84389SAndrew Lunn	tristate "GPIO controlled MDIO bus multiplexers"
71416912a1SDavid Daney	depends on OF_GPIO && OF_MDIO
72416912a1SDavid Daney	select MDIO_BUS_MUX
73416912a1SDavid Daney	help
74416912a1SDavid Daney	  This module provides a driver for MDIO bus multiplexers that
75416912a1SDavid Daney	  are controlled via GPIO lines.  The multiplexer connects one of
76416912a1SDavid Daney	  several child MDIO busses to a parent bus.  Child bus
77416912a1SDavid Daney	  selection is under the control of GPIO lines.
78416912a1SDavid Daney
7970904251SJerome Brunetconfig MDIO_BUS_MUX_MESON_G12A
8070904251SJerome Brunet	tristate "Amlogic G12a based MDIO bus multiplexer"
8170904251SJerome Brunet	depends on ARCH_MESON || COMPILE_TEST
8270904251SJerome Brunet	depends on OF_MDIO && HAS_IOMEM && COMMON_CLK
8370904251SJerome Brunet	select MDIO_BUS_MUX
8470904251SJerome Brunet	default m if ARCH_MESON
8570904251SJerome Brunet	help
8670904251SJerome Brunet	  This module provides a driver for the MDIO multiplexer/glue of
8770904251SJerome Brunet	  the amlogic g12a SoC. The multiplexers connects either the external
8870904251SJerome Brunet	  or the internal MDIO bus to the parent bus.
8970904251SJerome Brunet
906cc2ff82STimur Tabiconfig MDIO_BUS_MUX_MMIOREG
9197c84389SAndrew Lunn	tristate "MMIO device-controlled MDIO bus multiplexers"
92cfa52005SRob Herring	depends on OF_MDIO && HAS_IOMEM
936cc2ff82STimur Tabi	select MDIO_BUS_MUX
946cc2ff82STimur Tabi	help
956cc2ff82STimur Tabi	  This module provides a driver for MDIO bus multiplexers that
966cc2ff82STimur Tabi	  are controlled via a simple memory-mapped device, like an FPGA.
976cc2ff82STimur Tabi	  The multiplexer connects one of several child MDIO busses to a
986cc2ff82STimur Tabi	  parent bus.  Child bus selection is under the control of one of
996cc2ff82STimur Tabi	  the FPGA's registers.
1006cc2ff82STimur Tabi
101c642bbbcSCorentin Labbe	  Currently, only 8/16/32 bits registers are supported.
1026cc2ff82STimur Tabi
1037865ad65SPankaj Bansalconfig MDIO_BUS_MUX_MULTIPLEXER
1047865ad65SPankaj Bansal	tristate "MDIO bus multiplexer using kernel multiplexer subsystem"
10564af7dc3SArnd Bergmann	depends on OF_MDIO
1067865ad65SPankaj Bansal	select MULTIPLEXER
1077865ad65SPankaj Bansal	select MDIO_BUS_MUX
1087865ad65SPankaj Bansal	help
1097865ad65SPankaj Bansal	  This module provides a driver for MDIO bus multiplexer
1107865ad65SPankaj Bansal	  that is controlled via the kernel multiplexer subsystem. The
1117865ad65SPankaj Bansal	  bus multiplexer connects one of several child MDIO busses to
1127865ad65SPankaj Bansal	  a parent bus.  Child bus selection is under the control of
1137865ad65SPankaj Bansal	  the kernel multiplexer subsystem.
1147865ad65SPankaj Bansal
115d75b4a22SAndrew Lunnconfig MDIO_CAVIUM
116d75b4a22SAndrew Lunn	tristate
11798bc865aSPramod Kumar
118d75b4a22SAndrew Lunnconfig MDIO_GPIO
11997c84389SAndrew Lunn	tristate "GPIO lib-based bitbanged MDIO buses"
120d55207e3SGeert Uytterhoeven	depends on MDIO_BITBANG
121d55207e3SGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
122d75b4a22SAndrew Lunn	---help---
123d75b4a22SAndrew Lunn	  Supports GPIO lib-based MDIO busses.
124ddc24ae1SArun Parameswaran
125d75b4a22SAndrew Lunn	  To compile this driver as a module, choose M here: the module
126d75b4a22SAndrew Lunn	  will be called mdio-gpio.
127d75b4a22SAndrew Lunn
128d75b4a22SAndrew Lunnconfig MDIO_HISI_FEMAC
129d75b4a22SAndrew Lunn	tristate "Hisilicon FEMAC MDIO bus controller"
130ddc24ae1SArun Parameswaran	depends on HAS_IOMEM && OF_MDIO
131ddc24ae1SArun Parameswaran	help
132ddc24ae1SArun Parameswaran	  This module provides a driver for the MDIO busses found in the
133d75b4a22SAndrew Lunn	  Hisilicon SoC that have an Fast Ethernet MAC.
134d75b4a22SAndrew Lunn
135453d00deSRussell Kingconfig MDIO_I2C
136453d00deSRussell King	tristate
137453d00deSRussell King	depends on I2C
138453d00deSRussell King	help
139453d00deSRussell King	  Support I2C based PHYs.  This provides a MDIO bus bridged
140453d00deSRussell King	  to I2C to allow PHYs connected in I2C mode to be accessed
141453d00deSRussell King	  using the existing infrastructure.
142453d00deSRussell King
143453d00deSRussell King	  This is library mode.
144453d00deSRussell King
145d75b4a22SAndrew Lunnconfig MDIO_MOXART
146d75b4a22SAndrew Lunn	tristate "MOXA ART MDIO interface support"
1473c0596f8SFlorian Fainelli	depends on ARCH_MOXART || COMPILE_TEST
148d75b4a22SAndrew Lunn	help
149d75b4a22SAndrew Lunn	  This driver supports the MDIO interface found in the network
150d75b4a22SAndrew Lunn	  interface units of the MOXA ART SoC
151d75b4a22SAndrew Lunn
152542671feSAlexandre Belloniconfig MDIO_MSCC_MIIM
153542671feSAlexandre Belloni	tristate "Microsemi MIIM interface support"
154542671feSAlexandre Belloni	depends on HAS_IOMEM
155542671feSAlexandre Belloni	help
156542671feSAlexandre Belloni	  This driver supports the MIIM (MDIO) interface found in the network
157542671feSAlexandre Belloni	  switches of the Microsemi SoCs
158542671feSAlexandre Belloni
159d75b4a22SAndrew Lunnconfig MDIO_OCTEON
16097c84389SAndrew Lunn	tristate "Octeon and some ThunderX SOCs MDIO buses"
161d75b4a22SAndrew Lunn	depends on 64BIT
162cd47512eSRandy Dunlap	depends on HAS_IOMEM && OF_MDIO
163d75b4a22SAndrew Lunn	select MDIO_CAVIUM
164d75b4a22SAndrew Lunn	help
165d75b4a22SAndrew Lunn	  This module provides a driver for the Octeon and ThunderX MDIO
166d75b4a22SAndrew Lunn	  buses. It is required by the Octeon and ThunderX ethernet device
167d75b4a22SAndrew Lunn	  drivers on some systems.
168d75b4a22SAndrew Lunn
169d75b4a22SAndrew Lunnconfig MDIO_SUN4I
170d75b4a22SAndrew Lunn	tristate "Allwinner sun4i MDIO interface support"
1713c0596f8SFlorian Fainelli	depends on ARCH_SUNXI || COMPILE_TEST
172d75b4a22SAndrew Lunn	help
173d75b4a22SAndrew Lunn	  This driver supports the MDIO interface found in the network
174d75b4a22SAndrew Lunn	  interface units of the Allwinner SoC that have an EMAC (A10,
175d75b4a22SAndrew Lunn	  A12, A10s, etc.)
176d75b4a22SAndrew Lunn
177d75b4a22SAndrew Lunnconfig MDIO_THUNDER
17897c84389SAndrew Lunn	tristate "ThunderX SOCs MDIO buses"
179d75b4a22SAndrew Lunn	depends on 64BIT
180d75b4a22SAndrew Lunn	depends on PCI
181d75b4a22SAndrew Lunn	select MDIO_CAVIUM
182d75b4a22SAndrew Lunn	help
183d75b4a22SAndrew Lunn	  This driver supports the MDIO interfaces found on Cavium
184d75b4a22SAndrew Lunn	  ThunderX SoCs when the MDIO bus device appears as a PCI
185d75b4a22SAndrew Lunn	  device.
186d75b4a22SAndrew Lunn
187d75b4a22SAndrew Lunnconfig MDIO_XGENE
188d75b4a22SAndrew Lunn	tristate "APM X-Gene SoC MDIO bus controller"
1897aa6ec22SLaura Abbott	depends on ARCH_XGENE || COMPILE_TEST
190d75b4a22SAndrew Lunn	help
191d75b4a22SAndrew Lunn	  This module provides a driver for the MDIO busses found in the
192d75b4a22SAndrew Lunn	  APM X-Gene SoC's.
193d75b4a22SAndrew Lunn
19490eff909SFlorian Fainelliendif
195a7fb107bSFlorian Fainelliendif
19690eff909SFlorian Fainelli
1979525ae83SRussell Kingconfig PHYLINK
1989525ae83SRussell King	tristate
1999525ae83SRussell King	depends on NETDEVICES
2009525ae83SRussell King	select PHYLIB
2019525ae83SRussell King	select SWPHY
2029525ae83SRussell King	help
2039525ae83SRussell King	  PHYlink models the link between the PHY and MAC, allowing fixed
2049525ae83SRussell King	  configuration links, PHYs, and Serdes links with MAC level
2059525ae83SRussell King	  autonegotiation modes.
2069525ae83SRussell King
2076073512cSJerome Brunetmenuconfig PHYLIB
2089e8d438eSFlorian Fainelli	tristate "PHY Device support and infrastructure"
2096073512cSJerome Brunet	depends on NETDEVICES
2106073512cSJerome Brunet	select MDIO_DEVICE
2116073512cSJerome Brunet	help
2126073512cSJerome Brunet	  Ethernet controllers are usually attached to PHY
2136073512cSJerome Brunet	  devices.  This option provides infrastructure for
2146073512cSJerome Brunet	  managing PHY devices.
2156073512cSJerome Brunet
21690eff909SFlorian Fainelliif PHYLIB
21790eff909SFlorian Fainelli
21890eff909SFlorian Fainelliconfig SWPHY
21990eff909SFlorian Fainelli	bool
22090eff909SFlorian Fainelli
22190eff909SFlorian Fainelliconfig LED_TRIGGER_PHY
22290eff909SFlorian Fainelli	bool "Support LED triggers for tracking link state"
22390eff909SFlorian Fainelli	depends on LEDS_TRIGGERS
22490eff909SFlorian Fainelli	---help---
22590eff909SFlorian Fainelli	  Adds support for a set of LED trigger events per-PHY.  Link
22690eff909SFlorian Fainelli	  state change will trigger the events, for consumption by an
22790eff909SFlorian Fainelli	  LED class driver.  There are triggers for each link speed currently
2283928ee64SMaciej S. Szmigiero	  supported by the PHY and also a one common "link" trigger as a
2293928ee64SMaciej S. Szmigiero	  logical-or of all the link speed ones.
2303928ee64SMaciej S. Szmigiero	  All these triggers are named according to the following pattern:
23190eff909SFlorian Fainelli	      <mii bus id>:<phy>:<speed>
23290eff909SFlorian Fainelli
23390eff909SFlorian Fainelli	  Where speed is in the form:
2343928ee64SMaciej S. Szmigiero		<Speed in megabits>Mbps OR <Speed in gigabits>Gbps OR link
2353928ee64SMaciej S. Szmigiero		for any speed known to the PHY.
23690eff909SFlorian Fainelli
23790eff909SFlorian Fainelli
238d75b4a22SAndrew Lunncomment "MII PHY device drivers"
239d75b4a22SAndrew Lunn
24073970055SRussell Kingconfig SFP
24173970055SRussell King	tristate "SFP cage support"
24273970055SRussell King	depends on I2C && PHYLINK
243b5293443SGuenter Roeck	depends on HWMON || HWMON=n
24473970055SRussell King	select MDIO_I2C
24573970055SRussell King
246d75b4a22SAndrew Lunnconfig AMD_PHY
24797c84389SAndrew Lunn	tristate "AMD PHYs"
248d75b4a22SAndrew Lunn	---help---
249d75b4a22SAndrew Lunn	  Currently supports the am79c874
250d75b4a22SAndrew Lunn
251d75b4a22SAndrew Lunnconfig AQUANTIA_PHY
25297c84389SAndrew Lunn	tristate "Aquantia PHYs"
253d75b4a22SAndrew Lunn	---help---
254d75b4a22SAndrew Lunn	  Currently supports the Aquantia AQ1202, AQ2104, AQR105, AQR405
255d75b4a22SAndrew Lunn
25631dd83b9SMichael Schmitzconfig ASIX_PHY
25731dd83b9SMichael Schmitz	tristate "Asix PHYs"
25831dd83b9SMichael Schmitz	help
25931dd83b9SMichael Schmitz	  Currently supports the Asix Electronics PHY found in the X-Surf 100
26031dd83b9SMichael Schmitz	  AX88796B package.
26131dd83b9SMichael Schmitz
262d75b4a22SAndrew Lunnconfig AT803X_PHY
26397c84389SAndrew Lunn	tristate "AT803X PHYs"
264d75b4a22SAndrew Lunn	---help---
265d75b4a22SAndrew Lunn	  Currently supports the AT8030 and AT8035 model
266d75b4a22SAndrew Lunn
267d75b4a22SAndrew Lunnconfig BCM63XX_PHY
26897c84389SAndrew Lunn	tristate "Broadcom 63xx SOCs internal PHY"
26915d8daf7SAndrew Lunn	depends on BCM63XX || COMPILE_TEST
270d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
271d75b4a22SAndrew Lunn	---help---
272d75b4a22SAndrew Lunn	  Currently supports the 6348 and 6358 PHYs.
273d75b4a22SAndrew Lunn
274d75b4a22SAndrew Lunnconfig BCM7XXX_PHY
27597c84389SAndrew Lunn	tristate "Broadcom 7xxx SOCs internal PHYs"
276d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
277d75b4a22SAndrew Lunn	---help---
278d75b4a22SAndrew Lunn	  Currently supports the BCM7366, BCM7439, BCM7445, and
279d75b4a22SAndrew Lunn	  40nm and 65nm generation of BCM7xxx Set Top Box SoCs.
280d75b4a22SAndrew Lunn
281d75b4a22SAndrew Lunnconfig BCM87XX_PHY
28297c84389SAndrew Lunn	tristate "Broadcom BCM8706 and BCM8727 PHYs"
283d75b4a22SAndrew Lunn	help
284d75b4a22SAndrew Lunn	  Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs.
285d75b4a22SAndrew Lunn
286d75b4a22SAndrew Lunnconfig BCM_CYGNUS_PHY
287a7a01ab3SFlorian Fainelli	tristate "Broadcom Cygnus/Omega SoC internal PHY"
28817cc9821SFlorian Fainelli	depends on ARCH_BCM_IPROC || COMPILE_TEST
289d75b4a22SAndrew Lunn	depends on MDIO_BCM_IPROC
290d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
291d75b4a22SAndrew Lunn	---help---
292d75b4a22SAndrew Lunn	  This PHY driver is for the 1G internal PHYs of the Broadcom
29317cc9821SFlorian Fainelli	  Cygnus and Omega Family SoC.
294d75b4a22SAndrew Lunn
295d75b4a22SAndrew Lunn	  Currently supports internal PHY's used in the BCM11300,
296d75b4a22SAndrew Lunn	  BCM11320, BCM11350, BCM11360, BCM58300, BCM58302,
297d75b4a22SAndrew Lunn	  BCM58303 & BCM58305 Broadcom Cygnus SoCs.
298d75b4a22SAndrew Lunn
299d75b4a22SAndrew Lunnconfig BCM_NET_PHYLIB
300d75b4a22SAndrew Lunn	tristate
301d75b4a22SAndrew Lunn
302d75b4a22SAndrew Lunnconfig BROADCOM_PHY
30397c84389SAndrew Lunn	tristate "Broadcom PHYs"
304d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
305d75b4a22SAndrew Lunn	---help---
306d75b4a22SAndrew Lunn	  Currently supports the BCM5411, BCM5421, BCM5461, BCM54616S, BCM5464,
307b14995acSJon Mason	  BCM5481, BCM54810 and BCM5482 PHYs.
308d75b4a22SAndrew Lunn
309d75b4a22SAndrew Lunnconfig CICADA_PHY
31097c84389SAndrew Lunn	tristate "Cicada PHYs"
311d75b4a22SAndrew Lunn	---help---
312d75b4a22SAndrew Lunn	  Currently supports the cis8204
313d75b4a22SAndrew Lunn
31415b9e533SBogdan Purcareataconfig CORTINA_PHY
31515b9e533SBogdan Purcareata	tristate "Cortina EDC CDR 10G Ethernet PHY"
31615b9e533SBogdan Purcareata	---help---
31715b9e533SBogdan Purcareata	  Currently supports the CS4340 phy.
31815b9e533SBogdan Purcareata
319d75b4a22SAndrew Lunnconfig DAVICOM_PHY
32097c84389SAndrew Lunn	tristate "Davicom PHYs"
321d75b4a22SAndrew Lunn	---help---
322d75b4a22SAndrew Lunn	  Currently supports dm9161e and dm9131
323d75b4a22SAndrew Lunn
32487461f7aSDan Murphyconfig DP83822_PHY
32587461f7aSDan Murphy	tristate "Texas Instruments DP83822 PHY"
32687461f7aSDan Murphy	---help---
32787461f7aSDan Murphy	  Supports the DP83822 PHY.
32887461f7aSDan Murphy
329b753a9faSDan Murphyconfig DP83TC811_PHY
330b753a9faSDan Murphy	tristate "Texas Instruments DP83TC822 PHY"
331b753a9faSDan Murphy	---help---
332b753a9faSDan Murphy	  Supports the DP83TC822 PHY.
333b753a9faSDan Murphy
334d75b4a22SAndrew Lunnconfig DP83848_PHY
33597c84389SAndrew Lunn	tristate "Texas Instruments DP83848 PHY"
336d75b4a22SAndrew Lunn	---help---
337d75b4a22SAndrew Lunn	  Supports the DP83848 PHY.
338d75b4a22SAndrew Lunn
339d75b4a22SAndrew Lunnconfig DP83867_PHY
34097c84389SAndrew Lunn	tristate "Texas Instruments DP83867 Gigabit PHY"
341d75b4a22SAndrew Lunn	---help---
342d75b4a22SAndrew Lunn	  Currently supports the DP83867 PHY.
343d75b4a22SAndrew Lunn
344d75b4a22SAndrew Lunnconfig FIXED_PHY
34597c84389SAndrew Lunn	tristate "MDIO Bus/PHY emulation with fixed speed/link PHYs"
346d75b4a22SAndrew Lunn	depends on PHYLIB
347d75b4a22SAndrew Lunn	select SWPHY
348d75b4a22SAndrew Lunn	---help---
349d75b4a22SAndrew Lunn	  Adds the platform "fixed" MDIO Bus to cover the boards that use
350d75b4a22SAndrew Lunn	  PHYs that are not connected to the real MDIO bus.
351d75b4a22SAndrew Lunn
352d75b4a22SAndrew Lunn	  Currently tested with mpc866ads and mpc8349e-mitx.
353d75b4a22SAndrew Lunn
354d75b4a22SAndrew Lunnconfig ICPLUS_PHY
35597c84389SAndrew Lunn	tristate "ICPlus PHYs"
356d75b4a22SAndrew Lunn	---help---
357d75b4a22SAndrew Lunn	  Currently supports the IP175C and IP1001 PHYs.
358ddc24ae1SArun Parameswaran
359112b558dSHauke Mehrtensconfig INTEL_XWAY_PHY
36097c84389SAndrew Lunn	tristate "Intel XWAY PHYs"
361112b558dSHauke Mehrtens	---help---
362112b558dSHauke Mehrtens	  Supports the Intel XWAY (former Lantiq) 11G and 22E PHYs.
363112b558dSHauke Mehrtens	  These PHYs are marked as standalone chips under the names
364112b558dSHauke Mehrtens	  PEF 7061, PEF 7071 and PEF 7072 or integrated into the Intel
365112b558dSHauke Mehrtens	  SoCs xRX200, xRX300, xRX330, xRX350 and xRX550.
366112b558dSHauke Mehrtens
367d75b4a22SAndrew Lunnconfig LSI_ET1011C_PHY
36897c84389SAndrew Lunn	tristate "LSI ET1011C PHY"
369d75b4a22SAndrew Lunn	---help---
370d75b4a22SAndrew Lunn	  Supports the LSI ET1011C PHY.
3714960e4b1SDongpo Li
372d75b4a22SAndrew Lunnconfig LXT_PHY
37397c84389SAndrew Lunn	tristate "Intel LXT PHYs"
374d75b4a22SAndrew Lunn	---help---
375d75b4a22SAndrew Lunn	  Currently supports the lxt970, lxt971
376d75b4a22SAndrew Lunn
377d75b4a22SAndrew Lunnconfig MARVELL_PHY
37897c84389SAndrew Lunn	tristate "Marvell PHYs"
379d75b4a22SAndrew Lunn	---help---
380d75b4a22SAndrew Lunn	  Currently has a driver for the 88E1011S
381d75b4a22SAndrew Lunn
38220b2af32SRussell Kingconfig MARVELL_10G_PHY
38320b2af32SRussell King	tristate "Marvell Alaska 10Gbit PHYs"
38420b2af32SRussell King	---help---
38520b2af32SRussell King	  Support for the Marvell Alaska MV88X3310 and compatible PHYs.
38620b2af32SRussell King
3877334b3e4SNeil Armstrongconfig MESON_GXL_PHY
3887334b3e4SNeil Armstrong	tristate "Amlogic Meson GXL Internal PHY"
3892ebae8bdSJean Delvare	depends on ARCH_MESON || COMPILE_TEST
3907334b3e4SNeil Armstrong	---help---
3917334b3e4SNeil Armstrong	  Currently has a driver for the Amlogic Meson GXL Internal PHY
3927334b3e4SNeil Armstrong
393d75b4a22SAndrew Lunnconfig MICREL_PHY
39497c84389SAndrew Lunn	tristate "Micrel PHYs"
395d75b4a22SAndrew Lunn	---help---
396d75b4a22SAndrew Lunn	  Supports the KSZ9021, VSC8201, KS8001 PHYs.
397d75b4a22SAndrew Lunn
398d75b4a22SAndrew Lunnconfig MICROCHIP_PHY
39997c84389SAndrew Lunn	tristate "Microchip PHYs"
40043b3cf66SIyappan Subramanian	help
401d75b4a22SAndrew Lunn	  Supports the LAN88XX PHYs.
40243b3cf66SIyappan Subramanian
4033e50d2daSNisar Sayedconfig MICROCHIP_T1_PHY
4043e50d2daSNisar Sayed	tristate "Microchip T1 PHYs"
4053e50d2daSNisar Sayed	---help---
4063e50d2daSNisar Sayed	  Supports the LAN87XX PHYs.
4073e50d2daSNisar Sayed
408d50736a8SRaju Lakkarajuconfig MICROSEMI_PHY
40997c84389SAndrew Lunn	tristate "Microsemi PHYs"
410d50736a8SRaju Lakkaraju	---help---
411*e4f9ba64SKavya Sree Kotagiri	  Currently supports VSC8514, VSC8530, VSC8531, VSC8540 and VSC8541 PHYs
412d50736a8SRaju Lakkaraju
413d75b4a22SAndrew Lunnconfig NATIONAL_PHY
41497c84389SAndrew Lunn	tristate "National Semiconductor PHYs"
415d75b4a22SAndrew Lunn	---help---
416d75b4a22SAndrew Lunn	  Currently supports the DP83865 PHY.
417d75b4a22SAndrew Lunn
418d75b4a22SAndrew Lunnconfig QSEMI_PHY
41997c84389SAndrew Lunn	tristate "Quality Semiconductor PHYs"
420d75b4a22SAndrew Lunn	---help---
421d75b4a22SAndrew Lunn	  Currently supports the qs6612
422d75b4a22SAndrew Lunn
423d75b4a22SAndrew Lunnconfig REALTEK_PHY
42497c84389SAndrew Lunn	tristate "Realtek PHYs"
425d75b4a22SAndrew Lunn	---help---
426d75b4a22SAndrew Lunn	  Supports the Realtek 821x PHY.
427d75b4a22SAndrew Lunn
428812b5ca7SBernd Edlingerconfig RENESAS_PHY
429812b5ca7SBernd Edlinger	tristate "Driver for Renesas PHYs"
430812b5ca7SBernd Edlinger	---help---
431812b5ca7SBernd Edlinger	  Supports the Renesas PHYs uPD60620 and uPD60620A.
432812b5ca7SBernd Edlinger
433baf6ee81SDavid Wuconfig ROCKCHIP_PHY
434baf6ee81SDavid Wu        tristate "Driver for Rockchip Ethernet PHYs"
435baf6ee81SDavid Wu        ---help---
436baf6ee81SDavid Wu          Currently supports the integrated Ethernet PHY.
437baf6ee81SDavid Wu
438d75b4a22SAndrew Lunnconfig SMSC_PHY
43997c84389SAndrew Lunn	tristate "SMSC PHYs"
440d75b4a22SAndrew Lunn	---help---
441d75b4a22SAndrew Lunn	  Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
442d75b4a22SAndrew Lunn
443d75b4a22SAndrew Lunnconfig STE10XP
44497c84389SAndrew Lunn	tristate "STMicroelectronics STe10Xp PHYs"
445d75b4a22SAndrew Lunn	---help---
446d75b4a22SAndrew Lunn	  This is the driver for the STe100p and STe101p PHYs.
447d75b4a22SAndrew Lunn
448d75b4a22SAndrew Lunnconfig TERANETICS_PHY
44997c84389SAndrew Lunn	tristate "Teranetics PHYs"
450d75b4a22SAndrew Lunn	---help---
451d75b4a22SAndrew Lunn	  Currently supports the Teranetics TN2020
452d75b4a22SAndrew Lunn
453d75b4a22SAndrew Lunnconfig VITESSE_PHY
45497c84389SAndrew Lunn	tristate "Vitesse PHYs"
455d75b4a22SAndrew Lunn	---help---
456d75b4a22SAndrew Lunn	  Currently supports the vsc8244
457d75b4a22SAndrew Lunn
458f411a616SAppana Durga Kedareswara Raoconfig XILINX_GMII2RGMII
459f411a616SAppana Durga Kedareswara Rao	tristate "Xilinx GMII2RGMII converter driver"
460f411a616SAppana Durga Kedareswara Rao	---help---
461f411a616SAppana Durga Kedareswara Rao	  This driver support xilinx GMII to RGMII IP core it provides
462f411a616SAppana Durga Kedareswara Rao	  the Reduced Gigabit Media Independent Interface(RGMII) between
463f411a616SAppana Durga Kedareswara Rao	  Ethernet physical media devices and the Gigabit Ethernet controller.
464f411a616SAppana Durga Kedareswara Rao
46553f99941SJan Engelhardtendif # PHYLIB
466a8e510f6SFrederic LAMBERT
467a8e510f6SFrederic LAMBERTconfig MICREL_KS8995MA
468a8e510f6SFrederic LAMBERT	tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch"
469a8e510f6SFrederic LAMBERT	depends on SPI
470