xref: /freebsd/sys/dev/mii/nsgphy.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * Copyright (c) 2001 Wind River Systems
3  * Copyright (c) 2001
4  *	Bill Paul <wpaul@bsdi.com>.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. All advertising materials mentioning features or use of this software
15  *    must display the following acknowledgement:
16  *	This product includes software developed by Bill Paul.
17  * 4. Neither the name of the author nor the names of any co-contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31  * THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  * $FreeBSD$
34  */
35 
36 /*
37  * Driver for the National Semiconductor DP83891 and DP83861
38  * 10/100/1000 PHYs.
39  * Datasheet available at: http://www.national.com/ds/DP/DP83861.pdf
40  *
41  * The DP83891 is the older NatSemi gigE PHY which isn't being sold
42  * anymore. The DP83861 is its replacement, which is an 'enhanced'
43  * firmware driven component. The major difference between the
44  * two is that the 83891 can't generate interrupts, while the
45  * 83861 can. (I think it wasn't originally designed to do this, but
46  * it can now thanks to firmware updates.) The 83861 also allows
47  * access to its internal RAM via indirect register access.
48  */
49 
50 #include <sys/param.h>
51 #include <sys/systm.h>
52 #include <sys/kernel.h>
53 #include <sys/malloc.h>
54 #include <sys/socket.h>
55 #include <sys/bus.h>
56 
57 #include <machine/clock.h>
58 
59 #include <net/if.h>
60 #include <net/if_media.h>
61 
62 #include <dev/mii/mii.h>
63 #include <dev/mii/miivar.h>
64 #include <dev/mii/miidevs.h>
65 
66 #include <dev/mii/nsgphyreg.h>
67 
68 #include "miibus_if.h"
69 
70 #if !defined(lint)
71 static const char rcsid[] =
72   "$FreeBSD$";
73 #endif
74 
75 static int nsgphy_probe		__P((device_t));
76 static int nsgphy_attach	__P((device_t));
77 static int nsgphy_detach	__P((device_t));
78 
79 static device_method_t nsgphy_methods[] = {
80 	/* device interface */
81 	DEVMETHOD(device_probe,		nsgphy_probe),
82 	DEVMETHOD(device_attach,	nsgphy_attach),
83 	DEVMETHOD(device_detach,	nsgphy_detach),
84 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
85 	{ 0, 0 }
86 };
87 
88 static devclass_t nsgphy_devclass;
89 
90 static driver_t nsgphy_driver = {
91 	"nsgphy",
92 	nsgphy_methods,
93 	sizeof(struct mii_softc)
94 };
95 
96 DRIVER_MODULE(nsgphy, miibus, nsgphy_driver, nsgphy_devclass, 0, 0);
97 
98 int	nsgphy_service __P((struct mii_softc *, struct mii_data *, int));
99 void	nsgphy_status __P((struct mii_softc *));
100 
101 static int	nsgphy_mii_phy_auto __P((struct mii_softc *, int));
102 extern void	mii_phy_auto_timeout __P((void *));
103 
104 static int nsgphy_probe(dev)
105 	device_t		dev;
106 {
107 	struct mii_attach_args *ma;
108 
109 	ma = device_get_ivars(dev);
110 
111 	if (MII_OUI(ma->mii_id1, ma->mii_id2) == MII_OUI_NATSEMI) {
112 		if (MII_MODEL(ma->mii_id2) == MII_MODEL_NATSEMI_DP83891) {
113 			device_set_desc(dev, MII_STR_NATSEMI_DP83891);
114 			return(0);
115 		}
116 		if (MII_MODEL(ma->mii_id2) == MII_MODEL_NATSEMI_DP83861) {
117 			device_set_desc(dev, MII_STR_NATSEMI_DP83861);
118 			return(0);
119 		}
120 	}
121 
122 	return(ENXIO);
123 }
124 
125 static int nsgphy_attach(dev)
126 	device_t		dev;
127 {
128 	struct mii_softc *sc;
129 	struct mii_attach_args *ma;
130 	struct mii_data *mii;
131 	const char *sep = "";
132 
133 	sc = device_get_softc(dev);
134 	ma = device_get_ivars(dev);
135 	sc->mii_dev = device_get_parent(dev);
136 	mii = device_get_softc(sc->mii_dev);
137 	LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
138 
139 	sc->mii_inst = mii->mii_instance;
140 	sc->mii_phy = ma->mii_phyno;
141 	sc->mii_service = nsgphy_service;
142 	sc->mii_pdata = mii;
143 
144 	sc->mii_flags |= MIIF_NOISOLATE;
145 	mii->mii_instance++;
146 
147 #define	ADD(m, c)	ifmedia_add(&mii->mii_media, (m), (c), NULL)
148 #define PRINT(s)	printf("%s%s", sep, s); sep = ", "
149 
150 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst),
151 	    BMCR_ISO);
152 #if 0
153 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_LOOP, sc->mii_inst),
154 	    BMCR_LOOP|BMCR_S100);
155 #endif
156 
157 	mii_phy_reset(sc);
158 
159 	device_printf(dev, " ");
160 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_TX, IFM_FDX, sc->mii_inst),
161 	    NSGPHY_S1000|NSGPHY_BMCR_FDX);
162 	PRINT("1000baseTX-FDX");
163 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_TX, 0, sc->mii_inst),
164 	    NSGPHY_S1000);
165 	PRINT("1000baseTX");
166 	sc->mii_capabilities =
167 	    (PHY_READ(sc, MII_BMSR) |
168 	    (BMSR_10TFDX|BMSR_10THDX)) & ma->mii_capmask;
169 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, sc->mii_inst),
170 	    NSGPHY_S100|NSGPHY_BMCR_FDX);
171 	PRINT("100baseTX-FDX");
172 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, sc->mii_inst), NSGPHY_S100);
173 	PRINT("100baseTX");
174 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, sc->mii_inst),
175 	    NSGPHY_S10|NSGPHY_BMCR_FDX);
176 	PRINT("10baseT-FDX");
177 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, sc->mii_inst), NSGPHY_S10);
178 	PRINT("10baseT");
179 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst), 0);
180 	PRINT("auto");
181 	printf("\n");
182 #undef ADD
183 #undef PRINT
184 
185 	MIIBUS_MEDIAINIT(sc->mii_dev);
186 	return(0);
187 }
188 
189 static int nsgphy_detach(dev)
190 	device_t		dev;
191 {
192 	struct mii_softc *sc;
193 	struct mii_data *mii;
194 
195 	sc = device_get_softc(dev);
196 	mii = device_get_softc(device_get_parent(dev));
197 	if (sc->mii_flags & MIIF_DOINGAUTO)
198 		untimeout(mii_phy_auto_timeout, sc, sc->mii_auto_ch);
199 	sc->mii_dev = NULL;
200 	LIST_REMOVE(sc, mii_list);
201 
202 	return(0);
203 }
204 int
205 nsgphy_service(sc, mii, cmd)
206 	struct mii_softc *sc;
207 	struct mii_data *mii;
208 	int cmd;
209 {
210 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
211 	int reg;
212 
213 	switch (cmd) {
214 	case MII_POLLSTAT:
215 		/*
216 		 * If we're not polling our PHY instance, just return.
217 		 */
218 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
219 			return (0);
220 		break;
221 
222 	case MII_MEDIACHG:
223 		/*
224 		 * If the media indicates a different PHY instance,
225 		 * isolate ourselves.
226 		 */
227 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
228 			reg = PHY_READ(sc, MII_BMCR);
229 			PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
230 			return (0);
231 		}
232 
233 		/*
234 		 * If the interface is not up, don't do anything.
235 		 */
236 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
237 			break;
238 
239 
240 		switch (IFM_SUBTYPE(ife->ifm_media)) {
241 		case IFM_AUTO:
242 #ifdef foo
243 			/*
244 			 * If we're already in auto mode, just return.
245 			 */
246 			if (PHY_READ(sc, NSGPHY_MII_BMCR) & NSGPHY_BMCR_AUTOEN)
247 				return (0);
248 #endif
249 			(void) nsgphy_mii_phy_auto(sc, 0);
250 			break;
251 		case IFM_1000_TX:
252 			if ((ife->ifm_media & IFM_GMASK) == IFM_FDX) {
253 				PHY_WRITE(sc, NSGPHY_MII_BMCR,
254 				    NSGPHY_BMCR_FDX|NSGPHY_BMCR_SPD1);
255 			} else {
256 				PHY_WRITE(sc, NSGPHY_MII_BMCR,
257 				    NSGPHY_BMCR_SPD1);
258 			}
259 			PHY_WRITE(sc, NSGPHY_MII_ANAR, NSGPHY_SEL_TYPE);
260 
261 			/*
262 			 * When setting the link manually, one side must
263 			 * be the master and the other the slave. However
264 			 * ifmedia doesn't give us a good way to specify
265 			 * this, so we fake it by using one of the LINK
266 			 * flags. If LINK0 is set, we program the PHY to
267 			 * be a master, otherwise it's a slave.
268 			 */
269 			if ((mii->mii_ifp->if_flags & IFF_LINK0)) {
270 				PHY_WRITE(sc, NSGPHY_MII_1000CTL,
271 				    NSGPHY_1000CTL_MSE|NSGPHY_1000CTL_MSC);
272 			} else {
273 				PHY_WRITE(sc, NSGPHY_MII_1000CTL,
274 				    NSGPHY_1000CTL_MSE);
275 			}
276 			break;
277 		case IFM_100_T4:
278 			/*
279 			 * XXX Not supported as a manual setting right now.
280 			 */
281 			return (EINVAL);
282 		case IFM_NONE:
283 			PHY_WRITE(sc, MII_BMCR, BMCR_ISO|BMCR_PDOWN);
284 			break;
285 		default:
286 			/*
287 			 * BMCR data is stored in the ifmedia entry.
288 			 */
289 			PHY_WRITE(sc, MII_ANAR,
290 			    mii_anar(ife->ifm_media));
291 			PHY_WRITE(sc, MII_BMCR, ife->ifm_data);
292 			break;
293 		}
294 		break;
295 
296 	case MII_TICK:
297 		/*
298 		 * If we're not currently selected, just return.
299 		 */
300 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
301 			return (0);
302 
303 		/*
304 		 * Only used for autonegotiation.
305 		 */
306 		if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
307 			return (0);
308 
309 		/*
310 		 * Is the interface even up?
311 		 */
312 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
313 			return (0);
314 
315 		/*
316 		 * Only retry autonegotiation every 5 seconds.
317 		 * Actually, for gigE PHYs, we should wait longer, since
318 		 * 5 seconds is the mimimum time the documentation
319 		 * says to wait for a 1000mbps link to be established.
320 		 */
321 		if (++sc->mii_ticks != 10)
322 			return (0);
323 
324 		sc->mii_ticks = 0;
325 
326 		/*
327 		 * Check to see if we have link.
328 		 */
329 		reg = PHY_READ(sc, NSGPHY_MII_PHYSUP);
330 		if (reg & NSGPHY_PHYSUP_LNKSTS)
331 			break;
332 
333 		mii_phy_reset(sc);
334 		if (nsgphy_mii_phy_auto(sc, 0) == EJUSTRETURN)
335 			return(0);
336 		break;
337 	}
338 
339 	/* Update the media status. */
340 	nsgphy_status(sc);
341 
342 	/* Callback if something changed. */
343 	if (sc->mii_active != mii->mii_media_active || cmd == MII_MEDIACHG) {
344 		MIIBUS_STATCHG(sc->mii_dev);
345 		sc->mii_active = mii->mii_media_active;
346 	}
347 	return (0);
348 }
349 
350 void
351 nsgphy_status(sc)
352 	struct mii_softc *sc;
353 {
354 	struct mii_data *mii = sc->mii_pdata;
355 	int bmsr, bmcr, physup, anlpar, gstat;
356 
357 	mii->mii_media_status = IFM_AVALID;
358 	mii->mii_media_active = IFM_ETHER;
359 
360 	bmsr = PHY_READ(sc, NSGPHY_MII_BMSR);
361 	physup = PHY_READ(sc, NSGPHY_MII_PHYSUP);
362 	if (physup & NSGPHY_PHYSUP_LNKSTS)
363 		mii->mii_media_status |= IFM_ACTIVE;
364 
365 	bmcr = PHY_READ(sc, NSGPHY_MII_BMCR);
366 
367 	if (bmcr & NSGPHY_BMCR_LOOP)
368 		mii->mii_media_active |= IFM_LOOP;
369 
370 	if (bmcr & NSGPHY_BMCR_AUTOEN) {
371 		if ((bmsr & NSGPHY_BMSR_ACOMP) == 0) {
372 			/* Erg, still trying, I guess... */
373 			mii->mii_media_active |= IFM_NONE;
374 			return;
375 		}
376 		anlpar = PHY_READ(sc, NSGPHY_MII_ANLPAR);
377 		gstat = PHY_READ(sc, NSGPHY_MII_1000STS);
378 		if (gstat & NSGPHY_1000STS_LPFD)
379 			mii->mii_media_active |= IFM_1000_TX|IFM_FDX;
380 		else if (gstat & NSGPHY_1000STS_LPHD)
381 			mii->mii_media_active |= IFM_1000_TX|IFM_HDX;
382 		else if (anlpar & NSGPHY_ANLPAR_100T4)
383 			mii->mii_media_active |= IFM_100_T4;
384 		else if (anlpar & NSGPHY_ANLPAR_100FDX)
385 			mii->mii_media_active |= IFM_100_TX|IFM_FDX;
386 		else if (anlpar & NSGPHY_ANLPAR_100HDX)
387 			mii->mii_media_active |= IFM_100_TX;
388 		else if (anlpar & NSGPHY_ANLPAR_10FDX)
389 			mii->mii_media_active |= IFM_10_T|IFM_FDX;
390 		else if (anlpar & NSGPHY_ANLPAR_10HDX)
391 			mii->mii_media_active |= IFM_10_T|IFM_HDX;
392 		else
393 			mii->mii_media_active |= IFM_NONE;
394 		return;
395 	}
396 
397 	switch(bmcr & (NSGPHY_BMCR_SPD1|NSGPHY_BMCR_SPD0)) {
398 	case NSGPHY_S1000:
399 		mii->mii_media_active |= IFM_1000_TX;
400 		break;
401 	case NSGPHY_S100:
402 		mii->mii_media_active |= IFM_100_TX;
403 		break;
404 	case NSGPHY_S10:
405 		mii->mii_media_active |= IFM_10_T;
406 		break;
407 	default:
408 		break;
409 	}
410 
411 	if (bmcr & NSGPHY_BMCR_FDX)
412 		mii->mii_media_active |= IFM_FDX;
413 	else
414 		mii->mii_media_active |= IFM_HDX;
415 
416 	return;
417 }
418 
419 
420 static int
421 nsgphy_mii_phy_auto(mii, waitfor)
422 	struct mii_softc *mii;
423 	int waitfor;
424 {
425 	int bmsr, ktcr = 0, i;
426 
427 	if ((mii->mii_flags & MIIF_DOINGAUTO) == 0) {
428 		mii_phy_reset(mii);
429 		PHY_WRITE(mii, NSGPHY_MII_BMCR, 0);
430 		DELAY(1000);
431 		ktcr = PHY_READ(mii, NSGPHY_MII_1000CTL);
432 		PHY_WRITE(mii, NSGPHY_MII_1000CTL, ktcr |
433 		    (NSGPHY_1000CTL_AFD|NSGPHY_1000CTL_AHD));
434 		ktcr = PHY_READ(mii, NSGPHY_MII_1000CTL);
435 		DELAY(1000);
436 		PHY_WRITE(mii, NSGPHY_MII_ANAR,
437 		    BMSR_MEDIA_TO_ANAR(mii->mii_capabilities) | ANAR_CSMA);
438 		DELAY(1000);
439 		PHY_WRITE(mii, NSGPHY_MII_BMCR,
440 		    NSGPHY_BMCR_AUTOEN | NSGPHY_BMCR_STARTNEG);
441 	}
442 
443 	if (waitfor) {
444 		/* Wait 500ms for it to complete. */
445 		for (i = 0; i < 500; i++) {
446 			if ((bmsr = PHY_READ(mii, NSGPHY_MII_BMSR)) &
447 			    NSGPHY_BMSR_ACOMP)
448 				return (0);
449 			DELAY(1000);
450 #if 0
451 		if ((bmsr & BMSR_ACOMP) == 0)
452 			printf("%s: autonegotiation failed to complete\n",
453 			    mii->mii_dev.dv_xname);
454 #endif
455 		}
456 
457 		/*
458 		 * Don't need to worry about clearing MIIF_DOINGAUTO.
459 		 * If that's set, a timeout is pending, and it will
460 		 * clear the flag.
461 		 */
462 		return (EIO);
463 	}
464 
465 	/*
466 	 * Just let it finish asynchronously.  This is for the benefit of
467 	 * the tick handler driving autonegotiation.  Don't want 500ms
468 	 * delays all the time while the system is running!
469 	 */
470 	if ((mii->mii_flags & MIIF_DOINGAUTO) == 0) {
471 		mii->mii_flags |= MIIF_DOINGAUTO;
472 		mii->mii_auto_ch = timeout(mii_phy_auto_timeout, mii, hz >> 1);
473 	}
474 	return (EJUSTRETURN);
475 }
476