xref: /linux/drivers/net/phy/Kconfig (revision db87bd2ad1f736c2f7ab231f9b40c885934f6b2c)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
200db8189SAndy Fleming#
300db8189SAndy Fleming# PHY Layer Configuration
400db8189SAndy Fleming#
500db8189SAndy Fleming
69525ae83SRussell Kingconfig PHYLINK
79525ae83SRussell King	tristate
89525ae83SRussell King	select PHYLIB
99525ae83SRussell King	select SWPHY
109525ae83SRussell King	help
119525ae83SRussell King	  PHYlink models the link between the PHY and MAC, allowing fixed
129525ae83SRussell King	  configuration links, PHYs, and Serdes links with MAC level
139525ae83SRussell King	  autonegotiation modes.
149525ae83SRussell King
156073512cSJerome Brunetmenuconfig PHYLIB
169e8d438eSFlorian Fainelli	tristate "PHY Device support and infrastructure"
1731be641dSHeiner Kallweit	select MDIO_BUS
186073512cSJerome Brunet	help
196073512cSJerome Brunet	  Ethernet controllers are usually attached to PHY
206073512cSJerome Brunet	  devices.  This option provides infrastructure for
216073512cSJerome Brunet	  managing PHY devices.
226073512cSJerome Brunet
2390eff909SFlorian Fainelliif PHYLIB
2490eff909SFlorian Fainelli
2590eff909SFlorian Fainelliconfig SWPHY
2690eff909SFlorian Fainelli	bool
2790eff909SFlorian Fainelli
287d573869SHeiner Kallweitconfig PHY_PACKAGE
297d573869SHeiner Kallweit	 tristate
307d573869SHeiner Kallweit
3190eff909SFlorian Fainelliconfig LED_TRIGGER_PHY
3290eff909SFlorian Fainelli	bool "Support LED triggers for tracking link state"
3390eff909SFlorian Fainelli	depends on LEDS_TRIGGERS
34a7f7f624SMasahiro Yamada	help
3590eff909SFlorian Fainelli	  Adds support for a set of LED trigger events per-PHY.  Link
3690eff909SFlorian Fainelli	  state change will trigger the events, for consumption by an
3790eff909SFlorian Fainelli	  LED class driver.  There are triggers for each link speed currently
383928ee64SMaciej S. Szmigiero	  supported by the PHY and also a one common "link" trigger as a
393928ee64SMaciej S. Szmigiero	  logical-or of all the link speed ones.
403928ee64SMaciej S. Szmigiero	  All these triggers are named according to the following pattern:
4190eff909SFlorian Fainelli	      <mii bus id>:<phy>:<speed>
4290eff909SFlorian Fainelli
4390eff909SFlorian Fainelli	  Where speed is in the form:
443928ee64SMaciej S. Szmigiero		<Speed in megabits>Mbps OR <Speed in gigabits>Gbps OR link
453928ee64SMaciej S. Szmigiero		for any speed known to the PHY.
4690eff909SFlorian Fainelli
479e7c1a9bSOleksij Rempelconfig OPEN_ALLIANCE_HELPERS
489e7c1a9bSOleksij Rempel	bool
499e7c1a9bSOleksij Rempel
504bb7aac7SArnd Bergmannconfig PHYLIB_LEDS
519b78d919SPaolo Abeni	def_bool OF
524bb7aac7SArnd Bergmann	depends on LEDS_CLASS=y || LEDS_CLASS=PHYLIB
534bb7aac7SArnd Bergmann	help
544bb7aac7SArnd Bergmann	  When LED class support is enabled, phylib can automatically
554bb7aac7SArnd Bergmann	  probe LED setting from device tree.
5690eff909SFlorian Fainelli
570457eb26SAndrew Lunnconfig FIXED_PHY
580457eb26SAndrew Lunn	tristate "MDIO Bus/PHY emulation with fixed speed/link PHYs"
590457eb26SAndrew Lunn	select SWPHY
600457eb26SAndrew Lunn	help
610457eb26SAndrew Lunn	  Adds the platform "fixed" MDIO Bus to cover the boards that use
620457eb26SAndrew Lunn	  PHYs that are not connected to the real MDIO bus.
630457eb26SAndrew Lunn
640457eb26SAndrew Lunn	  Currently tested with mpc866ads and mpc8349e-mitx.
65d75b4a22SAndrew Lunn
66f20fd544SFUJITA Tomonoriconfig RUST_PHYLIB_ABSTRACTIONS
67f20fd544SFUJITA Tomonori        bool "Rust PHYLIB abstractions support"
68f20fd544SFUJITA Tomonori        depends on RUST
69f20fd544SFUJITA Tomonori        depends on PHYLIB=y
70f20fd544SFUJITA Tomonori        help
71f20fd544SFUJITA Tomonori          Adds support needed for PHY drivers written in Rust. It provides
72f20fd544SFUJITA Tomonori          a wrapper around the C phylib core.
73f20fd544SFUJITA Tomonori
7473970055SRussell Kingconfig SFP
7573970055SRussell King	tristate "SFP cage support"
7673970055SRussell King	depends on I2C && PHYLINK
77b5293443SGuenter Roeck	depends on HWMON || HWMON=n
7873970055SRussell King	select MDIO_I2C
7973970055SRussell King
800457eb26SAndrew Lunncomment "MII PHY device drivers"
810457eb26SAndrew Lunn
82830877d8SChristian Marangiconfig AS21XXX_PHY
83830877d8SChristian Marangi	tristate "Aeonsemi AS21xxx PHYs"
84830877d8SChristian Marangi	help
85830877d8SChristian Marangi	  Currently supports the Aeonsemi AS21xxx PHY.
86830877d8SChristian Marangi
87830877d8SChristian Marangi	  These are C45 PHYs 10G that require all a generic firmware.
88830877d8SChristian Marangi
89830877d8SChristian Marangi	  Supported PHYs AS21011JB1, AS21011PB1, AS21010JB1, AS21010PB1,
90830877d8SChristian Marangi	  AS21511JB1, AS21511PB1, AS21510JB1, AS21510PB1, AS21210JB1,
91830877d8SChristian Marangi	  AS21210PB1 that all register with the PHY ID 0x7500 0x7500
92830877d8SChristian Marangi	  before the firmware is loaded.
93830877d8SChristian Marangi
9471e79430SEric Woudstraconfig AIR_EN8811H_PHY
9571e79430SEric Woudstra	tristate "Airoha EN8811H 2.5 Gigabit PHY"
9671e79430SEric Woudstra	help
9771e79430SEric Woudstra	  Currently supports the Airoha EN8811H PHY.
9871e79430SEric Woudstra
990457eb26SAndrew Lunnconfig AMD_PHY
10032030345SLinus Walleij	tristate "AMD and Altima PHYs"
1010457eb26SAndrew Lunn	help
10232030345SLinus Walleij	  Currently supports the AMD am79c874 and Altima AC101L.
1030457eb26SAndrew Lunn
1040457eb26SAndrew Lunnconfig MESON_GXL_PHY
1050457eb26SAndrew Lunn	tristate "Amlogic Meson GXL Internal PHY"
1060457eb26SAndrew Lunn	depends on ARCH_MESON || COMPILE_TEST
107be66fcc1SHeiner Kallweit	select SMSC_PHY
1080457eb26SAndrew Lunn	help
1090457eb26SAndrew Lunn	  Currently has a driver for the Amlogic Meson GXL Internal PHY
1100457eb26SAndrew Lunn
1119c102981SAlexandru Ardeleanconfig ADIN_PHY
1129c102981SAlexandru Ardelean	tristate "Analog Devices Industrial Ethernet PHYs"
1139c102981SAlexandru Ardelean	help
1149c102981SAlexandru Ardelean	  Adds support for the Analog Devices Industrial Ethernet PHYs.
1159c102981SAlexandru Ardelean	  Currently supports the:
1169c102981SAlexandru Ardelean	  - ADIN1200 - Robust,Industrial, Low Power 10/100 Ethernet PHY
1179c102981SAlexandru Ardelean	  - ADIN1300 - Robust,Industrial, Low Latency 10/100/1000 Gigabit
1189c102981SAlexandru Ardelean	    Ethernet PHY
1199c102981SAlexandru Ardelean
1207eaf9132SAlexandru Ardeleanconfig ADIN1100_PHY
1217eaf9132SAlexandru Ardelean	tristate "Analog Devices Industrial Ethernet T1L PHYs"
1227eaf9132SAlexandru Ardelean	help
1237eaf9132SAlexandru Ardelean	  Adds support for the Analog Devices Industrial T1L Ethernet PHYs.
1247eaf9132SAlexandru Ardelean	  Currently supports the:
1257eaf9132SAlexandru Ardelean	  - ADIN1100 - Robust,Industrial, Low Power 10BASE-T1L Ethernet PHY
1267eaf9132SAlexandru Ardelean
127fd3eaad8SFUJITA Tomonoriconfig AMCC_QT2025_PHY
128fd3eaad8SFUJITA Tomonori	tristate "AMCC QT2025 PHY"
129fd3eaad8SFUJITA Tomonori	depends on RUST_PHYLIB_ABSTRACTIONS
130fd3eaad8SFUJITA Tomonori	depends on RUST_FW_LOADER_ABSTRACTIONS
131fd3eaad8SFUJITA Tomonori	help
132fd3eaad8SFUJITA Tomonori	  Adds support for the Applied Micro Circuits Corporation QT2025 PHY.
133fd3eaad8SFUJITA Tomonori
134d2213db3SChristian Marangisource "drivers/net/phy/aquantia/Kconfig"
135d75b4a22SAndrew Lunn
136a9520543SMichael Schmitzconfig AX88796B_PHY
13731dd83b9SMichael Schmitz	tristate "Asix PHYs"
13831dd83b9SMichael Schmitz	help
13931dd83b9SMichael Schmitz	  Currently supports the Asix Electronics PHY found in the X-Surf 100
14031dd83b9SMichael Schmitz	  AX88796B package.
14131dd83b9SMichael Schmitz
142cbe0e415SFUJITA Tomonoriconfig AX88796B_RUST_PHY
143cbe0e415SFUJITA Tomonori	bool "Rust reference driver for Asix PHYs"
144cbe0e415SFUJITA Tomonori	depends on RUST_PHYLIB_ABSTRACTIONS && AX88796B_PHY
145cbe0e415SFUJITA Tomonori	help
146cbe0e415SFUJITA Tomonori	  Uses the Rust reference driver for Asix PHYs (ax88796b_rust.ko).
147cbe0e415SFUJITA Tomonori	  The features are equivalent. It supports the Asix Electronics PHY
148cbe0e415SFUJITA Tomonori	  found in the X-Surf 100 AX88796B package.
149cbe0e415SFUJITA Tomonori
1500457eb26SAndrew Lunnconfig BROADCOM_PHY
1510457eb26SAndrew Lunn	tristate "Broadcom 54XX PHYs"
1520457eb26SAndrew Lunn	select BCM_NET_PHYLIB
15339db6be7SJonathan Lemon	select BCM_NET_PHYPTP if NETWORK_PHY_TIMESTAMPING
15439db6be7SJonathan Lemon	depends on PTP_1588_CLOCK_OPTIONAL
1550457eb26SAndrew Lunn	help
1560457eb26SAndrew Lunn	  Currently supports the BCM5411, BCM5421, BCM5461, BCM54616S, BCM5464,
1570457eb26SAndrew Lunn	  BCM5481, BCM54810 and BCM5482 PHYs.
1580457eb26SAndrew Lunn
1590457eb26SAndrew Lunnconfig BCM54140_PHY
1600457eb26SAndrew Lunn	tristate "Broadcom BCM54140 PHY"
1610457eb26SAndrew Lunn	depends on HWMON || HWMON=n
1620457eb26SAndrew Lunn	select BCM_NET_PHYLIB
1637d573869SHeiner Kallweit	select PHY_PACKAGE
1640457eb26SAndrew Lunn	help
1650457eb26SAndrew Lunn	  Support the Broadcom BCM54140 Quad SGMII/QSGMII PHY.
1660457eb26SAndrew Lunn
1670457eb26SAndrew Lunn	  This driver also supports the hardware monitoring of this PHY and
1680457eb26SAndrew Lunn	  exposes voltage and temperature sensors.
1690457eb26SAndrew Lunn
170d75b4a22SAndrew Lunnconfig BCM63XX_PHY
17197c84389SAndrew Lunn	tristate "Broadcom 63xx SOCs internal PHY"
17215d8daf7SAndrew Lunn	depends on BCM63XX || COMPILE_TEST
173d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
174a7f7f624SMasahiro Yamada	help
175d75b4a22SAndrew Lunn	  Currently supports the 6348 and 6358 PHYs.
176d75b4a22SAndrew Lunn
177d75b4a22SAndrew Lunnconfig BCM7XXX_PHY
17897c84389SAndrew Lunn	tristate "Broadcom 7xxx SOCs internal PHYs"
179d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
180a7f7f624SMasahiro Yamada	help
181d75b4a22SAndrew Lunn	  Currently supports the BCM7366, BCM7439, BCM7445, and
182d75b4a22SAndrew Lunn	  40nm and 65nm generation of BCM7xxx Set Top Box SoCs.
183d75b4a22SAndrew Lunn
1840457eb26SAndrew Lunnconfig BCM84881_PHY
1850457eb26SAndrew Lunn	tristate "Broadcom BCM84881 PHY"
1860457eb26SAndrew Lunn	help
1870457eb26SAndrew Lunn	  Support the Broadcom BCM84881 PHY.
1880457eb26SAndrew Lunn
189d75b4a22SAndrew Lunnconfig BCM87XX_PHY
19097c84389SAndrew Lunn	tristate "Broadcom BCM8706 and BCM8727 PHYs"
191d75b4a22SAndrew Lunn	help
192d75b4a22SAndrew Lunn	  Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs.
193d75b4a22SAndrew Lunn
194d75b4a22SAndrew Lunnconfig BCM_CYGNUS_PHY
195a7a01ab3SFlorian Fainelli	tristate "Broadcom Cygnus/Omega SoC internal PHY"
19617cc9821SFlorian Fainelli	depends on ARCH_BCM_IPROC || COMPILE_TEST
197d75b4a22SAndrew Lunn	depends on MDIO_BCM_IPROC
198d75b4a22SAndrew Lunn	select BCM_NET_PHYLIB
199a7f7f624SMasahiro Yamada	help
200d75b4a22SAndrew Lunn	  This PHY driver is for the 1G internal PHYs of the Broadcom
20117cc9821SFlorian Fainelli	  Cygnus and Omega Family SoC.
202d75b4a22SAndrew Lunn
203d75b4a22SAndrew Lunn	  Currently supports internal PHY's used in the BCM11300,
204d75b4a22SAndrew Lunn	  BCM11320, BCM11350, BCM11360, BCM58300, BCM58302,
205d75b4a22SAndrew Lunn	  BCM58303 & BCM58305 Broadcom Cygnus SoCs.
206d75b4a22SAndrew Lunn
207d75b4a22SAndrew Lunnconfig BCM_NET_PHYLIB
208d75b4a22SAndrew Lunn	tristate
209d75b4a22SAndrew Lunn
21039db6be7SJonathan Lemonconfig BCM_NET_PHYPTP
21139db6be7SJonathan Lemon	tristate
21239db6be7SJonathan Lemon
213d75b4a22SAndrew Lunnconfig CICADA_PHY
21497c84389SAndrew Lunn	tristate "Cicada PHYs"
215a7f7f624SMasahiro Yamada	help
216d75b4a22SAndrew Lunn	  Currently supports the cis8204
217d75b4a22SAndrew Lunn
21815b9e533SBogdan Purcareataconfig CORTINA_PHY
21915b9e533SBogdan Purcareata	tristate "Cortina EDC CDR 10G Ethernet PHY"
220a7f7f624SMasahiro Yamada	help
22115b9e533SBogdan Purcareata	  Currently supports the CS4340 phy.
22215b9e533SBogdan Purcareata
223d75b4a22SAndrew Lunnconfig DAVICOM_PHY
22497c84389SAndrew Lunn	tristate "Davicom PHYs"
225a7f7f624SMasahiro Yamada	help
226d75b4a22SAndrew Lunn	  Currently supports dm9161e and dm9131
227d75b4a22SAndrew Lunn
228d75b4a22SAndrew Lunnconfig ICPLUS_PHY
22997c84389SAndrew Lunn	tristate "ICPlus PHYs"
230a7f7f624SMasahiro Yamada	help
231d75b4a22SAndrew Lunn	  Currently supports the IP175C and IP1001 PHYs.
232ddc24ae1SArun Parameswaran
2330457eb26SAndrew Lunnconfig LXT_PHY
2340457eb26SAndrew Lunn	tristate "Intel LXT PHYs"
2350457eb26SAndrew Lunn	help
2360457eb26SAndrew Lunn	  Currently supports the lxt970, lxt971
2370457eb26SAndrew Lunn
238112b558dSHauke Mehrtensconfig INTEL_XWAY_PHY
23997c84389SAndrew Lunn	tristate "Intel XWAY PHYs"
240a7f7f624SMasahiro Yamada	help
241112b558dSHauke Mehrtens	  Supports the Intel XWAY (former Lantiq) 11G and 22E PHYs.
242112b558dSHauke Mehrtens	  These PHYs are marked as standalone chips under the names
243112b558dSHauke Mehrtens	  PEF 7061, PEF 7071 and PEF 7072 or integrated into the Intel
244112b558dSHauke Mehrtens	  SoCs xRX200, xRX300, xRX330, xRX350 and xRX550.
245112b558dSHauke Mehrtens
246d75b4a22SAndrew Lunnconfig LSI_ET1011C_PHY
24797c84389SAndrew Lunn	tristate "LSI ET1011C PHY"
248a7f7f624SMasahiro Yamada	help
249d75b4a22SAndrew Lunn	  Supports the LSI ET1011C PHY.
2504960e4b1SDongpo Li
251d75b4a22SAndrew Lunnconfig MARVELL_PHY
2520457eb26SAndrew Lunn	tristate "Marvell Alaska PHYs"
253a7f7f624SMasahiro Yamada	help
2540457eb26SAndrew Lunn	  Currently has a driver for the 88E1XXX
255d75b4a22SAndrew Lunn
25620b2af32SRussell Kingconfig MARVELL_10G_PHY
25720b2af32SRussell King	tristate "Marvell Alaska 10Gbit PHYs"
258a7f7f624SMasahiro Yamada	help
25920b2af32SRussell King	  Support for the Marvell Alaska MV88X3310 and compatible PHYs.
26020b2af32SRussell King
26100f11ac7SStefan Eichenbergerconfig MARVELL_88Q2XXX_PHY
26200f11ac7SStefan Eichenberger	tristate "Marvell 88Q2XXX PHY"
263a557a92eSDimitri Fedrau	depends on HWMON || HWMON=n
26400f11ac7SStefan Eichenberger	help
26500f11ac7SStefan Eichenberger	  Support for the Marvell 88Q2XXX 100/1000BASE-T1 Automotive Ethernet
26600f11ac7SStefan Eichenberger	  PHYs.
26700f11ac7SStefan Eichenberger
2686e3bac3eSIvan Bornyakovconfig MARVELL_88X2222_PHY
2696e3bac3eSIvan Bornyakov	tristate "Marvell 88X2222 PHY"
2706e3bac3eSIvan Bornyakov	help
2716e3bac3eSIvan Bornyakov	  Support for the Marvell 88X2222 Dual-port Multi-speed Ethernet
2726e3bac3eSIvan Bornyakov	  Transceiver.
2736e3bac3eSIvan Bornyakov
2747d901a1eSXu Liangconfig MAXLINEAR_GPHY
2757d901a1eSXu Liang	tristate "Maxlinear Ethernet PHYs"
27609ce6b20SMichael Walle	select POLYNOMIAL if HWMON
27709ce6b20SMichael Walle	depends on HWMON || HWMON=n
2787d901a1eSXu Liang	help
2797d901a1eSXu Liang	  Support for the Maxlinear GPY115, GPY211, GPY212, GPY215,
2807d901a1eSXu Liang	  GPY241, GPY245 PHYs.
2817d901a1eSXu Liang
282b2908a98SStefano Radaelliconfig MAXLINEAR_86110_PHY
283b2908a98SStefano Radaelli	tristate "MaxLinear MXL86110 PHY support"
284b2908a98SStefano Radaelli	help
285b2908a98SStefano Radaelli	 Support for the MaxLinear MXL86110 Gigabit Ethernet
286b2908a98SStefano Radaelli	 Physical Layer transceiver.
287b2908a98SStefano Radaelli	 The MXL86110 is commonly used in networking equipment such as
288b2908a98SStefano Radaelli	 routers, switches, and embedded systems, providing the
289b2908a98SStefano Radaelli	 physical interface for 10/100/1000 Mbps Ethernet connections
290b2908a98SStefano Radaelli	 over copper media.
291b2908a98SStefano Radaelli	 If you are using a board with the MXL86110 PHY connected to your
292b2908a98SStefano Radaelli	 Ethernet MAC, you should enable this option.
293b2908a98SStefano Radaelli
2944c452f7eSSkyLake.Huangsource "drivers/net/phy/mediatek/Kconfig"
29598c485eaSDaniel Golle
296d75b4a22SAndrew Lunnconfig MICREL_PHY
29797c84389SAndrew Lunn	tristate "Micrel PHYs"
298231fdac3SAnders Roxell	depends on PTP_1588_CLOCK_OPTIONAL
2997d573869SHeiner Kallweit	select PHY_PACKAGE
300a7f7f624SMasahiro Yamada	help
301d75b4a22SAndrew Lunn	  Supports the KSZ9021, VSC8201, KS8001 PHYs.
302d75b4a22SAndrew Lunn
3034d2bd258SRamón Nordin Rodriguezconfig MICROCHIP_T1S_PHY
304ca33db4aSParthiban Veerasooran	tristate "Microchip 10BASE-T1S Ethernet PHYs"
3054d2bd258SRamón Nordin Rodriguez	help
3066b079d8fSParthiban Veerasooran	  Currently supports the LAN8670/1/2 Rev.B1/C1/C2 and
3076b079d8fSParthiban Veerasooran	  LAN8650/1 Rev.B0/B1 Internal PHYs.
3084d2bd258SRamón Nordin Rodriguez
309d75b4a22SAndrew Lunnconfig MICROCHIP_PHY
31097c84389SAndrew Lunn	tristate "Microchip PHYs"
31143b3cf66SIyappan Subramanian	help
312d75b4a22SAndrew Lunn	  Supports the LAN88XX PHYs.
31343b3cf66SIyappan Subramanian
3143e50d2daSNisar Sayedconfig MICROCHIP_T1_PHY
3153e50d2daSNisar Sayed	tristate "Microchip T1 PHYs"
3166a46e3e8SDivya Koppera	select MICROCHIP_PHY_RDS_PTP if NETWORK_PHY_TIMESTAMPING
3176a46e3e8SDivya Koppera	depends on PTP_1588_CLOCK_OPTIONAL
318a7f7f624SMasahiro Yamada	help
3192550afc6SDivya Koppera	  Supports the LAN8XXX PHYs.
3202550afc6SDivya Koppera
3212550afc6SDivya Kopperaconfig MICROCHIP_PHY_RDS_PTP
3222550afc6SDivya Koppera	tristate
3232550afc6SDivya Koppera	help
3242550afc6SDivya Koppera	  Currently supports LAN887X T1 PHY
3253e50d2daSNisar Sayed
326d50736a8SRaju Lakkarajuconfig MICROSEMI_PHY
32797c84389SAndrew Lunn	tristate "Microsemi PHYs"
32828c5107aSAntoine Tenart	depends on MACSEC || MACSEC=n
329e5f31552SArnd Bergmann	depends on PTP_1588_CLOCK_OPTIONAL || !NETWORK_PHY_TIMESTAMPING
3305a3235e5SArd Biesheuvel	select CRYPTO_LIB_AES if MACSEC
3317d573869SHeiner Kallweit	select PHY_PACKAGE
332a7f7f624SMasahiro Yamada	help
333e4f9ba64SKavya Sree Kotagiri	  Currently supports VSC8514, VSC8530, VSC8531, VSC8540 and VSC8541 PHYs
334d50736a8SRaju Lakkaraju
33548e8c6f1SPeter Geisconfig MOTORCOMM_PHY
33648e8c6f1SPeter Geis	tristate "Motorcomm PHYs"
33748e8c6f1SPeter Geis	help
33848e8c6f1SPeter Geis	  Enables support for Motorcomm network PHYs.
3394ac94f72SFrank Sae	  Currently supports YT85xx Gigabit Ethernet PHYs.
34048e8c6f1SPeter Geis
341d75b4a22SAndrew Lunnconfig NATIONAL_PHY
34297c84389SAndrew Lunn	tristate "National Semiconductor PHYs"
343a7f7f624SMasahiro Yamada	help
344d75b4a22SAndrew Lunn	  Currently supports the DP83865 PHY.
345d75b4a22SAndrew Lunn
346f3b766d9SVladimir Olteanconfig NXP_CBTX_PHY
347f3b766d9SVladimir Oltean	tristate "NXP 100BASE-TX PHYs"
348f3b766d9SVladimir Oltean	help
349f3b766d9SVladimir Oltean	  Support the 100BASE-TX PHY integrated on the SJA1110 automotive
350f3b766d9SVladimir Oltean	  switch family.
351f3b766d9SVladimir Oltean
352b050f2f1SRadu Pirea (NXP OSS)config NXP_C45_TJA11XX_PHY
353b050f2f1SRadu Pirea (NXP OSS)	tristate "NXP C45 TJA11XX PHYs"
354e5f31552SArnd Bergmann	depends on PTP_1588_CLOCK_OPTIONAL
355a868b486SRadu Pirea (NXP OSS)	depends on MACSEC || !MACSEC
356b050f2f1SRadu Pirea (NXP OSS)	help
357b050f2f1SRadu Pirea (NXP OSS)	  Enable support for NXP C45 TJA11XX PHYs.
3587215e937SAndrei Botila	  Currently supports the TJA1103, TJA1104, TJA1120 and TJA1121 PHYs.
359b050f2f1SRadu Pirea (NXP OSS)
360ddf6ddb0SMarek Vasutconfig NXP_TJA11XX_PHY
361ddf6ddb0SMarek Vasut	tristate "NXP TJA11xx PHYs support"
362ddf6ddb0SMarek Vasut	depends on HWMON
363a7f7f624SMasahiro Yamada	help
364*d3b28612SJonas Rebmann	  Currently supports the NXP TJA1100, TJA1101 and TJA1102 PHYs.
365ddf6ddb0SMarek Vasut
366b53e7e8dSPiergiorgio Berutoconfig NCN26000_PHY
367b53e7e8dSPiergiorgio Beruto	tristate "Onsemi 10BASE-T1S Ethernet PHY"
368b53e7e8dSPiergiorgio Beruto	help
369b53e7e8dSPiergiorgio Beruto	  Adds support for the onsemi 10BASE-T1S Ethernet PHY.
370b53e7e8dSPiergiorgio Beruto	  Currently supports the NCN26000 10BASE-T1S Industrial PHY
371b53e7e8dSPiergiorgio Beruto	  with MII interface.
372b53e7e8dSPiergiorgio Beruto
3739e56ff53SChristian Marangisource "drivers/net/phy/qcom/Kconfig"
3744985dffcSMichael Walle
375d75b4a22SAndrew Lunnconfig QSEMI_PHY
37697c84389SAndrew Lunn	tristate "Quality Semiconductor PHYs"
377a7f7f624SMasahiro Yamada	help
378d75b4a22SAndrew Lunn	  Currently supports the qs6612
379d75b4a22SAndrew Lunn
3801416a9b2SHeiner Kallweitsource "drivers/net/phy/realtek/Kconfig"
381d75b4a22SAndrew Lunn
382812b5ca7SBernd Edlingerconfig RENESAS_PHY
3830457eb26SAndrew Lunn	tristate "Renesas PHYs"
384a7f7f624SMasahiro Yamada	help
385812b5ca7SBernd Edlinger	  Supports the Renesas PHYs uPD60620 and uPD60620A.
386812b5ca7SBernd Edlinger
387baf6ee81SDavid Wuconfig ROCKCHIP_PHY
3880457eb26SAndrew Lunn	tristate "Rockchip Ethernet PHYs"
389a7f7f624SMasahiro Yamada	help
390baf6ee81SDavid Wu	  Currently supports the integrated Ethernet PHY.
391baf6ee81SDavid Wu
392d75b4a22SAndrew Lunnconfig SMSC_PHY
39397c84389SAndrew Lunn	tristate "SMSC PHYs"
3948b305ee2STristram Ha	select CRC16
395a7f7f624SMasahiro Yamada	help
396d75b4a22SAndrew Lunn	  Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
397d75b4a22SAndrew Lunn
398d75b4a22SAndrew Lunnconfig STE10XP
39997c84389SAndrew Lunn	tristate "STMicroelectronics STe10Xp PHYs"
400a7f7f624SMasahiro Yamada	help
401d75b4a22SAndrew Lunn	  This is the driver for the STe100p and STe101p PHYs.
402d75b4a22SAndrew Lunn
403d75b4a22SAndrew Lunnconfig TERANETICS_PHY
40497c84389SAndrew Lunn	tristate "Teranetics PHYs"
405a7f7f624SMasahiro Yamada	help
406d75b4a22SAndrew Lunn	  Currently supports the Teranetics TN2020
407d75b4a22SAndrew Lunn
4080457eb26SAndrew Lunnconfig DP83822_PHY
4090457eb26SAndrew Lunn	tristate "Texas Instruments DP83822/825/826 PHYs"
4100457eb26SAndrew Lunn	help
4110457eb26SAndrew Lunn	  Supports the DP83822, DP83825I, DP83825CM, DP83825CS, DP83825S,
4120457eb26SAndrew Lunn	  DP83826C and DP83826NC PHYs.
4130457eb26SAndrew Lunn
4140457eb26SAndrew Lunnconfig DP83TC811_PHY
4150457eb26SAndrew Lunn	tristate "Texas Instruments DP83TC811 PHY"
4160457eb26SAndrew Lunn	help
4170457eb26SAndrew Lunn	  Supports the DP83TC811 PHY.
4180457eb26SAndrew Lunn
4190457eb26SAndrew Lunnconfig DP83848_PHY
4200457eb26SAndrew Lunn	tristate "Texas Instruments DP83848 PHY"
4210457eb26SAndrew Lunn	help
4220457eb26SAndrew Lunn	  Supports the DP83848 PHY.
4230457eb26SAndrew Lunn
4240457eb26SAndrew Lunnconfig DP83867_PHY
4250457eb26SAndrew Lunn	tristate "Texas Instruments DP83867 Gigabit PHY"
4260457eb26SAndrew Lunn	help
4270457eb26SAndrew Lunn	  Currently supports the DP83867 PHY.
4280457eb26SAndrew Lunn
4290457eb26SAndrew Lunnconfig DP83869_PHY
4300457eb26SAndrew Lunn	tristate "Texas Instruments DP83869 Gigabit PHY"
4310457eb26SAndrew Lunn	help
4320457eb26SAndrew Lunn	  Currently supports the DP83869 PHY.  This PHY supports copper and
4330457eb26SAndrew Lunn	  fiber connections.
4340457eb26SAndrew Lunn
435165cd04fSOleksij Rempelconfig DP83TD510_PHY
436165cd04fSOleksij Rempel	tristate "Texas Instruments DP83TD510 Ethernet 10Base-T1L PHY"
437165cd04fSOleksij Rempel	help
438165cd04fSOleksij Rempel	  Support for the DP83TD510 Ethernet 10Base-T1L PHY. This PHY supports
439165cd04fSOleksij Rempel	  a 10M single pair Ethernet connection for up to 1000 meter cable.
440165cd04fSOleksij Rempel
441cb80ee2fSOleksij Rempelconfig DP83TG720_PHY
442cb80ee2fSOleksij Rempel	tristate "Texas Instruments DP83TG720 Ethernet 1000Base-T1 PHY"
44320f77dc7SOleksij Rempel	select OPEN_ALLIANCE_HELPERS
444cb80ee2fSOleksij Rempel	help
445cb80ee2fSOleksij Rempel	  The DP83TG720S-Q1 is an automotive Ethernet physical layer
446cb80ee2fSOleksij Rempel	  transceiver compliant with IEEE 802.3bp and Open Alliance
447cb80ee2fSOleksij Rempel	  standards. It supports key functions necessary for
448cb80ee2fSOleksij Rempel	  transmitting and receiving data over both unshielded and
449cb80ee2fSOleksij Rempel	  shielded single twisted-pair cables. This device offers
450cb80ee2fSOleksij Rempel	  flexible xMII interface options, including support for both
451cb80ee2fSOleksij Rempel	  RGMII and SGMII MAC interfaces. It's suitable for applications
452cb80ee2fSOleksij Rempel	  requiring high-speed data transmission in automotive
453cb80ee2fSOleksij Rempel	  networking environments.
454cb80ee2fSOleksij Rempel
455d75b4a22SAndrew Lunnconfig VITESSE_PHY
45697c84389SAndrew Lunn	tristate "Vitesse PHYs"
457a7f7f624SMasahiro Yamada	help
458d75b4a22SAndrew Lunn	  Currently supports the vsc8244
459d75b4a22SAndrew Lunn
460f411a616SAppana Durga Kedareswara Raoconfig XILINX_GMII2RGMII
461f411a616SAppana Durga Kedareswara Rao	tristate "Xilinx GMII2RGMII converter driver"
462a7f7f624SMasahiro Yamada	help
463f411a616SAppana Durga Kedareswara Rao	  This driver support xilinx GMII to RGMII IP core it provides
464f411a616SAppana Durga Kedareswara Rao	  the Reduced Gigabit Media Independent Interface(RGMII) between
465f411a616SAppana Durga Kedareswara Rao	  Ethernet physical media devices and the Gigabit Ethernet controller.
466f411a616SAppana Durga Kedareswara Rao
46753f99941SJan Engelhardtendif # PHYLIB
468a8e510f6SFrederic LAMBERT
469a8e510f6SFrederic LAMBERTconfig MICREL_KS8995MA
470a8e510f6SFrederic LAMBERT	tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch"
471a8e510f6SFrederic LAMBERT	depends on SPI
472