xref: /freebsd/sys/dev/mii/e1000phy.c (revision 830940567b49bb0c08dfaed40418999e76616909)
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(MARVELL, E3016),
111 	MII_PHY_DESC(xxMARVELL, E1000),
112 	MII_PHY_DESC(xxMARVELL, E1011),
113 	MII_PHY_DESC(xxMARVELL, E1000_3),
114 	MII_PHY_DESC(xxMARVELL, E1000_5),
115 	MII_PHY_DESC(xxMARVELL, E1111),
116 	MII_PHY_END
117 };
118 
119 static int
120 e1000phy_probe(device_t	dev)
121 {
122 
123 	return (mii_phy_dev_probe(dev, e1000phys, BUS_PROBE_DEFAULT));
124 }
125 
126 static int
127 e1000phy_attach(device_t dev)
128 {
129 	struct e1000phy_softc *esc;
130 	struct mii_softc *sc;
131 	struct mii_attach_args *ma;
132 	struct mii_data *mii;
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 	mii->mii_instance++;
146 
147 	esc->mii_model = MII_MODEL(ma->mii_id2);
148 	switch (esc->mii_model) {
149 	case MII_MODEL_MARVELL_E1011:
150 	case MII_MODEL_MARVELL_E1112:
151 		if (PHY_READ(sc, E1000_ESSR) & E1000_ESSR_FIBER_LINK)
152 			sc->mii_flags |= MIIF_HAVEFIBER;
153 		break;
154 	case MII_MODEL_MARVELL_E1149:
155 		/*
156 		 * Some 88E1149 PHY's page select is initialized to
157 		 * point to other bank instead of copper/fiber bank
158 		 * which in turn resulted in wrong registers were
159 		 * accessed during PHY operation. It is believed that
160 		 * page 0 should be used for copper PHY so reinitialize
161 		 * E1000_EADR to select default copper PHY. If parent
162 		 * device know the type of PHY(either copper or fiber),
163 		 * that information should be used to select default
164 		 * type of PHY.
165 		 */
166 		PHY_WRITE(sc, E1000_EADR, 0);
167 		break;
168 	}
169 
170 	e1000phy_reset(sc);
171 
172 	sc->mii_capabilities = PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
173 	if (sc->mii_capabilities & BMSR_EXTSTAT)
174 		sc->mii_extcapabilities = PHY_READ(sc, MII_EXTSR);
175 	device_printf(dev, " ");
176 	mii_phy_add_media(sc);
177 	printf("\n");
178 
179 	MIIBUS_MEDIAINIT(sc->mii_dev);
180 	return (0);
181 }
182 
183 static void
184 e1000phy_reset(struct mii_softc *sc)
185 {
186 	struct e1000phy_softc *esc;
187 	uint16_t reg, page;
188 
189 	esc = (struct e1000phy_softc *)sc;
190 	reg = PHY_READ(sc, E1000_SCR);
191 	if ((sc->mii_flags & MIIF_HAVEFIBER) != 0) {
192 		reg &= ~E1000_SCR_AUTO_X_MODE;
193 		PHY_WRITE(sc, E1000_SCR, reg);
194 		if (esc->mii_model == MII_MODEL_MARVELL_E1112) {
195 			/* Select 1000BASE-X only mode. */
196 			page = PHY_READ(sc, E1000_EADR);
197 			PHY_WRITE(sc, E1000_EADR, 2);
198 			reg = PHY_READ(sc, E1000_SCR);
199 			reg &= ~E1000_SCR_MODE_MASK;
200 			reg |= E1000_SCR_MODE_1000BX;
201 			PHY_WRITE(sc, E1000_SCR, reg);
202 			PHY_WRITE(sc, E1000_EADR, page);
203 		}
204 	} else {
205 		switch (esc->mii_model) {
206 		case MII_MODEL_MARVELL_E1111:
207 		case MII_MODEL_MARVELL_E1112:
208 		case MII_MODEL_MARVELL_E1116:
209 		case MII_MODEL_MARVELL_E1118:
210 		case MII_MODEL_MARVELL_E1149:
211 			/* Disable energy detect mode. */
212 			reg &= ~E1000_SCR_EN_DETECT_MASK;
213 			reg |= E1000_SCR_AUTO_X_MODE;
214 			if (esc->mii_model == MII_MODEL_MARVELL_E1116)
215 				reg &= ~E1000_SCR_POWER_DOWN;
216 			reg |= E1000_SCR_ASSERT_CRS_ON_TX;
217 			break;
218 		case MII_MODEL_MARVELL_E3082:
219 			reg |= (E1000_SCR_AUTO_X_MODE >> 1);
220 			reg |= E1000_SCR_ASSERT_CRS_ON_TX;
221 			break;
222 		case MII_MODEL_MARVELL_E3016:
223 			reg |= E1000_SCR_AUTO_MDIX;
224 			reg &= ~(E1000_SCR_EN_DETECT |
225 			    E1000_SCR_SCRAMBLER_DISABLE);
226 			reg |= E1000_SCR_LPNP;
227 			/* XXX Enable class A driver for Yukon FE+ A0. */
228 			PHY_WRITE(sc, 0x1C, PHY_READ(sc, 0x1C) | 0x0001);
229 			break;
230 		default:
231 			reg &= ~E1000_SCR_AUTO_X_MODE;
232 			reg |= E1000_SCR_ASSERT_CRS_ON_TX;
233 			break;
234 		}
235 		if (esc->mii_model != MII_MODEL_MARVELL_E3016) {
236 			/* Auto correction for reversed cable polarity. */
237 			reg &= ~E1000_SCR_POLARITY_REVERSAL;
238 		}
239 		PHY_WRITE(sc, E1000_SCR, reg);
240 
241 		if (esc->mii_model == MII_MODEL_MARVELL_E1116 ||
242 		    esc->mii_model == MII_MODEL_MARVELL_E1149) {
243 			page = PHY_READ(sc, E1000_EADR);
244 			/* Select page 2, MAC specific control register. */
245 			PHY_WRITE(sc, E1000_EADR, 2);
246 			reg = PHY_READ(sc, E1000_SCR);
247 			reg |= E1000_SCR_RGMII_POWER_UP;
248 			PHY_WRITE(sc, E1000_SCR, reg);
249 			PHY_WRITE(sc, E1000_EADR, page);
250 		}
251 	}
252 
253 	switch (MII_MODEL(esc->mii_model)) {
254 	case MII_MODEL_MARVELL_E3082:
255 	case MII_MODEL_MARVELL_E1112:
256 	case MII_MODEL_MARVELL_E1118:
257 		break;
258 	case MII_MODEL_MARVELL_E1116:
259 	case MII_MODEL_MARVELL_E1149:
260 		page = PHY_READ(sc, E1000_EADR);
261 		/* Select page 3, LED control register. */
262 		PHY_WRITE(sc, E1000_EADR, 3);
263 		PHY_WRITE(sc, E1000_SCR,
264 		    E1000_SCR_LED_LOS(1) |	/* Link/Act */
265 		    E1000_SCR_LED_INIT(8) |	/* 10Mbps */
266 		    E1000_SCR_LED_STAT1(7) |	/* 100Mbps */
267 		    E1000_SCR_LED_STAT0(7));	/* 1000Mbps */
268 		/* Set blink rate. */
269 		PHY_WRITE(sc, E1000_IER, E1000_PULSE_DUR(E1000_PULSE_170MS) |
270 		    E1000_BLINK_RATE(E1000_BLINK_84MS));
271 		PHY_WRITE(sc, E1000_EADR, page);
272 		break;
273 	case MII_MODEL_MARVELL_E3016:
274 		/* LED2 -> ACT, LED1 -> LINK, LED0 -> SPEED. */
275 		PHY_WRITE(sc, 0x16, 0x0B << 8 | 0x05 << 4 | 0x04);
276 		/* Integrated register calibration workaround. */
277 		PHY_WRITE(sc, 0x1D, 17);
278 		PHY_WRITE(sc, 0x1E, 0x3F60);
279 		break;
280 	default:
281 		/* Force TX_CLK to 25MHz clock. */
282 		reg = PHY_READ(sc, E1000_ESCR);
283 		reg |= E1000_ESCR_TX_CLK_25;
284 		PHY_WRITE(sc, E1000_ESCR, reg);
285 		break;
286 	}
287 
288 	/* Reset the PHY so all changes take effect. */
289 	reg = PHY_READ(sc, E1000_CR);
290 	reg |= E1000_CR_RESET;
291 	PHY_WRITE(sc, E1000_CR, reg);
292 }
293 
294 static int
295 e1000phy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
296 {
297 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
298 	struct e1000phy_softc *esc = (struct e1000phy_softc *)sc;
299 	uint16_t speed, gig;
300 	int reg;
301 
302 	switch (cmd) {
303 	case MII_POLLSTAT:
304 		/*
305 		 * If we're not polling our PHY instance, just return.
306 		 */
307 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
308 			return (0);
309 		break;
310 
311 	case MII_MEDIACHG:
312 		/*
313 		 * If the media indicates a different PHY instance,
314 		 * isolate ourselves.
315 		 */
316 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
317 			reg = PHY_READ(sc, E1000_CR);
318 			PHY_WRITE(sc, E1000_CR, reg | E1000_CR_ISOLATE);
319 			return (0);
320 		}
321 
322 		/*
323 		 * If the interface is not up, don't do anything.
324 		 */
325 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
326 			break;
327 
328 		if (IFM_SUBTYPE(ife->ifm_media) == IFM_AUTO) {
329 			e1000phy_mii_phy_auto(esc);
330 			break;
331 		}
332 
333 		speed = 0;
334 		switch (IFM_SUBTYPE(ife->ifm_media)) {
335 		case IFM_1000_T:
336 			if ((sc->mii_extcapabilities &
337 			    (EXTSR_1000TFDX | EXTSR_1000THDX)) == 0)
338 				return (EINVAL);
339 			speed = E1000_CR_SPEED_1000;
340 			break;
341 		case IFM_1000_SX:
342 			if ((sc->mii_extcapabilities &
343 			    (EXTSR_1000XFDX | EXTSR_1000XHDX)) == 0)
344 				return (EINVAL);
345 			speed = E1000_CR_SPEED_1000;
346 			break;
347 		case IFM_100_TX:
348 			speed = E1000_CR_SPEED_100;
349 			break;
350 		case IFM_10_T:
351 			speed = E1000_CR_SPEED_10;
352 			break;
353 		case IFM_NONE:
354 			reg = PHY_READ(sc, E1000_CR);
355 			PHY_WRITE(sc, E1000_CR,
356 			    reg | E1000_CR_ISOLATE | E1000_CR_POWER_DOWN);
357 			goto done;
358 		default:
359 			return (EINVAL);
360 		}
361 
362 		if (((ife->ifm_media & IFM_GMASK) & IFM_FDX) != 0) {
363 			speed |= E1000_CR_FULL_DUPLEX;
364 			gig = E1000_1GCR_1000T_FD;
365 		} else
366 			gig = E1000_1GCR_1000T;
367 
368 		reg = PHY_READ(sc, E1000_CR);
369 		reg &= ~E1000_CR_AUTO_NEG_ENABLE;
370 		PHY_WRITE(sc, E1000_CR, reg | E1000_CR_RESET);
371 
372 		/*
373 		 * When setting the link manually, one side must
374 		 * be the master and the other the slave. However
375 		 * ifmedia doesn't give us a good way to specify
376 		 * this, so we fake it by using one of the LINK
377 		 * flags. If LINK0 is set, we program the PHY to
378 		 * be a master, otherwise it's a slave.
379 		 */
380 		if (IFM_SUBTYPE(ife->ifm_media) == IFM_1000_T ||
381 		    (IFM_SUBTYPE(ife->ifm_media) == IFM_1000_SX)) {
382 			if ((mii->mii_ifp->if_flags & IFF_LINK0))
383 				PHY_WRITE(sc, E1000_1GCR, gig |
384 				    E1000_1GCR_MS_ENABLE | E1000_1GCR_MS_VALUE);
385 			else
386 				PHY_WRITE(sc, E1000_1GCR, gig |
387 				    E1000_1GCR_MS_ENABLE);
388 		} else {
389 			if ((sc->mii_extcapabilities &
390 			    (EXTSR_1000TFDX | EXTSR_1000THDX)) != 0)
391 				PHY_WRITE(sc, E1000_1GCR, 0);
392 		}
393 		PHY_WRITE(sc, E1000_AR, E1000_AR_SELECTOR_FIELD);
394 		PHY_WRITE(sc, E1000_CR, speed | E1000_CR_RESET);
395 done:
396 		break;
397 	case MII_TICK:
398 		/*
399 		 * If we're not currently selected, just return.
400 		 */
401 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
402 			return (0);
403 
404 		/*
405 		 * Is the interface even up?
406 		 */
407 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
408 			return (0);
409 
410 		/*
411 		 * Only used for autonegotiation.
412 		 */
413 		if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO) {
414 			sc->mii_ticks = 0;
415 			break;
416 		}
417 
418 		/*
419 		 * check for link.
420 		 * Read the status register twice; BMSR_LINK is latch-low.
421 		 */
422 		reg = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
423 		if (reg & BMSR_LINK) {
424 			sc->mii_ticks = 0;
425 			break;
426 		}
427 
428 		/* Announce link loss right after it happens. */
429 		if (sc->mii_ticks++ == 0)
430 			break;
431 		if (sc->mii_ticks <= sc->mii_anegticks)
432 			break;
433 
434 		sc->mii_ticks = 0;
435 		e1000phy_reset(sc);
436 		e1000phy_mii_phy_auto(esc);
437 		break;
438 	}
439 
440 	/* Update the media status. */
441 	e1000phy_status(sc);
442 
443 	/* Callback if something changed. */
444 	mii_phy_update(sc, cmd);
445 	return (0);
446 }
447 
448 static void
449 e1000phy_status(struct mii_softc *sc)
450 {
451 	struct mii_data *mii = sc->mii_pdata;
452 	int bmcr, bmsr, gsr, ssr, ar, lpar;
453 
454 	mii->mii_media_status = IFM_AVALID;
455 	mii->mii_media_active = IFM_ETHER;
456 
457 	bmsr = PHY_READ(sc, E1000_SR) | PHY_READ(sc, E1000_SR);
458 	bmcr = PHY_READ(sc, E1000_CR);
459 	ssr = PHY_READ(sc, E1000_SSR);
460 
461 	if (bmsr & E1000_SR_LINK_STATUS)
462 		mii->mii_media_status |= IFM_ACTIVE;
463 
464 	if (bmcr & E1000_CR_LOOPBACK)
465 		mii->mii_media_active |= IFM_LOOP;
466 
467 	if ((bmcr & E1000_CR_AUTO_NEG_ENABLE) != 0 &&
468 	    (ssr & E1000_SSR_SPD_DPLX_RESOLVED) == 0) {
469 		/* Erg, still trying, I guess... */
470 		mii->mii_media_active |= IFM_NONE;
471 		return;
472 	}
473 
474 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
475 		switch (ssr & E1000_SSR_SPEED) {
476 		case E1000_SSR_1000MBS:
477 			mii->mii_media_active |= IFM_1000_T;
478 			break;
479 		case E1000_SSR_100MBS:
480 			mii->mii_media_active |= IFM_100_TX;
481 			break;
482 		case E1000_SSR_10MBS:
483 			mii->mii_media_active |= IFM_10_T;
484 			break;
485 		default:
486 			mii->mii_media_active |= IFM_NONE;
487 			return;
488 		}
489 	} else {
490 		if (ssr & E1000_SSR_1000MBS)
491 			mii->mii_media_active |= IFM_1000_SX;
492 	}
493 
494 	if (ssr & E1000_SSR_DUPLEX)
495 		mii->mii_media_active |= IFM_FDX;
496 	else
497 		mii->mii_media_active |= IFM_HDX;
498 
499 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
500 		ar = PHY_READ(sc, E1000_AR);
501 		lpar = PHY_READ(sc, E1000_LPAR);
502 		/* FLAG0==rx-flow-control FLAG1==tx-flow-control */
503 		if ((ar & E1000_AR_PAUSE) && (lpar & E1000_LPAR_PAUSE)) {
504 			mii->mii_media_active |= IFM_FLAG0 | IFM_FLAG1;
505 		} else if (!(ar & E1000_AR_PAUSE) && (ar & E1000_AR_ASM_DIR) &&
506 		    (lpar & E1000_LPAR_PAUSE) && (lpar & E1000_LPAR_ASM_DIR)) {
507 			mii->mii_media_active |= IFM_FLAG1;
508 		} else if ((ar & E1000_AR_PAUSE) && (ar & E1000_AR_ASM_DIR) &&
509 		    !(lpar & E1000_LPAR_PAUSE) && (lpar & E1000_LPAR_ASM_DIR)) {
510 			mii->mii_media_active |= IFM_FLAG0;
511 		}
512 	}
513 
514 	/* FLAG2 : local PHY resolved to MASTER */
515 	if ((IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T) ||
516 	    (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_SX)) {
517 		PHY_READ(sc, E1000_1GSR);
518 		gsr = PHY_READ(sc, E1000_1GSR);
519 		if ((gsr & E1000_1GSR_MS_CONFIG_RES) != 0)
520 			mii->mii_media_active |= IFM_FLAG2;
521 	}
522 }
523 
524 static int
525 e1000phy_mii_phy_auto(struct e1000phy_softc *esc)
526 {
527 	struct mii_softc *sc;
528 	uint16_t reg;
529 
530 	sc = &esc->mii_sc;
531 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
532 		reg = PHY_READ(sc, E1000_AR);
533 		reg |= E1000_AR_10T | E1000_AR_10T_FD |
534 		    E1000_AR_100TX | E1000_AR_100TX_FD |
535 		    E1000_AR_PAUSE | E1000_AR_ASM_DIR;
536 		PHY_WRITE(sc, E1000_AR, reg | E1000_AR_SELECTOR_FIELD);
537 	} else
538 		PHY_WRITE(sc, E1000_AR, E1000_FA_1000X_FD | E1000_FA_1000X |
539 		    E1000_FA_SYM_PAUSE | E1000_FA_ASYM_PAUSE);
540 	if ((sc->mii_extcapabilities & (EXTSR_1000TFDX | EXTSR_1000THDX)) != 0)
541 		PHY_WRITE(sc, E1000_1GCR,
542 		    E1000_1GCR_1000T_FD | E1000_1GCR_1000T);
543 	PHY_WRITE(sc, E1000_CR,
544 	    E1000_CR_AUTO_NEG_ENABLE | E1000_CR_RESTART_AUTO_NEG);
545 
546 	return (EJUSTRETURN);
547 }
548