xref: /freebsd/sys/dev/mii/e1000phy.c (revision b3aaa0cc21c63d388230c7ef2a80abd631ff20d5)
1 /*-
2  * Principal Author: Parag Patel
3  * Copyright (c) 2001
4  * 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 unmodified, this list of conditions, and the following
11  *    disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * Additonal Copyright (c) 2001 by Traakan Software under same licence.
29  * Secondary Author: Matthew Jacob
30  */
31 
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 
35 /*
36  * driver for the Marvell 88E1000 series external 1000/100/10-BT PHY.
37  */
38 
39 /*
40  * Support added for the Marvell 88E1011 (Alaska) 1000/100/10baseTX and
41  * 1000baseSX PHY.
42  * Nathan Binkert <nate@openbsd.org>
43  * Jung-uk Kim <jkim@niksun.com>
44  */
45 
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/kernel.h>
49 #include <sys/module.h>
50 #include <sys/socket.h>
51 #include <sys/bus.h>
52 
53 
54 #include <net/if.h>
55 #include <net/if_media.h>
56 
57 #include <dev/mii/mii.h>
58 #include <dev/mii/miivar.h>
59 #include "miidevs.h"
60 
61 #include <dev/mii/e1000phyreg.h>
62 
63 #include "miibus_if.h"
64 
65 static int	e1000phy_probe(device_t);
66 static int	e1000phy_attach(device_t);
67 
68 struct e1000phy_softc {
69 	struct mii_softc mii_sc;
70 	int mii_model;
71 };
72 
73 static device_method_t e1000phy_methods[] = {
74 	/* device interface */
75 	DEVMETHOD(device_probe,		e1000phy_probe),
76 	DEVMETHOD(device_attach,	e1000phy_attach),
77 	DEVMETHOD(device_detach,	mii_phy_detach),
78 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
79 	{ 0, 0 }
80 };
81 
82 static devclass_t e1000phy_devclass;
83 static driver_t e1000phy_driver = {
84 	"e1000phy",
85 	e1000phy_methods,
86 	sizeof(struct e1000phy_softc)
87 };
88 
89 DRIVER_MODULE(e1000phy, miibus, e1000phy_driver, e1000phy_devclass, 0, 0);
90 
91 static int	e1000phy_service(struct mii_softc *, struct mii_data *, int);
92 static void	e1000phy_status(struct mii_softc *);
93 static void	e1000phy_reset(struct mii_softc *);
94 static int	e1000phy_mii_phy_auto(struct e1000phy_softc *);
95 
96 static const struct mii_phydesc e1000phys[] = {
97 	MII_PHY_DESC(MARVELL, E1000),
98 	MII_PHY_DESC(MARVELL, E1011),
99 	MII_PHY_DESC(MARVELL, E1000_3),
100 	MII_PHY_DESC(MARVELL, E1000S),
101 	MII_PHY_DESC(MARVELL, E1000_5),
102 	MII_PHY_DESC(MARVELL, E1000_6),
103 	MII_PHY_DESC(MARVELL, E3082),
104 	MII_PHY_DESC(MARVELL, E1112),
105 	MII_PHY_DESC(MARVELL, E1149),
106 	MII_PHY_DESC(MARVELL, E1111),
107 	MII_PHY_DESC(MARVELL, E1116),
108 	MII_PHY_DESC(MARVELL, E1116R),
109 	MII_PHY_DESC(MARVELL, E1118),
110 	MII_PHY_DESC(xxMARVELL, E1000),
111 	MII_PHY_DESC(xxMARVELL, E1011),
112 	MII_PHY_DESC(xxMARVELL, E1000_3),
113 	MII_PHY_DESC(xxMARVELL, E1000_5),
114 	MII_PHY_DESC(xxMARVELL, E1111),
115 	MII_PHY_END
116 };
117 
118 static int
119 e1000phy_probe(device_t	dev)
120 {
121 
122 	return (mii_phy_dev_probe(dev, e1000phys, BUS_PROBE_DEFAULT));
123 }
124 
125 static int
126 e1000phy_attach(device_t dev)
127 {
128 	struct e1000phy_softc *esc;
129 	struct mii_softc *sc;
130 	struct mii_attach_args *ma;
131 	struct mii_data *mii;
132 	int fast_ether;
133 
134 	esc = device_get_softc(dev);
135 	sc = &esc->mii_sc;
136 	ma = device_get_ivars(dev);
137 	sc->mii_dev = device_get_parent(dev);
138 	mii = device_get_softc(sc->mii_dev);
139 	LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
140 
141 	sc->mii_inst = mii->mii_instance;
142 	sc->mii_phy = ma->mii_phyno;
143 	sc->mii_service = e1000phy_service;
144 	sc->mii_pdata = mii;
145 	sc->mii_anegticks = MII_ANEGTICKS_GIGE;
146 	mii->mii_instance++;
147 
148 	fast_ether = 0;
149 	esc->mii_model = MII_MODEL(ma->mii_id2);
150 	switch (esc->mii_model) {
151 	case MII_MODEL_MARVELL_E1011:
152 	case MII_MODEL_MARVELL_E1112:
153 		if (PHY_READ(sc, E1000_ESSR) & E1000_ESSR_FIBER_LINK)
154 			sc->mii_flags |= MIIF_HAVEFIBER;
155 		break;
156 	case MII_MODEL_MARVELL_E1149:
157 		/*
158 		 * Some 88E1149 PHY's page select is initialized to
159 		 * point to other bank instead of copper/fiber bank
160 		 * which in turn resulted in wrong registers were
161 		 * accessed during PHY operation. It is believed that
162 		 * page 0 should be used for copper PHY so reinitialize
163 		 * E1000_EADR to select default copper PHY. If parent
164 		 * device know the type of PHY(either copper or fiber),
165 		 * that information should be used to select default
166 		 * type of PHY.
167 		 */
168 		PHY_WRITE(sc, E1000_EADR, 0);
169 		break;
170 	case MII_MODEL_MARVELL_E3082:
171 		/* 88E3082 10/100 Fast Ethernet PHY. */
172 		sc->mii_anegticks = MII_ANEGTICKS;
173 		fast_ether = 1;
174 		break;
175 	}
176 
177 	e1000phy_reset(sc);
178 
179 	device_printf(dev, " ");
180 
181 #define	ADD(m, c)	ifmedia_add(&mii->mii_media, (m), (c), NULL)
182 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst),
183 	    E1000_CR_ISOLATE);
184 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
185 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, sc->mii_inst),
186 		    E1000_CR_SPEED_10);
187 		printf("10baseT, ");
188 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, sc->mii_inst),
189 		    E1000_CR_SPEED_10 | E1000_CR_FULL_DUPLEX);
190 		printf("10baseT-FDX, ");
191 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, sc->mii_inst),
192 		    E1000_CR_SPEED_100);
193 		printf("100baseTX, ");
194 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, sc->mii_inst),
195 		    E1000_CR_SPEED_100 | E1000_CR_FULL_DUPLEX);
196 		printf("100baseTX-FDX, ");
197 		if (fast_ether == 0) {
198 			/*
199 			 * 1000BT-simplex not supported; driver must ignore
200 			 * this entry, but it must be present in order to
201 			 * manually set full-duplex.
202 			 */
203 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, 0,
204 			    sc->mii_inst), E1000_CR_SPEED_1000);
205 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, IFM_FDX,
206 			    sc->mii_inst),
207 			    E1000_CR_SPEED_1000 | E1000_CR_FULL_DUPLEX);
208 			printf("1000baseTX-FDX, ");
209 		}
210 	} else {
211 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_SX, IFM_FDX, sc->mii_inst),
212 		    E1000_CR_SPEED_1000 | E1000_CR_FULL_DUPLEX);
213 		printf("1000baseSX-FDX, ");
214 	}
215 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst), 0);
216 	printf("auto\n");
217 #undef ADD
218 
219 	MIIBUS_MEDIAINIT(sc->mii_dev);
220 	return (0);
221 }
222 
223 static void
224 e1000phy_reset(struct mii_softc *sc)
225 {
226 	struct e1000phy_softc *esc;
227 	uint16_t reg, page;
228 
229 	esc = (struct e1000phy_softc *)sc;
230 	reg = PHY_READ(sc, E1000_SCR);
231 	if ((sc->mii_flags & MIIF_HAVEFIBER) != 0) {
232 		reg &= ~E1000_SCR_AUTO_X_MODE;
233 		PHY_WRITE(sc, E1000_SCR, reg);
234 		if (esc->mii_model == MII_MODEL_MARVELL_E1112) {
235 			/* Select 1000BASE-X only mode. */
236 			page = PHY_READ(sc, E1000_EADR);
237 			PHY_WRITE(sc, E1000_EADR, 2);
238 			reg = PHY_READ(sc, E1000_SCR);
239 			reg &= ~E1000_SCR_MODE_MASK;
240 			reg |= E1000_SCR_MODE_1000BX;
241 			PHY_WRITE(sc, E1000_SCR, reg);
242 			PHY_WRITE(sc, E1000_EADR, page);
243 		}
244 	} else {
245 		switch (esc->mii_model) {
246 		case MII_MODEL_MARVELL_E1111:
247 		case MII_MODEL_MARVELL_E1112:
248 		case MII_MODEL_MARVELL_E1116:
249 		case MII_MODEL_MARVELL_E1118:
250 		case MII_MODEL_MARVELL_E1149:
251 			/* Disable energy detect mode. */
252 			reg &= ~E1000_SCR_EN_DETECT_MASK;
253 			reg |= E1000_SCR_AUTO_X_MODE;
254 			if (esc->mii_model == MII_MODEL_MARVELL_E1116)
255 				reg &= ~E1000_SCR_POWER_DOWN;
256 			break;
257 		case MII_MODEL_MARVELL_E3082:
258 			reg |= (E1000_SCR_AUTO_X_MODE >> 1);
259 			break;
260 		default:
261 			reg &= ~E1000_SCR_AUTO_X_MODE;
262 			break;
263 		}
264 		/* Enable CRS on TX. */
265 		reg |= E1000_SCR_ASSERT_CRS_ON_TX;
266 		/* Auto correction for reversed cable polarity. */
267 		reg &= ~E1000_SCR_POLARITY_REVERSAL;
268 		PHY_WRITE(sc, E1000_SCR, reg);
269 
270 		if (esc->mii_model == MII_MODEL_MARVELL_E1116) {
271 			PHY_WRITE(sc, E1000_EADR, 2);
272 			reg = PHY_READ(sc, E1000_SCR);
273 			reg |= E1000_SCR_RGMII_POWER_UP;
274 			PHY_WRITE(sc, E1000_SCR, reg);
275 			PHY_WRITE(sc, E1000_EADR, 0);
276 		}
277 	}
278 
279 	switch (MII_MODEL(esc->mii_model)) {
280 	case MII_MODEL_MARVELL_E3082:
281 	case MII_MODEL_MARVELL_E1112:
282 	case MII_MODEL_MARVELL_E1116:
283 	case MII_MODEL_MARVELL_E1118:
284 	case MII_MODEL_MARVELL_E1149:
285 		break;
286 	default:
287 		/* Force TX_CLK to 25MHz clock. */
288 		reg = PHY_READ(sc, E1000_ESCR);
289 		reg |= E1000_ESCR_TX_CLK_25;
290 		PHY_WRITE(sc, E1000_ESCR, reg);
291 		break;
292 	}
293 
294 	/* Reset the PHY so all changes take effect. */
295 	reg = PHY_READ(sc, E1000_CR);
296 	reg |= E1000_CR_RESET;
297 	PHY_WRITE(sc, E1000_CR, reg);
298 }
299 
300 static int
301 e1000phy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
302 {
303 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
304 	struct e1000phy_softc *esc = (struct e1000phy_softc *)sc;
305 	uint16_t speed, gig;
306 	int reg;
307 
308 	switch (cmd) {
309 	case MII_POLLSTAT:
310 		/*
311 		 * If we're not polling our PHY instance, just return.
312 		 */
313 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
314 			return (0);
315 		break;
316 
317 	case MII_MEDIACHG:
318 		/*
319 		 * If the media indicates a different PHY instance,
320 		 * isolate ourselves.
321 		 */
322 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
323 			reg = PHY_READ(sc, E1000_CR);
324 			PHY_WRITE(sc, E1000_CR, reg | E1000_CR_ISOLATE);
325 			return (0);
326 		}
327 
328 		/*
329 		 * If the interface is not up, don't do anything.
330 		 */
331 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
332 			break;
333 
334 		if (IFM_SUBTYPE(ife->ifm_media) == IFM_AUTO) {
335 			e1000phy_mii_phy_auto(esc);
336 			break;
337 		}
338 
339 		speed = 0;
340 		switch (IFM_SUBTYPE(ife->ifm_media)) {
341 		case IFM_1000_T:
342 			if (esc->mii_model == MII_MODEL_MARVELL_E3082)
343 				return (EINVAL);
344 			speed = E1000_CR_SPEED_1000;
345 			break;
346 		case IFM_1000_SX:
347 			if (esc->mii_model == MII_MODEL_MARVELL_E3082)
348 				return (EINVAL);
349 			speed = E1000_CR_SPEED_1000;
350 			break;
351 		case IFM_100_TX:
352 			speed = E1000_CR_SPEED_100;
353 			break;
354 		case IFM_10_T:
355 			speed = E1000_CR_SPEED_10;
356 			break;
357 		case IFM_NONE:
358 			reg = PHY_READ(sc, E1000_CR);
359 			PHY_WRITE(sc, E1000_CR,
360 			    reg | E1000_CR_ISOLATE | E1000_CR_POWER_DOWN);
361 			goto done;
362 		default:
363 			return (EINVAL);
364 		}
365 
366 		if (((ife->ifm_media & IFM_GMASK) & IFM_FDX) != 0) {
367 			speed |= E1000_CR_FULL_DUPLEX;
368 			gig = E1000_1GCR_1000T_FD;
369 		} else
370 			gig = E1000_1GCR_1000T;
371 
372 		reg = PHY_READ(sc, E1000_CR);
373 		reg &= ~E1000_CR_AUTO_NEG_ENABLE;
374 		PHY_WRITE(sc, E1000_CR, reg | E1000_CR_RESET);
375 
376 		/*
377 		 * When setting the link manually, one side must
378 		 * be the master and the other the slave. However
379 		 * ifmedia doesn't give us a good way to specify
380 		 * this, so we fake it by using one of the LINK
381 		 * flags. If LINK0 is set, we program the PHY to
382 		 * be a master, otherwise it's a slave.
383 		 */
384 		if (IFM_SUBTYPE(ife->ifm_media) == IFM_1000_T ||
385 		    (IFM_SUBTYPE(ife->ifm_media) == IFM_1000_SX)) {
386 			if ((mii->mii_ifp->if_flags & IFF_LINK0))
387 				PHY_WRITE(sc, E1000_1GCR, gig |
388 				    E1000_1GCR_MS_ENABLE | E1000_1GCR_MS_VALUE);
389 			else
390 				PHY_WRITE(sc, E1000_1GCR, gig |
391 				    E1000_1GCR_MS_ENABLE);
392 		} else {
393 			if (esc->mii_model != MII_MODEL_MARVELL_E3082)
394 				PHY_WRITE(sc, E1000_1GCR, 0);
395 		}
396 		PHY_WRITE(sc, E1000_AR, E1000_AR_SELECTOR_FIELD);
397 		PHY_WRITE(sc, E1000_CR, speed | E1000_CR_RESET);
398 done:
399 		break;
400 	case MII_TICK:
401 		/*
402 		 * If we're not currently selected, just return.
403 		 */
404 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
405 			return (0);
406 
407 		/*
408 		 * Is the interface even up?
409 		 */
410 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
411 			return (0);
412 
413 		/*
414 		 * Only used for autonegotiation.
415 		 */
416 		if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO) {
417 			sc->mii_ticks = 0;
418 			break;
419 		}
420 
421 		/*
422 		 * check for link.
423 		 * Read the status register twice; BMSR_LINK is latch-low.
424 		 */
425 		reg = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
426 		if (reg & BMSR_LINK) {
427 			sc->mii_ticks = 0;
428 			break;
429 		}
430 
431 		/* Announce link loss right after it happens. */
432 		if (sc->mii_ticks++ == 0)
433 			break;
434 		if (sc->mii_ticks <= sc->mii_anegticks)
435 			return (0);
436 
437 		sc->mii_ticks = 0;
438 		e1000phy_reset(sc);
439 		e1000phy_mii_phy_auto(esc);
440 		break;
441 	}
442 
443 	/* Update the media status. */
444 	e1000phy_status(sc);
445 
446 	/* Callback if something changed. */
447 	mii_phy_update(sc, cmd);
448 	return (0);
449 }
450 
451 static void
452 e1000phy_status(struct mii_softc *sc)
453 {
454 	struct mii_data *mii = sc->mii_pdata;
455 	int bmsr, bmcr, esr, gsr, ssr, isr, ar, lpar;
456 
457 	mii->mii_media_status = IFM_AVALID;
458 	mii->mii_media_active = IFM_ETHER;
459 
460 	bmsr = PHY_READ(sc, E1000_SR) | PHY_READ(sc, E1000_SR);
461 	esr = PHY_READ(sc, E1000_ESR);
462 	bmcr = PHY_READ(sc, E1000_CR);
463 	ssr = PHY_READ(sc, E1000_SSR);
464 	isr = PHY_READ(sc, E1000_ISR);
465 	ar = PHY_READ(sc, E1000_AR);
466 	lpar = PHY_READ(sc, E1000_LPAR);
467 
468 	if (bmsr & E1000_SR_LINK_STATUS)
469 		mii->mii_media_status |= IFM_ACTIVE;
470 
471 	if (bmcr & E1000_CR_LOOPBACK)
472 		mii->mii_media_active |= IFM_LOOP;
473 
474 	if ((((bmcr & E1000_CR_AUTO_NEG_ENABLE) != 0) &&
475 	    ((bmsr & E1000_SR_AUTO_NEG_COMPLETE) == 0)) ||
476 	    ((ssr & E1000_SSR_LINK) == 0) ||
477 	    ((ssr & E1000_SSR_SPD_DPLX_RESOLVED) == 0)) {
478 		/* Erg, still trying, I guess... */
479 		mii->mii_media_active |= IFM_NONE;
480 		return;
481 	}
482 
483 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
484 		if (ssr & E1000_SSR_1000MBS)
485 			mii->mii_media_active |= IFM_1000_T;
486 		else if (ssr & E1000_SSR_100MBS)
487 			mii->mii_media_active |= IFM_100_TX;
488 		else
489 			mii->mii_media_active |= IFM_10_T;
490 	} else {
491 		if (ssr & E1000_SSR_1000MBS)
492 			mii->mii_media_active |= IFM_1000_SX;
493 	}
494 
495 	if (ssr & E1000_SSR_DUPLEX)
496 		mii->mii_media_active |= IFM_FDX;
497 	else
498 		mii->mii_media_active |= IFM_HDX;
499 
500 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
501 		/* FLAG0==rx-flow-control FLAG1==tx-flow-control */
502 		if ((ar & E1000_AR_PAUSE) && (lpar & E1000_LPAR_PAUSE)) {
503 			mii->mii_media_active |= IFM_FLAG0 | IFM_FLAG1;
504 		} else if (!(ar & E1000_AR_PAUSE) && (ar & E1000_AR_ASM_DIR) &&
505 		    (lpar & E1000_LPAR_PAUSE) && (lpar & E1000_LPAR_ASM_DIR)) {
506 			mii->mii_media_active |= IFM_FLAG1;
507 		} else if ((ar & E1000_AR_PAUSE) && (ar & E1000_AR_ASM_DIR) &&
508 		    !(lpar & E1000_LPAR_PAUSE) && (lpar & E1000_LPAR_ASM_DIR)) {
509 			mii->mii_media_active |= IFM_FLAG0;
510 		}
511 	}
512 
513 	/* FLAG2 : local PHY resolved to MASTER */
514 	if ((IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T) ||
515 	    (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_SX)) {
516 		PHY_READ(sc, E1000_1GSR);
517 		gsr = PHY_READ(sc, E1000_1GSR);
518 		if ((gsr & E1000_1GSR_MS_CONFIG_RES) != 0)
519 			mii->mii_media_active |= IFM_FLAG2;
520 	}
521 }
522 
523 static int
524 e1000phy_mii_phy_auto(struct e1000phy_softc *esc)
525 {
526 	struct mii_softc *sc;
527 
528 	sc = &esc->mii_sc;
529 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0)
530 		PHY_WRITE(sc, E1000_AR, E1000_AR_10T | E1000_AR_10T_FD |
531 		    E1000_AR_100TX | E1000_AR_100TX_FD |
532 		    E1000_AR_PAUSE | E1000_AR_ASM_DIR);
533 	else
534 		PHY_WRITE(sc, E1000_AR, E1000_FA_1000X_FD | E1000_FA_1000X |
535 		    E1000_FA_SYM_PAUSE | E1000_FA_ASYM_PAUSE);
536 	if (esc->mii_model != MII_MODEL_MARVELL_E3082)
537 		PHY_WRITE(sc, E1000_1GCR,
538 		    E1000_1GCR_1000T_FD | E1000_1GCR_1000T);
539 	PHY_WRITE(sc, E1000_CR,
540 	    E1000_CR_AUTO_NEG_ENABLE | E1000_CR_RESTART_AUTO_NEG);
541 
542 	return (EJUSTRETURN);
543 }
544