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