xref: /freebsd/sys/dev/mii/brgphy.c (revision eb6d21b4ca6d668cf89afd99eef7baeafa712197)
1 /*-
2  * Copyright (c) 2000
3  *	Bill Paul <wpaul@ee.columbia.edu>.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by Bill Paul.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 /*
37  * Driver for the Broadcom BCM54xx/57xx 1000baseTX PHY.
38  */
39 
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/kernel.h>
43 #include <sys/module.h>
44 #include <sys/socket.h>
45 #include <sys/bus.h>
46 
47 #include <net/if.h>
48 #include <net/ethernet.h>
49 #include <net/if_media.h>
50 
51 #include <dev/mii/mii.h>
52 #include <dev/mii/miivar.h>
53 #include "miidevs.h"
54 
55 #include <dev/mii/brgphyreg.h>
56 #include <net/if_arp.h>
57 #include <machine/bus.h>
58 #include <dev/bge/if_bgereg.h>
59 #include <dev/bce/if_bcereg.h>
60 
61 #include <dev/pci/pcireg.h>
62 #include <dev/pci/pcivar.h>
63 
64 #include "miibus_if.h"
65 
66 static int brgphy_probe(device_t);
67 static int brgphy_attach(device_t);
68 
69 struct brgphy_softc {
70 	struct mii_softc mii_sc;
71 	int mii_oui;
72 	int mii_model;
73 	int mii_rev;
74 	int serdes_flags;	/* Keeps track of the serdes type used */
75 #define BRGPHY_5706S	0x0001
76 #define BRGPHY_5708S	0x0002
77 	int bce_phy_flags;	/* PHY flags transferred from the MAC driver */
78 };
79 
80 static device_method_t brgphy_methods[] = {
81 	/* device interface */
82 	DEVMETHOD(device_probe,		brgphy_probe),
83 	DEVMETHOD(device_attach,	brgphy_attach),
84 	DEVMETHOD(device_detach,	mii_phy_detach),
85 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
86 	{ 0, 0 }
87 };
88 
89 static devclass_t brgphy_devclass;
90 
91 static driver_t brgphy_driver = {
92 	"brgphy",
93 	brgphy_methods,
94 	sizeof(struct brgphy_softc)
95 };
96 
97 DRIVER_MODULE(brgphy, miibus, brgphy_driver, brgphy_devclass, 0, 0);
98 
99 static int	brgphy_service(struct mii_softc *, struct mii_data *, int);
100 static void	brgphy_setmedia(struct mii_softc *, int, int);
101 static void	brgphy_status(struct mii_softc *);
102 static void	brgphy_mii_phy_auto(struct mii_softc *);
103 static void	brgphy_reset(struct mii_softc *);
104 static void	brgphy_enable_loopback(struct mii_softc *);
105 static void	bcm5401_load_dspcode(struct mii_softc *);
106 static void	bcm5411_load_dspcode(struct mii_softc *);
107 static void	brgphy_fixup_5704_a0_bug(struct mii_softc *);
108 static void	brgphy_fixup_adc_bug(struct mii_softc *);
109 static void	brgphy_fixup_adjust_trim(struct mii_softc *);
110 static void	brgphy_fixup_ber_bug(struct mii_softc *);
111 static void	brgphy_fixup_crc_bug(struct mii_softc *);
112 static void	brgphy_fixup_jitter_bug(struct mii_softc *);
113 static void	brgphy_ethernet_wirespeed(struct mii_softc *);
114 static void	brgphy_jumbo_settings(struct mii_softc *, u_long);
115 
116 static const struct mii_phydesc brgphys[] = {
117 	MII_PHY_DESC(xxBROADCOM, BCM5400),
118 	MII_PHY_DESC(xxBROADCOM, BCM5401),
119 	MII_PHY_DESC(xxBROADCOM, BCM5411),
120 	MII_PHY_DESC(xxBROADCOM, BCM5701),
121 	MII_PHY_DESC(xxBROADCOM, BCM5703),
122 	MII_PHY_DESC(xxBROADCOM, BCM5704),
123 	MII_PHY_DESC(xxBROADCOM, BCM5705),
124 	MII_PHY_DESC(xxBROADCOM, BCM5706),
125 	MII_PHY_DESC(xxBROADCOM, BCM5714),
126 	MII_PHY_DESC(xxBROADCOM, BCM5750),
127 	MII_PHY_DESC(xxBROADCOM, BCM5752),
128 	MII_PHY_DESC(xxBROADCOM, BCM5754),
129 	MII_PHY_DESC(xxBROADCOM, BCM5780),
130 	MII_PHY_DESC(xxBROADCOM, BCM5708C),
131 	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5755),
132 	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5787),
133 	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5708S),
134 	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5709CAX),
135 	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5722),
136 	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5709C),
137 	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5761),
138 	MII_PHY_DESC(BROADCOM2, BCM5906),
139 	MII_PHY_END
140 };
141 
142 
143 /* Search for our PHY in the list of known PHYs */
144 static int
145 brgphy_probe(device_t dev)
146 {
147 	return (mii_phy_dev_probe(dev, brgphys, BUS_PROBE_DEFAULT));
148 }
149 
150 /* Attach the PHY to the MII bus */
151 static int
152 brgphy_attach(device_t dev)
153 {
154 	struct brgphy_softc *bsc;
155 	struct bge_softc *bge_sc = NULL;
156 	struct bce_softc *bce_sc = NULL;
157 	struct mii_softc *sc;
158 	struct mii_attach_args *ma;
159 	struct mii_data *mii;
160 	struct ifnet *ifp;
161 	int fast_ether;
162 
163 	bsc = device_get_softc(dev);
164 	sc = &bsc->mii_sc;
165 	ma = device_get_ivars(dev);
166 	sc->mii_dev = device_get_parent(dev);
167 	mii = device_get_softc(sc->mii_dev);
168 	LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
169 
170 	/* Initialize mii_softc structure */
171 	sc->mii_inst = mii->mii_instance;
172 	sc->mii_phy = ma->mii_phyno;
173 	sc->mii_service = brgphy_service;
174 	sc->mii_pdata = mii;
175 	sc->mii_anegticks = MII_ANEGTICKS_GIGE;
176 	sc->mii_flags |= MIIF_NOISOLATE | MIIF_NOLOOP;
177 	mii->mii_instance++;
178 
179 	/* Initialize brgphy_softc structure */
180 	bsc->mii_oui = MII_OUI(ma->mii_id1, ma->mii_id2);
181 	bsc->mii_model = MII_MODEL(ma->mii_id2);
182 	bsc->mii_rev = MII_REV(ma->mii_id2);
183 	bsc->serdes_flags = 0;
184 
185 	fast_ether = 0;
186 
187 	if (bootverbose)
188 		device_printf(dev, "OUI 0x%06x, model 0x%04x, rev. %d\n",
189 		    bsc->mii_oui, bsc->mii_model, bsc->mii_rev);
190 
191 	/* Handle any special cases based on the PHY ID */
192 	switch (bsc->mii_oui) {
193 	case MII_OUI_BROADCOM:
194 	case MII_OUI_BROADCOM2:
195 		break;
196 	case MII_OUI_xxBROADCOM:
197 		switch (bsc->mii_model) {
198 			case MII_MODEL_xxBROADCOM_BCM5706:
199 				/*
200 				 * The 5464 PHY used in the 5706 supports both copper
201 				 * and fiber interfaces over GMII.  Need to check the
202 				 * shadow registers to see which mode is actually
203 				 * in effect, and therefore whether we have 5706C or
204 				 * 5706S.
205 				 */
206 				PHY_WRITE(sc, BRGPHY_MII_SHADOW_1C,
207 					BRGPHY_SHADOW_1C_MODE_CTRL);
208 				if (PHY_READ(sc, BRGPHY_MII_SHADOW_1C) &
209 					BRGPHY_SHADOW_1C_ENA_1000X) {
210 					bsc->serdes_flags |= BRGPHY_5706S;
211 					sc->mii_flags |= MIIF_HAVEFIBER;
212 				}
213 				break;
214 		} break;
215 	case MII_OUI_xxBROADCOM_ALT1:
216 		switch (bsc->mii_model) {
217 			case MII_MODEL_xxBROADCOM_ALT1_BCM5708S:
218 				bsc->serdes_flags |= BRGPHY_5708S;
219 				sc->mii_flags |= MIIF_HAVEFIBER;
220 				break;
221 		} break;
222 	default:
223 		device_printf(dev, "Unrecognized OUI for PHY!\n");
224 	}
225 
226 	ifp = sc->mii_pdata->mii_ifp;
227 
228 	/* Find the MAC driver associated with this PHY. */
229 	if (strcmp(ifp->if_dname, "bge") == 0)	{
230 		bge_sc = ifp->if_softc;
231 	} else if (strcmp(ifp->if_dname, "bce") == 0) {
232 		bce_sc = ifp->if_softc;
233 	}
234 
235 	/* Todo: Need to add additional controllers such as 5906 & 5787F */
236 	/* The 590x chips are 10/100 only. */
237 	if (bge_sc &&
238 	    pci_get_vendor(bge_sc->bge_dev) == BCOM_VENDORID &&
239 	    (pci_get_device(bge_sc->bge_dev) == BCOM_DEVICEID_BCM5901 ||
240 	    pci_get_device(bge_sc->bge_dev) == BCOM_DEVICEID_BCM5901A2 ||
241 	    pci_get_device(bge_sc->bge_dev) == BCOM_DEVICEID_BCM5906 ||
242 	    pci_get_device(bge_sc->bge_dev) == BCOM_DEVICEID_BCM5906M)) {
243 		fast_ether = 1;
244 		sc->mii_anegticks = MII_ANEGTICKS;
245 	}
246 
247 	brgphy_reset(sc);
248 
249 	/* Read the PHY's capabilities. */
250 	sc->mii_capabilities = PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
251 	if (sc->mii_capabilities & BMSR_EXTSTAT)
252 		sc->mii_extcapabilities = PHY_READ(sc, MII_EXTSR);
253 	device_printf(dev, " ");
254 
255 #define	ADD(m, c)	ifmedia_add(&mii->mii_media, (m), (c), NULL)
256 
257 	/* Create an instance of Ethernet media. */
258 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst), BMCR_ISO);
259 
260 	/* Add the supported media types */
261 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
262 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, sc->mii_inst),
263 			BRGPHY_S10);
264 		printf("10baseT, ");
265 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, sc->mii_inst),
266 			BRGPHY_S10 | BRGPHY_BMCR_FDX);
267 		printf("10baseT-FDX, ");
268 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, sc->mii_inst),
269 			BRGPHY_S100);
270 		printf("100baseTX, ");
271 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, sc->mii_inst),
272 			BRGPHY_S100 | BRGPHY_BMCR_FDX);
273 		printf("100baseTX-FDX, ");
274 		if (fast_ether == 0) {
275 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, 0, sc->mii_inst),
276 				BRGPHY_S1000);
277 			printf("1000baseT, ");
278 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, IFM_FDX, sc->mii_inst),
279 				BRGPHY_S1000 | BRGPHY_BMCR_FDX);
280 			printf("1000baseT-FDX, ");
281 		}
282 	} else {
283 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_SX, IFM_FDX, sc->mii_inst),
284 			BRGPHY_S1000 | BRGPHY_BMCR_FDX);
285 		printf("1000baseSX-FDX, ");
286 		/* 2.5G support is a software enabled feature on the 5708S and 5709S. */
287 		if (bce_sc && (bce_sc->bce_phy_flags & BCE_PHY_2_5G_CAPABLE_FLAG)) {
288 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_2500_SX, IFM_FDX, sc->mii_inst), 0);
289 			printf("2500baseSX-FDX, ");
290 		}
291 	}
292 
293 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst), 0);
294 	printf("auto\n");
295 
296 #undef ADD
297 	MIIBUS_MEDIAINIT(sc->mii_dev);
298 	return (0);
299 }
300 
301 static int
302 brgphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
303 {
304 	struct brgphy_softc *bsc = (struct brgphy_softc *)sc;
305 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
306 	int error = 0;
307 	int val;
308 
309 	switch (cmd) {
310 	case MII_POLLSTAT:
311 		/* If we're not polling our PHY instance, just return. */
312 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
313 			goto brgphy_service_exit;
314 		break;
315 	case MII_MEDIACHG:
316 		/*
317 		 * If the media indicates a different PHY instance,
318 		 * isolate ourselves.
319 		 */
320 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
321 			PHY_WRITE(sc, MII_BMCR,
322 			    PHY_READ(sc, MII_BMCR) | BMCR_ISO);
323 			goto brgphy_service_exit;
324 		}
325 
326 		/* If the interface is not up, don't do anything. */
327 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
328 			break;
329 
330 		/* Todo: Why is this here?  Is it really needed? */
331 		brgphy_reset(sc);	/* XXX hardware bug work-around */
332 
333 		switch (IFM_SUBTYPE(ife->ifm_media)) {
334 		case IFM_AUTO:
335 			brgphy_mii_phy_auto(sc);
336 			break;
337 		case IFM_2500_SX:
338 		case IFM_1000_SX:
339 		case IFM_1000_T:
340 		case IFM_100_TX:
341 		case IFM_10_T:
342 			brgphy_setmedia(sc, ife->ifm_media,
343 			    mii->mii_ifp->if_flags & IFF_LINK0);
344 			break;
345 		default:
346 			error = EINVAL;
347 			goto brgphy_service_exit;
348 		}
349 		break;
350 	case MII_TICK:
351 		/* Bail if we're not currently selected. */
352 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
353 			goto brgphy_service_exit;
354 
355 		/* Bail if the interface isn't up. */
356 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
357 			goto brgphy_service_exit;
358 
359 
360 		/* Bail if autoneg isn't in process. */
361 		if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO) {
362 			sc->mii_ticks = 0;
363 			break;
364 		}
365 
366 		/*
367 		 * Check to see if we have link.  If we do, we don't
368 		 * need to restart the autonegotiation process.
369 		 */
370 		val	= PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
371 		if (val & BMSR_LINK) {
372 			sc->mii_ticks = 0;	/* Reset autoneg timer. */
373 			break;
374 		}
375 
376 		/* Announce link loss right after it happens. */
377 		if (sc->mii_ticks++ == 0)
378 			break;
379 
380 		/* Only retry autonegotiation every mii_anegticks seconds. */
381 		if (sc->mii_ticks <= sc->mii_anegticks)
382 			break;
383 
384 
385 		/* Retry autonegotiation */
386 		sc->mii_ticks = 0;
387 		brgphy_mii_phy_auto(sc);
388 		break;
389 	}
390 
391 	/* Update the media status. */
392 	brgphy_status(sc);
393 
394 	/*
395 	 * Callback if something changed. Note that we need to poke
396 	 * the DSP on the Broadcom PHYs if the media changes.
397 	 */
398 	if (sc->mii_media_active != mii->mii_media_active ||
399 	    sc->mii_media_status != mii->mii_media_status ||
400 	    cmd == MII_MEDIACHG) {
401 		switch (bsc->mii_oui) {
402 		case MII_OUI_BROADCOM:
403 			break;
404 		case MII_OUI_xxBROADCOM:
405 			switch (bsc->mii_model) {
406 			case MII_MODEL_xxBROADCOM_BCM5400:
407 				bcm5401_load_dspcode(sc);
408 				break;
409 			case MII_MODEL_xxBROADCOM_BCM5401:
410 				if (bsc->mii_rev == 1 || bsc->mii_rev == 3)
411 					bcm5401_load_dspcode(sc);
412 				break;
413 			case MII_MODEL_xxBROADCOM_BCM5411:
414 				bcm5411_load_dspcode(sc);
415 				break;
416 			}
417 			break;
418 		case MII_OUI_xxBROADCOM_ALT1:
419 			break;
420 		}
421 	}
422 	mii_phy_update(sc, cmd);
423 brgphy_service_exit:
424 	return (error);
425 }
426 
427 
428 /****************************************************************************/
429 /* Sets the PHY link speed.                                                 */
430 /*                                                                          */
431 /* Returns:                                                                 */
432 /*   None                                                                   */
433 /****************************************************************************/
434 static void
435 brgphy_setmedia(struct mii_softc *sc, int media, int master)
436 {
437 	struct brgphy_softc *bsc = (struct brgphy_softc *)sc;
438 	int bmcr = 0, gig;
439 
440 	/* Calculate the value for the BMCR register. */
441 	switch (IFM_SUBTYPE(media)) {
442 	case IFM_2500_SX:
443 		break;
444 	case IFM_1000_SX:
445 	case IFM_1000_T:
446 		bmcr = BRGPHY_S1000;
447 		break;
448 	case IFM_100_TX:
449 		bmcr = BRGPHY_S100;
450 		break;
451 	case IFM_10_T:
452 	default:
453 		bmcr = BRGPHY_S10;
454 		break;
455 	}
456 
457 	/* Calculate duplex settings for 1000BasetT/1000BaseX. */
458 	if ((media & IFM_GMASK) == IFM_FDX) {
459 		bmcr |= BRGPHY_BMCR_FDX;
460 		gig = BRGPHY_1000CTL_AFD;
461 	} else {
462 		gig = BRGPHY_1000CTL_AHD;
463 	}
464 
465 	/* Force loopback to disconnect PHY for Ethernet medium. */
466 	brgphy_enable_loopback(sc);
467 
468 	/* Disable 1000BaseT advertisements. */
469 	PHY_WRITE(sc, BRGPHY_MII_1000CTL, 0);
470 	/* Disable 10/100 advertisements. */
471 	PHY_WRITE(sc, BRGPHY_MII_ANAR, BRGPHY_SEL_TYPE);
472 	/* Write forced link speed. */
473 	PHY_WRITE(sc, BRGPHY_MII_BMCR, bmcr);
474 
475 	/* If 10/100 only then configuration is complete. */
476 	if ((IFM_SUBTYPE(media) != IFM_1000_T) && (IFM_SUBTYPE(media) != IFM_1000_SX))
477 		goto brgphy_setmedia_exit;
478 
479 	/* Set duplex speed advertisement for 1000BaseT/1000BaseX. */
480 	PHY_WRITE(sc, BRGPHY_MII_1000CTL, gig);
481 	/* Restart auto-negotiation for 1000BaseT/1000BaseX. */
482 	PHY_WRITE(sc, BRGPHY_MII_BMCR,
483 	    bmcr | BRGPHY_BMCR_AUTOEN | BRGPHY_BMCR_STARTNEG);
484 
485 	/* If not 5701 PHY then configuration is complete. */
486 	if (bsc->mii_model != MII_MODEL_xxBROADCOM_BCM5701)
487 		goto brgphy_setmedia_exit;
488 
489 	/*
490 	 * When setting the link manually, one side must be the master and
491 	 * the other the slave. However ifmedia doesn't give us a good way
492 	 * to specify this, so we fake it by using one of the LINK flags.
493 	 * If LINK0 is set, we program the PHY to be a master, otherwise
494 	 * it's a slave.
495 	 */
496 	if (master) {
497 		PHY_WRITE(sc, BRGPHY_MII_1000CTL,
498 		    gig | BRGPHY_1000CTL_MSE | BRGPHY_1000CTL_MSC);
499 	} else {
500 		PHY_WRITE(sc, BRGPHY_MII_1000CTL,
501 		    gig | BRGPHY_1000CTL_MSE);
502 	}
503 
504 brgphy_setmedia_exit:
505 	return;
506 }
507 
508 /****************************************************************************/
509 /* Set the media status based on the PHY settings.                          */
510 /* IFM_FLAG0 = 0 (RX flow control disabled) | 1 (enabled)                   */
511 /* IFM_FLAG1 = 0 (TX flow control disabled) | 1 (enabled)                   */
512 /*                                                                          */
513 /* Returns:                                                                 */
514 /*   None                                                                   */
515 /****************************************************************************/
516 static void
517 brgphy_status(struct mii_softc *sc)
518 {
519 	struct brgphy_softc *bsc = (struct brgphy_softc *)sc;
520 	struct mii_data *mii = sc->mii_pdata;
521 	int aux, bmcr, bmsr, anar, anlpar, xstat, val;
522 
523 
524 	mii->mii_media_status = IFM_AVALID;
525 	mii->mii_media_active = IFM_ETHER;
526 
527 	bmsr = PHY_READ(sc, BRGPHY_MII_BMSR) | PHY_READ(sc, BRGPHY_MII_BMSR);
528 	bmcr = PHY_READ(sc, BRGPHY_MII_BMCR);
529 	anar = PHY_READ(sc, BRGPHY_MII_ANAR);
530 	anlpar = PHY_READ(sc, BRGPHY_MII_ANLPAR);
531 
532 	/* Loopback is enabled. */
533 	if (bmcr & BRGPHY_BMCR_LOOP) {
534 
535 		mii->mii_media_active |= IFM_LOOP;
536 	}
537 
538 	/* Autoneg is still in progress. */
539 	if ((bmcr & BRGPHY_BMCR_AUTOEN) &&
540 	    (bmsr & BRGPHY_BMSR_ACOMP) == 0) {
541 		/* Erg, still trying, I guess... */
542 		mii->mii_media_active |= IFM_NONE;
543 		goto brgphy_status_exit;
544 	}
545 
546 	/* Autoneg is enabled and complete, link should be up. */
547 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
548 		aux = PHY_READ(sc, BRGPHY_MII_AUXSTS);
549 
550 		/* If copper link is up, get the negotiated speed/duplex. */
551 		if (aux & BRGPHY_AUXSTS_LINK) {
552 			mii->mii_media_status |= IFM_ACTIVE;
553 			switch (aux & BRGPHY_AUXSTS_AN_RES) {
554 			case BRGPHY_RES_1000FD:
555 				mii->mii_media_active |= IFM_1000_T | IFM_FDX; 	break;
556 			case BRGPHY_RES_1000HD:
557 				mii->mii_media_active |= IFM_1000_T | IFM_HDX; 	break;
558 			case BRGPHY_RES_100FD:
559 				mii->mii_media_active |= IFM_100_TX | IFM_FDX; break;
560 			case BRGPHY_RES_100T4:
561 				mii->mii_media_active |= IFM_100_T4; break;
562 			case BRGPHY_RES_100HD:
563 				mii->mii_media_active |= IFM_100_TX | IFM_HDX; 	break;
564 			case BRGPHY_RES_10FD:
565 				mii->mii_media_active |= IFM_10_T | IFM_FDX; break;
566 			case BRGPHY_RES_10HD:
567 				mii->mii_media_active |= IFM_10_T | IFM_HDX; break;
568 			default:
569 				mii->mii_media_active |= IFM_NONE; break;
570 			}
571 		}
572 	} else {
573 		/* If serdes link is up, get the negotiated speed/duplex. */
574 		if (bmsr & BRGPHY_BMSR_LINK) {
575 			mii->mii_media_status |= IFM_ACTIVE;
576 		}
577 
578 		/* Check the link speed/duplex based on the PHY type. */
579 		if (bsc->serdes_flags & BRGPHY_5706S) {
580 			mii->mii_media_active |= IFM_1000_SX;
581 
582 			/* If autoneg enabled, read negotiated duplex settings */
583 			if (bmcr & BRGPHY_BMCR_AUTOEN) {
584 				val = PHY_READ(sc, BRGPHY_SERDES_ANAR) & PHY_READ(sc, BRGPHY_SERDES_ANLPAR);
585 				if (val & BRGPHY_SERDES_ANAR_FDX)
586 					mii->mii_media_active |= IFM_FDX;
587 				else
588 					mii->mii_media_active |= IFM_HDX;
589 			}
590 
591 		} else if (bsc->serdes_flags & BRGPHY_5708S) {
592 			PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR, BRGPHY_5708S_DIG_PG0);
593 			xstat = PHY_READ(sc, BRGPHY_5708S_PG0_1000X_STAT1);
594 
595 			switch (xstat & BRGPHY_5708S_PG0_1000X_STAT1_SPEED_MASK) {
596 			case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_10:
597 				mii->mii_media_active |= IFM_10_FL; break;
598 			case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_100:
599 				mii->mii_media_active |= IFM_100_FX; break;
600 			case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_1G:
601 				mii->mii_media_active |= IFM_1000_SX; break;
602 			case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_25G:
603 				mii->mii_media_active |= IFM_2500_SX; break;
604 			}
605 
606 			if (xstat & BRGPHY_5708S_PG0_1000X_STAT1_FDX)
607 				mii->mii_media_active |= IFM_FDX;
608 			else
609 				mii->mii_media_active |= IFM_HDX;
610 		}
611 	}
612 
613 #if 0
614 	/* Todo: Change bge/bce to use these settings. */
615 
616 	/* Fetch flow control settings from the PHY */
617 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
618 		/* Set FLAG0 is RX is enabled and FLAG1 if TX is enabled */
619 		if ((anar & BRGPHY_ANAR_PC) && (anlpar & BRGPHY_ANLPAR_PC)) {
620 			mii->mii_media_active |= IFM_FLAG0 | IFM_FLAG1;
621 		} else if (!(anar & BRGPHY_ANAR_PC) && (anlpar & BRGPHY_ANAR_ASP) &&
622 		    (anlpar & BRPHY_ANLPAR_PC) && (anlpar & BRGPHY_ANLPAR_ASP)) {
623 			mii->mii_media_active |= IFM_FLAG1;
624 		} else if ((anar & BRGPHY_ANAR_PC) && (anar & BRGPHY_ANAR_ASP) &&
625 		    !(anlpar & BRGPHY_ANLPAR_PC) && (anlpar & BRGPHY_ANLPAR_ASP)) {
626 			mii->mii_media_active |= IFM_FLAG0;
627 		}
628 	}
629 
630 	/* Todo: Add support for fiber settings too. */
631 #endif
632 
633 
634 brgphy_status_exit:
635 	return;
636 }
637 
638 static void
639 brgphy_mii_phy_auto(struct mii_softc *sc)
640 {
641 	struct brgphy_softc *bsc = (struct brgphy_softc *)sc;
642 	int ktcr = 0;
643 
644 	brgphy_reset(sc);
645 
646 	/* Enable flow control in the advertisement register. */
647 	if ((sc->mii_flags & MIIF_HAVEFIBER) == 0) {
648 		/* Pause capability advertisement (pause capable & asymmetric) */
649 		PHY_WRITE(sc, BRGPHY_MII_ANAR,
650 	    	BMSR_MEDIA_TO_ANAR(sc->mii_capabilities) | ANAR_CSMA |
651 	    	BRGPHY_ANAR_ASP | BRGPHY_ANAR_PC);
652 	} else {
653 		PHY_WRITE(sc, BRGPHY_SERDES_ANAR, BRGPHY_SERDES_ANAR_FDX |
654 			BRGPHY_SERDES_ANAR_HDX | BRGPHY_SERDES_ANAR_BOTH_PAUSE);
655 	}
656 
657 	/* Enable speed in the 1000baseT control register */
658 	ktcr = BRGPHY_1000CTL_AFD | BRGPHY_1000CTL_AHD;
659 	if (bsc->mii_model == MII_MODEL_xxBROADCOM_BCM5701)
660 		ktcr |= BRGPHY_1000CTL_MSE | BRGPHY_1000CTL_MSC;
661 	PHY_WRITE(sc, BRGPHY_MII_1000CTL, ktcr);
662 	ktcr = PHY_READ(sc, BRGPHY_MII_1000CTL);
663 
664 	/* Start autonegotiation */
665 	PHY_WRITE(sc, BRGPHY_MII_BMCR,BRGPHY_BMCR_AUTOEN | BRGPHY_BMCR_STARTNEG);
666 	PHY_WRITE(sc, BRGPHY_MII_IMR, 0xFF00);
667 
668 }
669 
670 
671 /* Enable loopback to force the link down. */
672 static void
673 brgphy_enable_loopback(struct mii_softc *sc)
674 {
675 	int i;
676 
677 	PHY_WRITE(sc, BRGPHY_MII_BMCR, BRGPHY_BMCR_LOOP);
678 	for (i = 0; i < 15000; i++) {
679 		if (!(PHY_READ(sc, BRGPHY_MII_BMSR) & BRGPHY_BMSR_LINK))
680 			break;
681 		DELAY(10);
682 	}
683 }
684 
685 /* Turn off tap power management on 5401. */
686 static void
687 bcm5401_load_dspcode(struct mii_softc *sc)
688 {
689 	static const struct {
690 		int		reg;
691 		uint16_t	val;
692 	} dspcode[] = {
693 		{ BRGPHY_MII_AUXCTL,		0x0c20 },
694 		{ BRGPHY_MII_DSP_ADDR_REG,	0x0012 },
695 		{ BRGPHY_MII_DSP_RW_PORT,	0x1804 },
696 		{ BRGPHY_MII_DSP_ADDR_REG,	0x0013 },
697 		{ BRGPHY_MII_DSP_RW_PORT,	0x1204 },
698 		{ BRGPHY_MII_DSP_ADDR_REG,	0x8006 },
699 		{ BRGPHY_MII_DSP_RW_PORT,	0x0132 },
700 		{ BRGPHY_MII_DSP_ADDR_REG,	0x8006 },
701 		{ BRGPHY_MII_DSP_RW_PORT,	0x0232 },
702 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
703 		{ BRGPHY_MII_DSP_RW_PORT,	0x0a20 },
704 		{ 0,				0 },
705 	};
706 	int i;
707 
708 	for (i = 0; dspcode[i].reg != 0; i++)
709 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
710 	DELAY(40);
711 }
712 
713 static void
714 bcm5411_load_dspcode(struct mii_softc *sc)
715 {
716 	static const struct {
717 		int		reg;
718 		uint16_t	val;
719 	} dspcode[] = {
720 		{ 0x1c,				0x8c23 },
721 		{ 0x1c,				0x8ca3 },
722 		{ 0x1c,				0x8c23 },
723 		{ 0,				0 },
724 	};
725 	int i;
726 
727 	for (i = 0; dspcode[i].reg != 0; i++)
728 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
729 }
730 
731 static void
732 brgphy_fixup_5704_a0_bug(struct mii_softc *sc)
733 {
734 	static const struct {
735 		int		reg;
736 		uint16_t	val;
737 	} dspcode[] = {
738 		{ 0x1c,				0x8d68 },
739 		{ 0x1c,				0x8d68 },
740 		{ 0,				0 },
741 	};
742 	int i;
743 
744 	for (i = 0; dspcode[i].reg != 0; i++)
745 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
746 }
747 
748 static void
749 brgphy_fixup_adc_bug(struct mii_softc *sc)
750 {
751 	static const struct {
752 		int		reg;
753 		uint16_t	val;
754 	} dspcode[] = {
755 		{ BRGPHY_MII_AUXCTL,		0x0c00 },
756 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
757 		{ BRGPHY_MII_DSP_RW_PORT,	0x2aaa },
758 		{ 0,				0 },
759 	};
760 	int i;
761 
762 	for (i = 0; dspcode[i].reg != 0; i++)
763 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
764 }
765 
766 static void
767 brgphy_fixup_adjust_trim(struct mii_softc *sc)
768 {
769 	static const struct {
770 		int		reg;
771 		uint16_t	val;
772 	} dspcode[] = {
773 		{ BRGPHY_MII_AUXCTL,		0x0c00 },
774 		{ BRGPHY_MII_DSP_ADDR_REG,	0x000a },
775 		{ BRGPHY_MII_DSP_RW_PORT,	0x110b },
776 		{ BRGPHY_MII_TEST1,			0x0014 },
777 		{ BRGPHY_MII_AUXCTL,		0x0400 },
778 		{ 0,				0 },
779 	};
780 	int i;
781 
782 	for (i = 0; dspcode[i].reg != 0; i++)
783 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
784 }
785 
786 static void
787 brgphy_fixup_ber_bug(struct mii_softc *sc)
788 {
789 	static const struct {
790 		int		reg;
791 		uint16_t	val;
792 	} dspcode[] = {
793 		{ BRGPHY_MII_AUXCTL,		0x0c00 },
794 		{ BRGPHY_MII_DSP_ADDR_REG,	0x000a },
795 		{ BRGPHY_MII_DSP_RW_PORT,	0x310b },
796 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
797 		{ BRGPHY_MII_DSP_RW_PORT,	0x9506 },
798 		{ BRGPHY_MII_DSP_ADDR_REG,	0x401f },
799 		{ BRGPHY_MII_DSP_RW_PORT,	0x14e2 },
800 		{ BRGPHY_MII_AUXCTL,		0x0400 },
801 		{ 0,				0 },
802 	};
803 	int i;
804 
805 	for (i = 0; dspcode[i].reg != 0; i++)
806 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
807 }
808 
809 static void
810 brgphy_fixup_crc_bug(struct mii_softc *sc)
811 {
812 	static const struct {
813 		int		reg;
814 		uint16_t	val;
815 	} dspcode[] = {
816 		{ BRGPHY_MII_DSP_RW_PORT,	0x0a75 },
817 		{ 0x1c,				0x8c68 },
818 		{ 0x1c,				0x8d68 },
819 		{ 0x1c,				0x8c68 },
820 		{ 0,				0 },
821 	};
822 	int i;
823 
824 	for (i = 0; dspcode[i].reg != 0; i++)
825 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
826 }
827 
828 static void
829 brgphy_fixup_jitter_bug(struct mii_softc *sc)
830 {
831 	static const struct {
832 		int		reg;
833 		uint16_t	val;
834 	} dspcode[] = {
835 		{ BRGPHY_MII_AUXCTL,		0x0c00 },
836 		{ BRGPHY_MII_DSP_ADDR_REG,	0x000a },
837 		{ BRGPHY_MII_DSP_RW_PORT,	0x010b },
838 		{ BRGPHY_MII_AUXCTL,		0x0400 },
839 		{ 0,				0 },
840 	};
841 	int i;
842 
843 	for (i = 0; dspcode[i].reg != 0; i++)
844 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
845 }
846 
847 
848 static void
849 brgphy_fixup_disable_early_dac(struct mii_softc *sc)
850 {
851 	uint32_t val;
852 
853 	PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG, 0x0f08);
854 	val = PHY_READ(sc, BRGPHY_MII_DSP_RW_PORT);
855 	val &= ~(1 << 8);
856 	PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT, val);
857 
858 }
859 
860 
861 static void
862 brgphy_ethernet_wirespeed(struct mii_softc *sc)
863 {
864 	uint32_t	val;
865 
866 	/* Enable Ethernet@WireSpeed. */
867 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x7007);
868 	val = PHY_READ(sc, BRGPHY_MII_AUXCTL);
869 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, val | (1 << 15) | (1 << 4));
870 }
871 
872 
873 static void
874 brgphy_jumbo_settings(struct mii_softc *sc, u_long mtu)
875 {
876 	struct brgphy_softc *bsc = (struct brgphy_softc *)sc;
877 	uint32_t	val;
878 
879 	/* Set or clear jumbo frame settings in the PHY. */
880 	if (mtu > ETHER_MAX_LEN) {
881 		if (bsc->mii_model == MII_MODEL_xxBROADCOM_BCM5401) {
882 			/* BCM5401 PHY cannot read-modify-write. */
883 			PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x4c20);
884 		} else {
885 			PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x7);
886 			val = PHY_READ(sc, BRGPHY_MII_AUXCTL);
887 			PHY_WRITE(sc, BRGPHY_MII_AUXCTL,
888 			    val | BRGPHY_AUXCTL_LONG_PKT);
889 		}
890 
891 		val = PHY_READ(sc, BRGPHY_MII_PHY_EXTCTL);
892 		PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL,
893 		    val | BRGPHY_PHY_EXTCTL_HIGH_LA);
894 	} else {
895 		PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x7);
896 		val = PHY_READ(sc, BRGPHY_MII_AUXCTL);
897 		PHY_WRITE(sc, BRGPHY_MII_AUXCTL,
898 		    val & ~(BRGPHY_AUXCTL_LONG_PKT | 0x7));
899 
900 		val = PHY_READ(sc, BRGPHY_MII_PHY_EXTCTL);
901 		PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL,
902 			val & ~BRGPHY_PHY_EXTCTL_HIGH_LA);
903 	}
904 }
905 
906 static void
907 brgphy_reset(struct mii_softc *sc)
908 {
909 	struct brgphy_softc *bsc = (struct brgphy_softc *)sc;
910 	struct bge_softc *bge_sc = NULL;
911 	struct bce_softc *bce_sc = NULL;
912 	struct ifnet *ifp;
913 
914 	/* Perform a standard PHY reset. */
915 	mii_phy_reset(sc);
916 
917 	/* Handle any PHY specific procedures following the reset. */
918 	switch (bsc->mii_oui) {
919 	case MII_OUI_BROADCOM:
920 		break;
921 	case MII_OUI_xxBROADCOM:
922 		switch (bsc->mii_model) {
923 		case MII_MODEL_xxBROADCOM_BCM5400:
924 			bcm5401_load_dspcode(sc);
925 			break;
926 		case MII_MODEL_xxBROADCOM_BCM5401:
927 			if (bsc->mii_rev == 1 || bsc->mii_rev == 3)
928 				bcm5401_load_dspcode(sc);
929 			break;
930 		case MII_MODEL_xxBROADCOM_BCM5411:
931 			bcm5411_load_dspcode(sc);
932 			break;
933 		}
934 		break;
935 	case MII_OUI_xxBROADCOM_ALT1:
936 		break;
937 	}
938 
939 	ifp = sc->mii_pdata->mii_ifp;
940 
941 	/* Find the driver associated with this PHY. */
942 	if (strcmp(ifp->if_dname, "bge") == 0)	{
943 		bge_sc = ifp->if_softc;
944 	} else if (strcmp(ifp->if_dname, "bce") == 0) {
945 		bce_sc = ifp->if_softc;
946 	}
947 
948 	/* Handle any bge (NetXtreme/NetLink) workarounds. */
949 	if (bge_sc) {
950 		/* Fix up various bugs */
951 		if (bge_sc->bge_flags & BGE_FLAG_5704_A0_BUG)
952 			brgphy_fixup_5704_a0_bug(sc);
953 		if (bge_sc->bge_flags & BGE_FLAG_ADC_BUG)
954 			brgphy_fixup_adc_bug(sc);
955 		if (bge_sc->bge_flags & BGE_FLAG_ADJUST_TRIM)
956 			brgphy_fixup_adjust_trim(sc);
957 		if (bge_sc->bge_flags & BGE_FLAG_BER_BUG)
958 			brgphy_fixup_ber_bug(sc);
959 		if (bge_sc->bge_flags & BGE_FLAG_CRC_BUG)
960 			brgphy_fixup_crc_bug(sc);
961 		if (bge_sc->bge_flags & BGE_FLAG_JITTER_BUG)
962 			brgphy_fixup_jitter_bug(sc);
963 
964 		brgphy_jumbo_settings(sc, ifp->if_mtu);
965 
966 		if (bge_sc->bge_flags & BGE_FLAG_WIRESPEED)
967 			brgphy_ethernet_wirespeed(sc);
968 
969 		/* Enable Link LED on Dell boxes */
970 		if (bge_sc->bge_flags & BGE_FLAG_NO_3LED) {
971 			PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL,
972 			    PHY_READ(sc, BRGPHY_MII_PHY_EXTCTL) &
973 			    ~BRGPHY_PHY_EXTCTL_3_LED);
974 		}
975 
976 		/* Adjust output voltage (From Linux driver) */
977 		if (bge_sc->bge_asicrev == BGE_ASICREV_BCM5906)
978 			PHY_WRITE(sc, BRGPHY_MII_EPHY_PTEST, 0x12);
979 
980 	/* Handle any bce (NetXtreme II) workarounds. */
981 	} else if (bce_sc) {
982 
983 		if (BCE_CHIP_NUM(bce_sc) == BCE_CHIP_NUM_5708 &&
984 			(bce_sc->bce_phy_flags & BCE_PHY_SERDES_FLAG)) {
985 
986 			/* Store autoneg capabilities/results in digital block (Page 0) */
987 			PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR, BRGPHY_5708S_DIG3_PG2);
988 			PHY_WRITE(sc, BRGPHY_5708S_PG2_DIGCTL_3_0,
989 				BRGPHY_5708S_PG2_DIGCTL_3_0_USE_IEEE);
990 			PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR, BRGPHY_5708S_DIG_PG0);
991 
992 			/* Enable fiber mode and autodetection */
993 			PHY_WRITE(sc, BRGPHY_5708S_PG0_1000X_CTL1,
994 				PHY_READ(sc, BRGPHY_5708S_PG0_1000X_CTL1) |
995 				BRGPHY_5708S_PG0_1000X_CTL1_AUTODET_EN |
996 				BRGPHY_5708S_PG0_1000X_CTL1_FIBER_MODE);
997 
998 			/* Enable parallel detection */
999 			PHY_WRITE(sc, BRGPHY_5708S_PG0_1000X_CTL2,
1000 				PHY_READ(sc, BRGPHY_5708S_PG0_1000X_CTL2) |
1001 				BRGPHY_5708S_PG0_1000X_CTL2_PAR_DET_EN);
1002 
1003 			/* Advertise 2.5G support through next page during autoneg */
1004 			if (bce_sc->bce_phy_flags & BCE_PHY_2_5G_CAPABLE_FLAG)
1005 				PHY_WRITE(sc, BRGPHY_5708S_ANEG_NXT_PG_XMIT1,
1006 					PHY_READ(sc, BRGPHY_5708S_ANEG_NXT_PG_XMIT1) |
1007 					BRGPHY_5708S_ANEG_NXT_PG_XMIT1_25G);
1008 
1009 			/* Increase TX signal amplitude */
1010 			if ((BCE_CHIP_ID(bce_sc) == BCE_CHIP_ID_5708_A0) ||
1011 			    (BCE_CHIP_ID(bce_sc) == BCE_CHIP_ID_5708_B0) ||
1012 			    (BCE_CHIP_ID(bce_sc) == BCE_CHIP_ID_5708_B1)) {
1013 				PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
1014 					BRGPHY_5708S_TX_MISC_PG5);
1015 				PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL1,
1016 					PHY_READ(sc, BRGPHY_5708S_PG5_TXACTL1) & ~0x30);
1017 				PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
1018 					BRGPHY_5708S_DIG_PG0);
1019 			}
1020 
1021 			/* Backplanes use special driver/pre-driver/pre-emphasis values. */
1022 			if ((bce_sc->bce_shared_hw_cfg & BCE_SHARED_HW_CFG_PHY_BACKPLANE) &&
1023 				(bce_sc->bce_port_hw_cfg & BCE_PORT_HW_CFG_CFG_TXCTL3_MASK)) {
1024 					PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
1025 						BRGPHY_5708S_TX_MISC_PG5);
1026 					PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL3,
1027 						bce_sc->bce_port_hw_cfg &
1028 						BCE_PORT_HW_CFG_CFG_TXCTL3_MASK);
1029 					PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
1030 						BRGPHY_5708S_DIG_PG0);
1031 			}
1032 		} else if (BCE_CHIP_NUM(bce_sc) == BCE_CHIP_NUM_5709) {
1033 			if ((BCE_CHIP_REV(bce_sc) == BCE_CHIP_REV_Ax) ||
1034 				(BCE_CHIP_REV(bce_sc) == BCE_CHIP_REV_Bx))
1035 				brgphy_fixup_disable_early_dac(sc);
1036 
1037 			brgphy_jumbo_settings(sc, ifp->if_mtu);
1038 			brgphy_ethernet_wirespeed(sc);
1039 		} else {
1040 			brgphy_fixup_ber_bug(sc);
1041 			brgphy_jumbo_settings(sc, ifp->if_mtu);
1042 			brgphy_ethernet_wirespeed(sc);
1043 		}
1044 
1045 	}
1046 }
1047 
1048