xref: /freebsd/sys/dev/mii/rlphy.c (revision 84dfba8d183d31e3412639ecb4b8ad4433cf7e80)
1 /*-
2  * Copyright (c) 1997, 1998, 1999
3  *	Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by Bill Paul.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 /*
37  * driver for RealTek 8139 internal PHYs
38  */
39 
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/kernel.h>
43 #include <sys/module.h>
44 #include <sys/socket.h>
45 #include <sys/bus.h>
46 #include <sys/taskqueue.h>	/* XXXGL: if_rlreg.h contamination */
47 
48 #include <net/if.h>
49 #include <net/if_arp.h>
50 #include <net/if_media.h>
51 
52 #include <dev/mii/mii.h>
53 #include <dev/mii/miivar.h>
54 #include "miidevs.h"
55 
56 #include <machine/bus.h>
57 #include <pci/if_rlreg.h>
58 
59 #include "miibus_if.h"
60 
61 static int rlphy_probe(device_t);
62 static int rlphy_attach(device_t);
63 
64 static device_method_t rlphy_methods[] = {
65 	/* device interface */
66 	DEVMETHOD(device_probe,		rlphy_probe),
67 	DEVMETHOD(device_attach,	rlphy_attach),
68 	DEVMETHOD(device_detach,	mii_phy_detach),
69 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
70 	DEVMETHOD_END
71 };
72 
73 static devclass_t rlphy_devclass;
74 
75 static driver_t rlphy_driver = {
76 	"rlphy",
77 	rlphy_methods,
78 	sizeof(struct mii_softc)
79 };
80 
81 DRIVER_MODULE(rlphy, miibus, rlphy_driver, rlphy_devclass, 0, 0);
82 
83 static int	rlphy_service(struct mii_softc *, struct mii_data *, int);
84 static void	rlphy_status(struct mii_softc *);
85 
86 /*
87  * RealTek internal PHYs don't have vendor/device ID registers;
88  * re(4) and rl(4) fake up a return value of all zeros.
89  */
90 static const struct mii_phydesc rlintphys[] = {
91 	{ 0, 0, "RealTek internal media interface" },
92 	MII_PHY_END
93 };
94 
95 static const struct mii_phydesc rlphys[] = {
96 	MII_PHY_DESC(yyREALTEK, RTL8201L),
97 	MII_PHY_DESC(REALTEK, RTL8201E),
98 	MII_PHY_DESC(xxICPLUS, IP101),
99 	MII_PHY_END
100 };
101 
102 static const struct mii_phy_funcs rlphy_funcs = {
103 	rlphy_service,
104 	rlphy_status,
105 	mii_phy_reset
106 };
107 
108 static int
109 rlphy_probe(device_t dev)
110 {
111 	const char *nic;
112 	int rv;
113 
114 	rv = mii_phy_dev_probe(dev, rlphys, BUS_PROBE_DEFAULT);
115 	if (rv <= 0)
116 		return (rv);
117 
118 	nic = device_get_name(device_get_parent(device_get_parent(dev)));
119 	if (strcmp(nic, "rl") == 0 || strcmp(nic, "re") == 0)
120 		return (mii_phy_dev_probe(dev, rlintphys, BUS_PROBE_DEFAULT));
121 	return (ENXIO);
122 }
123 
124 static int
125 rlphy_attach(device_t dev)
126 {
127 
128 	/*
129 	 * The RealTek PHY can never be isolated.
130 	 */
131 	mii_phy_dev_attach(dev, MIIF_NOISOLATE | MIIF_NOMANPAUSE,
132 	    &rlphy_funcs, 1);
133 	return (0);
134 }
135 
136 static int
137 rlphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
138 {
139 
140 	switch (cmd) {
141 	case MII_POLLSTAT:
142 		break;
143 
144 	case MII_MEDIACHG:
145 		mii_phy_setmedia(sc);
146 		break;
147 
148 	case MII_TICK:
149 		/*
150 		 * The RealTek PHY's autonegotiation doesn't need to be
151 		 * kicked; it continues in the background.
152 		 */
153 		break;
154 	}
155 
156 	/* Update the media status. */
157 	PHY_STATUS(sc);
158 
159 	/* Callback if something changed. */
160 	mii_phy_update(sc, cmd);
161 	return (0);
162 }
163 
164 static void
165 rlphy_status(struct mii_softc *phy)
166 {
167 	struct mii_data *mii = phy->mii_pdata;
168 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
169 	int bmsr, bmcr, anlpar;
170 
171 	mii->mii_media_status = IFM_AVALID;
172 	mii->mii_media_active = IFM_ETHER;
173 
174 	bmsr = PHY_READ(phy, MII_BMSR) | PHY_READ(phy, MII_BMSR);
175 	if (bmsr & BMSR_LINK)
176 		mii->mii_media_status |= IFM_ACTIVE;
177 
178 	bmcr = PHY_READ(phy, MII_BMCR);
179 	if (bmcr & BMCR_ISO) {
180 		mii->mii_media_active |= IFM_NONE;
181 		mii->mii_media_status = 0;
182 		return;
183 	}
184 
185 	if (bmcr & BMCR_LOOP)
186 		mii->mii_media_active |= IFM_LOOP;
187 
188 	if (bmcr & BMCR_AUTOEN) {
189 		/*
190 		 * NWay autonegotiation takes the highest-order common
191 		 * bit of the ANAR and ANLPAR (i.e. best media advertised
192 		 * both by us and our link partner).
193 		 */
194 		if ((bmsr & BMSR_ACOMP) == 0) {
195 			/* Erg, still trying, I guess... */
196 			mii->mii_media_active |= IFM_NONE;
197 			return;
198 		}
199 
200 		if ((anlpar = PHY_READ(phy, MII_ANAR) &
201 		    PHY_READ(phy, MII_ANLPAR))) {
202 			if (anlpar & ANLPAR_TX_FD)
203 				mii->mii_media_active |= IFM_100_TX|IFM_FDX;
204 			else if (anlpar & ANLPAR_T4)
205 				mii->mii_media_active |= IFM_100_T4|IFM_HDX;
206 			else if (anlpar & ANLPAR_TX)
207 				mii->mii_media_active |= IFM_100_TX|IFM_HDX;
208 			else if (anlpar & ANLPAR_10_FD)
209 				mii->mii_media_active |= IFM_10_T|IFM_FDX;
210 			else if (anlpar & ANLPAR_10)
211 				mii->mii_media_active |= IFM_10_T|IFM_HDX;
212 			else
213 				mii->mii_media_active |= IFM_NONE;
214 			if ((mii->mii_media_active & IFM_FDX) != 0)
215 				mii->mii_media_active |=
216 				    mii_phy_flowstatus(phy);
217 			return;
218 		}
219 		/*
220 		 * If the other side doesn't support NWAY, then the
221 		 * best we can do is determine if we have a 10Mbps or
222 		 * 100Mbps link. There's no way to know if the link
223 		 * is full or half duplex, so we default to half duplex
224 		 * and hope that the user is clever enough to manually
225 		 * change the media settings if we're wrong.
226 		 */
227 
228 		/*
229 		 * The RealTek PHY supports non-NWAY link speed
230 		 * detection, however it does not report the link
231 		 * detection results via the ANLPAR or BMSR registers.
232 		 * (What? RealTek doesn't do things the way everyone
233 		 * else does? I'm just shocked, shocked I tell you.)
234 		 * To determine the link speed, we have to do one
235 		 * of two things:
236 		 *
237 		 * - If this is a standalone RealTek RTL8201(L) or
238 		 *   workalike PHY, we can determine the link speed by
239 		 *   testing bit 0 in the magic, vendor-specific register
240 		 *   at offset 0x19.
241 		 *
242 		 * - If this is a RealTek MAC with integrated PHY, we
243 		 *   can test the 'SPEED10' bit of the MAC's media status
244 		 *   register.
245 		 */
246 		if (!(phy->mii_mpd_model == 0 && phy->mii_mpd_rev == 0)) {
247 			if (PHY_READ(phy, 0x0019) & 0x01)
248 				mii->mii_media_active |= IFM_100_TX;
249 			else
250 				mii->mii_media_active |= IFM_10_T;
251 		} else {
252 			if (PHY_READ(phy, RL_MEDIASTAT) &
253 			    RL_MEDIASTAT_SPEED10)
254 				mii->mii_media_active |= IFM_10_T;
255 			else
256 				mii->mii_media_active |= IFM_100_TX;
257 		}
258 		mii->mii_media_active |= IFM_HDX;
259 	} else
260 		mii->mii_media_active = ife->ifm_media;
261 }
262