Home | History | Annotate | Line # | Download | only in mii
brgphy.c revision 1.40.4.1
      1  1.40.4.1       snj /*	$NetBSD: brgphy.c,v 1.40.4.1 2009/08/04 19:46:20 snj Exp $	*/
      2       1.1   thorpej 
      3       1.1   thorpej /*-
      4       1.1   thorpej  * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
      5       1.1   thorpej  * All rights reserved.
      6       1.1   thorpej  *
      7       1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9       1.1   thorpej  * NASA Ames Research Center.
     10       1.1   thorpej  *
     11       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     12       1.1   thorpej  * modification, are permitted provided that the following conditions
     13       1.1   thorpej  * are met:
     14       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     15       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     16       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     19       1.1   thorpej  *
     20       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31       1.1   thorpej  */
     32       1.1   thorpej 
     33       1.1   thorpej /*
     34       1.1   thorpej  * Copyright (c) 1997 Manuel Bouyer.  All rights reserved.
     35       1.1   thorpej  *
     36       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     37       1.1   thorpej  * modification, are permitted provided that the following conditions
     38       1.1   thorpej  * are met:
     39       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     40       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     41       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     42       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     43       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     44       1.1   thorpej  * 3. All advertising materials mentioning features or use of this software
     45       1.1   thorpej  *    must display the following acknowledgement:
     46       1.1   thorpej  *	This product includes software developed by Manuel Bouyer.
     47       1.1   thorpej  * 4. The name of the author may not be used to endorse or promote products
     48       1.1   thorpej  *    derived from this software without specific prior written permission.
     49       1.1   thorpej  *
     50       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     51       1.1   thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     52       1.1   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     53       1.1   thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     54       1.1   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     55       1.1   thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     56       1.1   thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     57       1.1   thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     58       1.1   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     59       1.1   thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     60       1.1   thorpej  */
     61       1.1   thorpej 
     62       1.1   thorpej /*
     63       1.1   thorpej  * driver for the Broadcom BCM5400 Gig-E PHY.
     64       1.1   thorpej  *
     65       1.1   thorpej  * Programming information for this PHY was gleaned from FreeBSD
     66       1.1   thorpej  * (they were apparently able to get a datasheet from Broadcom).
     67       1.1   thorpej  */
     68       1.5     lukem 
     69       1.5     lukem #include <sys/cdefs.h>
     70  1.40.4.1       snj __KERNEL_RCSID(0, "$NetBSD: brgphy.c,v 1.40.4.1 2009/08/04 19:46:20 snj Exp $");
     71       1.1   thorpej 
     72       1.1   thorpej #include <sys/param.h>
     73       1.1   thorpej #include <sys/systm.h>
     74       1.1   thorpej #include <sys/kernel.h>
     75       1.1   thorpej #include <sys/device.h>
     76       1.1   thorpej #include <sys/socket.h>
     77       1.1   thorpej #include <sys/errno.h>
     78  1.40.4.1       snj #include <prop/proplib.h>
     79       1.1   thorpej 
     80       1.1   thorpej #include <net/if.h>
     81       1.1   thorpej #include <net/if_media.h>
     82       1.1   thorpej 
     83       1.1   thorpej #include <dev/mii/mii.h>
     84       1.1   thorpej #include <dev/mii/miivar.h>
     85       1.1   thorpej #include <dev/mii/miidevs.h>
     86       1.1   thorpej 
     87       1.1   thorpej #include <dev/mii/brgphyreg.h>
     88  1.40.4.1       snj #include <dev/pci/if_bgereg.h>
     89       1.1   thorpej 
     90      1.39   xtraeme static int	brgphymatch(device_t, cfdata_t, void *);
     91      1.39   xtraeme static void	brgphyattach(device_t, device_t, void *);
     92       1.1   thorpej 
     93  1.40.4.1       snj struct brgphy_softc {
     94  1.40.4.1       snj 	struct mii_softc sc_mii;
     95  1.40.4.1       snj 	int sc_isbge;
     96  1.40.4.1       snj 	int sc_isbnx;
     97  1.40.4.1       snj 	int sc_bge_flags;
     98  1.40.4.1       snj 	int sc_bnx_flags;
     99  1.40.4.1       snj };
    100  1.40.4.1       snj 
    101  1.40.4.1       snj CFATTACH_DECL_NEW(brgphy, sizeof(struct brgphy_softc),
    102      1.13   thorpej     brgphymatch, brgphyattach, mii_phy_detach, mii_phy_activate);
    103       1.1   thorpej 
    104      1.21   thorpej static int	brgphy_service(struct mii_softc *, struct mii_data *, int);
    105      1.21   thorpej static void	brgphy_status(struct mii_softc *);
    106      1.32   msaitoh static int	brgphy_mii_phy_auto(struct mii_softc *);
    107      1.32   msaitoh static void	brgphy_loop(struct mii_softc *);
    108  1.40.4.1       snj static void	brgphy_reset(struct mii_softc *);
    109  1.40.4.1       snj static void	brgphy_bcm5401_dspcode(struct mii_softc *);
    110  1.40.4.1       snj static void	brgphy_bcm5411_dspcode(struct mii_softc *);
    111  1.40.4.1       snj static void	brgphy_bcm5421_dspcode(struct mii_softc *);
    112  1.40.4.1       snj static void	brgphy_bcm54k2_dspcode(struct mii_softc *);
    113  1.40.4.1       snj static void	brgphy_adc_bug(struct mii_softc *);
    114  1.40.4.1       snj static void	brgphy_5704_a0_bug(struct mii_softc *);
    115  1.40.4.1       snj static void	brgphy_ber_bug(struct mii_softc *);
    116  1.40.4.1       snj static void	brgphy_crc_bug(struct mii_softc *);
    117       1.1   thorpej 
    118      1.10   thorpej 
    119      1.21   thorpej static const struct mii_phy_funcs brgphy_funcs = {
    120  1.40.4.1       snj 	brgphy_service, brgphy_status, brgphy_reset,
    121      1.34     markd };
    122      1.34     markd 
    123      1.21   thorpej static const struct mii_phydesc brgphys[] = {
    124       1.1   thorpej 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5400,
    125       1.1   thorpej 	  MII_STR_BROADCOM_BCM5400 },
    126       1.2   thorpej 
    127       1.1   thorpej 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5401,
    128       1.1   thorpej 	  MII_STR_BROADCOM_BCM5401 },
    129       1.2   thorpej 
    130       1.1   thorpej 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5411,
    131       1.1   thorpej 	  MII_STR_BROADCOM_BCM5411 },
    132       1.9   thorpej 
    133       1.9   thorpej 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5421,
    134       1.9   thorpej 	  MII_STR_BROADCOM_BCM5421 },
    135       1.7      fvdl 
    136  1.40.4.1       snj 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM54K2,
    137  1.40.4.1       snj 	  MII_STR_BROADCOM_BCM54K2 },
    138  1.40.4.1       snj 
    139  1.40.4.1       snj 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5462,
    140  1.40.4.1       snj 	  MII_STR_BROADCOM_BCM5462 },
    141  1.40.4.1       snj 
    142       1.7      fvdl 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5701,
    143       1.7      fvdl 	  MII_STR_BROADCOM_BCM5701 },
    144      1.14      matt 
    145      1.14      matt 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5703,
    146      1.14      matt 	  MII_STR_BROADCOM_BCM5703 },
    147       1.1   thorpej 
    148      1.15  jonathan 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5704,
    149      1.15  jonathan 	  MII_STR_BROADCOM_BCM5704 },
    150      1.15  jonathan 
    151      1.25  jonathan 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5705,
    152      1.25  jonathan 	  MII_STR_BROADCOM_BCM5705 },
    153      1.25  jonathan 
    154      1.24  jonathan 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5714,
    155      1.24  jonathan 	  MII_STR_BROADCOM_BCM5714 },
    156      1.18   hannken 
    157      1.22      cube 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5750,
    158      1.22      cube 	  MII_STR_BROADCOM_BCM5750 },
    159      1.22      cube 
    160      1.31   tsutsui 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5752,
    161      1.31   tsutsui 	  MII_STR_BROADCOM_BCM5752 },
    162      1.31   tsutsui 
    163      1.27  jonathan 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5780,
    164      1.27  jonathan 	  MII_STR_BROADCOM_BCM5780 },
    165      1.27  jonathan 
    166      1.36     markd 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5708C,
    167      1.36     markd 	  MII_STR_BROADCOM_BCM5708C },
    168      1.36     markd 
    169  1.40.4.1       snj 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5722,
    170  1.40.4.1       snj 	  MII_STR_BROADCOM2_BCM5722 },
    171  1.40.4.1       snj 
    172      1.34     markd 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5755,
    173      1.34     markd 	  MII_STR_BROADCOM2_BCM5755 },
    174      1.34     markd 
    175      1.34     markd 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5754,
    176      1.34     markd 	  MII_STR_BROADCOM2_BCM5754 },
    177      1.34     markd 
    178      1.40    cegger 	{ MII_OUI_xxBROADCOM_ALT1,	MII_MODEL_xxBROADCOM_ALT1_BCM5906,
    179      1.40    cegger 	  MII_STR_xxBROADCOM_ALT1_BCM5906 },
    180      1.40    cegger 
    181       1.1   thorpej 	{ 0,				0,
    182       1.1   thorpej 	  NULL },
    183       1.1   thorpej };
    184       1.1   thorpej 
    185      1.21   thorpej static int
    186  1.40.4.1       snj brgphymatch(struct device *parent, struct cfdata *match, void *aux)
    187       1.1   thorpej {
    188       1.1   thorpej 	struct mii_attach_args *ma = aux;
    189       1.1   thorpej 
    190       1.2   thorpej 	if (mii_phy_match(ma, brgphys) != NULL)
    191       1.1   thorpej 		return (10);
    192       1.1   thorpej 
    193       1.1   thorpej 	return (0);
    194       1.1   thorpej }
    195       1.1   thorpej 
    196      1.21   thorpej static void
    197      1.29  christos brgphyattach(struct device *parent, struct device *self, void *aux)
    198       1.1   thorpej {
    199  1.40.4.1       snj 	struct brgphy_softc *bsc = device_private(self);
    200  1.40.4.1       snj 	struct mii_softc *sc = &bsc->sc_mii;
    201       1.1   thorpej 	struct mii_attach_args *ma = aux;
    202       1.1   thorpej 	struct mii_data *mii = ma->mii_data;
    203       1.2   thorpej 	const struct mii_phydesc *mpd;
    204  1.40.4.1       snj 	prop_dictionary_t dict;
    205       1.1   thorpej 
    206       1.2   thorpej 	mpd = mii_phy_match(ma, brgphys);
    207      1.17   thorpej 	aprint_naive(": Media interface\n");
    208      1.17   thorpej 	aprint_normal(": %s, rev. %d\n", mpd->mpd_name, MII_REV(ma->mii_id2));
    209       1.1   thorpej 
    210      1.39   xtraeme 	sc->mii_dev = self;
    211       1.1   thorpej 	sc->mii_inst = mii->mii_instance;
    212       1.1   thorpej 	sc->mii_phy = ma->mii_phyno;
    213      1.32   msaitoh 	sc->mii_mpd_model = MII_MODEL(ma->mii_id2);
    214  1.40.4.1       snj 	sc->mii_mpd_rev = MII_REV(ma->mii_id2);
    215       1.1   thorpej 	sc->mii_pdata = mii;
    216       1.6   thorpej 	sc->mii_flags = ma->mii_flags;
    217      1.30  christos 	sc->mii_anegticks = MII_ANEGTICKS;
    218  1.40.4.1       snj 	sc->mii_funcs = &brgphy_funcs;
    219      1.10   thorpej 
    220       1.1   thorpej 	PHY_RESET(sc);
    221       1.1   thorpej 
    222       1.1   thorpej 	sc->mii_capabilities =
    223       1.1   thorpej 	    PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
    224       1.1   thorpej 	if (sc->mii_capabilities & BMSR_EXTSTAT)
    225       1.1   thorpej 		sc->mii_extcapabilities = PHY_READ(sc, MII_EXTSR);
    226       1.1   thorpej 
    227      1.39   xtraeme 	aprint_normal_dev(self, "");
    228       1.1   thorpej 	if ((sc->mii_capabilities & BMSR_MEDIAMASK) == 0 &&
    229       1.1   thorpej 	    (sc->mii_extcapabilities & EXTSR_MEDIAMASK) == 0)
    230      1.17   thorpej 		aprint_error("no media present");
    231       1.1   thorpej 	else
    232       1.1   thorpej 		mii_phy_add_media(sc);
    233      1.17   thorpej 	aprint_normal("\n");
    234      1.35  jmcneill 
    235  1.40.4.1       snj 	if (device_is_a(parent, "bge")) {
    236  1.40.4.1       snj 		bsc->sc_isbge = 1;
    237  1.40.4.1       snj 		dict = device_properties(parent);
    238  1.40.4.1       snj 		prop_dictionary_get_uint32(dict, "phyflags",
    239  1.40.4.1       snj 		    &bsc->sc_bge_flags);
    240  1.40.4.1       snj 	} else if (device_is_a(parent, "bnx")) {
    241  1.40.4.1       snj 		bsc->sc_isbnx = 1;
    242  1.40.4.1       snj 		dict = device_properties(parent);
    243  1.40.4.1       snj 		prop_dictionary_get_uint32(dict, "phyflags",
    244  1.40.4.1       snj 		    &bsc->sc_bnx_flags);
    245  1.40.4.1       snj 	}
    246  1.40.4.1       snj 
    247      1.35  jmcneill 	if (!pmf_device_register(self, NULL, mii_phy_resume))
    248      1.35  jmcneill 		aprint_error_dev(self, "couldn't establish power handler\n");
    249       1.1   thorpej }
    250       1.1   thorpej 
    251      1.21   thorpej static int
    252       1.4   thorpej brgphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
    253       1.1   thorpej {
    254       1.1   thorpej 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    255      1.32   msaitoh 	int reg, speed, gig;
    256       1.1   thorpej 
    257       1.1   thorpej 	switch (cmd) {
    258       1.1   thorpej 	case MII_POLLSTAT:
    259       1.1   thorpej 		/*
    260       1.1   thorpej 		 * If we're not polling our PHY instance, just return.
    261       1.1   thorpej 		 */
    262       1.1   thorpej 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
    263       1.1   thorpej 			return (0);
    264       1.1   thorpej 		break;
    265       1.1   thorpej 
    266       1.1   thorpej 	case MII_MEDIACHG:
    267       1.1   thorpej 		/*
    268       1.1   thorpej 		 * If the media indicates a different PHY instance,
    269       1.1   thorpej 		 * isolate ourselves.
    270       1.1   thorpej 		 */
    271       1.1   thorpej 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
    272       1.1   thorpej 			reg = PHY_READ(sc, MII_BMCR);
    273       1.1   thorpej 			PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
    274       1.1   thorpej 			return (0);
    275       1.1   thorpej 		}
    276       1.1   thorpej 
    277       1.1   thorpej 		/*
    278       1.1   thorpej 		 * If the interface is not up, don't do anything.
    279       1.1   thorpej 		 */
    280       1.1   thorpej 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
    281       1.1   thorpej 			break;
    282       1.1   thorpej 
    283      1.32   msaitoh 		PHY_RESET(sc); /* XXX hardware bug work-around */
    284      1.32   msaitoh 
    285      1.32   msaitoh 		switch (IFM_SUBTYPE(ife->ifm_media)) {
    286      1.32   msaitoh 		case IFM_AUTO:
    287      1.32   msaitoh 			(void) brgphy_mii_phy_auto(sc);
    288      1.32   msaitoh 			break;
    289      1.32   msaitoh 		case IFM_1000_T:
    290      1.32   msaitoh 			speed = BMCR_S1000;
    291      1.32   msaitoh 			goto setit;
    292      1.32   msaitoh 		case IFM_100_TX:
    293      1.32   msaitoh 			speed = BMCR_S100;
    294      1.32   msaitoh 			goto setit;
    295      1.32   msaitoh 		case IFM_10_T:
    296      1.32   msaitoh 			speed = BMCR_S10;
    297      1.32   msaitoh setit:
    298      1.32   msaitoh 			brgphy_loop(sc);
    299      1.32   msaitoh 			if ((ife->ifm_media & IFM_GMASK) == IFM_FDX) {
    300      1.32   msaitoh 				speed |= BMCR_FDX;
    301      1.32   msaitoh 				gig = GTCR_ADV_1000TFDX;
    302      1.32   msaitoh 			} else {
    303      1.32   msaitoh 				gig = GTCR_ADV_1000THDX;
    304      1.32   msaitoh 			}
    305      1.32   msaitoh 
    306      1.32   msaitoh 			PHY_WRITE(sc, MII_100T2CR, 0);
    307      1.32   msaitoh 			PHY_WRITE(sc, MII_BMCR, speed);
    308      1.32   msaitoh 			PHY_WRITE(sc, MII_ANAR, ANAR_CSMA);
    309      1.32   msaitoh 
    310      1.32   msaitoh 			if (IFM_SUBTYPE(ife->ifm_media) != IFM_1000_T)
    311      1.32   msaitoh 				break;
    312      1.32   msaitoh 
    313      1.32   msaitoh 			PHY_WRITE(sc, MII_100T2CR, gig);
    314      1.32   msaitoh 			PHY_WRITE(sc, MII_BMCR,
    315      1.32   msaitoh 			    speed|BMCR_AUTOEN|BMCR_STARTNEG);
    316      1.32   msaitoh 
    317      1.32   msaitoh 			if (sc->mii_mpd_model != MII_MODEL_BROADCOM_BCM5701)
    318      1.33   msaitoh 				break;
    319      1.32   msaitoh 
    320      1.32   msaitoh 			if (mii->mii_media.ifm_media & IFM_ETH_MASTER)
    321      1.32   msaitoh 				gig |= GTCR_MAN_MS | GTCR_ADV_MS;
    322      1.32   msaitoh 			PHY_WRITE(sc, MII_100T2CR, gig);
    323      1.32   msaitoh 			break;
    324      1.32   msaitoh 		default:
    325      1.32   msaitoh 			return (EINVAL);
    326      1.32   msaitoh 		}
    327       1.1   thorpej 		break;
    328       1.1   thorpej 
    329       1.1   thorpej 	case MII_TICK:
    330       1.1   thorpej 		/*
    331       1.1   thorpej 		 * If we're not currently selected, just return.
    332       1.1   thorpej 		 */
    333       1.1   thorpej 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
    334       1.1   thorpej 			return (0);
    335       1.1   thorpej 
    336       1.1   thorpej 		if (mii_phy_tick(sc) == EJUSTRETURN)
    337       1.1   thorpej 			return (0);
    338       1.1   thorpej 		break;
    339       1.1   thorpej 
    340       1.1   thorpej 	case MII_DOWN:
    341       1.1   thorpej 		mii_phy_down(sc);
    342       1.1   thorpej 		return (0);
    343       1.1   thorpej 	}
    344       1.1   thorpej 
    345       1.1   thorpej 	/* Update the media status. */
    346       1.1   thorpej 	mii_phy_status(sc);
    347       1.1   thorpej 
    348      1.10   thorpej 	/*
    349      1.32   msaitoh 	 * Callback if something changed. Note that we need to poke the DSP on
    350      1.32   msaitoh 	 * the Broadcom PHYs if the media changes.
    351      1.10   thorpej 	 */
    352      1.23     perry 	if (sc->mii_media_active != mii->mii_media_active ||
    353      1.10   thorpej 	    sc->mii_media_status != mii->mii_media_status ||
    354      1.10   thorpej 	    cmd == MII_MEDIACHG) {
    355  1.40.4.1       snj 		switch (sc->mii_mpd_model) {
    356  1.40.4.1       snj 		case MII_MODEL_BROADCOM_BCM5400:
    357  1.40.4.1       snj 			brgphy_bcm5401_dspcode(sc);
    358  1.40.4.1       snj 			break;
    359  1.40.4.1       snj 		case MII_MODEL_BROADCOM_BCM5401:
    360  1.40.4.1       snj 			if (sc->mii_mpd_rev == 1 || sc->mii_mpd_rev == 3)
    361  1.40.4.1       snj 				brgphy_bcm5401_dspcode(sc);
    362  1.40.4.1       snj 			break;
    363  1.40.4.1       snj 		case MII_MODEL_BROADCOM_BCM5411:
    364  1.40.4.1       snj 			brgphy_bcm5411_dspcode(sc);
    365  1.40.4.1       snj 			break;
    366  1.40.4.1       snj 		}
    367      1.10   thorpej 	}
    368  1.40.4.1       snj 
    369  1.40.4.1       snj 	/* Callback if something changed. */
    370  1.40.4.1       snj 	mii_phy_update(sc, cmd);
    371       1.1   thorpej 	return (0);
    372       1.1   thorpej }
    373       1.1   thorpej 
    374      1.21   thorpej static void
    375       1.4   thorpej brgphy_status(struct mii_softc *sc)
    376       1.1   thorpej {
    377       1.1   thorpej 	struct mii_data *mii = sc->mii_pdata;
    378       1.1   thorpej 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    379       1.1   thorpej 	int bmcr, auxsts, gtsr;
    380       1.1   thorpej 
    381       1.1   thorpej 	mii->mii_media_status = IFM_AVALID;
    382       1.1   thorpej 	mii->mii_media_active = IFM_ETHER;
    383       1.1   thorpej 
    384       1.1   thorpej 	auxsts = PHY_READ(sc, BRGPHY_MII_AUXSTS);
    385       1.1   thorpej 
    386       1.1   thorpej 	if (auxsts & BRGPHY_AUXSTS_LINK)
    387       1.1   thorpej 		mii->mii_media_status |= IFM_ACTIVE;
    388       1.1   thorpej 
    389       1.1   thorpej 	bmcr = PHY_READ(sc, MII_BMCR);
    390       1.1   thorpej 	if (bmcr & BMCR_ISO) {
    391       1.1   thorpej 		mii->mii_media_active |= IFM_NONE;
    392       1.1   thorpej 		mii->mii_media_status = 0;
    393       1.1   thorpej 		return;
    394       1.1   thorpej 	}
    395       1.1   thorpej 
    396       1.1   thorpej 	if (bmcr & BMCR_LOOP)
    397       1.1   thorpej 		mii->mii_media_active |= IFM_LOOP;
    398       1.1   thorpej 
    399       1.1   thorpej 	if (bmcr & BMCR_AUTOEN) {
    400       1.1   thorpej 		/*
    401       1.1   thorpej 		 * The media status bits are only valid of autonegotiation
    402       1.1   thorpej 		 * has completed (or it's disabled).
    403       1.1   thorpej 		 */
    404       1.1   thorpej 		if ((auxsts & BRGPHY_AUXSTS_ACOMP) == 0) {
    405       1.1   thorpej 			/* Erg, still trying, I guess... */
    406       1.1   thorpej 			mii->mii_media_active |= IFM_NONE;
    407       1.1   thorpej 			return;
    408       1.1   thorpej 		}
    409       1.1   thorpej 
    410       1.1   thorpej 		switch (auxsts & BRGPHY_AUXSTS_AN_RES) {
    411       1.1   thorpej 		case BRGPHY_RES_1000FD:
    412       1.3     bjh21 			mii->mii_media_active |= IFM_1000_T|IFM_FDX;
    413       1.1   thorpej 			gtsr = PHY_READ(sc, MII_100T2SR);
    414       1.1   thorpej 			if (gtsr & GTSR_MS_RES)
    415       1.1   thorpej 				mii->mii_media_active |= IFM_ETH_MASTER;
    416       1.1   thorpej 			break;
    417       1.1   thorpej 
    418       1.1   thorpej 		case BRGPHY_RES_1000HD:
    419       1.3     bjh21 			mii->mii_media_active |= IFM_1000_T;
    420       1.1   thorpej 			gtsr = PHY_READ(sc, MII_100T2SR);
    421       1.1   thorpej 			if (gtsr & GTSR_MS_RES)
    422       1.1   thorpej 				mii->mii_media_active |= IFM_ETH_MASTER;
    423       1.1   thorpej 			break;
    424       1.1   thorpej 
    425       1.1   thorpej 		case BRGPHY_RES_100FD:
    426       1.1   thorpej 			mii->mii_media_active |= IFM_100_TX|IFM_FDX;
    427       1.1   thorpej 			break;
    428       1.1   thorpej 
    429       1.1   thorpej 		case BRGPHY_RES_100T4:
    430       1.1   thorpej 			mii->mii_media_active |= IFM_100_T4;
    431       1.1   thorpej 			break;
    432       1.1   thorpej 
    433       1.1   thorpej 		case BRGPHY_RES_100HD:
    434       1.1   thorpej 			mii->mii_media_active |= IFM_100_TX;
    435       1.1   thorpej 			break;
    436       1.1   thorpej 
    437       1.1   thorpej 		case BRGPHY_RES_10FD:
    438       1.1   thorpej 			mii->mii_media_active |= IFM_10_T|IFM_FDX;
    439       1.1   thorpej 			break;
    440       1.1   thorpej 
    441       1.1   thorpej 		case BRGPHY_RES_10HD:
    442       1.1   thorpej 			mii->mii_media_active |= IFM_10_T;
    443       1.1   thorpej 			break;
    444       1.1   thorpej 
    445       1.1   thorpej 		default:
    446       1.1   thorpej 			mii->mii_media_active |= IFM_NONE;
    447       1.1   thorpej 			mii->mii_media_status = 0;
    448       1.1   thorpej 		}
    449      1.19   thorpej 		if (mii->mii_media_active & IFM_FDX)
    450      1.20   thorpej 			mii->mii_media_active |= mii_phy_flowstatus(sc);
    451       1.1   thorpej 	} else
    452       1.1   thorpej 		mii->mii_media_active = ife->ifm_media;
    453      1.10   thorpej }
    454      1.10   thorpej 
    455      1.32   msaitoh int
    456      1.32   msaitoh brgphy_mii_phy_auto(struct mii_softc *sc)
    457      1.32   msaitoh {
    458      1.32   msaitoh 	int anar, ktcr = 0;
    459      1.32   msaitoh 
    460      1.32   msaitoh 	brgphy_loop(sc);
    461      1.32   msaitoh 	PHY_RESET(sc);
    462      1.32   msaitoh 	ktcr = GTCR_ADV_1000TFDX|GTCR_ADV_1000THDX;
    463      1.32   msaitoh 	if (sc->mii_mpd_model == MII_MODEL_BROADCOM_BCM5701)
    464      1.32   msaitoh 		ktcr |= GTCR_MAN_MS|GTCR_ADV_MS;
    465      1.32   msaitoh 	PHY_WRITE(sc, MII_100T2CR, ktcr);
    466      1.32   msaitoh 	ktcr = PHY_READ(sc, MII_100T2CR);
    467      1.32   msaitoh 	DELAY(1000);
    468      1.32   msaitoh 	anar = BMSR_MEDIA_TO_ANAR(sc->mii_capabilities) | ANAR_CSMA;
    469      1.32   msaitoh 	if (sc->mii_flags & MIIF_DOPAUSE)
    470      1.32   msaitoh 		anar |= ANAR_FC| ANAR_X_PAUSE_ASYM;
    471      1.32   msaitoh 
    472      1.32   msaitoh 	PHY_WRITE(sc, MII_ANAR, anar);
    473      1.32   msaitoh 	DELAY(1000);
    474      1.32   msaitoh 	PHY_WRITE(sc, MII_BMCR,
    475      1.32   msaitoh 	    BMCR_AUTOEN | BMCR_STARTNEG);
    476      1.32   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_IMR, 0xFF00);
    477      1.32   msaitoh 
    478      1.32   msaitoh 	return (EJUSTRETURN);
    479      1.32   msaitoh }
    480      1.32   msaitoh 
    481      1.32   msaitoh void
    482      1.32   msaitoh brgphy_loop(struct mii_softc *sc)
    483      1.32   msaitoh {
    484      1.32   msaitoh 	u_int32_t bmsr;
    485      1.32   msaitoh 	int i;
    486      1.32   msaitoh 
    487      1.32   msaitoh 	PHY_WRITE(sc, MII_BMCR, BMCR_LOOP);
    488      1.33   msaitoh 	for (i = 0; i < 15000; i++) {
    489      1.32   msaitoh 		bmsr = PHY_READ(sc, MII_BMSR);
    490      1.32   msaitoh 		if (!(bmsr & BMSR_LINK))
    491      1.32   msaitoh 			break;
    492      1.32   msaitoh 		DELAY(10);
    493      1.32   msaitoh 	}
    494      1.32   msaitoh }
    495      1.32   msaitoh 
    496      1.21   thorpej static void
    497  1.40.4.1       snj brgphy_reset(struct mii_softc *sc)
    498      1.10   thorpej {
    499  1.40.4.1       snj 	struct brgphy_softc *bsc = (void *)sc;
    500      1.10   thorpej 
    501      1.10   thorpej 	mii_phy_reset(sc);
    502      1.15  jonathan 
    503  1.40.4.1       snj 	switch (sc->mii_mpd_model) {
    504  1.40.4.1       snj 	case MII_MODEL_BROADCOM_BCM5400:
    505  1.40.4.1       snj 		brgphy_bcm5401_dspcode(sc);
    506  1.40.4.1       snj 		break;
    507  1.40.4.1       snj 	case MII_MODEL_BROADCOM_BCM5401:
    508  1.40.4.1       snj 		if (sc->mii_mpd_rev == 1 || sc->mii_mpd_rev == 3)
    509  1.40.4.1       snj 			brgphy_bcm5401_dspcode(sc);
    510  1.40.4.1       snj 		break;
    511  1.40.4.1       snj 	case MII_MODEL_BROADCOM_BCM5411:
    512  1.40.4.1       snj 		brgphy_bcm5411_dspcode(sc);
    513  1.40.4.1       snj 		break;
    514  1.40.4.1       snj 	case MII_MODEL_BROADCOM_BCM5421:
    515  1.40.4.1       snj 		brgphy_bcm5421_dspcode(sc);
    516  1.40.4.1       snj 		break;
    517  1.40.4.1       snj 	case MII_MODEL_BROADCOM_BCM54K2:
    518  1.40.4.1       snj 		brgphy_bcm54k2_dspcode(sc);
    519  1.40.4.1       snj 		break;
    520  1.40.4.1       snj 	}
    521      1.15  jonathan 
    522  1.40.4.1       snj 	/* Handle any bge (NetXtreme/NetLink) workarounds. */
    523  1.40.4.1       snj 	if (bsc->sc_isbge != 0) {
    524  1.40.4.1       snj 		if (!(sc->mii_flags & MIIF_HAVEFIBER)) {
    525  1.40.4.1       snj 
    526  1.40.4.1       snj 			if (bsc->sc_bge_flags & BGE_PHY_ADC_BUG)
    527  1.40.4.1       snj 				brgphy_adc_bug(sc);
    528  1.40.4.1       snj 			if (bsc->sc_bge_flags & BGE_PHY_5704_A0_BUG)
    529  1.40.4.1       snj 				brgphy_5704_a0_bug(sc);
    530  1.40.4.1       snj 			if (bsc->sc_bge_flags & BGE_PHY_BER_BUG)
    531  1.40.4.1       snj 				brgphy_ber_bug(sc);
    532  1.40.4.1       snj 			else if (bsc->sc_bge_flags & BGE_PHY_JITTER_BUG) {
    533  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0c00);
    534  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG,
    535  1.40.4.1       snj 				    0x000a);
    536  1.40.4.1       snj 
    537  1.40.4.1       snj 				if (bsc->sc_bge_flags & BGE_PHY_ADJUST_TRIM) {
    538  1.40.4.1       snj 					PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT,
    539  1.40.4.1       snj 					    0x110b);
    540  1.40.4.1       snj 					PHY_WRITE(sc, BRGPHY_TEST1,
    541  1.40.4.1       snj 					    BRGPHY_TEST1_TRIM_EN | 0x4);
    542  1.40.4.1       snj 				} else {
    543  1.40.4.1       snj 					PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT,
    544  1.40.4.1       snj 					    0x010b);
    545  1.40.4.1       snj 				}
    546      1.15  jonathan 
    547  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0400);
    548  1.40.4.1       snj 			}
    549  1.40.4.1       snj 			if (bsc->sc_bge_flags & BGE_PHY_CRC_BUG)
    550  1.40.4.1       snj 				brgphy_crc_bug(sc);
    551      1.18   hannken 
    552  1.40.4.1       snj #if 0
    553  1.40.4.1       snj 			/* Set Jumbo frame settings in the PHY. */
    554  1.40.4.1       snj 			if (bsc->sc_bge_flags & BGE_JUMBO_CAP)
    555  1.40.4.1       snj 				brgphy_jumbo_settings(sc);
    556  1.40.4.1       snj #endif
    557  1.40.4.1       snj 
    558  1.40.4.1       snj 			/* Adjust output voltage */
    559  1.40.4.1       snj 			if (sc->mii_mpd_model == MII_MODEL_BROADCOM2_BCM5906)
    560  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_MII_EPHY_PTEST, 0x12);
    561  1.40.4.1       snj 
    562  1.40.4.1       snj #if 0
    563  1.40.4.1       snj 			/* Enable Ethernet@Wirespeed */
    564  1.40.4.1       snj 			if (!(bsc->sc_bge_flags & BGE_NO_ETH_WIRE_SPEED))
    565  1.40.4.1       snj 				brgphy_eth_wirespeed(sc);
    566  1.40.4.1       snj 
    567  1.40.4.1       snj 			/* Enable Link LED on Dell boxes */
    568  1.40.4.1       snj 			if (bsc->sc_bge_flags & BGE_NO_3LED) {
    569  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL,
    570  1.40.4.1       snj 				PHY_READ(sc, BRGPHY_MII_PHY_EXTCTL)
    571  1.40.4.1       snj 					& ~BRGPHY_PHY_EXTCTL_3_LED);
    572  1.40.4.1       snj 			}
    573  1.40.4.1       snj #endif
    574  1.40.4.1       snj 		}
    575  1.40.4.1       snj #if 0 /* not yet */
    576  1.40.4.1       snj 	/* Handle any bnx (NetXtreme II) workarounds. */
    577  1.40.4.1       snj 	} else if (sc->sc_isbnx != 0) {
    578  1.40.4.1       snj 		bnx_sc = sc->mii_pdata->mii_ifp->if_softc;
    579  1.40.4.1       snj 
    580  1.40.4.1       snj 		if (sc->mii_mpd_model == MII_MODEL_xxBROADCOM2_BCM5708S) {
    581  1.40.4.1       snj 			/* Store autoneg capabilities/results in digital block (Page 0) */
    582  1.40.4.1       snj 			PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR, BRGPHY_5708S_DIG3_PG2);
    583  1.40.4.1       snj 			PHY_WRITE(sc, BRGPHY_5708S_PG2_DIGCTL_3_0,
    584  1.40.4.1       snj 				BRGPHY_5708S_PG2_DIGCTL_3_0_USE_IEEE);
    585  1.40.4.1       snj 			PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR, BRGPHY_5708S_DIG_PG0);
    586  1.40.4.1       snj 
    587  1.40.4.1       snj 			/* Enable fiber mode and autodetection */
    588  1.40.4.1       snj 			PHY_WRITE(sc, BRGPHY_5708S_PG0_1000X_CTL1,
    589  1.40.4.1       snj 				PHY_READ(sc, BRGPHY_5708S_PG0_1000X_CTL1) |
    590  1.40.4.1       snj 				BRGPHY_5708S_PG0_1000X_CTL1_AUTODET_EN |
    591  1.40.4.1       snj 				BRGPHY_5708S_PG0_1000X_CTL1_FIBER_MODE);
    592  1.40.4.1       snj 
    593  1.40.4.1       snj 			/* Enable parallel detection */
    594  1.40.4.1       snj 			PHY_WRITE(sc, BRGPHY_5708S_PG0_1000X_CTL2,
    595  1.40.4.1       snj 				PHY_READ(sc, BRGPHY_5708S_PG0_1000X_CTL2) |
    596  1.40.4.1       snj 				BRGPHY_5708S_PG0_1000X_CTL2_PAR_DET_EN);
    597  1.40.4.1       snj 
    598  1.40.4.1       snj 			/* Advertise 2.5G support through next page during autoneg */
    599  1.40.4.1       snj 			if (bnx_sc->bnx_phy_flags & BNX_PHY_2_5G_CAPABLE_FLAG)
    600  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_5708S_ANEG_NXT_PG_XMIT1,
    601  1.40.4.1       snj 					PHY_READ(sc, BRGPHY_5708S_ANEG_NXT_PG_XMIT1) |
    602  1.40.4.1       snj 					BRGPHY_5708S_ANEG_NXT_PG_XMIT1_25G);
    603  1.40.4.1       snj 
    604  1.40.4.1       snj 			/* Increase TX signal amplitude */
    605  1.40.4.1       snj 			if ((BNX_CHIP_ID(bnx_sc) == BNX_CHIP_ID_5708_A0) ||
    606  1.40.4.1       snj 			    (BNX_CHIP_ID(bnx_sc) == BNX_CHIP_ID_5708_B0) ||
    607  1.40.4.1       snj 			    (BNX_CHIP_ID(bnx_sc) == BNX_CHIP_ID_5708_B1)) {
    608  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    609  1.40.4.1       snj 					BRGPHY_5708S_TX_MISC_PG5);
    610  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL1,
    611  1.40.4.1       snj 					PHY_READ(sc, BRGPHY_5708S_PG5_TXACTL1) &
    612  1.40.4.1       snj 					~BRGPHY_5708S_PG5_TXACTL1_VCM);
    613  1.40.4.1       snj 				PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    614  1.40.4.1       snj 					BRGPHY_5708S_DIG_PG0);
    615  1.40.4.1       snj 			}
    616      1.18   hannken 
    617  1.40.4.1       snj 			/* Backplanes use special driver/pre-driver/pre-emphasis values. */
    618  1.40.4.1       snj 			if ((bnx_sc->bnx_shared_hw_cfg & BNX_SHARED_HW_CFG_PHY_BACKPLANE) &&
    619  1.40.4.1       snj 			    (bnx_sc->bnx_port_hw_cfg & BNX_PORT_HW_CFG_CFG_TXCTL3_MASK)) {
    620  1.40.4.1       snj 					PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    621  1.40.4.1       snj 						BRGPHY_5708S_TX_MISC_PG5);
    622  1.40.4.1       snj 					PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL3,
    623  1.40.4.1       snj 						bnx_sc->bnx_port_hw_cfg &
    624  1.40.4.1       snj 						BNX_PORT_HW_CFG_CFG_TXCTL3_MASK);
    625  1.40.4.1       snj 					PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    626  1.40.4.1       snj 						BRGPHY_5708S_DIG_PG0);
    627  1.40.4.1       snj 			}
    628  1.40.4.1       snj 		} else {
    629  1.40.4.1       snj 			if (!(sc->mii_flags & MIIF_HAVEFIBER)) {
    630  1.40.4.1       snj 				brgphy_ber_bug(sc);
    631      1.15  jonathan 
    632  1.40.4.1       snj 				/* Set Jumbo frame settings in the PHY. */
    633  1.40.4.1       snj 				brgphy_jumbo_settings(sc);
    634      1.22      cube 
    635  1.40.4.1       snj 				/* Enable Ethernet@Wirespeed */
    636  1.40.4.1       snj 				brgphy_eth_wirespeed(sc);
    637  1.40.4.1       snj 			}
    638  1.40.4.1       snj 		}
    639  1.40.4.1       snj #endif
    640  1.40.4.1       snj 	}
    641      1.34     markd }
    642      1.34     markd 
    643      1.16  jonathan /* Turn off tap power management on 5401. */
    644      1.10   thorpej static void
    645  1.40.4.1       snj brgphy_bcm5401_dspcode(struct mii_softc *sc)
    646      1.10   thorpej {
    647      1.10   thorpej 	static const struct {
    648      1.10   thorpej 		int		reg;
    649      1.10   thorpej 		uint16_t	val;
    650      1.10   thorpej 	} dspcode[] = {
    651      1.16  jonathan 		{ BRGPHY_MII_AUXCTL,		0x0c20 },
    652      1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x0012 },
    653      1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x1804 },
    654      1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x0013 },
    655      1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x1204 },
    656      1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x8006 },
    657      1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x0132 },
    658      1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x8006 },
    659      1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x0232 },
    660      1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
    661      1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x0a20 },
    662      1.10   thorpej 		{ 0,				0 },
    663      1.10   thorpej 	};
    664      1.10   thorpej 	int i;
    665      1.10   thorpej 
    666      1.10   thorpej 	for (i = 0; dspcode[i].reg != 0; i++)
    667      1.10   thorpej 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
    668      1.16  jonathan     delay(40);
    669      1.10   thorpej }
    670      1.10   thorpej 
    671      1.10   thorpej static void
    672  1.40.4.1       snj brgphy_bcm5411_dspcode(struct mii_softc *sc)
    673      1.10   thorpej {
    674      1.10   thorpej 	static const struct {
    675      1.10   thorpej 		int		reg;
    676      1.10   thorpej 		uint16_t	val;
    677      1.10   thorpej 	} dspcode[] = {
    678      1.10   thorpej 		{ 0x1c,				0x8c23 },
    679      1.10   thorpej 		{ 0x1c,				0x8ca3 },
    680      1.10   thorpej 		{ 0x1c,				0x8c23 },
    681      1.15  jonathan 		{ 0,				0 },
    682      1.15  jonathan 	};
    683      1.15  jonathan 	int i;
    684      1.15  jonathan 
    685      1.15  jonathan 	for (i = 0; dspcode[i].reg != 0; i++)
    686      1.15  jonathan 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
    687      1.15  jonathan }
    688      1.15  jonathan 
    689  1.40.4.1       snj void
    690  1.40.4.1       snj brgphy_bcm5421_dspcode(struct mii_softc *sc)
    691  1.40.4.1       snj {
    692  1.40.4.1       snj 	uint16_t data;
    693  1.40.4.1       snj 
    694  1.40.4.1       snj 	/* Set Class A mode */
    695  1.40.4.1       snj 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x1007);
    696  1.40.4.1       snj 	data = PHY_READ(sc, BRGPHY_MII_AUXCTL);
    697  1.40.4.1       snj 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, data | 0x0400);
    698  1.40.4.1       snj 
    699  1.40.4.1       snj 	/* Set FFE gamma override to -0.125 */
    700  1.40.4.1       snj 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0007);
    701  1.40.4.1       snj 	data = PHY_READ(sc, BRGPHY_MII_AUXCTL);
    702  1.40.4.1       snj 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, data | 0x0800);
    703  1.40.4.1       snj 	PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG, 0x000a);
    704  1.40.4.1       snj 	data = PHY_READ(sc, BRGPHY_MII_DSP_RW_PORT);
    705  1.40.4.1       snj 	PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT, data | 0x0200);
    706  1.40.4.1       snj }
    707  1.40.4.1       snj 
    708  1.40.4.1       snj void
    709  1.40.4.1       snj brgphy_bcm54k2_dspcode(struct mii_softc *sc)
    710  1.40.4.1       snj {
    711  1.40.4.1       snj 	static const struct {
    712  1.40.4.1       snj 		int		reg;
    713  1.40.4.1       snj 		uint16_t	val;
    714  1.40.4.1       snj 	} dspcode[] = {
    715  1.40.4.1       snj 		{ 4,				0x01e1 },
    716  1.40.4.1       snj 		{ 9,				0x0300 },
    717  1.40.4.1       snj 		{ 0,				0 },
    718  1.40.4.1       snj 	};
    719  1.40.4.1       snj 	int i;
    720  1.40.4.1       snj 
    721  1.40.4.1       snj 	for (i = 0; dspcode[i].reg != 0; i++)
    722  1.40.4.1       snj 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
    723  1.40.4.1       snj }
    724  1.40.4.1       snj 
    725      1.15  jonathan static void
    726  1.40.4.1       snj brgphy_adc_bug(struct mii_softc *sc)
    727      1.15  jonathan {
    728      1.15  jonathan 	static const struct {
    729      1.15  jonathan 		int		reg;
    730      1.15  jonathan 		uint16_t	val;
    731      1.15  jonathan 	} dspcode[] = {
    732      1.15  jonathan 		{ BRGPHY_MII_AUXCTL,		0x0c00 },
    733      1.15  jonathan 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
    734      1.15  jonathan 		{ BRGPHY_MII_DSP_RW_PORT,	0x2aaa },
    735  1.40.4.1       snj 		{ BRGPHY_MII_DSP_ADDR_REG,	0x000a },
    736  1.40.4.1       snj 		{ BRGPHY_MII_DSP_RW_PORT,	0x0323 },
    737  1.40.4.1       snj 		{ BRGPHY_MII_AUXCTL,		0x0400 },
    738      1.15  jonathan 		{ 0,				0 },
    739      1.15  jonathan 	};
    740      1.15  jonathan 	int i;
    741      1.15  jonathan 
    742      1.15  jonathan 	for (i = 0; dspcode[i].reg != 0; i++)
    743      1.15  jonathan 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
    744      1.15  jonathan }
    745      1.15  jonathan 
    746      1.15  jonathan static void
    747  1.40.4.1       snj brgphy_5704_a0_bug(struct mii_softc *sc)
    748      1.15  jonathan {
    749      1.15  jonathan 	static const struct {
    750      1.15  jonathan 		int		reg;
    751      1.15  jonathan 		uint16_t	val;
    752      1.15  jonathan 	} dspcode[] = {
    753      1.15  jonathan 		{ 0x1c,				0x8d68 },
    754      1.33   msaitoh 		{ 0x1c,				0x8d68 },
    755      1.10   thorpej 		{ 0,				0 },
    756      1.10   thorpej 	};
    757      1.10   thorpej 	int i;
    758      1.10   thorpej 
    759      1.10   thorpej 	for (i = 0; dspcode[i].reg != 0; i++)
    760      1.10   thorpej 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
    761       1.1   thorpej }
    762      1.22      cube 
    763      1.22      cube static void
    764  1.40.4.1       snj brgphy_ber_bug(struct mii_softc *sc)
    765      1.22      cube {
    766      1.22      cube 	static const struct {
    767      1.22      cube 		int		reg;
    768      1.22      cube 		uint16_t	val;
    769      1.22      cube 	} dspcode[] = {
    770      1.22      cube 		{ BRGPHY_MII_AUXCTL,		0x0c00 },
    771      1.22      cube 		{ BRGPHY_MII_DSP_ADDR_REG,	0x000a },
    772      1.22      cube 		{ BRGPHY_MII_DSP_RW_PORT,	0x310b },
    773      1.22      cube 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
    774      1.22      cube 		{ BRGPHY_MII_DSP_RW_PORT,	0x9506 },
    775      1.22      cube 		{ BRGPHY_MII_DSP_ADDR_REG,	0x401f },
    776      1.22      cube 		{ BRGPHY_MII_DSP_RW_PORT,	0x14e2 },
    777      1.22      cube 		{ BRGPHY_MII_AUXCTL,		0x0400 },
    778      1.22      cube 		{ 0,				0 },
    779      1.22      cube 	};
    780      1.22      cube 	int i;
    781      1.22      cube 
    782      1.22      cube 	for (i = 0; dspcode[i].reg != 0; i++)
    783      1.22      cube 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
    784      1.22      cube }
    785      1.34     markd 
    786  1.40.4.1       snj /* BCM5701 A0/B0 CRC bug workaround */
    787  1.40.4.1       snj void
    788  1.40.4.1       snj brgphy_crc_bug(struct mii_softc *sc)
    789      1.34     markd {
    790      1.34     markd 	static const struct {
    791      1.34     markd 		int		reg;
    792      1.34     markd 		uint16_t	val;
    793      1.34     markd 	} dspcode[] = {
    794  1.40.4.1       snj 		{ BRGPHY_MII_DSP_ADDR_REG,	0x0a75 },
    795  1.40.4.1       snj 		{ 0x1c,				0x8c68 },
    796  1.40.4.1       snj 		{ 0x1c,				0x8d68 },
    797  1.40.4.1       snj 		{ 0x1c,				0x8c68 },
    798      1.34     markd 		{ 0,				0 },
    799      1.34     markd 	};
    800      1.34     markd 	int i;
    801      1.34     markd 
    802      1.34     markd 	for (i = 0; dspcode[i].reg != 0; i++)
    803      1.34     markd 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
    804      1.34     markd }
    805