xref: /openbmc/linux/drivers/net/phy/Kconfig (revision 1814cff26739de7d02db6193bc620d0a4bdea676)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
200db8189SAndy Fleming#
300db8189SAndy Fleming# PHY Layer Configuration
400db8189SAndy Fleming#
500db8189SAndy Fleming
690eff909SFlorian Fainellimenuconfig MDIO_DEVICE
790eff909SFlorian Fainelli	tristate "MDIO bus device drivers"
800db8189SAndy Fleming	help
990eff909SFlorian Fainelli	  MDIO devices and driver infrastructure code.
1000db8189SAndy Fleming
11a7fb107bSFlorian Fainelliif MDIO_DEVICE
12a7fb107bSFlorian Fainelli
134c3464a8SArnd Bergmannconfig MDIO_BUS
144c3464a8SArnd Bergmann	tristate
159e8d438eSFlorian Fainelli	default m if PHYLIB=m
164c3464a8SArnd Bergmann	default MDIO_DEVICE
174c3464a8SArnd Bergmann	help
184c3464a8SArnd Bergmann	  This internal symbol is used for link time dependencies and it
194c3464a8SArnd Bergmann	  reflects whether the mdio_bus/mdio_device code is built as a
204c3464a8SArnd Bergmann	  loadable module or built-in.
214c3464a8SArnd Bergmann
224c3464a8SArnd Bergmannif MDIO_BUS
2300db8189SAndy Fleming
24*1814cff2SBartosz Golaszewskiconfig MDIO_DEVRES
25*1814cff2SBartosz Golaszewski	tristate
26*1814cff2SBartosz Golaszewski
27f160e994SAndrew Jefferyconfig MDIO_ASPEED
28f160e994SAndrew Jeffery	tristate "ASPEED MDIO bus controller"
29f160e994SAndrew Jeffery	depends on ARCH_ASPEED || COMPILE_TEST
30f160e994SAndrew Jeffery	depends on OF_MDIO && HAS_IOMEM
31f160e994SAndrew Jeffery	help
32f160e994SAndrew Jeffery	  This module provides a driver for the independent MDIO bus
33f160e994SAndrew Jeffery	  controllers found in the ASPEED AST2600 SoC. This is a driver for the
34f160e994SAndrew Jeffery	  third revision of the ASPEED MDIO register interface - the first two
35f160e994SAndrew Jeffery	  revisions are the "old" and "new" interfaces found in the AST2400 and
36f160e994SAndrew Jeffery	  AST2500, embedded in the MAC. For legacy reasons, FTGMAC100 driver
37f160e994SAndrew Jeffery	  continues to drive the embedded MDIO controller for the AST2400 and
38f160e994SAndrew Jeffery	  AST2500 SoCs, so say N if AST2600 support is not required.
39f160e994SAndrew Jeffery
40d75b4a22SAndrew Lunnconfig MDIO_BCM_IPROC
41d75b4a22SAndrew Lunn	tristate "Broadcom iProc MDIO bus controller"
42d75b4a22SAndrew Lunn	depends on ARCH_BCM_IPROC || COMPILE_TEST
43d75b4a22SAndrew Lunn	depends on HAS_IOMEM && OF_MDIO
44f76e4c16SScott Branden	default ARCH_BCM_IPROC
45e9976d7cSDavid Daney	help
46d75b4a22SAndrew Lunn	  This module provides a driver for the MDIO busses found in the
47d75b4a22SAndrew Lunn	  Broadcom iProc SoC's.
48e9976d7cSDavid Daney
49d75b4a22SAndrew Lunnconfig MDIO_BCM_UNIMAC
50d75b4a22SAndrew Lunn	tristate "Broadcom UniMAC MDIO bus controller"
518be7d96eSFlorian Fainelli	depends on HAS_IOMEM
52792aec47SWoojung.Huh@microchip.com	help
53d75b4a22SAndrew Lunn	  This module provides a driver for the Broadcom UniMAC MDIO busses.
54d75b4a22SAndrew Lunn	  This hardware can be found in the Broadcom GENET Ethernet MAC
55d75b4a22SAndrew Lunn	  controllers as well as some Broadcom Ethernet switches such as the
56d75b4a22SAndrew Lunn	  Starfighter 2 switches.
577c32f470SVitaly Bordug
58e2ec4581SScott Woodconfig MDIO_BITBANG
5997c84389SAndrew Lunn	tristate "Bitbanged MDIO buses"
60e2ec4581SScott Wood	help
61e2ec4581SScott Wood	  This module implements the MDIO bus protocol in software,
62e2ec4581SScott Wood	  for use by low level drivers that export the ability to
63e2ec4581SScott Wood	  drive the relevant pins.
64e2ec4581SScott Wood
65e2ec4581SScott Wood	  If in doubt, say N.
66e2ec4581SScott Wood
670ca2997dSDavid Daneyconfig MDIO_BUS_MUX
680ca2997dSDavid Daney	tristate
690ca2997dSDavid Daney	depends on OF_MDIO
700ca2997dSDavid Daney	help
710ca2997dSDavid Daney	  This module provides a driver framework for MDIO bus
720ca2997dSDavid Daney	  multiplexers which connect one of several child MDIO busses
730ca2997dSDavid Daney	  to a parent bus.  Switching between child busses is done by
740ca2997dSDavid Daney	  device specific drivers.
750ca2997dSDavid Daney
76d75b4a22SAndrew Lunnconfig MDIO_BUS_MUX_BCM_IPROC
7797c84389SAndrew Lunn	tristate "Broadcom iProc based MDIO bus multiplexers"
78d75b4a22SAndrew Lunn	depends on OF && OF_MDIO && (ARCH_BCM_IPROC || COMPILE_TEST)
79d75b4a22SAndrew Lunn	select MDIO_BUS_MUX
80d75b4a22SAndrew Lunn	default ARCH_BCM_IPROC
81d75b4a22SAndrew Lunn	help
82d75b4a22SAndrew Lunn	  This module provides a driver for MDIO bus multiplexers found in
83d75b4a22SAndrew Lunn	  iProc based Broadcom SoCs. This multiplexer connects one of several
84d75b4a22SAndrew Lunn	  child MDIO bus to a parent bus. Buses could be internal as well as
85d75b4a22SAndrew Lunn	  external and selection logic lies inside the same multiplexer.
86d75b4a22SAndrew Lunn
87416912a1SDavid Daneyconfig MDIO_BUS_MUX_GPIO
8897c84389SAndrew Lunn	tristate "GPIO controlled MDIO bus multiplexers"
89416912a1SDavid Daney	depends on OF_GPIO && OF_MDIO
90416912a1SDavid Daney	select MDIO_BUS_MUX
91416912a1SDavid Daney	help
92416912a1SDavid Daney	  This module provides a driver for MDIO bus multiplexers that
93416912a1SDavid Daney	  are controlled via GPIO lines.  The multiplexer connects one of
94416912a1SDavid Daney	  several child MDIO busses to a parent bus.  Child bus
95416912a1SDavid Daney	  selection is under the control of GPIO lines.
96416912a1SDavid Daney
9770904251SJerome Brunetconfig MDIO_BUS_MUX_MESON_G12A
9870904251SJerome Brunet	tristate "Amlogic G12a based MDIO bus multiplexer"
9970904251SJerome Brunet	depends on ARCH_MESON || COMPILE_TEST
10070904251SJerome Brunet	depends on OF_MDIO && HAS_IOMEM && COMMON_CLK
10170904251SJerome Brunet	select MDIO_BUS_MUX
10270904251SJerome Brunet	default m if ARCH_MESON
10370904251SJerome Brunet	help
10470904251SJerome Brunet	  This module provides a driver for the MDIO multiplexer/glue of
10570904251SJerome Brunet	  the amlogic g12a SoC. The multiplexers connects either the external
10670904251SJerome Brunet	  or the internal MDIO bus to the parent bus.
10770904251SJerome Brunet
1086cc2ff82STimur Tabiconfig MDIO_BUS_MUX_MMIOREG
10997c84389SAndrew Lunn	tristate "MMIO device-controlled MDIO bus multiplexers"
110cfa52005SRob Herring	depends on OF_MDIO && HAS_IOMEM
1116cc2ff82STimur Tabi	select MDIO_BUS_MUX
1126cc2ff82STimur Tabi	help
1136cc2ff82STimur Tabi	  This module provides a driver for MDIO bus multiplexers that
1146cc2ff82STimur Tabi	  are controlled via a simple memory-mapped device, like an FPGA.
1156cc2ff82STimur Tabi	  The multiplexer connects one of several child MDIO busses to a
1166cc2ff82STimur Tabi	  parent bus.  Child bus selection is under the control of one of
1176cc2ff82STimur Tabi	  the FPGA's registers.
1186cc2ff82STimur Tabi
119c642bbbcSCorentin Labbe	  Currently, only 8/16/32 bits registers are supported.
1206cc2ff82STimur Tabi
1217865ad65SPankaj Bansalconfig MDIO_BUS_MUX_MULTIPLEXER
1227865ad65SPankaj Bansal	tristate "MDIO bus multiplexer using kernel multiplexer subsystem"
12364af7dc3SArnd Bergmann	depends on OF_MDIO
1247865ad65SPankaj Bansal	select MULTIPLEXER
1257865ad65SPankaj Bansal	select MDIO_BUS_MUX
1267865ad65SPankaj Bansal	help
1277865ad65SPankaj Bansal	  This module provides a driver for MDIO bus multiplexer
1287865ad65SPankaj Bansal	  that is controlled via the kernel multiplexer subsystem. The
1297865ad65SPankaj Bansal	  bus multiplexer connects one of several child MDIO busses to
1307865ad65SPankaj Bansal	  a parent bus.  Child bus selection is under the control of
1317865ad65SPankaj Bansal	  the kernel multiplexer subsystem.
1327865ad65SPankaj Bansal
133d75b4a22SAndrew Lunnconfig MDIO_CAVIUM
134d75b4a22SAndrew Lunn	tristate
13598bc865aSPramod Kumar
136d75b4a22SAndrew Lunnconfig MDIO_GPIO
13797c84389SAndrew Lunn	tristate "GPIO lib-based bitbanged MDIO buses"
138d55207e3SGeert Uytterhoeven	depends on MDIO_BITBANG
139d55207e3SGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
140a7f7f624SMasahiro Yamada	help
141d75b4a22SAndrew Lunn	  Supports GPIO lib-based MDIO busses.
142ddc24ae1SArun Parameswaran
143d75b4a22SAndrew Lunn	  To compile this driver as a module, choose M here: the module
144d75b4a22SAndrew Lunn	  will be called mdio-gpio.
145d75b4a22SAndrew Lunn
146d75b4a22SAndrew Lunnconfig MDIO_HISI_FEMAC
147d75b4a22SAndrew Lunn	tristate "Hisilicon FEMAC MDIO bus controller"
148ddc24ae1SArun Parameswaran	depends on HAS_IOMEM && OF_MDIO
149ddc24ae1SArun Parameswaran	help
150ddc24ae1SArun Parameswaran	  This module provides a driver for the MDIO busses found in the
151d75b4a22SAndrew Lunn	  Hisilicon SoC that have an Fast Ethernet MAC.
152d75b4a22SAndrew Lunn
153453d00deSRussell Kingconfig MDIO_I2C
154453d00deSRussell King	tristate
155453d00deSRussell King	depends on I2C
156453d00deSRussell King	help
157453d00deSRussell King	  Support I2C based PHYs.  This provides a MDIO bus bridged
158453d00deSRussell King	  to I2C to allow PHYs connected in I2C mode to be accessed
159453d00deSRussell King	  using the existing infrastructure.
160453d00deSRussell King
161453d00deSRussell King	  This is library mode.
162453d00deSRussell King
163466ed24fSRobert Markoconfig MDIO_IPQ4019
164466ed24fSRobert Marko	tristate "Qualcomm IPQ4019 MDIO interface support"
165466ed24fSRobert Marko	depends on HAS_IOMEM && OF_MDIO
166466ed24fSRobert Marko	help
167466ed24fSRobert Marko	  This driver supports the MDIO interface found in Qualcomm
168466ed24fSRobert Marko	  IPQ40xx series Soc-s.
169466ed24fSRobert Marko
170caaa71faSAnsuel Smithconfig MDIO_IPQ8064
171caaa71faSAnsuel Smith	tristate "Qualcomm IPQ8064 MDIO interface support"
172caaa71faSAnsuel Smith	depends on HAS_IOMEM && OF_MDIO
173caaa71faSAnsuel Smith	depends on MFD_SYSCON
174caaa71faSAnsuel Smith	help
175caaa71faSAnsuel Smith	  This driver supports the MDIO interface found in the network
176caaa71faSAnsuel Smith	  interface units of the IPQ8064 SoC
177caaa71faSAnsuel Smith
178d75b4a22SAndrew Lunnconfig MDIO_MOXART
179d75b4a22SAndrew Lunn	tristate "MOXA ART MDIO interface support"
1803c0596f8SFlorian Fainelli	depends on ARCH_MOXART || COMPILE_TEST
181d75b4a22SAndrew Lunn	help
182d75b4a22SAndrew Lunn	  This driver supports the MDIO interface found in the network
183d75b4a22SAndrew Lunn	  interface units of the MOXA ART SoC
184d75b4a22SAndrew Lunn
185542671feSAlexandre Belloniconfig MDIO_MSCC_MIIM
186542671feSAlexandre Belloni	tristate "Microsemi MIIM interface support"
187542671feSAlexandre Belloni	depends on HAS_IOMEM
188542671feSAlexandre Belloni	help
189542671feSAlexandre Belloni	  This driver supports the MIIM (MDIO) interface found in the network
190a021ada2SAntoine Tenart	  switches of the Microsemi SoCs; it is recommended to switch on
191a021ada2SAntoine Tenart	  CONFIG_HIGH_RES_TIMERS
192542671feSAlexandre Belloni
19304e37d92STobias Waldekranzconfig MDIO_MVUSB
19404e37d92STobias Waldekranz	tristate "Marvell USB to MDIO Adapter"
19504e37d92STobias Waldekranz	depends on USB
19604e37d92STobias Waldekranz	help
19704e37d92STobias Waldekranz	  A USB to MDIO converter present on development boards for
19804e37d92STobias Waldekranz	  Marvell's Link Street family of Ethernet switches.
19904e37d92STobias Waldekranz
200d75b4a22SAndrew Lunnconfig MDIO_OCTEON
20197c84389SAndrew Lunn	tristate "Octeon and some ThunderX SOCs MDIO buses"
202b8fb6406SNathan Chancellor	depends on (64BIT && OF_MDIO) || COMPILE_TEST
203b8fb6406SNathan Chancellor	depends on HAS_IOMEM
204d75b4a22SAndrew Lunn	select MDIO_CAVIUM
205d75b4a22SAndrew Lunn	help
206d75b4a22SAndrew Lunn	  This module provides a driver for the Octeon and ThunderX MDIO
207d75b4a22SAndrew Lunn	  buses. It is required by the Octeon and ThunderX ethernet device
208d75b4a22SAndrew Lunn	  drivers on some systems.
209d75b4a22SAndrew Lunn
210d75b4a22SAndrew Lunnconfig MDIO_SUN4I
211d75b4a22SAndrew Lunn	tristate "Allwinner sun4i MDIO interface support"
2123c0596f8SFlorian Fainelli	depends on ARCH_SUNXI || COMPILE_TEST
213d75b4a22SAndrew Lunn	help
214d75b4a22SAndrew Lunn	  This driver supports the MDIO interface found in the network
215d75b4a22SAndrew Lunn	  interface units of the Allwinner SoC that have an EMAC (A10,
216d75b4a22SAndrew Lunn	  A12, A10s, etc.)
217d75b4a22SAndrew Lunn
218d75b4a22SAndrew Lunnconfig MDIO_THUNDER
21997c84389SAndrew Lunn	tristate "ThunderX SOCs MDIO buses"
220d75b4a22SAndrew Lunn	depends on 64BIT
221d75b4a22SAndrew Lunn	depends on PCI
222d75b4a22SAndrew Lunn	select MDIO_CAVIUM
223d75b4a22SAndrew Lunn	help
224d75b4a22SAndrew Lunn	  This driver supports the MDIO interfaces found on Cavium
225d75b4a22SAndrew Lunn	  ThunderX SoCs when the MDIO bus device appears as a PCI
226d75b4a22SAndrew Lunn	  device.
227d75b4a22SAndrew Lunn
228d75b4a22SAndrew Lunnconfig MDIO_XGENE
229d75b4a22SAndrew Lunn	tristate "APM X-Gene SoC MDIO bus controller"
2307aa6ec22SLaura Abbott	depends on ARCH_XGENE || COMPILE_TEST
231d75b4a22SAndrew Lunn	help
232d75b4a22SAndrew Lunn	  This module provides a driver for the MDIO busses found in the
233d75b4a22SAndrew Lunn	  APM X-Gene SoC's.
234d75b4a22SAndrew Lunn
235fcb26bd2SJose Abreuconfig MDIO_XPCS
236fcb26bd2SJose Abreu	tristate "Synopsys DesignWare XPCS controller"
237fcb26bd2SJose Abreu	help
238fcb26bd2SJose Abreu	  This module provides helper functions for Synopsys DesignWare XPCS
239fcb26bd2SJose Abreu	  controllers.
240fcb26bd2SJose Abreu
24190eff909SFlorian Fainelliendif
242a7fb107bSFlorian Fainelliendif
24390eff909SFlorian Fainelli
2449525ae83SRussell Kingconfig PHYLINK
2459525ae83SRussell King	tristate
2469525ae83SRussell King	depends on NETDEVICES
2479525ae83SRussell King	select PHYLIB
2489525ae83SRussell King	select SWPHY
2499525ae83SRussell King	help
2509525ae83SRussell King	  PHYlink models the link between the PHY and MAC, allowing fixed
2519525ae83SRussell King	  configuration links, PHYs, and Serdes links with MAC level
2529525ae83SRussell King	  autonegotiation modes.
2539525ae83SRussell King
2546073512cSJerome Brunetmenuconfig PHYLIB
2559e8d438eSFlorian Fainelli	tristate "PHY Device support and infrastructure"
2566073512cSJerome Brunet	depends on NETDEVICES
2576073512cSJerome Brunet	select MDIO_DEVICE
258*1814cff2SBartosz Golaszewski	select MDIO_DEVRES
2596073512cSJerome Brunet	help
2606073512cSJerome Brunet	  Ethernet controllers are usually attached to PHY
2616073512cSJerome Brunet	  devices.  This option provides infrastructure for
2626073512cSJerome Brunet	  managing PHY devices.
2636073512cSJerome Brunet
26490eff909SFlorian Fainelliif PHYLIB
26590eff909SFlorian Fainelli
26690eff909SFlorian Fainelliconfig SWPHY
26790eff909SFlorian Fainelli	bool
26890eff909SFlorian Fainelli
26990eff909SFlorian Fainelliconfig LED_TRIGGER_PHY
27090eff909SFlorian Fainelli	bool "Support LED triggers for tracking link state"
27190eff909SFlorian Fainelli	depends on LEDS_TRIGGERS
272a7f7f624SMasahiro Yamada	help
27390eff909SFlorian Fainelli	  Adds support for a set of LED trigger events per-PHY.  Link
27490eff909SFlorian Fainelli	  state change will trigger the events, for consumption by an
27590eff909SFlorian Fainelli	  LED class driver.  There are triggers for each link speed currently
2763928ee64SMaciej S. Szmigiero	  supported by the PHY and also a one common "link" trigger as a
2773928ee64SMaciej S. Szmigiero	  logical-or of all the link speed ones.
2783928ee64SMaciej S. Szmigiero	  All these triggers are named according to the following pattern:
27990eff909SFlorian Fainelli	      <mii bus id>:<phy>:<speed>
28090eff909SFlorian Fainelli
28190eff909SFlorian Fainelli	  Where speed is in the form:
2823928ee64SMaciej S. Szmigiero		<Speed in megabits>Mbps OR <Speed in gigabits>Gbps OR link
2833928ee64SMaciej S. Szmigiero		for any speed known to the PHY.
28490eff909SFlorian Fainelli
28590eff909SFlorian Fainelli
286d75b4a22SAndrew Lunncomment "MII PHY device drivers"
287d75b4a22SAndrew Lunn
28873970055SRussell Kingconfig SFP
28973970055SRussell King	tristate "SFP cage support"
29073970055SRussell King	depends on I2C && PHYLINK
291b5293443SGuenter Roeck	depends on HWMON || HWMON=n
29273970055SRussell King	select MDIO_I2C
29373970055SRussell King
2949c102981SAlexandru Ardeleanconfig ADIN_PHY
2959c102981SAlexandru Ardelean	tristate "Analog Devices Industrial Ethernet PHYs"
2969c102981SAlexandru Ardelean	help
2979c102981SAlexandru Ardelean	  Adds support for the Analog Devices Industrial Ethernet PHYs.
2989c102981SAlexandru Ardelean	  Currently supports the:
2999c102981SAlexandru Ardelean	  - ADIN1200 - Robust,Industrial, Low Power 10/100 Ethernet PHY
3009c102981SAlexandru Ardelean	  - ADIN1300 - Robust,Industrial, Low Latency 10/100/1000 Gigabit
3019c102981SAlexandru Ardelean	    Ethernet PHY
3029c102981SAlexandru Ardelean
303d75b4a22SAndrew Lunnconfig AMD_PHY
30497c84389SAndrew Lunn	tristate "AMD PHYs"
305a7f7f624SMasahiro Yamada	help
306d75b4a22SAndrew Lunn	  Currently supports the am79c874
307d75b4a22SAndrew Lunn
308d75b4a22SAndrew Lunnconfig AQUANTIA_PHY
30997c84389SAndrew Lunn	tristate "Aquantia PHYs"
310a7f7f624SMasahiro Yamada	help
311d75b4a22SAndrew Lunn	  Currently supports the Aquantia AQ1202, AQ2104, AQR105, AQR405
312d75b4a22SAndrew Lunn
313a9520543SMichael Schmitzconfig AX88796B_PHY
31431dd83b9SMichael Schmitz	tristate "Asix PHYs"
31531dd83b9SMichael Schmitz	help
31631dd83b9SMichael Schmitz	  Currently supports the Asix Electronics PHY found in the X-Surf 100
31731dd83b9SMichael Schmitz	  AX88796B package.
31831dd83b9SMichael Schmitz
319d75b4a22SAndrew Lunnconfig BCM63XX_PHY
32097c84389SAndrew Lunn	tristate "Broadcom 63xx SOCs internal PHY"
32115d8daf7SAndrew Lunn	depends on BCM63XX || COMPILE_TEST
322d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
323a7f7f624SMasahiro Yamada	help
324d75b4a22SAndrew Lunn	  Currently supports the 6348 and 6358 PHYs.
325d75b4a22SAndrew Lunn
326d75b4a22SAndrew Lunnconfig BCM7XXX_PHY
32797c84389SAndrew Lunn	tristate "Broadcom 7xxx SOCs internal PHYs"
328d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
329a7f7f624SMasahiro Yamada	help
330d75b4a22SAndrew Lunn	  Currently supports the BCM7366, BCM7439, BCM7445, and
331d75b4a22SAndrew Lunn	  40nm and 65nm generation of BCM7xxx Set Top Box SoCs.
332d75b4a22SAndrew Lunn
333d75b4a22SAndrew Lunnconfig BCM87XX_PHY
33497c84389SAndrew Lunn	tristate "Broadcom BCM8706 and BCM8727 PHYs"
335d75b4a22SAndrew Lunn	help
336d75b4a22SAndrew Lunn	  Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs.
337d75b4a22SAndrew Lunn
338d75b4a22SAndrew Lunnconfig BCM_CYGNUS_PHY
339a7a01ab3SFlorian Fainelli	tristate "Broadcom Cygnus/Omega SoC internal PHY"
34017cc9821SFlorian Fainelli	depends on ARCH_BCM_IPROC || COMPILE_TEST
341d75b4a22SAndrew Lunn	depends on MDIO_BCM_IPROC
342d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
343a7f7f624SMasahiro Yamada	help
344d75b4a22SAndrew Lunn	  This PHY driver is for the 1G internal PHYs of the Broadcom
34517cc9821SFlorian Fainelli	  Cygnus and Omega Family SoC.
346d75b4a22SAndrew Lunn
347d75b4a22SAndrew Lunn	  Currently supports internal PHY's used in the BCM11300,
348d75b4a22SAndrew Lunn	  BCM11320, BCM11350, BCM11360, BCM58300, BCM58302,
349d75b4a22SAndrew Lunn	  BCM58303 & BCM58305 Broadcom Cygnus SoCs.
350d75b4a22SAndrew Lunn
351d75b4a22SAndrew Lunnconfig BCM_NET_PHYLIB
352d75b4a22SAndrew Lunn	tristate
353d75b4a22SAndrew Lunn
354d75b4a22SAndrew Lunnconfig BROADCOM_PHY
35597c84389SAndrew Lunn	tristate "Broadcom PHYs"
356d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
357a7f7f624SMasahiro Yamada	help
358d75b4a22SAndrew Lunn	  Currently supports the BCM5411, BCM5421, BCM5461, BCM54616S, BCM5464,
359b14995acSJon Mason	  BCM5481, BCM54810 and BCM5482 PHYs.
360d75b4a22SAndrew Lunn
3616937602eSMichael Walleconfig BCM54140_PHY
3626937602eSMichael Walle	tristate "Broadcom BCM54140 PHY"
3636937602eSMichael Walle	depends on PHYLIB
3644406d36dSMichael Walle	depends on HWMON || HWMON=n
3656937602eSMichael Walle	select BCM_NET_PHYLIB
3666937602eSMichael Walle	help
3676937602eSMichael Walle	  Support the Broadcom BCM54140 Quad SGMII/QSGMII PHY.
3686937602eSMichael Walle
3696937602eSMichael Walle	  This driver also supports the hardware monitoring of this PHY and
3706937602eSMichael Walle	  exposes voltage and temperature sensors.
3716937602eSMichael Walle
37275f4d8d1SRussell Kingconfig BCM84881_PHY
373725d23b5SRussell King	tristate "Broadcom BCM84881 PHY"
374725d23b5SRussell King	depends on PHYLIB
375a7f7f624SMasahiro Yamada	help
37675f4d8d1SRussell King	  Support the Broadcom BCM84881 PHY.
37775f4d8d1SRussell King
378d75b4a22SAndrew Lunnconfig CICADA_PHY
37997c84389SAndrew Lunn	tristate "Cicada PHYs"
380a7f7f624SMasahiro Yamada	help
381d75b4a22SAndrew Lunn	  Currently supports the cis8204
382d75b4a22SAndrew Lunn
38315b9e533SBogdan Purcareataconfig CORTINA_PHY
38415b9e533SBogdan Purcareata	tristate "Cortina EDC CDR 10G Ethernet PHY"
385a7f7f624SMasahiro Yamada	help
38615b9e533SBogdan Purcareata	  Currently supports the CS4340 phy.
38715b9e533SBogdan Purcareata
388d75b4a22SAndrew Lunnconfig DAVICOM_PHY
38997c84389SAndrew Lunn	tristate "Davicom PHYs"
390a7f7f624SMasahiro Yamada	help
391d75b4a22SAndrew Lunn	  Currently supports dm9161e and dm9131
392d75b4a22SAndrew Lunn
39387461f7aSDan Murphyconfig DP83822_PHY
394783da36bSDan Murphy	tristate "Texas Instruments DP83822/825/826 PHYs"
395a7f7f624SMasahiro Yamada	help
3962ace13e1SDan Murphy	  Supports the DP83822, DP83825I, DP83825CM, DP83825CS, DP83825S,
3972ace13e1SDan Murphy	  DP83826C and DP83826NC PHYs.
39887461f7aSDan Murphy
399b753a9faSDan Murphyconfig DP83TC811_PHY
40044318056SDan Murphy	tristate "Texas Instruments DP83TC811 PHY"
401a7f7f624SMasahiro Yamada	help
40244318056SDan Murphy	  Supports the DP83TC811 PHY.
403b753a9faSDan Murphy
404d75b4a22SAndrew Lunnconfig DP83848_PHY
40597c84389SAndrew Lunn	tristate "Texas Instruments DP83848 PHY"
406a7f7f624SMasahiro Yamada	help
407d75b4a22SAndrew Lunn	  Supports the DP83848 PHY.
408d75b4a22SAndrew Lunn
409d75b4a22SAndrew Lunnconfig DP83867_PHY
41097c84389SAndrew Lunn	tristate "Texas Instruments DP83867 Gigabit PHY"
411a7f7f624SMasahiro Yamada	help
412d75b4a22SAndrew Lunn	  Currently supports the DP83867 PHY.
413d75b4a22SAndrew Lunn
41401db923eSDan Murphyconfig DP83869_PHY
41501db923eSDan Murphy	tristate "Texas Instruments DP83869 Gigabit PHY"
416a7f7f624SMasahiro Yamada	help
41701db923eSDan Murphy	  Currently supports the DP83869 PHY.  This PHY supports copper and
41801db923eSDan Murphy	  fiber connections.
41901db923eSDan Murphy
420d75b4a22SAndrew Lunnconfig FIXED_PHY
42197c84389SAndrew Lunn	tristate "MDIO Bus/PHY emulation with fixed speed/link PHYs"
422d75b4a22SAndrew Lunn	depends on PHYLIB
423d75b4a22SAndrew Lunn	select SWPHY
424a7f7f624SMasahiro Yamada	help
425d75b4a22SAndrew Lunn	  Adds the platform "fixed" MDIO Bus to cover the boards that use
426d75b4a22SAndrew Lunn	  PHYs that are not connected to the real MDIO bus.
427d75b4a22SAndrew Lunn
428d75b4a22SAndrew Lunn	  Currently tested with mpc866ads and mpc8349e-mitx.
429d75b4a22SAndrew Lunn
430d75b4a22SAndrew Lunnconfig ICPLUS_PHY
43197c84389SAndrew Lunn	tristate "ICPlus PHYs"
432a7f7f624SMasahiro Yamada	help
433d75b4a22SAndrew Lunn	  Currently supports the IP175C and IP1001 PHYs.
434ddc24ae1SArun Parameswaran
435112b558dSHauke Mehrtensconfig INTEL_XWAY_PHY
43697c84389SAndrew Lunn	tristate "Intel XWAY PHYs"
437a7f7f624SMasahiro Yamada	help
438112b558dSHauke Mehrtens	  Supports the Intel XWAY (former Lantiq) 11G and 22E PHYs.
439112b558dSHauke Mehrtens	  These PHYs are marked as standalone chips under the names
440112b558dSHauke Mehrtens	  PEF 7061, PEF 7071 and PEF 7072 or integrated into the Intel
441112b558dSHauke Mehrtens	  SoCs xRX200, xRX300, xRX330, xRX350 and xRX550.
442112b558dSHauke Mehrtens
443d75b4a22SAndrew Lunnconfig LSI_ET1011C_PHY
44497c84389SAndrew Lunn	tristate "LSI ET1011C PHY"
445a7f7f624SMasahiro Yamada	help
446d75b4a22SAndrew Lunn	  Supports the LSI ET1011C PHY.
4474960e4b1SDongpo Li
448d75b4a22SAndrew Lunnconfig LXT_PHY
44997c84389SAndrew Lunn	tristate "Intel LXT PHYs"
450a7f7f624SMasahiro Yamada	help
451d75b4a22SAndrew Lunn	  Currently supports the lxt970, lxt971
452d75b4a22SAndrew Lunn
453d75b4a22SAndrew Lunnconfig MARVELL_PHY
45497c84389SAndrew Lunn	tristate "Marvell PHYs"
455a7f7f624SMasahiro Yamada	help
456d75b4a22SAndrew Lunn	  Currently has a driver for the 88E1011S
457d75b4a22SAndrew Lunn
45820b2af32SRussell Kingconfig MARVELL_10G_PHY
45920b2af32SRussell King	tristate "Marvell Alaska 10Gbit PHYs"
460a7f7f624SMasahiro Yamada	help
46120b2af32SRussell King	  Support for the Marvell Alaska MV88X3310 and compatible PHYs.
46220b2af32SRussell King
4637334b3e4SNeil Armstrongconfig MESON_GXL_PHY
4647334b3e4SNeil Armstrong	tristate "Amlogic Meson GXL Internal PHY"
4652ebae8bdSJean Delvare	depends on ARCH_MESON || COMPILE_TEST
466a7f7f624SMasahiro Yamada	help
4677334b3e4SNeil Armstrong	  Currently has a driver for the Amlogic Meson GXL Internal PHY
4687334b3e4SNeil Armstrong
469d75b4a22SAndrew Lunnconfig MICREL_PHY
47097c84389SAndrew Lunn	tristate "Micrel PHYs"
471a7f7f624SMasahiro Yamada	help
472d75b4a22SAndrew Lunn	  Supports the KSZ9021, VSC8201, KS8001 PHYs.
473d75b4a22SAndrew Lunn
474d75b4a22SAndrew Lunnconfig MICROCHIP_PHY
47597c84389SAndrew Lunn	tristate "Microchip PHYs"
47643b3cf66SIyappan Subramanian	help
477d75b4a22SAndrew Lunn	  Supports the LAN88XX PHYs.
47843b3cf66SIyappan Subramanian
4793e50d2daSNisar Sayedconfig MICROCHIP_T1_PHY
4803e50d2daSNisar Sayed	tristate "Microchip T1 PHYs"
481a7f7f624SMasahiro Yamada	help
4823e50d2daSNisar Sayed	  Supports the LAN87XX PHYs.
4833e50d2daSNisar Sayed
484d50736a8SRaju Lakkarajuconfig MICROSEMI_PHY
48597c84389SAndrew Lunn	tristate "Microsemi PHYs"
48628c5107aSAntoine Tenart	depends on MACSEC || MACSEC=n
4875a3235e5SArd Biesheuvel	select CRYPTO_LIB_AES if MACSEC
488a7f7f624SMasahiro Yamada	help
489e4f9ba64SKavya Sree Kotagiri	  Currently supports VSC8514, VSC8530, VSC8531, VSC8540 and VSC8541 PHYs
490d50736a8SRaju Lakkaraju
491d75b4a22SAndrew Lunnconfig NATIONAL_PHY
49297c84389SAndrew Lunn	tristate "National Semiconductor PHYs"
493a7f7f624SMasahiro Yamada	help
494d75b4a22SAndrew Lunn	  Currently supports the DP83865 PHY.
495d75b4a22SAndrew Lunn
496ddf6ddb0SMarek Vasutconfig NXP_TJA11XX_PHY
497ddf6ddb0SMarek Vasut	tristate "NXP TJA11xx PHYs support"
498ddf6ddb0SMarek Vasut	depends on HWMON
499a7f7f624SMasahiro Yamada	help
500ddf6ddb0SMarek Vasut	  Currently supports the NXP TJA1100 and TJA1101 PHY.
501ddf6ddb0SMarek Vasut
5024985dffcSMichael Walleconfig AT803X_PHY
5034985dffcSMichael Walle	tristate "Qualcomm Atheros AR803X PHYs"
504dddb318bSMadalin Bucur	depends on REGULATOR
5054985dffcSMichael Walle	help
506428061f7SMichael Walle	  Currently supports the AR8030, AR8031, AR8033 and AR8035 model
5074985dffcSMichael Walle
508d75b4a22SAndrew Lunnconfig QSEMI_PHY
50997c84389SAndrew Lunn	tristate "Quality Semiconductor PHYs"
510a7f7f624SMasahiro Yamada	help
511d75b4a22SAndrew Lunn	  Currently supports the qs6612
512d75b4a22SAndrew Lunn
513d75b4a22SAndrew Lunnconfig REALTEK_PHY
51497c84389SAndrew Lunn	tristate "Realtek PHYs"
515a7f7f624SMasahiro Yamada	help
516d75b4a22SAndrew Lunn	  Supports the Realtek 821x PHY.
517d75b4a22SAndrew Lunn
518812b5ca7SBernd Edlingerconfig RENESAS_PHY
519812b5ca7SBernd Edlinger	tristate "Driver for Renesas PHYs"
520a7f7f624SMasahiro Yamada	help
521812b5ca7SBernd Edlinger	  Supports the Renesas PHYs uPD60620 and uPD60620A.
522812b5ca7SBernd Edlinger
523baf6ee81SDavid Wuconfig ROCKCHIP_PHY
524baf6ee81SDavid Wu	tristate "Driver for Rockchip Ethernet PHYs"
525a7f7f624SMasahiro Yamada	help
526baf6ee81SDavid Wu	  Currently supports the integrated Ethernet PHY.
527baf6ee81SDavid Wu
528d75b4a22SAndrew Lunnconfig SMSC_PHY
52997c84389SAndrew Lunn	tristate "SMSC PHYs"
530a7f7f624SMasahiro Yamada	help
531d75b4a22SAndrew Lunn	  Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
532d75b4a22SAndrew Lunn
533d75b4a22SAndrew Lunnconfig STE10XP
53497c84389SAndrew Lunn	tristate "STMicroelectronics STe10Xp PHYs"
535a7f7f624SMasahiro Yamada	help
536d75b4a22SAndrew Lunn	  This is the driver for the STe100p and STe101p PHYs.
537d75b4a22SAndrew Lunn
538d75b4a22SAndrew Lunnconfig TERANETICS_PHY
53997c84389SAndrew Lunn	tristate "Teranetics PHYs"
540a7f7f624SMasahiro Yamada	help
541d75b4a22SAndrew Lunn	  Currently supports the Teranetics TN2020
542d75b4a22SAndrew Lunn
543d75b4a22SAndrew Lunnconfig VITESSE_PHY
54497c84389SAndrew Lunn	tristate "Vitesse PHYs"
545a7f7f624SMasahiro Yamada	help
546d75b4a22SAndrew Lunn	  Currently supports the vsc8244
547d75b4a22SAndrew Lunn
548f411a616SAppana Durga Kedareswara Raoconfig XILINX_GMII2RGMII
549f411a616SAppana Durga Kedareswara Rao	tristate "Xilinx GMII2RGMII converter driver"
550a7f7f624SMasahiro Yamada	help
551f411a616SAppana Durga Kedareswara Rao	  This driver support xilinx GMII to RGMII IP core it provides
552f411a616SAppana Durga Kedareswara Rao	  the Reduced Gigabit Media Independent Interface(RGMII) between
553f411a616SAppana Durga Kedareswara Rao	  Ethernet physical media devices and the Gigabit Ethernet controller.
554f411a616SAppana Durga Kedareswara Rao
55553f99941SJan Engelhardtendif # PHYLIB
556a8e510f6SFrederic LAMBERT
557a8e510f6SFrederic LAMBERTconfig MICREL_KS8995MA
558a8e510f6SFrederic LAMBERT	tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch"
559a8e510f6SFrederic LAMBERT	depends on SPI
560