xref: /openbmc/linux/drivers/net/phy/Kconfig (revision afb46f79)
1#
2# PHY Layer Configuration
3#
4
5menuconfig PHYLIB
6	tristate "PHY Device support and infrastructure"
7	depends on NETDEVICES
8	help
9	  Ethernet controllers are usually attached to PHY
10	  devices.  This option provides infrastructure for
11	  managing PHY devices.
12
13if PHYLIB
14
15comment "MII PHY device drivers"
16
17config AT803X_PHY
18	tristate "Drivers for Atheros AT803X PHYs"
19	---help---
20	  Currently supports the AT8030 and AT8035 model
21
22config AMD_PHY
23	tristate "Drivers for the AMD PHYs"
24	---help---
25	  Currently supports the am79c874
26
27config MARVELL_PHY
28	tristate "Drivers for Marvell PHYs"
29	---help---
30	  Currently has a driver for the 88E1011S
31
32config DAVICOM_PHY
33	tristate "Drivers for Davicom PHYs"
34	---help---
35	  Currently supports dm9161e and dm9131
36
37config QSEMI_PHY
38	tristate "Drivers for Quality Semiconductor PHYs"
39	---help---
40	  Currently supports the qs6612
41
42config LXT_PHY
43	tristate "Drivers for the Intel LXT PHYs"
44	---help---
45	  Currently supports the lxt970, lxt971
46
47config CICADA_PHY
48	tristate "Drivers for the Cicada PHYs"
49	---help---
50	  Currently supports the cis8204
51
52config VITESSE_PHY
53        tristate "Drivers for the Vitesse PHYs"
54        ---help---
55          Currently supports the vsc8244
56
57config SMSC_PHY
58	tristate "Drivers for SMSC PHYs"
59	---help---
60	  Currently supports the LAN83C185, LAN8187 and LAN8700 PHYs
61
62config BROADCOM_PHY
63	tristate "Drivers for Broadcom PHYs"
64	---help---
65	  Currently supports the BCM5411, BCM5421, BCM5461, BCM5464, BCM5481
66	  and BCM5482 PHYs.
67
68config BCM63XX_PHY
69	tristate "Drivers for Broadcom 63xx SOCs internal PHY"
70	depends on BCM63XX
71	---help---
72	  Currently supports the 6348 and 6358 PHYs.
73
74config BCM7XXX_PHY
75	tristate "Drivers for Broadcom 7xxx SOCs internal PHYs"
76	---help---
77	  Currently supports the BCM7366, BCM7439, BCM7445, and
78	  40nm and 65nm generation of BCM7xxx Set Top Box SoCs.
79
80config BCM87XX_PHY
81	tristate "Driver for Broadcom BCM8706 and BCM8727 PHYs"
82	help
83	  Currently supports the BCM8706 and BCM8727 10G Ethernet PHYs.
84
85config ICPLUS_PHY
86	tristate "Drivers for ICPlus PHYs"
87	---help---
88	  Currently supports the IP175C and IP1001 PHYs.
89
90config REALTEK_PHY
91	tristate "Drivers for Realtek PHYs"
92	---help---
93	  Supports the Realtek 821x PHY.
94
95config NATIONAL_PHY
96	tristate "Drivers for National Semiconductor PHYs"
97	---help---
98	  Currently supports the DP83865 PHY.
99
100config STE10XP
101	tristate "Driver for STMicroelectronics STe10Xp PHYs"
102	---help---
103	  This is the driver for the STe100p and STe101p PHYs.
104
105config LSI_ET1011C_PHY
106	tristate "Driver for LSI ET1011C PHY"
107	---help---
108	  Supports the LSI ET1011C PHY.
109
110config MICREL_PHY
111	tristate "Driver for Micrel PHYs"
112	---help---
113	  Supports the KSZ9021, VSC8201, KS8001 PHYs.
114
115config FIXED_PHY
116	bool "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs"
117	depends on PHYLIB=y
118	---help---
119	  Adds the platform "fixed" MDIO Bus to cover the boards that use
120	  PHYs that are not connected to the real MDIO bus.
121
122	  Currently tested with mpc866ads and mpc8349e-mitx.
123
124config MDIO_BITBANG
125	tristate "Support for bitbanged MDIO buses"
126	help
127	  This module implements the MDIO bus protocol in software,
128	  for use by low level drivers that export the ability to
129	  drive the relevant pins.
130
131	  If in doubt, say N.
132
133config MDIO_GPIO
134	tristate "Support for GPIO lib-based bitbanged MDIO buses"
135	depends on MDIO_BITBANG && GPIOLIB
136	---help---
137	  Supports GPIO lib-based MDIO busses.
138
139	  To compile this driver as a module, choose M here: the module
140	  will be called mdio-gpio.
141
142config MDIO_OCTEON
143	tristate "Support for MDIO buses on Octeon SOCs"
144	depends on CAVIUM_OCTEON_SOC
145	default y
146	help
147
148	  This module provides a driver for the Octeon MDIO busses.
149	  It is required by the Octeon Ethernet device drivers.
150
151	  If in doubt, say Y.
152
153config MDIO_SUN4I
154	tristate "Allwinner sun4i MDIO interface support"
155	depends on ARCH_SUNXI
156	select REGULATOR
157	select REGULATOR_FIXED_VOLTAGE
158	help
159	  This driver supports the MDIO interface found in the network
160	  interface units of the Allwinner SoC that have an EMAC (A10,
161	  A12, A10s, etc.)
162
163config MDIO_MOXART
164        tristate "MOXA ART MDIO interface support"
165        depends on ARCH_MOXART
166        help
167          This driver supports the MDIO interface found in the network
168          interface units of the MOXA ART SoC
169
170config MDIO_BUS_MUX
171	tristate
172	depends on OF_MDIO
173	help
174	  This module provides a driver framework for MDIO bus
175	  multiplexers which connect one of several child MDIO busses
176	  to a parent bus.  Switching between child busses is done by
177	  device specific drivers.
178
179config MDIO_BUS_MUX_GPIO
180	tristate "Support for GPIO controlled MDIO bus multiplexers"
181	depends on OF_GPIO && OF_MDIO
182	select MDIO_BUS_MUX
183	help
184	  This module provides a driver for MDIO bus multiplexers that
185	  are controlled via GPIO lines.  The multiplexer connects one of
186	  several child MDIO busses to a parent bus.  Child bus
187	  selection is under the control of GPIO lines.
188
189config MDIO_BUS_MUX_MMIOREG
190	tristate "Support for MMIO device-controlled MDIO bus multiplexers"
191	depends on OF_MDIO
192	select MDIO_BUS_MUX
193	help
194	  This module provides a driver for MDIO bus multiplexers that
195	  are controlled via a simple memory-mapped device, like an FPGA.
196	  The multiplexer connects one of several child MDIO busses to a
197	  parent bus.  Child bus selection is under the control of one of
198	  the FPGA's registers.
199
200	  Currently, only 8-bit registers are supported.
201
202endif # PHYLIB
203
204config MICREL_KS8995MA
205	tristate "Micrel KS8995MA 5-ports 10/100 managed Ethernet switch"
206	depends on SPI
207