xref: /linux/drivers/net/phy/Kconfig (revision d39d0ed196aa1685bb24771e92f78633c66ac9cb)
1#
2# PHY Layer Configuration
3#
4
5menuconfig PHYLIB
6	tristate "PHY Device support and infrastructure"
7	depends on !S390
8	depends on NETDEVICES
9	help
10	  Ethernet controllers are usually attached to PHY
11	  devices.  This option provides infrastructure for
12	  managing PHY devices.
13
14if PHYLIB
15
16comment "MII PHY device drivers"
17
18config MARVELL_PHY
19	tristate "Drivers for Marvell PHYs"
20	---help---
21	  Currently has a driver for the 88E1011S
22
23config DAVICOM_PHY
24	tristate "Drivers for Davicom PHYs"
25	---help---
26	  Currently supports dm9161e and dm9131
27
28config QSEMI_PHY
29	tristate "Drivers for Quality Semiconductor PHYs"
30	---help---
31	  Currently supports the qs6612
32
33config LXT_PHY
34	tristate "Drivers for the Intel LXT PHYs"
35	---help---
36	  Currently supports the lxt970, lxt971
37
38config CICADA_PHY
39	tristate "Drivers for the Cicada PHYs"
40	---help---
41	  Currently supports the cis8204
42
43config VITESSE_PHY
44        tristate "Drivers for the Vitesse PHYs"
45        ---help---
46          Currently supports the vsc8244
47
48config SMSC_PHY
49	tristate "Drivers for SMSC PHYs"
50	---help---
51	  Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
52
53config BROADCOM_PHY
54	tristate "Drivers for Broadcom PHYs"
55	---help---
56	  Currently supports the BCM5411, BCM5421, BCM5461, BCM5464, BCM5481
57	  and BCM5482 PHYs.
58
59config BCM63XX_PHY
60	tristate "Drivers for Broadcom 63xx SOCs internal PHY"
61	depends on BCM63XX
62	---help---
63	  Currently supports the 6348 and 6358 PHYs.
64
65config ICPLUS_PHY
66	tristate "Drivers for ICPlus PHYs"
67	---help---
68	  Currently supports the IP175C PHY.
69
70config REALTEK_PHY
71	tristate "Drivers for Realtek PHYs"
72	---help---
73	  Supports the Realtek 821x PHY.
74
75config NATIONAL_PHY
76	tristate "Drivers for National Semiconductor PHYs"
77	---help---
78	  Currently supports the DP83865 PHY.
79
80config STE10XP
81	depends on PHYLIB
82	tristate "Driver for STMicroelectronics STe10Xp PHYs"
83	---help---
84	  This is the driver for the STe100p and STe101p PHYs.
85
86config LSI_ET1011C_PHY
87	tristate "Driver for LSI ET1011C PHY"
88	---help---
89	  Supports the LSI ET1011C PHY.
90
91config MICREL_PHY
92	tristate "Driver for Micrel PHYs"
93	---help---
94	  Supports the KSZ9021, VSC8201, KS8001 PHYs.
95
96config FIXED_PHY
97	bool "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs"
98	depends on PHYLIB=y
99	---help---
100	  Adds the platform "fixed" MDIO Bus to cover the boards that use
101	  PHYs that are not connected to the real MDIO bus.
102
103	  Currently tested with mpc866ads and mpc8349e-mitx.
104
105config MDIO_BITBANG
106	tristate "Support for bitbanged MDIO buses"
107	help
108	  This module implements the MDIO bus protocol in software,
109	  for use by low level drivers that export the ability to
110	  drive the relevant pins.
111
112	  If in doubt, say N.
113
114config MDIO_GPIO
115	tristate "Support for GPIO lib-based bitbanged MDIO buses"
116	depends on MDIO_BITBANG && GENERIC_GPIO
117	---help---
118	  Supports GPIO lib-based MDIO busses.
119
120	  To compile this driver as a module, choose M here: the module
121	  will be called mdio-gpio.
122
123config MDIO_OCTEON
124	tristate "Support for MDIO buses on Octeon SOCs"
125	depends on  CPU_CAVIUM_OCTEON
126	default y
127	help
128
129	  This module provides a driver for the Octeon MDIO busses.
130	  It is required by the Octeon Ethernet device drivers.
131
132	  If in doubt, say Y.
133
134endif # PHYLIB
135