xref: /freebsd/sys/dev/mii/e1000phy.c (revision b52b9d56d4e96089873a75f9e29062eec19fabba)
1 /* $FreeBSD$ */
2 /*
3  * Principal Author: Parag Patel
4  * Copyright (c) 2001
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice unmodified, this list of conditions, and the following
12  *    disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * Additonal Copyright (c) 2001 by Traakan Software under same licence.
30  * Secondary Author: Matthew Jacob
31  */
32 
33 /*
34  * driver for the Marvell 88E1000 series external 1000/100/10-BT PHY.
35  */
36 
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/malloc.h>
41 #include <sys/socket.h>
42 #include <sys/bus.h>
43 
44 #include <machine/clock.h>
45 
46 #include <net/if.h>
47 #include <net/if_media.h>
48 
49 #include <dev/mii/mii.h>
50 #include <dev/mii/miivar.h>
51 #include <dev/mii/miidevs.h>
52 
53 #include <dev/mii/e1000phyreg.h>
54 
55 #include "miibus_if.h"
56 
57 static int e1000phy_probe(device_t);
58 static int e1000phy_attach(device_t);
59 
60 static device_method_t e1000phy_methods[] = {
61 	/* device interface */
62 	DEVMETHOD(device_probe,		e1000phy_probe),
63 	DEVMETHOD(device_attach,	e1000phy_attach),
64 	DEVMETHOD(device_detach,	mii_phy_detach),
65 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
66 	{ 0, 0 }
67 };
68 
69 static devclass_t e1000phy_devclass;
70 static driver_t e1000phy_driver = {
71 	"e1000phy", e1000phy_methods, sizeof (struct mii_softc)
72 };
73 DRIVER_MODULE(e1000phy, miibus, e1000phy_driver, e1000phy_devclass, 0, 0);
74 
75 static int	e1000phy_service(struct mii_softc *, struct mii_data *, int);
76 static void	e1000phy_status(struct mii_softc *);
77 static void	e1000phy_reset(struct mii_softc *);
78 static int	e1000phy_mii_phy_auto(struct mii_softc *);
79 
80 static int e1000phy_debug = 0;
81 
82 static int
83 e1000phy_probe(device_t	dev)
84 {
85 	struct mii_attach_args *ma;
86 	u_int32_t id;
87 
88 	ma = device_get_ivars(dev);
89 	id = ((ma->mii_id1 << 16) | ma->mii_id2) & E1000_ID_MASK;
90 
91 	if (id != E1000_ID_88E1000 && id != E1000_ID_88E1000S) {
92 		return ENXIO;
93 	}
94 
95 	device_set_desc(dev, MII_STR_MARVELL_E1000);
96 	return 0;
97 }
98 
99 static int
100 e1000phy_attach(device_t dev)
101 {
102 	struct mii_softc *sc;
103 	struct mii_attach_args *ma;
104 	struct mii_data *mii;
105 
106 	getenv_int("e1000phy_debug", &e1000phy_debug);
107 
108 	sc = device_get_softc(dev);
109 	ma = device_get_ivars(dev);
110 	sc->mii_dev = device_get_parent(dev);
111 	mii = device_get_softc(sc->mii_dev);
112 	LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
113 
114 	sc->mii_inst = mii->mii_instance;
115 	sc->mii_phy = ma->mii_phyno;
116 	sc->mii_service = e1000phy_service;
117 	sc->mii_pdata = mii;
118 
119 	sc->mii_flags |= MIIF_NOISOLATE;
120 	mii->mii_instance++;
121 	e1000phy_reset(sc);
122 
123 	device_printf(dev, " ");
124 
125 #define	ADD(m, c)	ifmedia_add(&mii->mii_media, (m), (c), NULL)
126 /*
127 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst),
128 	    E1000_CR_ISOLATE);
129 */
130 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, sc->mii_inst),
131 	    E1000_CR_SPEED_10);
132 	printf("10baseT, ");
133 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, sc->mii_inst),
134 	    E1000_CR_SPEED_10 | E1000_CR_FULL_DUPLEX);
135 	printf("10baseT-FDX, ");
136 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, sc->mii_inst),
137 	    E1000_CR_SPEED_100);
138 	printf("100baseTX, ");
139 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, sc->mii_inst),
140 	    E1000_CR_SPEED_100 | E1000_CR_FULL_DUPLEX);
141 	printf("100baseTX-FDX, ");
142 	/*
143 	 * 1000BT-simplex not supported; driver must ignore this entry,
144 	 * but it must be present in order to manually set full-duplex.
145 	 */
146 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, 0, sc->mii_inst),
147 	    E1000_CR_SPEED_1000);
148 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, IFM_FDX, sc->mii_inst),
149 	    E1000_CR_SPEED_1000 | E1000_CR_FULL_DUPLEX);
150 	printf("1000baseTX-FDX, ");
151 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst), 0);
152 	printf("auto\n");
153 #undef ADD
154 
155 	MIIBUS_MEDIAINIT(sc->mii_dev);
156 	return(0);
157 }
158 
159 static void
160 e1000phy_reset(struct mii_softc *sc)
161 {
162 	u_int32_t reg;
163 	int i;
164 
165 	/* initialize custom E1000 registers to magic values */
166 	reg = PHY_READ(sc, E1000_SCR);
167 	reg &= ~E1000_SCR_AUTO_X_MODE;
168 	PHY_WRITE(sc, E1000_SCR, reg);
169 
170 	/* normal PHY reset */
171 	/*mii_phy_reset(sc);*/
172 	reg = PHY_READ(sc, E1000_CR);
173 	reg |= E1000_CR_RESET;
174 	PHY_WRITE(sc, E1000_CR, reg);
175 
176 	for (i = 0; i < 500; i++) {
177 		DELAY(1);
178 		reg = PHY_READ(sc, E1000_CR);
179 		if (!(reg & E1000_CR_RESET))
180 			break;
181 	}
182 
183 	/* set more custom E1000 registers to magic values */
184 	reg = PHY_READ(sc, E1000_SCR);
185 	reg |= E1000_SCR_ASSERT_CRS_ON_TX;
186 	PHY_WRITE(sc, E1000_SCR, reg);
187 
188 	reg = PHY_READ(sc, E1000_ESCR);
189 	reg |= E1000_ESCR_TX_CLK_25;
190 	PHY_WRITE(sc, E1000_ESCR, reg);
191 
192 	/* even more magic to reset DSP? */
193 	PHY_WRITE(sc, 29, 0x1d);
194 	PHY_WRITE(sc, 30, 0xc1);
195 	PHY_WRITE(sc, 30, 0x00);
196 }
197 
198 static int
199 e1000phy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
200 {
201 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
202 	int reg;
203 
204 	switch (cmd) {
205 	case MII_POLLSTAT:
206 		/*
207 		 * If we're not polling our PHY instance, just return.
208 		 */
209 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
210 			return (0);
211 		break;
212 
213 	case MII_MEDIACHG:
214 		/*
215 		 * If the media indicates a different PHY instance,
216 		 * isolate ourselves.
217 		 */
218 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
219 			reg = PHY_READ(sc, E1000_CR);
220 			PHY_WRITE(sc, E1000_CR, reg | E1000_CR_ISOLATE);
221 			return (0);
222 		}
223 
224 		/*
225 		 * If the interface is not up, don't do anything.
226 		 */
227 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0) {
228 			break;
229 		}
230 
231 		switch (IFM_SUBTYPE(ife->ifm_media)) {
232 		case IFM_AUTO:
233 			e1000phy_reset(sc);
234 			(void)e1000phy_mii_phy_auto(sc);
235 			break;
236 
237 		case IFM_1000_T:
238 			e1000phy_reset(sc);
239 
240 			/* TODO - any other way to force 1000BT? */
241 			(void)e1000phy_mii_phy_auto(sc);
242 			break;
243 
244 		case IFM_100_TX:
245 			e1000phy_reset(sc);
246 
247 			if ((ife->ifm_media & IFM_GMASK) == IFM_FDX) {
248 				PHY_WRITE(sc, E1000_CR,
249 				    E1000_CR_FULL_DUPLEX | E1000_CR_SPEED_100);
250 				PHY_WRITE(sc, E1000_AR, E1000_AR_100TX_FD);
251 			} else {
252 				PHY_WRITE(sc, E1000_CR, E1000_CR_SPEED_100);
253 				PHY_WRITE(sc, E1000_AR, E1000_AR_100TX);
254 			}
255 			break;
256 
257 		case IFM_10_T:
258 			e1000phy_reset(sc);
259 
260 			if ((ife->ifm_media & IFM_GMASK) == IFM_FDX) {
261 				PHY_WRITE(sc, E1000_CR,
262 				    E1000_CR_FULL_DUPLEX | E1000_CR_SPEED_10);
263 				PHY_WRITE(sc, E1000_AR, E1000_AR_10T_FD);
264 			} else {
265 				PHY_WRITE(sc, E1000_CR, E1000_CR_SPEED_10);
266 				PHY_WRITE(sc, E1000_AR, E1000_AR_10T);
267 			}
268 
269 			break;
270 
271 		default:
272 			return (EINVAL);
273 		}
274 
275 		break;
276 
277 	case MII_TICK:
278 		/*
279 		 * If we're not currently selected, just return.
280 		 */
281 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
282 			return (0);
283 		}
284 
285 		/*
286 		 * Is the interface even up?
287 		 */
288 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
289 			return (0);
290 
291 		/*
292 		 * Only used for autonegotiation.
293 		 */
294 		if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
295 			break;
296 
297 		/*
298 		 * check for link.
299 		 * Read the status register twice; BMSR_LINK is latch-low.
300 		 */
301 		reg = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
302 		if (reg & BMSR_LINK)
303 			break;
304 
305 		/*
306 		 * Only retry autonegotiation every 5 seconds.
307 		 */
308 		if (++sc->mii_ticks != 5)
309 			return (0);
310 
311 		sc->mii_ticks = 0;
312 		e1000phy_reset(sc);
313 		e1000phy_mii_phy_auto(sc);
314 		return (0);
315 	}
316 
317 	/* Update the media status. */
318 	e1000phy_status(sc);
319 
320 	/* Callback if something changed. */
321 	mii_phy_update(sc, cmd);
322 	return (0);
323 }
324 
325 static void
326 e1000phy_status(struct mii_softc *sc)
327 {
328 	struct mii_data *mii = sc->mii_pdata;
329 	int bmsr, bmcr, esr, ssr, isr, ar, lpar;
330 
331 	mii->mii_media_status = IFM_AVALID;
332 	mii->mii_media_active = IFM_ETHER;
333 
334 	bmsr = PHY_READ(sc, E1000_SR) | PHY_READ(sc, E1000_SR);
335 	esr = PHY_READ(sc, E1000_ESR);
336 	bmcr = PHY_READ(sc, E1000_CR);
337 	ssr = PHY_READ(sc, E1000_SSR);
338 	isr = PHY_READ(sc, E1000_ISR);
339 	ar = PHY_READ(sc, E1000_AR);
340 	lpar = PHY_READ(sc, E1000_LPAR);
341 
342 	if (bmsr & E1000_SR_LINK_STATUS)
343 		mii->mii_media_status |= IFM_ACTIVE;
344 
345 	if (bmcr & E1000_CR_LOOPBACK)
346 		mii->mii_media_active |= IFM_LOOP;
347 
348 	if ((!(bmsr & E1000_SR_AUTO_NEG_COMPLETE) || !(ssr & E1000_SSR_LINK) ||
349 	    !(ssr & E1000_SSR_SPD_DPLX_RESOLVED))) {
350 		/* Erg, still trying, I guess... */
351 		mii->mii_media_active |= IFM_NONE;
352 		return;
353 	}
354 
355 	if (ssr & E1000_SSR_1000MBS)
356 		mii->mii_media_active |= IFM_1000_T;
357 	else if (ssr & E1000_SSR_100MBS)
358 		mii->mii_media_active |= IFM_100_TX;
359 	else
360 		mii->mii_media_active |= IFM_10_T;
361 
362 	if (ssr & E1000_SSR_DUPLEX)
363 		mii->mii_media_active |= IFM_FDX;
364 	else
365 		mii->mii_media_active |= IFM_HDX;
366 
367 	/* FLAG0==rx-flow-control FLAG1==tx-flow-control */
368 	if ((ar & E1000_AR_PAUSE) && (lpar & E1000_LPAR_PAUSE)) {
369 		mii->mii_media_active |= IFM_FLAG0 | IFM_FLAG1;
370 	} else if (!(ar & E1000_AR_PAUSE) && (ar & E1000_AR_ASM_DIR) &&
371 	    (lpar & E1000_LPAR_PAUSE) && (lpar & E1000_LPAR_ASM_DIR)) {
372 		mii->mii_media_active |= IFM_FLAG1;
373 	} else if ((ar & E1000_AR_PAUSE) && (ar & E1000_AR_ASM_DIR) &&
374 	    !(lpar & E1000_LPAR_PAUSE) && (lpar & E1000_LPAR_ASM_DIR)) {
375 		mii->mii_media_active |= IFM_FLAG0;
376 	}
377 }
378 
379 static int
380 e1000phy_mii_phy_auto(struct mii_softc *mii)
381 {
382 
383 	PHY_WRITE(mii, E1000_AR, E1000_AR_10T | E1000_AR_10T_FD |
384 	    E1000_AR_100TX | E1000_AR_100TX_FD |
385 	    E1000_AR_PAUSE | E1000_AR_ASM_DIR);
386 	PHY_WRITE(mii, E1000_1GCR, E1000_1GCR_1000T_FD);
387 	PHY_WRITE(mii, E1000_CR,
388 	    E1000_CR_AUTO_NEG_ENABLE | E1000_CR_RESTART_AUTO_NEG);
389 
390 	return (EJUSTRETURN);
391 }
392