xref: /freebsd/sys/dev/mii/nsgphy.c (revision 77b7cdf1999ee965ad494fddd184b18f532ac91a)
1 /*
2  * Copyright (c) 2001 Wind River Systems
3  * Copyright (c) 2001
4  *	Bill Paul <wpaul@bsdi.com>.  All rights reserved.
5  * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
10  * NASA Ames Research Center.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *	This product includes software developed by Bill Paul.
23  * 4. Neither the name of the author nor the names of any co-contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
37  * THE POSSIBILITY OF SUCH DAMAGE.
38  */
39 
40 /*
41  * Driver for the National Semiconductor DP83891 and DP83861
42  * 10/100/1000 PHYs.
43  * Datasheet available at: http://www.national.com/ds/DP/DP83861.pdf
44  *
45  * The DP83891 is the older NatSemi gigE PHY which isn't being sold
46  * anymore. The DP83861 is its replacement, which is an 'enhanced'
47  * firmware driven component. The major difference between the
48  * two is that the 83891 can't generate interrupts, while the
49  * 83861 can. (I think it wasn't originally designed to do this, but
50  * it can now thanks to firmware updates.) The 83861 also allows
51  * access to its internal RAM via indirect register access.
52  */
53 
54 #include <sys/cdefs.h>
55 __FBSDID("$FreeBSD$");
56 
57 #include <sys/param.h>
58 #include <sys/systm.h>
59 #include <sys/kernel.h>
60 #include <sys/socket.h>
61 #include <sys/bus.h>
62 
63 #include <machine/clock.h>
64 
65 #include <net/if.h>
66 #include <net/if_media.h>
67 
68 #include <dev/mii/mii.h>
69 #include <dev/mii/miivar.h>
70 #include "miidevs.h"
71 
72 #include <dev/mii/nsgphyreg.h>
73 
74 #include "miibus_if.h"
75 
76 static int nsgphy_probe(device_t);
77 static int nsgphy_attach(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,	mii_phy_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 
97 DRIVER_MODULE(nsgphy, miibus, nsgphy_driver, nsgphy_devclass, 0, 0);
98 
99 static int	nsgphy_service(struct mii_softc *, struct mii_data *,int);
100 static void	nsgphy_status(struct mii_softc *);
101 
102 const struct mii_phydesc gphyters[] = {
103 	{ MII_OUI_NATSEMI,		MII_MODEL_NATSEMI_DP83861,
104 	  MII_STR_NATSEMI_DP83861 },
105 
106 	{ MII_OUI_NATSEMI,		MII_MODEL_NATSEMI_DP83891,
107 	  MII_STR_NATSEMI_DP83891 },
108 
109 	{ 0,				0,
110 	  NULL },
111 };
112 
113 static int
114 nsgphy_probe(device_t dev)
115 {
116 	struct mii_attach_args *ma;
117 	const struct mii_phydesc *mpd;
118 
119 	ma = device_get_ivars(dev);
120 	mpd = mii_phy_match(ma, gphyters);
121 	if (mpd != NULL) {
122 		device_set_desc(dev, mpd->mpd_name);
123 		return(0);
124 	}
125 
126 	return(ENXIO);
127 }
128 
129 static int
130 nsgphy_attach(device_t dev)
131 {
132 	struct mii_softc *sc;
133 	struct mii_attach_args *ma;
134 	struct mii_data *mii;
135 	const struct mii_phydesc *mpd;
136 
137 	sc = device_get_softc(dev);
138 	ma = device_get_ivars(dev);
139 	mpd = mii_phy_match(ma, gphyters);
140 	if (bootverbose)
141 		device_printf(dev, "<rev. %d>\n", MII_REV(ma->mii_id2));
142 	device_printf(dev, " ");
143 	sc->mii_dev = device_get_parent(dev);
144 	mii = device_get_softc(sc->mii_dev);
145 	LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
146 
147 	sc->mii_inst = mii->mii_instance;
148 	sc->mii_phy = ma->mii_phyno;
149 	sc->mii_service = nsgphy_service;
150 	sc->mii_pdata = mii;
151 	sc->mii_anegticks = 5;
152 
153 	mii->mii_instance++;
154 
155 	sc->mii_capabilities = (PHY_READ(sc, MII_BMSR) |
156 	    (BMSR_10TFDX|BMSR_10THDX)) & ma->mii_capmask;
157 	if (sc->mii_capabilities & BMSR_EXTSTAT)
158 		sc->mii_extcapabilities = PHY_READ(sc, MII_EXTSR);
159 
160 	mii_phy_add_media(sc);
161 	printf("\n");
162 
163 	MIIBUS_MEDIAINIT(sc->mii_dev);
164 	return(0);
165 }
166 
167 static int
168 nsgphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
169 {
170 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
171 	int reg;
172 
173 	switch (cmd) {
174 	case MII_POLLSTAT:
175 		/*
176 		 * If we're not polling our PHY instance, just return.
177 		 */
178 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
179 			return (0);
180 		break;
181 
182 	case MII_MEDIACHG:
183 		/*
184 		 * If the media indicates a different PHY instance,
185 		 * isolate ourselves.
186 		 */
187 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
188 			reg = PHY_READ(sc, MII_BMCR);
189 			PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
190 			return (0);
191 		}
192 
193 		/*
194 		 * If the interface is not up, don't do anything.
195 		 */
196 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
197 			break;
198 
199 		mii_phy_setmedia(sc);
200 		break;
201 
202 	case MII_TICK:
203 		/*
204 		 * If we're not currently selected, just return.
205 		 */
206 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
207 			return (0);
208 
209 		if (mii_phy_tick(sc) == EJUSTRETURN)
210 			return (0);
211 		break;
212 	}
213 
214 	/* Update the media status. */
215 	nsgphy_status(sc);
216 
217 	/* Callback if something changed. */
218 	mii_phy_update(sc, cmd);
219 	return (0);
220 }
221 
222 static void
223 nsgphy_status(struct mii_softc *sc)
224 {
225 	struct mii_data *mii = sc->mii_pdata;
226 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
227 	int bmsr, bmcr, physup, gtsr;
228 
229 	mii->mii_media_status = IFM_AVALID;
230 	mii->mii_media_active = IFM_ETHER;
231 
232 	bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
233 
234 	physup = PHY_READ(sc, NSGPHY_MII_PHYSUP);
235 
236 	if (physup & PHY_SUP_LINK)
237 		mii->mii_media_status |= IFM_ACTIVE;
238 
239 	bmcr = PHY_READ(sc, MII_BMCR);
240 	if (bmcr & BMCR_ISO) {
241 		mii->mii_media_active |= IFM_NONE;
242 		mii->mii_media_status = 0;
243 		return;
244 	}
245 
246 	if (bmcr & BMCR_LOOP)
247 		mii->mii_media_active |= IFM_LOOP;
248 
249 	if (bmcr & BMCR_AUTOEN) {
250 		/*
251 		 * The media status bits are only valid if autonegotiation
252 		 * has completed (or it's disabled).
253 		 */
254 		if ((bmsr & BMSR_ACOMP) == 0) {
255 			/* Erg, still trying, I guess... */
256 			mii->mii_media_active |= IFM_NONE;
257 			return;
258 		}
259 
260 		switch (physup & (PHY_SUP_SPEED1|PHY_SUP_SPEED0)) {
261 		case PHY_SUP_SPEED1:
262 			mii->mii_media_active |= IFM_1000_T;
263 			gtsr = PHY_READ(sc, MII_100T2SR);
264 			if (gtsr & GTSR_MS_RES)
265 				mii->mii_media_active |= IFM_ETH_MASTER;
266 			break;
267 
268 		case PHY_SUP_SPEED0:
269 			mii->mii_media_active |= IFM_100_TX;
270 			break;
271 
272 		case 0:
273 			mii->mii_media_active |= IFM_10_T;
274 			break;
275 
276 		default:
277 			mii->mii_media_active |= IFM_NONE;
278 			mii->mii_media_status = 0;
279 		}
280 		if (physup & PHY_SUP_DUPLEX)
281 			mii->mii_media_active |= IFM_FDX;
282 	} else
283 		mii->mii_media_active = ife->ifm_media;
284 }
285