Home | History | Annotate | Line # | Download | only in mii
brgphy.c revision 1.72
      1  1.72   msaitoh /*	$NetBSD: brgphy.c,v 1.72 2014/06/18 06:35:19 msaitoh 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  *
     45   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     46   1.1   thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     47   1.1   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     48   1.1   thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     49   1.1   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     50   1.1   thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     51   1.1   thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     52   1.1   thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     53   1.1   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     54   1.1   thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     55   1.1   thorpej  */
     56   1.1   thorpej 
     57   1.1   thorpej /*
     58  1.57       jym  * driver for the Broadcom BCM5400 and BCM5700 Gig-E PHYs.
     59   1.1   thorpej  *
     60   1.1   thorpej  * Programming information for this PHY was gleaned from FreeBSD
     61   1.1   thorpej  * (they were apparently able to get a datasheet from Broadcom).
     62   1.1   thorpej  */
     63   1.5     lukem 
     64   1.5     lukem #include <sys/cdefs.h>
     65  1.72   msaitoh __KERNEL_RCSID(0, "$NetBSD: brgphy.c,v 1.72 2014/06/18 06:35:19 msaitoh Exp $");
     66   1.1   thorpej 
     67   1.1   thorpej #include <sys/param.h>
     68   1.1   thorpej #include <sys/systm.h>
     69   1.1   thorpej #include <sys/kernel.h>
     70   1.1   thorpej #include <sys/device.h>
     71   1.1   thorpej #include <sys/socket.h>
     72   1.1   thorpej #include <sys/errno.h>
     73  1.44   msaitoh #include <prop/proplib.h>
     74   1.1   thorpej 
     75   1.1   thorpej #include <net/if.h>
     76   1.1   thorpej #include <net/if_media.h>
     77   1.1   thorpej 
     78   1.1   thorpej #include <dev/mii/mii.h>
     79   1.1   thorpej #include <dev/mii/miivar.h>
     80   1.1   thorpej #include <dev/mii/miidevs.h>
     81   1.1   thorpej #include <dev/mii/brgphyreg.h>
     82   1.1   thorpej 
     83  1.43   msaitoh #include <dev/pci/if_bgereg.h>
     84  1.43   msaitoh #include <dev/pci/if_bnxreg.h>
     85  1.43   msaitoh 
     86  1.39   xtraeme static int	brgphymatch(device_t, cfdata_t, void *);
     87  1.39   xtraeme static void	brgphyattach(device_t, device_t, void *);
     88   1.1   thorpej 
     89  1.44   msaitoh struct brgphy_softc {
     90  1.44   msaitoh 	struct mii_softc sc_mii;
     91  1.54    dyoung 	bool sc_isbge;
     92  1.54    dyoung 	bool sc_isbnx;
     93  1.71   msaitoh 	uint32_t sc_chipid;	/* parent's chipid */
     94  1.71   msaitoh 	uint32_t sc_phyflags;	/* parent's phyflags */
     95  1.71   msaitoh 	uint32_t sc_shared_hwcfg; /* shared hw config */
     96  1.71   msaitoh 	uint32_t sc_port_hwcfg;	/* port specific hw config */
     97  1.44   msaitoh };
     98  1.44   msaitoh 
     99  1.44   msaitoh CFATTACH_DECL3_NEW(brgphy, sizeof(struct brgphy_softc),
    100  1.42    dyoung     brgphymatch, brgphyattach, mii_phy_detach, mii_phy_activate, NULL, NULL,
    101  1.42    dyoung     DVF_DETACH_SHUTDOWN);
    102   1.1   thorpej 
    103  1.21   thorpej static int	brgphy_service(struct mii_softc *, struct mii_data *, int);
    104  1.71   msaitoh static void	brgphy_copper_status(struct mii_softc *);
    105  1.71   msaitoh static void	brgphy_fiber_status(struct mii_softc *);
    106  1.71   msaitoh static void	brgphy_5708s_status(struct mii_softc *);
    107  1.71   msaitoh static void	brgphy_5709s_status(struct mii_softc *);
    108  1.32   msaitoh static int	brgphy_mii_phy_auto(struct mii_softc *);
    109  1.32   msaitoh static void	brgphy_loop(struct mii_softc *);
    110  1.43   msaitoh static void	brgphy_reset(struct mii_softc *);
    111  1.43   msaitoh static void	brgphy_bcm5401_dspcode(struct mii_softc *);
    112  1.43   msaitoh static void	brgphy_bcm5411_dspcode(struct mii_softc *);
    113  1.43   msaitoh static void	brgphy_bcm5421_dspcode(struct mii_softc *);
    114  1.43   msaitoh static void	brgphy_bcm54k2_dspcode(struct mii_softc *);
    115  1.43   msaitoh static void	brgphy_adc_bug(struct mii_softc *);
    116  1.43   msaitoh static void	brgphy_5704_a0_bug(struct mii_softc *);
    117  1.43   msaitoh static void	brgphy_ber_bug(struct mii_softc *);
    118  1.43   msaitoh static void	brgphy_crc_bug(struct mii_softc *);
    119  1.58       jym static void	brgphy_disable_early_dac(struct mii_softc *);
    120  1.52   msaitoh static void	brgphy_jumbo_settings(struct mii_softc *);
    121  1.52   msaitoh static void	brgphy_eth_wirespeed(struct mii_softc *);
    122   1.1   thorpej 
    123  1.10   thorpej 
    124  1.71   msaitoh static const struct mii_phy_funcs brgphy_copper_funcs = {
    125  1.71   msaitoh 	brgphy_service, brgphy_copper_status, brgphy_reset,
    126  1.71   msaitoh };
    127  1.71   msaitoh 
    128  1.71   msaitoh static const struct mii_phy_funcs brgphy_fiber_funcs = {
    129  1.71   msaitoh 	brgphy_service, brgphy_fiber_status, brgphy_reset,
    130  1.71   msaitoh };
    131  1.71   msaitoh 
    132  1.71   msaitoh static const struct mii_phy_funcs brgphy_5708s_funcs = {
    133  1.71   msaitoh 	brgphy_service, brgphy_5708s_status, brgphy_reset,
    134  1.71   msaitoh };
    135  1.71   msaitoh 
    136  1.71   msaitoh static const struct mii_phy_funcs brgphy_5709s_funcs = {
    137  1.71   msaitoh 	brgphy_service, brgphy_5709s_status, brgphy_reset,
    138  1.34     markd };
    139  1.34     markd 
    140  1.21   thorpej static const struct mii_phydesc brgphys[] = {
    141   1.1   thorpej 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5400,
    142   1.1   thorpej 	  MII_STR_BROADCOM_BCM5400 },
    143   1.2   thorpej 
    144   1.1   thorpej 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5401,
    145   1.1   thorpej 	  MII_STR_BROADCOM_BCM5401 },
    146   1.2   thorpej 
    147   1.1   thorpej 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5411,
    148   1.1   thorpej 	  MII_STR_BROADCOM_BCM5411 },
    149   1.9   thorpej 
    150   1.9   thorpej 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5421,
    151   1.9   thorpej 	  MII_STR_BROADCOM_BCM5421 },
    152   1.7      fvdl 
    153  1.53  kiyohara 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5462,
    154  1.53  kiyohara 	  MII_STR_BROADCOM_BCM5462 },
    155  1.43   msaitoh 
    156  1.52   msaitoh 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5461,
    157  1.52   msaitoh 	  MII_STR_BROADCOM_BCM5461 },
    158  1.49    simonb 
    159  1.53  kiyohara 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM54K2,
    160  1.53  kiyohara 	  MII_STR_BROADCOM_BCM54K2 },
    161  1.43   msaitoh 
    162  1.52   msaitoh 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5464,
    163  1.52   msaitoh 	  MII_STR_BROADCOM_BCM5464 },
    164  1.52   msaitoh 
    165   1.7      fvdl 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5701,
    166   1.7      fvdl 	  MII_STR_BROADCOM_BCM5701 },
    167  1.14      matt 
    168  1.14      matt 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5703,
    169  1.14      matt 	  MII_STR_BROADCOM_BCM5703 },
    170   1.1   thorpej 
    171  1.15  jonathan 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5704,
    172  1.15  jonathan 	  MII_STR_BROADCOM_BCM5704 },
    173  1.15  jonathan 
    174  1.25  jonathan 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5705,
    175  1.25  jonathan 	  MII_STR_BROADCOM_BCM5705 },
    176  1.25  jonathan 
    177  1.24  jonathan 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5714,
    178  1.24  jonathan 	  MII_STR_BROADCOM_BCM5714 },
    179  1.18   hannken 
    180  1.22      cube 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5750,
    181  1.22      cube 	  MII_STR_BROADCOM_BCM5750 },
    182  1.22      cube 
    183  1.31   tsutsui 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5752,
    184  1.31   tsutsui 	  MII_STR_BROADCOM_BCM5752 },
    185  1.31   tsutsui 
    186  1.27  jonathan 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5780,
    187  1.27  jonathan 	  MII_STR_BROADCOM_BCM5780 },
    188  1.27  jonathan 
    189  1.36     markd 	{ MII_OUI_BROADCOM,		MII_MODEL_BROADCOM_BCM5708C,
    190  1.36     markd 	  MII_STR_BROADCOM_BCM5708C },
    191  1.36     markd 
    192  1.55  pgoyette 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5481,
    193  1.55  pgoyette 	  MII_STR_BROADCOM2_BCM5481 },
    194  1.55  pgoyette 
    195  1.53  kiyohara 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5482,
    196  1.53  kiyohara 	  MII_STR_BROADCOM2_BCM5482 },
    197  1.53  kiyohara 
    198  1.71   msaitoh 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5708S,
    199  1.71   msaitoh 	  MII_STR_BROADCOM2_BCM5708S },
    200  1.71   msaitoh 
    201  1.51    bouyer 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5709C,
    202  1.51    bouyer 	  MII_STR_BROADCOM2_BCM5709C },
    203  1.51    bouyer 
    204  1.57       jym 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5709S,
    205  1.57       jym 	  MII_STR_BROADCOM2_BCM5709S },
    206  1.57       jym 
    207  1.51    bouyer 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5709CAX,
    208  1.51    bouyer 	  MII_STR_BROADCOM2_BCM5709CAX },
    209  1.51    bouyer 
    210  1.43   msaitoh 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5722,
    211  1.43   msaitoh 	  MII_STR_BROADCOM2_BCM5722 },
    212  1.43   msaitoh 
    213  1.53  kiyohara 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5754,
    214  1.53  kiyohara 	  MII_STR_BROADCOM2_BCM5754 },
    215  1.53  kiyohara 
    216  1.34     markd 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5755,
    217  1.34     markd 	  MII_STR_BROADCOM2_BCM5755 },
    218  1.34     markd 
    219  1.61   msaitoh 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5756,
    220  1.61   msaitoh 	  MII_STR_BROADCOM2_BCM5756 },
    221  1.61   msaitoh 
    222  1.52   msaitoh 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5761,
    223  1.52   msaitoh 	  MII_STR_BROADCOM2_BCM5761 },
    224  1.52   msaitoh 
    225  1.52   msaitoh 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5784,
    226  1.52   msaitoh 	  MII_STR_BROADCOM2_BCM5784 },
    227  1.52   msaitoh 
    228  1.59    cegger 	{ MII_OUI_BROADCOM2,		MII_MODEL_BROADCOM2_BCM5785,
    229  1.59    cegger 	  MII_STR_BROADCOM2_BCM5785 },
    230  1.59    cegger 
    231  1.61   msaitoh 	{ MII_OUI_BROADCOM3,		MII_MODEL_BROADCOM3_BCM5717C,
    232  1.61   msaitoh 	  MII_STR_BROADCOM3_BCM5717C },
    233  1.61   msaitoh 
    234  1.61   msaitoh 	{ MII_OUI_BROADCOM3,		MII_MODEL_BROADCOM3_BCM5719C,
    235  1.61   msaitoh 	  MII_STR_BROADCOM3_BCM5719C },
    236  1.61   msaitoh 
    237  1.61   msaitoh 	{ MII_OUI_BROADCOM3,		MII_MODEL_BROADCOM3_BCM5720C,
    238  1.61   msaitoh 	  MII_STR_BROADCOM3_BCM5720C },
    239  1.61   msaitoh 
    240  1.60   tsutsui 	{ MII_OUI_BROADCOM3,		MII_MODEL_BROADCOM3_BCM57765,
    241  1.60   tsutsui 	  MII_STR_BROADCOM3_BCM57765 },
    242  1.60   tsutsui 
    243  1.61   msaitoh 	{ MII_OUI_BROADCOM3,		MII_MODEL_BROADCOM3_BCM57780,
    244  1.61   msaitoh 	  MII_STR_BROADCOM3_BCM57780 },
    245  1.61   msaitoh 
    246  1.40    cegger 	{ MII_OUI_xxBROADCOM_ALT1,	MII_MODEL_xxBROADCOM_ALT1_BCM5906,
    247  1.40    cegger 	  MII_STR_xxBROADCOM_ALT1_BCM5906 },
    248  1.40    cegger 
    249   1.1   thorpej 	{ 0,				0,
    250   1.1   thorpej 	  NULL },
    251   1.1   thorpej };
    252   1.1   thorpej 
    253  1.21   thorpej static int
    254  1.48   tsutsui brgphymatch(device_t parent, cfdata_t match, void *aux)
    255   1.1   thorpej {
    256   1.1   thorpej 	struct mii_attach_args *ma = aux;
    257   1.1   thorpej 
    258   1.2   thorpej 	if (mii_phy_match(ma, brgphys) != NULL)
    259   1.1   thorpej 		return (10);
    260   1.1   thorpej 
    261   1.1   thorpej 	return (0);
    262   1.1   thorpej }
    263   1.1   thorpej 
    264  1.21   thorpej static void
    265  1.46    cegger brgphyattach(device_t parent, device_t self, void *aux)
    266   1.1   thorpej {
    267  1.44   msaitoh 	struct brgphy_softc *bsc = device_private(self);
    268  1.44   msaitoh 	struct mii_softc *sc = &bsc->sc_mii;
    269   1.1   thorpej 	struct mii_attach_args *ma = aux;
    270   1.1   thorpej 	struct mii_data *mii = ma->mii_data;
    271   1.2   thorpej 	const struct mii_phydesc *mpd;
    272  1.44   msaitoh 	prop_dictionary_t dict;
    273   1.1   thorpej 
    274   1.2   thorpej 	mpd = mii_phy_match(ma, brgphys);
    275  1.17   thorpej 	aprint_naive(": Media interface\n");
    276  1.17   thorpej 	aprint_normal(": %s, rev. %d\n", mpd->mpd_name, MII_REV(ma->mii_id2));
    277   1.1   thorpej 
    278  1.39   xtraeme 	sc->mii_dev = self;
    279   1.1   thorpej 	sc->mii_inst = mii->mii_instance;
    280   1.1   thorpej 	sc->mii_phy = ma->mii_phyno;
    281  1.61   msaitoh 	sc->mii_mpd_oui = MII_OUI(ma->mii_id1, ma->mii_id2);
    282  1.32   msaitoh 	sc->mii_mpd_model = MII_MODEL(ma->mii_id2);
    283  1.43   msaitoh 	sc->mii_mpd_rev = MII_REV(ma->mii_id2);
    284   1.1   thorpej 	sc->mii_pdata = mii;
    285   1.6   thorpej 	sc->mii_flags = ma->mii_flags;
    286  1.30  christos 	sc->mii_anegticks = MII_ANEGTICKS;
    287  1.10   thorpej 
    288  1.58       jym 	if (device_is_a(parent, "bge"))
    289  1.54    dyoung 		bsc->sc_isbge = true;
    290  1.58       jym 	else if (device_is_a(parent, "bnx"))
    291  1.54    dyoung 		bsc->sc_isbnx = true;
    292  1.58       jym 
    293  1.72   msaitoh 	dict = device_properties(parent);
    294  1.58       jym 	if (bsc->sc_isbge || bsc->sc_isbnx) {
    295  1.57       jym 		if (!prop_dictionary_get_uint32(dict, "phyflags",
    296  1.58       jym 		    &bsc->sc_phyflags))
    297  1.58       jym 			aprint_error_dev(self, "failed to get phyflags\n");
    298  1.58       jym 		if (!prop_dictionary_get_uint32(dict, "chipid",
    299  1.58       jym 		    &bsc->sc_chipid))
    300  1.58       jym 			aprint_error_dev(self, "failed to get chipid\n");
    301  1.44   msaitoh 	}
    302  1.57       jym 
    303  1.71   msaitoh 	if (bsc->sc_isbnx) {
    304  1.71   msaitoh 		/* Currently, only bnx use sc_shared_hwcfg and sc_port_hwcfg */
    305  1.71   msaitoh 		if (!prop_dictionary_get_uint32(dict, "shared_hwcfg",
    306  1.71   msaitoh 			&bsc->sc_shared_hwcfg))
    307  1.71   msaitoh 			aprint_error_dev(self, "failed to get shared_hwcfg\n");
    308  1.71   msaitoh 		if (!prop_dictionary_get_uint32(dict, "port_hwcfg",
    309  1.71   msaitoh 			&bsc->sc_port_hwcfg))
    310  1.71   msaitoh 			aprint_error_dev(self, "failed to get port_hwcfg\n");
    311  1.71   msaitoh 	}
    312  1.71   msaitoh 
    313  1.71   msaitoh 	if (sc->mii_flags & MIIF_HAVEFIBER) {
    314  1.71   msaitoh 		if (_BNX_CHIP_NUM(bsc->sc_chipid) == BNX_CHIP_NUM_5708)
    315  1.71   msaitoh 			sc->mii_funcs = &brgphy_5708s_funcs;
    316  1.71   msaitoh 		else if (_BNX_CHIP_NUM(bsc->sc_chipid) == BNX_CHIP_NUM_5709)
    317  1.71   msaitoh 			sc->mii_funcs = &brgphy_5709s_funcs;
    318  1.71   msaitoh 		else
    319  1.71   msaitoh 			sc->mii_funcs = &brgphy_fiber_funcs;
    320  1.71   msaitoh 	} else
    321  1.71   msaitoh 		sc->mii_funcs = &brgphy_copper_funcs;
    322  1.71   msaitoh 
    323  1.63   msaitoh 	PHY_RESET(sc);
    324  1.63   msaitoh 
    325  1.71   msaitoh 	sc->mii_capabilities = PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
    326  1.63   msaitoh 	if (sc->mii_capabilities & BMSR_EXTSTAT)
    327  1.63   msaitoh 		sc->mii_extcapabilities = PHY_READ(sc, MII_EXTSR);
    328  1.63   msaitoh 
    329  1.57       jym 	aprint_normal_dev(self, "");
    330  1.57       jym 	if ((sc->mii_capabilities & BMSR_MEDIAMASK) == 0 &&
    331  1.57       jym 	    (sc->mii_extcapabilities & EXTSR_MEDIAMASK) == 0)
    332  1.57       jym 		aprint_error("no media present");
    333  1.57       jym 	else {
    334  1.57       jym 		if (sc->mii_flags & MIIF_HAVEFIBER) {
    335  1.57       jym 			sc->mii_flags |= MIIF_NOISOLATE | MIIF_NOLOOP;
    336  1.57       jym 
    337  1.57       jym 			/*
    338  1.57       jym 			 * Set the proper bits for capabilities so that the
    339  1.57       jym 			 * correct media get selected by mii_phy_add_media()
    340  1.57       jym 			 */
    341  1.57       jym 			sc->mii_capabilities |= BMSR_ANEG;
    342  1.57       jym 			sc->mii_capabilities &= ~BMSR_100T4;
    343  1.57       jym 			sc->mii_extcapabilities |= EXTSR_1000XFDX;
    344  1.57       jym 
    345  1.57       jym 			if (bsc->sc_isbnx) {
    346  1.57       jym 				/*
    347  1.57       jym 				 * 2.5Gb support is a software enabled feature
    348  1.57       jym 				 * on the BCM5708S and BCM5709S controllers.
    349  1.57       jym 				 */
    350  1.57       jym #define	ADD(m, c)	ifmedia_add(&mii->mii_media, (m), (c), NULL)
    351  1.58       jym 				if (bsc->sc_phyflags
    352  1.57       jym 				    & BNX_PHY_2_5G_CAPABLE_FLAG) {
    353  1.57       jym 					ADD(IFM_MAKEWORD(IFM_ETHER, IFM_2500_SX,
    354  1.57       jym 					    IFM_FDX, sc->mii_inst), 0);
    355  1.57       jym 					aprint_normal("2500baseSX-FDX, ");
    356  1.57       jym #undef ADD
    357  1.57       jym 				}
    358  1.57       jym 			}
    359  1.57       jym 		}
    360  1.57       jym 		mii_phy_add_media(sc);
    361  1.57       jym 	}
    362  1.57       jym 	aprint_normal("\n");
    363  1.57       jym 
    364   1.1   thorpej }
    365   1.1   thorpej 
    366  1.21   thorpej static int
    367   1.4   thorpej brgphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
    368   1.1   thorpej {
    369   1.1   thorpej 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    370  1.32   msaitoh 	int reg, speed, gig;
    371   1.1   thorpej 
    372   1.1   thorpej 	switch (cmd) {
    373   1.1   thorpej 	case MII_POLLSTAT:
    374   1.1   thorpej 		/*
    375   1.1   thorpej 		 * If we're not polling our PHY instance, just return.
    376   1.1   thorpej 		 */
    377   1.1   thorpej 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
    378   1.1   thorpej 			return (0);
    379   1.1   thorpej 		break;
    380   1.1   thorpej 
    381   1.1   thorpej 	case MII_MEDIACHG:
    382   1.1   thorpej 		/*
    383   1.1   thorpej 		 * If the media indicates a different PHY instance,
    384   1.1   thorpej 		 * isolate ourselves.
    385   1.1   thorpej 		 */
    386   1.1   thorpej 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
    387   1.1   thorpej 			reg = PHY_READ(sc, MII_BMCR);
    388   1.1   thorpej 			PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
    389   1.1   thorpej 			return (0);
    390   1.1   thorpej 		}
    391   1.1   thorpej 
    392   1.1   thorpej 		/*
    393   1.1   thorpej 		 * If the interface is not up, don't do anything.
    394   1.1   thorpej 		 */
    395   1.1   thorpej 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
    396   1.1   thorpej 			break;
    397   1.1   thorpej 
    398  1.32   msaitoh 		PHY_RESET(sc); /* XXX hardware bug work-around */
    399  1.32   msaitoh 
    400  1.32   msaitoh 		switch (IFM_SUBTYPE(ife->ifm_media)) {
    401  1.32   msaitoh 		case IFM_AUTO:
    402  1.32   msaitoh 			(void) brgphy_mii_phy_auto(sc);
    403  1.32   msaitoh 			break;
    404  1.71   msaitoh 		case IFM_2500_SX:
    405  1.71   msaitoh 			speed = BRGPHY_5708S_BMCR_2500;
    406  1.71   msaitoh 			goto setit;
    407  1.71   msaitoh 		case IFM_1000_SX:
    408  1.32   msaitoh 		case IFM_1000_T:
    409  1.32   msaitoh 			speed = BMCR_S1000;
    410  1.32   msaitoh 			goto setit;
    411  1.32   msaitoh 		case IFM_100_TX:
    412  1.32   msaitoh 			speed = BMCR_S100;
    413  1.32   msaitoh 			goto setit;
    414  1.32   msaitoh 		case IFM_10_T:
    415  1.32   msaitoh 			speed = BMCR_S10;
    416  1.32   msaitoh setit:
    417  1.32   msaitoh 			brgphy_loop(sc);
    418  1.32   msaitoh 			if ((ife->ifm_media & IFM_GMASK) == IFM_FDX) {
    419  1.32   msaitoh 				speed |= BMCR_FDX;
    420  1.32   msaitoh 				gig = GTCR_ADV_1000TFDX;
    421  1.69   msaitoh 			} else
    422  1.32   msaitoh 				gig = GTCR_ADV_1000THDX;
    423  1.32   msaitoh 
    424  1.32   msaitoh 			PHY_WRITE(sc, MII_100T2CR, 0);
    425  1.51    bouyer 			PHY_WRITE(sc, MII_ANAR, ANAR_CSMA);
    426  1.32   msaitoh 			PHY_WRITE(sc, MII_BMCR, speed);
    427  1.32   msaitoh 
    428  1.71   msaitoh 			if ((IFM_SUBTYPE(ife->ifm_media) != IFM_1000_T) &&
    429  1.71   msaitoh 			    (IFM_SUBTYPE(ife->ifm_media) != IFM_1000_SX) &&
    430  1.71   msaitoh 			    (IFM_SUBTYPE(ife->ifm_media) != IFM_2500_SX))
    431  1.32   msaitoh 				break;
    432  1.32   msaitoh 
    433  1.32   msaitoh 			PHY_WRITE(sc, MII_100T2CR, gig);
    434  1.32   msaitoh 			PHY_WRITE(sc, MII_BMCR,
    435  1.65   msaitoh 			    speed | BMCR_AUTOEN | BMCR_STARTNEG);
    436  1.32   msaitoh 
    437  1.61   msaitoh 			if ((sc->mii_mpd_oui != MII_OUI_BROADCOM)
    438  1.61   msaitoh 			    || (sc->mii_mpd_model != MII_MODEL_BROADCOM_BCM5701))
    439  1.33   msaitoh 				break;
    440  1.32   msaitoh 
    441  1.32   msaitoh 			if (mii->mii_media.ifm_media & IFM_ETH_MASTER)
    442  1.32   msaitoh 				gig |= GTCR_MAN_MS | GTCR_ADV_MS;
    443  1.32   msaitoh 			PHY_WRITE(sc, MII_100T2CR, gig);
    444  1.32   msaitoh 			break;
    445  1.32   msaitoh 		default:
    446  1.32   msaitoh 			return (EINVAL);
    447  1.32   msaitoh 		}
    448   1.1   thorpej 		break;
    449   1.1   thorpej 
    450   1.1   thorpej 	case MII_TICK:
    451   1.1   thorpej 		/*
    452   1.1   thorpej 		 * If we're not currently selected, just return.
    453   1.1   thorpej 		 */
    454   1.1   thorpej 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
    455   1.1   thorpej 			return (0);
    456   1.1   thorpej 
    457  1.67   msaitoh 		/*
    458  1.67   msaitoh 		 * Is the interface even up?
    459  1.67   msaitoh 		 */
    460  1.67   msaitoh 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
    461  1.67   msaitoh 			return 0;
    462  1.67   msaitoh 
    463  1.67   msaitoh 		/*
    464  1.67   msaitoh 		 * Only used for autonegotiation.
    465  1.67   msaitoh 		 */
    466  1.67   msaitoh 		if ((IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO) &&
    467  1.67   msaitoh 		    (IFM_SUBTYPE(ife->ifm_media) != IFM_1000_T)) {
    468  1.67   msaitoh 			sc->mii_ticks = 0;
    469  1.67   msaitoh 			break;
    470  1.67   msaitoh 		}
    471  1.67   msaitoh 
    472  1.67   msaitoh 		/*
    473  1.67   msaitoh 		 * Check for link.
    474  1.67   msaitoh 		 * Read the status register twice; BMSR_LINK is latch-low.
    475  1.67   msaitoh 		 */
    476  1.67   msaitoh 		reg = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
    477  1.67   msaitoh 		if (reg & BMSR_LINK) {
    478  1.67   msaitoh 			sc->mii_ticks = 0;
    479  1.67   msaitoh 			break;
    480  1.67   msaitoh 		}
    481  1.67   msaitoh 
    482  1.67   msaitoh 		/*
    483  1.67   msaitoh 		 * mii_ticks == 0 means it's the first tick after changing the
    484  1.67   msaitoh 		 * media or the link became down since the last tick
    485  1.67   msaitoh 		 * (see above), so break to update the status.
    486  1.67   msaitoh 		 */
    487  1.67   msaitoh 		if (sc->mii_ticks++ == 0)
    488  1.67   msaitoh 			break;
    489  1.67   msaitoh 
    490  1.67   msaitoh 		/*
    491  1.67   msaitoh 		 * Only retry autonegotiation every mii_anegticks seconds.
    492  1.67   msaitoh 		 */
    493  1.67   msaitoh 		KASSERT(sc->mii_anegticks != 0);
    494  1.67   msaitoh 		if (sc->mii_ticks <= sc->mii_anegticks)
    495  1.67   msaitoh 			break;
    496  1.67   msaitoh 
    497  1.67   msaitoh 		brgphy_mii_phy_auto(sc);
    498   1.1   thorpej 		break;
    499   1.1   thorpej 
    500   1.1   thorpej 	case MII_DOWN:
    501   1.1   thorpej 		mii_phy_down(sc);
    502   1.1   thorpej 		return (0);
    503   1.1   thorpej 	}
    504   1.1   thorpej 
    505   1.1   thorpej 	/* Update the media status. */
    506   1.1   thorpej 	mii_phy_status(sc);
    507   1.1   thorpej 
    508  1.10   thorpej 	/*
    509  1.32   msaitoh 	 * Callback if something changed. Note that we need to poke the DSP on
    510  1.32   msaitoh 	 * the Broadcom PHYs if the media changes.
    511  1.10   thorpej 	 */
    512  1.23     perry 	if (sc->mii_media_active != mii->mii_media_active ||
    513  1.10   thorpej 	    sc->mii_media_status != mii->mii_media_status ||
    514  1.10   thorpej 	    cmd == MII_MEDIACHG) {
    515  1.61   msaitoh 		switch (sc->mii_mpd_oui) {
    516  1.61   msaitoh 		case MII_OUI_BROADCOM:
    517  1.61   msaitoh 			switch (sc->mii_mpd_model) {
    518  1.61   msaitoh 			case MII_MODEL_BROADCOM_BCM5400:
    519  1.43   msaitoh 				brgphy_bcm5401_dspcode(sc);
    520  1.61   msaitoh 				break;
    521  1.61   msaitoh 			case MII_MODEL_BROADCOM_BCM5401:
    522  1.61   msaitoh 				if (sc->mii_mpd_rev == 1 || sc->mii_mpd_rev == 3)
    523  1.61   msaitoh 					brgphy_bcm5401_dspcode(sc);
    524  1.61   msaitoh 				break;
    525  1.61   msaitoh 			case MII_MODEL_BROADCOM_BCM5411:
    526  1.61   msaitoh 				brgphy_bcm5411_dspcode(sc);
    527  1.61   msaitoh 				break;
    528  1.61   msaitoh 			}
    529  1.43   msaitoh 			break;
    530  1.43   msaitoh 		}
    531  1.10   thorpej 	}
    532  1.43   msaitoh 
    533  1.43   msaitoh 	/* Callback if something changed. */
    534  1.43   msaitoh 	mii_phy_update(sc, cmd);
    535   1.1   thorpej 	return (0);
    536   1.1   thorpej }
    537   1.1   thorpej 
    538  1.21   thorpej static void
    539  1.71   msaitoh brgphy_copper_status(struct mii_softc *sc)
    540   1.1   thorpej {
    541   1.1   thorpej 	struct mii_data *mii = sc->mii_pdata;
    542   1.1   thorpej 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    543  1.57       jym 	int bmcr, bmsr, auxsts, gtsr;
    544   1.1   thorpej 
    545   1.1   thorpej 	mii->mii_media_status = IFM_AVALID;
    546   1.1   thorpej 	mii->mii_media_active = IFM_ETHER;
    547   1.1   thorpej 
    548  1.57       jym 	bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
    549  1.57       jym 	if (bmsr & BMSR_LINK)
    550   1.1   thorpej 		mii->mii_media_status |= IFM_ACTIVE;
    551   1.1   thorpej 
    552   1.1   thorpej 	bmcr = PHY_READ(sc, MII_BMCR);
    553   1.1   thorpej 	if (bmcr & BMCR_ISO) {
    554   1.1   thorpej 		mii->mii_media_active |= IFM_NONE;
    555   1.1   thorpej 		mii->mii_media_status = 0;
    556   1.1   thorpej 		return;
    557   1.1   thorpej 	}
    558   1.1   thorpej 
    559   1.1   thorpej 	if (bmcr & BMCR_LOOP)
    560   1.1   thorpej 		mii->mii_media_active |= IFM_LOOP;
    561   1.1   thorpej 
    562   1.1   thorpej 	if (bmcr & BMCR_AUTOEN) {
    563   1.1   thorpej 		/*
    564   1.1   thorpej 		 * The media status bits are only valid of autonegotiation
    565   1.1   thorpej 		 * has completed (or it's disabled).
    566   1.1   thorpej 		 */
    567  1.57       jym 		if ((bmsr & BMSR_ACOMP) == 0) {
    568   1.1   thorpej 			/* Erg, still trying, I guess... */
    569   1.1   thorpej 			mii->mii_media_active |= IFM_NONE;
    570   1.1   thorpej 			return;
    571   1.1   thorpej 		}
    572   1.1   thorpej 
    573  1.71   msaitoh 		auxsts = PHY_READ(sc, BRGPHY_MII_AUXSTS);
    574  1.71   msaitoh 
    575  1.71   msaitoh 		switch (auxsts & BRGPHY_AUXSTS_AN_RES) {
    576  1.71   msaitoh 		case BRGPHY_RES_1000FD:
    577  1.71   msaitoh 			mii->mii_media_active |= IFM_1000_T | IFM_FDX;
    578  1.71   msaitoh 			gtsr = PHY_READ(sc, MII_100T2SR);
    579  1.71   msaitoh 			if (gtsr & GTSR_MS_RES)
    580  1.71   msaitoh 				mii->mii_media_active |= IFM_ETH_MASTER;
    581  1.71   msaitoh 			break;
    582  1.71   msaitoh 
    583  1.71   msaitoh 		case BRGPHY_RES_1000HD:
    584  1.71   msaitoh 			mii->mii_media_active |= IFM_1000_T | IFM_HDX;
    585  1.71   msaitoh 			gtsr = PHY_READ(sc, MII_100T2SR);
    586  1.71   msaitoh 			if (gtsr & GTSR_MS_RES)
    587  1.71   msaitoh 				mii->mii_media_active |= IFM_ETH_MASTER;
    588  1.71   msaitoh 			break;
    589  1.71   msaitoh 
    590  1.71   msaitoh 		case BRGPHY_RES_100FD:
    591  1.71   msaitoh 			mii->mii_media_active |= IFM_100_TX | IFM_FDX;
    592  1.71   msaitoh 			break;
    593  1.71   msaitoh 
    594  1.71   msaitoh 		case BRGPHY_RES_100T4:
    595  1.71   msaitoh 			mii->mii_media_active |= IFM_100_T4 | IFM_HDX;
    596  1.71   msaitoh 			break;
    597  1.71   msaitoh 
    598  1.71   msaitoh 		case BRGPHY_RES_100HD:
    599  1.71   msaitoh 			mii->mii_media_active |= IFM_100_TX | IFM_HDX;
    600  1.71   msaitoh 			break;
    601  1.71   msaitoh 
    602  1.71   msaitoh 		case BRGPHY_RES_10FD:
    603  1.71   msaitoh 			mii->mii_media_active |= IFM_10_T | IFM_FDX;
    604  1.71   msaitoh 			break;
    605  1.71   msaitoh 
    606  1.71   msaitoh 		case BRGPHY_RES_10HD:
    607  1.71   msaitoh 			mii->mii_media_active |= IFM_10_T | IFM_HDX;
    608  1.71   msaitoh 			break;
    609  1.71   msaitoh 
    610  1.71   msaitoh 		default:
    611  1.71   msaitoh 			mii->mii_media_active |= IFM_NONE;
    612  1.71   msaitoh 			mii->mii_media_status = 0;
    613  1.71   msaitoh 		}
    614  1.71   msaitoh 
    615  1.71   msaitoh 		if (mii->mii_media_active & IFM_FDX)
    616  1.71   msaitoh 			mii->mii_media_active |= mii_phy_flowstatus(sc);
    617  1.71   msaitoh 
    618  1.71   msaitoh 	} else
    619  1.71   msaitoh 		mii->mii_media_active = ife->ifm_media;
    620  1.71   msaitoh }
    621  1.71   msaitoh 
    622  1.71   msaitoh void
    623  1.71   msaitoh brgphy_fiber_status(struct mii_softc *sc)
    624  1.71   msaitoh {
    625  1.71   msaitoh 	struct mii_data *mii = sc->mii_pdata;
    626  1.71   msaitoh 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    627  1.71   msaitoh 	int bmcr, bmsr;
    628  1.71   msaitoh 
    629  1.71   msaitoh 	mii->mii_media_status = IFM_AVALID;
    630  1.71   msaitoh 	mii->mii_media_active = IFM_ETHER;
    631  1.71   msaitoh 
    632  1.71   msaitoh 	bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
    633  1.71   msaitoh 	if (bmsr & BMSR_LINK)
    634  1.71   msaitoh 		mii->mii_media_status |= IFM_ACTIVE;
    635  1.57       jym 
    636  1.71   msaitoh 	bmcr = PHY_READ(sc, MII_BMCR);
    637  1.71   msaitoh 	if (bmcr & BMCR_LOOP)
    638  1.71   msaitoh 		mii->mii_media_active |= IFM_LOOP;
    639  1.57       jym 
    640  1.71   msaitoh 	if (bmcr & BMCR_AUTOEN) {
    641  1.71   msaitoh 		int val;
    642  1.57       jym 
    643  1.71   msaitoh 		if ((bmsr & BMSR_ACOMP) == 0) {
    644  1.71   msaitoh 			/* Erg, still trying, I guess... */
    645  1.71   msaitoh 			mii->mii_media_active |= IFM_NONE;
    646  1.71   msaitoh 			return;
    647  1.71   msaitoh 		}
    648  1.57       jym 
    649  1.71   msaitoh 		mii->mii_media_active |= IFM_1000_SX;
    650  1.57       jym 
    651  1.71   msaitoh 		val = PHY_READ(sc, MII_ANAR) &
    652  1.71   msaitoh 		      PHY_READ(sc, MII_ANLPAR);
    653  1.57       jym 
    654  1.71   msaitoh 		if (val & ANAR_X_FD)
    655  1.71   msaitoh 			mii->mii_media_active |= IFM_FDX;
    656  1.71   msaitoh 		else
    657  1.71   msaitoh 			mii->mii_media_active |= IFM_HDX;
    658   1.1   thorpej 
    659  1.71   msaitoh 		if (mii->mii_media_active & IFM_FDX)
    660  1.71   msaitoh 			mii->mii_media_active |= mii_phy_flowstatus(sc);
    661  1.71   msaitoh 	} else
    662  1.71   msaitoh 		mii->mii_media_active = ife->ifm_media;
    663  1.71   msaitoh }
    664   1.1   thorpej 
    665  1.71   msaitoh void
    666  1.71   msaitoh brgphy_5708s_status(struct mii_softc *sc)
    667  1.71   msaitoh {
    668  1.71   msaitoh 	struct mii_data *mii = sc->mii_pdata;
    669  1.71   msaitoh 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    670  1.71   msaitoh 	int bmcr, bmsr;
    671   1.1   thorpej 
    672  1.71   msaitoh 	mii->mii_media_status = IFM_AVALID;
    673  1.71   msaitoh 	mii->mii_media_active = IFM_ETHER;
    674   1.1   thorpej 
    675  1.71   msaitoh 	bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
    676  1.71   msaitoh 	if (bmsr & BMSR_LINK)
    677  1.71   msaitoh 		mii->mii_media_status |= IFM_ACTIVE;
    678   1.1   thorpej 
    679  1.71   msaitoh 	bmcr = PHY_READ(sc, MII_BMCR);
    680  1.71   msaitoh 	if (bmcr & BMCR_LOOP)
    681  1.71   msaitoh 		mii->mii_media_active |= IFM_LOOP;
    682   1.1   thorpej 
    683  1.71   msaitoh 	if (bmcr & BMCR_AUTOEN) {
    684  1.71   msaitoh 		int xstat;
    685   1.1   thorpej 
    686  1.71   msaitoh 		if ((bmsr & BMSR_ACOMP) == 0) {
    687  1.71   msaitoh 			PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    688  1.71   msaitoh 			    BRGPHY_5708S_DIG_PG0);
    689  1.71   msaitoh 			xstat = PHY_READ(sc, BRGPHY_5708S_PG0_1000X_STAT1);
    690  1.71   msaitoh 			if ((xstat & BRGPHY_5708S_PG0_1000X_STAT1_LINK) == 0) {
    691  1.71   msaitoh 				/* Erg, still trying, I guess... */
    692  1.57       jym 				mii->mii_media_active |= IFM_NONE;
    693  1.71   msaitoh 				return;
    694  1.57       jym 			}
    695   1.1   thorpej 		}
    696  1.57       jym 
    697  1.71   msaitoh 		PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    698  1.71   msaitoh 		    BRGPHY_5708S_DIG_PG0);
    699  1.71   msaitoh 		xstat = PHY_READ(sc, BRGPHY_5708S_PG0_1000X_STAT1);
    700  1.71   msaitoh 
    701  1.71   msaitoh 		switch (xstat & BRGPHY_5708S_PG0_1000X_STAT1_SPEED_MASK) {
    702  1.71   msaitoh 		case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_10:
    703  1.71   msaitoh 			mii->mii_media_active |= IFM_10_FL;
    704  1.71   msaitoh 			break;
    705  1.71   msaitoh 		case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_100:
    706  1.71   msaitoh 			mii->mii_media_active |= IFM_100_FX;
    707  1.71   msaitoh 			break;
    708  1.71   msaitoh 		case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_1G:
    709  1.71   msaitoh 			mii->mii_media_active |= IFM_1000_SX;
    710  1.71   msaitoh 			break;
    711  1.71   msaitoh 		case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_25G:
    712  1.71   msaitoh 			mii->mii_media_active |= IFM_2500_SX;
    713  1.71   msaitoh 			break;
    714  1.71   msaitoh 		}
    715  1.71   msaitoh 
    716  1.71   msaitoh 		if (xstat & BRGPHY_5708S_PG0_1000X_STAT1_FDX)
    717  1.71   msaitoh 			mii->mii_media_active |= IFM_FDX;
    718  1.71   msaitoh 		else
    719  1.71   msaitoh 			mii->mii_media_active |= IFM_HDX;
    720  1.71   msaitoh 
    721  1.71   msaitoh 		if (mii->mii_media_active & IFM_FDX) {
    722  1.71   msaitoh 			if (xstat & BRGPHY_5708S_PG0_1000X_STAT1_TX_PAUSE)
    723  1.71   msaitoh 				mii->mii_media_active |= IFM_FLOW | IFM_ETH_TXPAUSE;
    724  1.71   msaitoh 			if (xstat & BRGPHY_5708S_PG0_1000X_STAT1_RX_PAUSE)
    725  1.71   msaitoh 				mii->mii_media_active |= IFM_FLOW | IFM_ETH_RXPAUSE;
    726  1.71   msaitoh 		}
    727  1.71   msaitoh 	} else
    728  1.71   msaitoh 		mii->mii_media_active = ife->ifm_media;
    729  1.71   msaitoh }
    730  1.71   msaitoh 
    731  1.71   msaitoh static void
    732  1.71   msaitoh brgphy_5709s_status(struct mii_softc *sc)
    733  1.71   msaitoh {
    734  1.71   msaitoh 	struct mii_data *mii = sc->mii_pdata;
    735  1.71   msaitoh 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    736  1.71   msaitoh 	int bmcr, bmsr, auxsts;
    737  1.71   msaitoh 
    738  1.71   msaitoh 	mii->mii_media_status = IFM_AVALID;
    739  1.71   msaitoh 	mii->mii_media_active = IFM_ETHER;
    740  1.71   msaitoh 
    741  1.71   msaitoh 	bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
    742  1.71   msaitoh 	if (bmsr & BMSR_LINK)
    743  1.71   msaitoh 		mii->mii_media_status |= IFM_ACTIVE;
    744  1.71   msaitoh 
    745  1.71   msaitoh 	bmcr = PHY_READ(sc, MII_BMCR);
    746  1.71   msaitoh 	if (bmcr & BMCR_ISO) {
    747  1.71   msaitoh 		mii->mii_media_active |= IFM_NONE;
    748  1.71   msaitoh 		mii->mii_media_status = 0;
    749  1.71   msaitoh 		return;
    750  1.71   msaitoh 	}
    751  1.71   msaitoh 
    752  1.71   msaitoh 	if (bmcr & BMCR_LOOP)
    753  1.71   msaitoh 		mii->mii_media_active |= IFM_LOOP;
    754  1.71   msaitoh 
    755  1.71   msaitoh 	if (bmcr & BMCR_AUTOEN) {
    756  1.71   msaitoh 		/*
    757  1.71   msaitoh 		 * The media status bits are only valid of autonegotiation
    758  1.71   msaitoh 		 * has completed (or it's disabled).
    759  1.71   msaitoh 		 */
    760  1.71   msaitoh 		if ((bmsr & BMSR_ACOMP) == 0) {
    761  1.71   msaitoh 			/* Erg, still trying, I guess... */
    762  1.71   msaitoh 			mii->mii_media_active |= IFM_NONE;
    763  1.71   msaitoh 			return;
    764  1.71   msaitoh 		}
    765  1.71   msaitoh 
    766  1.71   msaitoh 		/* 5709S has its own general purpose status registers */
    767  1.71   msaitoh 		PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
    768  1.71   msaitoh 		    BRGPHY_BLOCK_ADDR_GP_STATUS);
    769  1.71   msaitoh 		auxsts = PHY_READ(sc, BRGPHY_GP_STATUS_TOP_ANEG_STATUS);
    770  1.71   msaitoh 
    771  1.71   msaitoh 		PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
    772  1.71   msaitoh 		    BRGPHY_BLOCK_ADDR_COMBO_IEEE0);
    773  1.71   msaitoh 
    774  1.71   msaitoh 		switch (auxsts & BRGPHY_GP_STATUS_TOP_ANEG_SPEED_MASK) {
    775  1.71   msaitoh 		case BRGPHY_GP_STATUS_TOP_ANEG_SPEED_10:
    776  1.71   msaitoh 			mii->mii_media_active |= IFM_10_FL;
    777  1.71   msaitoh 			break;
    778  1.71   msaitoh 		case BRGPHY_GP_STATUS_TOP_ANEG_SPEED_100:
    779  1.71   msaitoh 			mii->mii_media_active |= IFM_100_FX;
    780  1.71   msaitoh 			break;
    781  1.71   msaitoh 		case BRGPHY_GP_STATUS_TOP_ANEG_SPEED_1G:
    782  1.71   msaitoh 			mii->mii_media_active |= IFM_1000_SX;
    783  1.71   msaitoh 			break;
    784  1.71   msaitoh 		case BRGPHY_GP_STATUS_TOP_ANEG_SPEED_25G:
    785  1.71   msaitoh 			mii->mii_media_active |= IFM_2500_SX;
    786  1.71   msaitoh 			break;
    787  1.71   msaitoh 		default:
    788  1.71   msaitoh 			mii->mii_media_active |= IFM_NONE;
    789  1.71   msaitoh 			mii->mii_media_status = 0;
    790  1.71   msaitoh 			break;
    791  1.71   msaitoh 		}
    792  1.71   msaitoh 
    793  1.71   msaitoh 		if (auxsts & BRGPHY_GP_STATUS_TOP_ANEG_FDX)
    794  1.71   msaitoh 			mii->mii_media_active |= IFM_FDX;
    795  1.71   msaitoh 		else
    796  1.71   msaitoh 			mii->mii_media_active |= IFM_HDX;
    797  1.71   msaitoh 
    798  1.19   thorpej 		if (mii->mii_media_active & IFM_FDX)
    799  1.20   thorpej 			mii->mii_media_active |= mii_phy_flowstatus(sc);
    800   1.1   thorpej 	} else
    801   1.1   thorpej 		mii->mii_media_active = ife->ifm_media;
    802  1.10   thorpej }
    803  1.10   thorpej 
    804  1.32   msaitoh int
    805  1.32   msaitoh brgphy_mii_phy_auto(struct mii_softc *sc)
    806  1.32   msaitoh {
    807  1.32   msaitoh 	int anar, ktcr = 0;
    808  1.32   msaitoh 
    809  1.64   msaitoh 	sc->mii_ticks = 0;
    810  1.32   msaitoh 	brgphy_loop(sc);
    811  1.32   msaitoh 	PHY_RESET(sc);
    812  1.57       jym 
    813  1.57       jym 	if (sc->mii_flags & MIIF_HAVEFIBER) {
    814  1.57       jym 		anar = ANAR_X_FD | ANAR_X_HD;
    815  1.57       jym 		if (sc->mii_flags & MIIF_DOPAUSE)
    816  1.69   msaitoh 			anar |= ANAR_X_PAUSE_TOWARDS;
    817  1.57       jym 	} else {
    818  1.57       jym 		anar = BMSR_MEDIA_TO_ANAR(sc->mii_capabilities) | ANAR_CSMA;
    819  1.57       jym 		if (sc->mii_flags & MIIF_DOPAUSE)
    820  1.66   msaitoh 			anar |= ANAR_FC | ANAR_PAUSE_ASYM;
    821  1.71   msaitoh 		ktcr = GTCR_ADV_1000TFDX | GTCR_ADV_1000THDX;
    822  1.71   msaitoh 		if ((sc->mii_mpd_oui == MII_OUI_BROADCOM)
    823  1.71   msaitoh 		    && (sc->mii_mpd_model == MII_MODEL_BROADCOM_BCM5701))
    824  1.71   msaitoh 			ktcr |= GTCR_MAN_MS | GTCR_ADV_MS;
    825  1.71   msaitoh 		PHY_WRITE(sc, MII_100T2CR, ktcr);
    826  1.71   msaitoh 		ktcr = PHY_READ(sc, MII_100T2CR);
    827  1.71   msaitoh 		DELAY(1000);
    828  1.57       jym 	}
    829  1.32   msaitoh 	PHY_WRITE(sc, MII_ANAR, anar);
    830  1.32   msaitoh 	DELAY(1000);
    831  1.57       jym 
    832  1.57       jym 	/* Start autonegotiation */
    833  1.69   msaitoh 	PHY_WRITE(sc, MII_BMCR, BMCR_AUTOEN | BMCR_STARTNEG);
    834  1.32   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_IMR, 0xFF00);
    835  1.32   msaitoh 
    836  1.32   msaitoh 	return (EJUSTRETURN);
    837  1.32   msaitoh }
    838  1.32   msaitoh 
    839  1.32   msaitoh void
    840  1.32   msaitoh brgphy_loop(struct mii_softc *sc)
    841  1.32   msaitoh {
    842  1.32   msaitoh 	u_int32_t bmsr;
    843  1.32   msaitoh 	int i;
    844  1.32   msaitoh 
    845  1.32   msaitoh 	PHY_WRITE(sc, MII_BMCR, BMCR_LOOP);
    846  1.33   msaitoh 	for (i = 0; i < 15000; i++) {
    847  1.32   msaitoh 		bmsr = PHY_READ(sc, MII_BMSR);
    848  1.32   msaitoh 		if (!(bmsr & BMSR_LINK))
    849  1.32   msaitoh 			break;
    850  1.32   msaitoh 		DELAY(10);
    851  1.32   msaitoh 	}
    852  1.32   msaitoh }
    853  1.32   msaitoh 
    854  1.21   thorpej static void
    855  1.43   msaitoh brgphy_reset(struct mii_softc *sc)
    856  1.10   thorpej {
    857  1.56       jym 	struct brgphy_softc *bsc = device_private(sc->mii_dev);
    858  1.10   thorpej 
    859  1.10   thorpej 	mii_phy_reset(sc);
    860  1.61   msaitoh 	switch (sc->mii_mpd_oui) {
    861  1.61   msaitoh 	case MII_OUI_BROADCOM:
    862  1.61   msaitoh 		switch (sc->mii_mpd_model) {
    863  1.61   msaitoh 		case MII_MODEL_BROADCOM_BCM5400:
    864  1.43   msaitoh 			brgphy_bcm5401_dspcode(sc);
    865  1.61   msaitoh 			break;
    866  1.61   msaitoh 		case MII_MODEL_BROADCOM_BCM5401:
    867  1.61   msaitoh 			if (sc->mii_mpd_rev == 1 || sc->mii_mpd_rev == 3)
    868  1.61   msaitoh 				brgphy_bcm5401_dspcode(sc);
    869  1.61   msaitoh 			break;
    870  1.61   msaitoh 		case MII_MODEL_BROADCOM_BCM5411:
    871  1.61   msaitoh 			brgphy_bcm5411_dspcode(sc);
    872  1.61   msaitoh 			break;
    873  1.61   msaitoh 		case MII_MODEL_BROADCOM_BCM5421:
    874  1.61   msaitoh 			brgphy_bcm5421_dspcode(sc);
    875  1.61   msaitoh 			break;
    876  1.61   msaitoh 		case MII_MODEL_BROADCOM_BCM54K2:
    877  1.61   msaitoh 			brgphy_bcm54k2_dspcode(sc);
    878  1.61   msaitoh 			break;
    879  1.61   msaitoh 		}
    880  1.43   msaitoh 		break;
    881  1.61   msaitoh 	case MII_OUI_BROADCOM3:
    882  1.61   msaitoh 		switch (sc->mii_mpd_model) {
    883  1.61   msaitoh 		case MII_MODEL_BROADCOM3_BCM5717C:
    884  1.61   msaitoh 		case MII_MODEL_BROADCOM3_BCM5719C:
    885  1.61   msaitoh 		case MII_MODEL_BROADCOM3_BCM5720C:
    886  1.61   msaitoh 		case MII_MODEL_BROADCOM3_BCM57765:
    887  1.61   msaitoh 			return;
    888  1.61   msaitoh 		}
    889  1.43   msaitoh 		break;
    890  1.61   msaitoh 	default:
    891  1.43   msaitoh 		break;
    892  1.43   msaitoh 	}
    893  1.15  jonathan 
    894  1.43   msaitoh 	/* Handle any bge (NetXtreme/NetLink) workarounds. */
    895  1.54    dyoung 	if (bsc->sc_isbge) {
    896  1.43   msaitoh 		if (!(sc->mii_flags & MIIF_HAVEFIBER)) {
    897  1.43   msaitoh 
    898  1.68   msaitoh 			if (bsc->sc_phyflags & BGEPHYF_ADC_BUG)
    899  1.43   msaitoh 				brgphy_adc_bug(sc);
    900  1.68   msaitoh 			if (bsc->sc_phyflags & BGEPHYF_5704_A0_BUG)
    901  1.43   msaitoh 				brgphy_5704_a0_bug(sc);
    902  1.68   msaitoh 			if (bsc->sc_phyflags & BGEPHYF_BER_BUG)
    903  1.43   msaitoh 				brgphy_ber_bug(sc);
    904  1.68   msaitoh 			else if (bsc->sc_phyflags & BGEPHYF_JITTER_BUG) {
    905  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0c00);
    906  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG,
    907  1.43   msaitoh 				    0x000a);
    908  1.43   msaitoh 
    909  1.58       jym 				if (bsc->sc_phyflags
    910  1.68   msaitoh 				    & BGEPHYF_ADJUST_TRIM) {
    911  1.43   msaitoh 					PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT,
    912  1.43   msaitoh 					    0x110b);
    913  1.43   msaitoh 					PHY_WRITE(sc, BRGPHY_TEST1,
    914  1.43   msaitoh 					    BRGPHY_TEST1_TRIM_EN | 0x4);
    915  1.43   msaitoh 				} else {
    916  1.43   msaitoh 					PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT,
    917  1.43   msaitoh 					    0x010b);
    918  1.43   msaitoh 				}
    919  1.15  jonathan 
    920  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0400);
    921  1.43   msaitoh 			}
    922  1.68   msaitoh 			if (bsc->sc_phyflags & BGEPHYF_CRC_BUG)
    923  1.43   msaitoh 				brgphy_crc_bug(sc);
    924  1.15  jonathan 
    925  1.43   msaitoh 			/* Set Jumbo frame settings in the PHY. */
    926  1.68   msaitoh 			if (bsc->sc_phyflags & BGEPHYF_JUMBO_CAPABLE)
    927  1.43   msaitoh 				brgphy_jumbo_settings(sc);
    928  1.43   msaitoh 
    929  1.43   msaitoh 			/* Adjust output voltage */
    930  1.61   msaitoh 			if ((sc->mii_mpd_oui == MII_OUI_BROADCOM2)
    931  1.61   msaitoh 			    && (sc->mii_mpd_model == MII_MODEL_BROADCOM2_BCM5906))
    932  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_MII_EPHY_PTEST, 0x12);
    933  1.43   msaitoh 
    934  1.43   msaitoh 			/* Enable Ethernet@Wirespeed */
    935  1.68   msaitoh 			if (!(bsc->sc_phyflags & BGEPHYF_NO_WIRESPEED))
    936  1.43   msaitoh 				brgphy_eth_wirespeed(sc);
    937  1.43   msaitoh 
    938  1.52   msaitoh #if 0
    939  1.43   msaitoh 			/* Enable Link LED on Dell boxes */
    940  1.68   msaitoh 			if (bsc->sc_phyflags & BGEPHYF_NO_3LED) {
    941  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL,
    942  1.43   msaitoh 				PHY_READ(sc, BRGPHY_MII_PHY_EXTCTL)
    943  1.43   msaitoh 					& ~BRGPHY_PHY_EXTCTL_3_LED);
    944  1.43   msaitoh 			}
    945  1.43   msaitoh #endif
    946  1.43   msaitoh 		}
    947  1.57       jym 	/* Handle any bnx (NetXtreme II) workarounds. */
    948  1.57       jym 	} else if (bsc->sc_isbnx) {
    949  1.61   msaitoh 		if ((sc->mii_mpd_oui == MII_OUI_BROADCOM2)
    950  1.61   msaitoh 		    && sc->mii_mpd_model == MII_MODEL_BROADCOM2_BCM5708S) {
    951  1.43   msaitoh 			/* Store autoneg capabilities/results in digital block (Page 0) */
    952  1.43   msaitoh 			PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR, BRGPHY_5708S_DIG3_PG2);
    953  1.43   msaitoh 			PHY_WRITE(sc, BRGPHY_5708S_PG2_DIGCTL_3_0,
    954  1.43   msaitoh 				BRGPHY_5708S_PG2_DIGCTL_3_0_USE_IEEE);
    955  1.43   msaitoh 			PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR, BRGPHY_5708S_DIG_PG0);
    956  1.43   msaitoh 
    957  1.43   msaitoh 			/* Enable fiber mode and autodetection */
    958  1.43   msaitoh 			PHY_WRITE(sc, BRGPHY_5708S_PG0_1000X_CTL1,
    959  1.43   msaitoh 				PHY_READ(sc, BRGPHY_5708S_PG0_1000X_CTL1) |
    960  1.43   msaitoh 				BRGPHY_5708S_PG0_1000X_CTL1_AUTODET_EN |
    961  1.43   msaitoh 				BRGPHY_5708S_PG0_1000X_CTL1_FIBER_MODE);
    962  1.43   msaitoh 
    963  1.43   msaitoh 			/* Enable parallel detection */
    964  1.43   msaitoh 			PHY_WRITE(sc, BRGPHY_5708S_PG0_1000X_CTL2,
    965  1.43   msaitoh 				PHY_READ(sc, BRGPHY_5708S_PG0_1000X_CTL2) |
    966  1.43   msaitoh 				BRGPHY_5708S_PG0_1000X_CTL2_PAR_DET_EN);
    967  1.43   msaitoh 
    968  1.43   msaitoh 			/* Advertise 2.5G support through next page during autoneg */
    969  1.71   msaitoh 			if (bsc->sc_phyflags & BNX_PHY_2_5G_CAPABLE_FLAG)
    970  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_5708S_ANEG_NXT_PG_XMIT1,
    971  1.43   msaitoh 					PHY_READ(sc, BRGPHY_5708S_ANEG_NXT_PG_XMIT1) |
    972  1.43   msaitoh 					BRGPHY_5708S_ANEG_NXT_PG_XMIT1_25G);
    973  1.43   msaitoh 
    974  1.43   msaitoh 			/* Increase TX signal amplitude */
    975  1.71   msaitoh 			if ((_BNX_CHIP_ID(bsc->sc_chipid) == BNX_CHIP_ID_5708_A0) ||
    976  1.71   msaitoh 			    (_BNX_CHIP_ID(bsc->sc_chipid) == BNX_CHIP_ID_5708_B0) ||
    977  1.71   msaitoh 			    (_BNX_CHIP_ID(bsc->sc_chipid) == BNX_CHIP_ID_5708_B1)) {
    978  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    979  1.43   msaitoh 					BRGPHY_5708S_TX_MISC_PG5);
    980  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL1,
    981  1.43   msaitoh 					PHY_READ(sc, BRGPHY_5708S_PG5_TXACTL1) &
    982  1.43   msaitoh 					~BRGPHY_5708S_PG5_TXACTL1_VCM);
    983  1.43   msaitoh 				PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    984  1.43   msaitoh 					BRGPHY_5708S_DIG_PG0);
    985  1.43   msaitoh 			}
    986  1.15  jonathan 
    987  1.43   msaitoh 			/* Backplanes use special driver/pre-driver/pre-emphasis values. */
    988  1.71   msaitoh 			if ((bsc->sc_shared_hwcfg & BNX_SHARED_HW_CFG_PHY_BACKPLANE) &&
    989  1.71   msaitoh 			    (bsc->sc_port_hwcfg & BNX_PORT_HW_CFG_CFG_TXCTL3_MASK)) {
    990  1.43   msaitoh 					PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    991  1.43   msaitoh 						BRGPHY_5708S_TX_MISC_PG5);
    992  1.43   msaitoh 					PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL3,
    993  1.71   msaitoh 						bsc->sc_port_hwcfg &
    994  1.43   msaitoh 						BNX_PORT_HW_CFG_CFG_TXCTL3_MASK);
    995  1.43   msaitoh 					PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
    996  1.43   msaitoh 						BRGPHY_5708S_DIG_PG0);
    997  1.43   msaitoh 			}
    998  1.71   msaitoh 		} else if ((sc->mii_mpd_oui == MII_OUI_BROADCOM2)
    999  1.61   msaitoh 		    && (sc->mii_mpd_model ==  MII_MODEL_BROADCOM2_BCM5709S)) {
   1000  1.57       jym 			/* Select the SerDes Digital block of the AN MMD. */
   1001  1.57       jym 			PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
   1002  1.57       jym 			    BRGPHY_BLOCK_ADDR_SERDES_DIG);
   1003  1.57       jym 
   1004  1.57       jym 			PHY_WRITE(sc, BRGPHY_SERDES_DIG_1000X_CTL1,
   1005  1.57       jym 			    (PHY_READ(sc, BRGPHY_SERDES_DIG_1000X_CTL1) &
   1006  1.57       jym 			    ~BRGPHY_SD_DIG_1000X_CTL1_AUTODET) |
   1007  1.57       jym 			    BRGPHY_SD_DIG_1000X_CTL1_FIBER);
   1008  1.57       jym 
   1009  1.58       jym 			if (bsc->sc_phyflags & BNX_PHY_2_5G_CAPABLE_FLAG) {
   1010  1.57       jym 				/* Select the Over 1G block of the AN MMD. */
   1011  1.57       jym 				PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
   1012  1.57       jym 				    BRGPHY_BLOCK_ADDR_OVER_1G);
   1013  1.57       jym 
   1014  1.57       jym 				/*
   1015  1.57       jym 				 * Enable autoneg "Next Page" to advertise
   1016  1.57       jym 				 * 2.5G support.
   1017  1.57       jym 				 */
   1018  1.57       jym 				PHY_WRITE(sc, BRGPHY_OVER_1G_UNFORMAT_PG1,
   1019  1.57       jym 				    PHY_READ(sc, BRGPHY_OVER_1G_UNFORMAT_PG1) |
   1020  1.57       jym 				    BRGPHY_5708S_ANEG_NXT_PG_XMIT1_25G);
   1021  1.57       jym 			}
   1022  1.57       jym 
   1023  1.57       jym                         /*
   1024  1.57       jym                          * Select the Multi-Rate Backplane Ethernet block of
   1025  1.57       jym                          * the AN MMD.
   1026  1.57       jym                          */
   1027  1.57       jym                         PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
   1028  1.57       jym                             BRGPHY_BLOCK_ADDR_MRBE);
   1029  1.57       jym 
   1030  1.57       jym                         /* Enable MRBE speed autoneg. */
   1031  1.57       jym                         PHY_WRITE(sc, BRGPHY_MRBE_MSG_PG5_NP,
   1032  1.57       jym                             PHY_READ(sc, BRGPHY_MRBE_MSG_PG5_NP) |
   1033  1.57       jym                             BRGPHY_MRBE_MSG_PG5_NP_MBRE |
   1034  1.57       jym                             BRGPHY_MRBE_MSG_PG5_NP_T2);
   1035  1.57       jym 
   1036  1.57       jym                         /* Select the Clause 73 User B0 block of the AN MMD. */
   1037  1.57       jym                         PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
   1038  1.57       jym                             BRGPHY_BLOCK_ADDR_CL73_USER_B0);
   1039  1.57       jym 
   1040  1.57       jym                         /* Enable MRBE speed autoneg. */
   1041  1.57       jym                         PHY_WRITE(sc, BRGPHY_CL73_USER_B0_MBRE_CTL1,
   1042  1.57       jym                             BRGPHY_CL73_USER_B0_MBRE_CTL1_NP_AFT_BP |
   1043  1.57       jym                             BRGPHY_CL73_USER_B0_MBRE_CTL1_STA_MGR |
   1044  1.57       jym                             BRGPHY_CL73_USER_B0_MBRE_CTL1_ANEG);
   1045  1.57       jym 
   1046  1.57       jym                         PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
   1047  1.57       jym                             BRGPHY_BLOCK_ADDR_COMBO_IEEE0);
   1048  1.57       jym 
   1049  1.58       jym 		} else if (_BNX_CHIP_NUM(bsc->sc_chipid) == BNX_CHIP_NUM_5709) {
   1050  1.58       jym 			if (_BNX_CHIP_REV(bsc->sc_chipid) == BNX_CHIP_REV_Ax ||
   1051  1.58       jym 			    _BNX_CHIP_REV(bsc->sc_chipid) == BNX_CHIP_REV_Bx)
   1052  1.58       jym 				brgphy_disable_early_dac(sc);
   1053  1.58       jym 
   1054  1.58       jym 			/* Set Jumbo frame settings in the PHY. */
   1055  1.58       jym 			brgphy_jumbo_settings(sc);
   1056  1.58       jym 
   1057  1.58       jym 			/* Enable Ethernet@Wirespeed */
   1058  1.58       jym 			brgphy_eth_wirespeed(sc);
   1059  1.43   msaitoh 		} else {
   1060  1.43   msaitoh 			if (!(sc->mii_flags & MIIF_HAVEFIBER)) {
   1061  1.43   msaitoh 				brgphy_ber_bug(sc);
   1062  1.18   hannken 
   1063  1.43   msaitoh 				/* Set Jumbo frame settings in the PHY. */
   1064  1.43   msaitoh 				brgphy_jumbo_settings(sc);
   1065  1.18   hannken 
   1066  1.43   msaitoh 				/* Enable Ethernet@Wirespeed */
   1067  1.43   msaitoh 				brgphy_eth_wirespeed(sc);
   1068  1.43   msaitoh 			}
   1069  1.43   msaitoh 		}
   1070  1.43   msaitoh 	}
   1071  1.34     markd }
   1072  1.34     markd 
   1073  1.16  jonathan /* Turn off tap power management on 5401. */
   1074  1.10   thorpej static void
   1075  1.43   msaitoh brgphy_bcm5401_dspcode(struct mii_softc *sc)
   1076  1.10   thorpej {
   1077  1.10   thorpej 	static const struct {
   1078  1.10   thorpej 		int		reg;
   1079  1.10   thorpej 		uint16_t	val;
   1080  1.10   thorpej 	} dspcode[] = {
   1081  1.16  jonathan 		{ BRGPHY_MII_AUXCTL,		0x0c20 },
   1082  1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x0012 },
   1083  1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x1804 },
   1084  1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x0013 },
   1085  1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x1204 },
   1086  1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x8006 },
   1087  1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x0132 },
   1088  1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x8006 },
   1089  1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x0232 },
   1090  1.10   thorpej 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
   1091  1.10   thorpej 		{ BRGPHY_MII_DSP_RW_PORT,	0x0a20 },
   1092  1.10   thorpej 		{ 0,				0 },
   1093  1.10   thorpej 	};
   1094  1.10   thorpej 	int i;
   1095  1.10   thorpej 
   1096  1.10   thorpej 	for (i = 0; dspcode[i].reg != 0; i++)
   1097  1.10   thorpej 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
   1098  1.61   msaitoh 	delay(40);
   1099  1.10   thorpej }
   1100  1.10   thorpej 
   1101  1.10   thorpej static void
   1102  1.43   msaitoh brgphy_bcm5411_dspcode(struct mii_softc *sc)
   1103  1.10   thorpej {
   1104  1.10   thorpej 	static const struct {
   1105  1.10   thorpej 		int		reg;
   1106  1.10   thorpej 		uint16_t	val;
   1107  1.10   thorpej 	} dspcode[] = {
   1108  1.10   thorpej 		{ 0x1c,				0x8c23 },
   1109  1.10   thorpej 		{ 0x1c,				0x8ca3 },
   1110  1.10   thorpej 		{ 0x1c,				0x8c23 },
   1111  1.15  jonathan 		{ 0,				0 },
   1112  1.15  jonathan 	};
   1113  1.15  jonathan 	int i;
   1114  1.15  jonathan 
   1115  1.15  jonathan 	for (i = 0; dspcode[i].reg != 0; i++)
   1116  1.15  jonathan 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
   1117  1.15  jonathan }
   1118  1.15  jonathan 
   1119  1.43   msaitoh void
   1120  1.43   msaitoh brgphy_bcm5421_dspcode(struct mii_softc *sc)
   1121  1.43   msaitoh {
   1122  1.43   msaitoh 	uint16_t data;
   1123  1.43   msaitoh 
   1124  1.43   msaitoh 	/* Set Class A mode */
   1125  1.43   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x1007);
   1126  1.43   msaitoh 	data = PHY_READ(sc, BRGPHY_MII_AUXCTL);
   1127  1.43   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, data | 0x0400);
   1128  1.43   msaitoh 
   1129  1.43   msaitoh 	/* Set FFE gamma override to -0.125 */
   1130  1.43   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0007);
   1131  1.43   msaitoh 	data = PHY_READ(sc, BRGPHY_MII_AUXCTL);
   1132  1.43   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, data | 0x0800);
   1133  1.43   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG, 0x000a);
   1134  1.43   msaitoh 	data = PHY_READ(sc, BRGPHY_MII_DSP_RW_PORT);
   1135  1.43   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT, data | 0x0200);
   1136  1.43   msaitoh }
   1137  1.43   msaitoh 
   1138  1.43   msaitoh void
   1139  1.43   msaitoh brgphy_bcm54k2_dspcode(struct mii_softc *sc)
   1140  1.43   msaitoh {
   1141  1.43   msaitoh 	static const struct {
   1142  1.43   msaitoh 		int		reg;
   1143  1.43   msaitoh 		uint16_t	val;
   1144  1.43   msaitoh 	} dspcode[] = {
   1145  1.43   msaitoh 		{ 4,				0x01e1 },
   1146  1.43   msaitoh 		{ 9,				0x0300 },
   1147  1.43   msaitoh 		{ 0,				0 },
   1148  1.43   msaitoh 	};
   1149  1.43   msaitoh 	int i;
   1150  1.43   msaitoh 
   1151  1.43   msaitoh 	for (i = 0; dspcode[i].reg != 0; i++)
   1152  1.43   msaitoh 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
   1153  1.43   msaitoh }
   1154  1.43   msaitoh 
   1155  1.15  jonathan static void
   1156  1.43   msaitoh brgphy_adc_bug(struct mii_softc *sc)
   1157  1.15  jonathan {
   1158  1.15  jonathan 	static const struct {
   1159  1.15  jonathan 		int		reg;
   1160  1.15  jonathan 		uint16_t	val;
   1161  1.15  jonathan 	} dspcode[] = {
   1162  1.15  jonathan 		{ BRGPHY_MII_AUXCTL,		0x0c00 },
   1163  1.15  jonathan 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
   1164  1.15  jonathan 		{ BRGPHY_MII_DSP_RW_PORT,	0x2aaa },
   1165  1.43   msaitoh 		{ BRGPHY_MII_DSP_ADDR_REG,	0x000a },
   1166  1.43   msaitoh 		{ BRGPHY_MII_DSP_RW_PORT,	0x0323 },
   1167  1.43   msaitoh 		{ BRGPHY_MII_AUXCTL,		0x0400 },
   1168  1.15  jonathan 		{ 0,				0 },
   1169  1.15  jonathan 	};
   1170  1.15  jonathan 	int i;
   1171  1.15  jonathan 
   1172  1.15  jonathan 	for (i = 0; dspcode[i].reg != 0; i++)
   1173  1.15  jonathan 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
   1174  1.15  jonathan }
   1175  1.15  jonathan 
   1176  1.15  jonathan static void
   1177  1.43   msaitoh brgphy_5704_a0_bug(struct mii_softc *sc)
   1178  1.15  jonathan {
   1179  1.15  jonathan 	static const struct {
   1180  1.15  jonathan 		int		reg;
   1181  1.15  jonathan 		uint16_t	val;
   1182  1.15  jonathan 	} dspcode[] = {
   1183  1.15  jonathan 		{ 0x1c,				0x8d68 },
   1184  1.33   msaitoh 		{ 0x1c,				0x8d68 },
   1185  1.10   thorpej 		{ 0,				0 },
   1186  1.10   thorpej 	};
   1187  1.10   thorpej 	int i;
   1188  1.10   thorpej 
   1189  1.10   thorpej 	for (i = 0; dspcode[i].reg != 0; i++)
   1190  1.10   thorpej 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
   1191   1.1   thorpej }
   1192  1.22      cube 
   1193  1.22      cube static void
   1194  1.43   msaitoh brgphy_ber_bug(struct mii_softc *sc)
   1195  1.22      cube {
   1196  1.22      cube 	static const struct {
   1197  1.22      cube 		int		reg;
   1198  1.22      cube 		uint16_t	val;
   1199  1.22      cube 	} dspcode[] = {
   1200  1.22      cube 		{ BRGPHY_MII_AUXCTL,		0x0c00 },
   1201  1.22      cube 		{ BRGPHY_MII_DSP_ADDR_REG,	0x000a },
   1202  1.22      cube 		{ BRGPHY_MII_DSP_RW_PORT,	0x310b },
   1203  1.22      cube 		{ BRGPHY_MII_DSP_ADDR_REG,	0x201f },
   1204  1.22      cube 		{ BRGPHY_MII_DSP_RW_PORT,	0x9506 },
   1205  1.22      cube 		{ BRGPHY_MII_DSP_ADDR_REG,	0x401f },
   1206  1.22      cube 		{ BRGPHY_MII_DSP_RW_PORT,	0x14e2 },
   1207  1.22      cube 		{ BRGPHY_MII_AUXCTL,		0x0400 },
   1208  1.22      cube 		{ 0,				0 },
   1209  1.22      cube 	};
   1210  1.22      cube 	int i;
   1211  1.22      cube 
   1212  1.22      cube 	for (i = 0; dspcode[i].reg != 0; i++)
   1213  1.22      cube 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
   1214  1.22      cube }
   1215  1.34     markd 
   1216  1.43   msaitoh /* BCM5701 A0/B0 CRC bug workaround */
   1217  1.43   msaitoh void
   1218  1.43   msaitoh brgphy_crc_bug(struct mii_softc *sc)
   1219  1.34     markd {
   1220  1.34     markd 	static const struct {
   1221  1.34     markd 		int		reg;
   1222  1.34     markd 		uint16_t	val;
   1223  1.34     markd 	} dspcode[] = {
   1224  1.43   msaitoh 		{ BRGPHY_MII_DSP_ADDR_REG,	0x0a75 },
   1225  1.43   msaitoh 		{ 0x1c,				0x8c68 },
   1226  1.43   msaitoh 		{ 0x1c,				0x8d68 },
   1227  1.43   msaitoh 		{ 0x1c,				0x8c68 },
   1228  1.34     markd 		{ 0,				0 },
   1229  1.34     markd 	};
   1230  1.34     markd 	int i;
   1231  1.34     markd 
   1232  1.34     markd 	for (i = 0; dspcode[i].reg != 0; i++)
   1233  1.34     markd 		PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
   1234  1.34     markd }
   1235  1.52   msaitoh 
   1236  1.52   msaitoh static void
   1237  1.58       jym brgphy_disable_early_dac(struct mii_softc *sc)
   1238  1.58       jym {
   1239  1.58       jym 	uint32_t val;
   1240  1.58       jym 
   1241  1.58       jym 	PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG, 0x0f08);
   1242  1.58       jym 	val = PHY_READ(sc, BRGPHY_MII_DSP_RW_PORT);
   1243  1.58       jym 	val &= ~(1 << 8);
   1244  1.58       jym 	PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT, val);
   1245  1.58       jym 
   1246  1.58       jym }
   1247  1.58       jym 
   1248  1.58       jym static void
   1249  1.52   msaitoh brgphy_jumbo_settings(struct mii_softc *sc)
   1250  1.52   msaitoh {
   1251  1.52   msaitoh 	u_int32_t val;
   1252  1.52   msaitoh 
   1253  1.52   msaitoh 	/* Set Jumbo frame settings in the PHY. */
   1254  1.61   msaitoh 	if ((sc->mii_mpd_oui == MII_OUI_BROADCOM)
   1255  1.61   msaitoh 	    && (sc->mii_mpd_model == MII_MODEL_BROADCOM_BCM5401)) {
   1256  1.52   msaitoh 		/* Cannot do read-modify-write on the BCM5401 */
   1257  1.52   msaitoh 		PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x4c20);
   1258  1.52   msaitoh 	} else {
   1259  1.52   msaitoh 		PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x7);
   1260  1.52   msaitoh 		val = PHY_READ(sc, BRGPHY_MII_AUXCTL);
   1261  1.52   msaitoh 		PHY_WRITE(sc, BRGPHY_MII_AUXCTL,
   1262  1.52   msaitoh 			val & ~(BRGPHY_AUXCTL_LONG_PKT | 0x7));
   1263  1.52   msaitoh 	}
   1264  1.52   msaitoh 
   1265  1.52   msaitoh 	val = PHY_READ(sc, BRGPHY_MII_PHY_EXTCTL);
   1266  1.52   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL,
   1267  1.52   msaitoh 		val & ~BRGPHY_PHY_EXTCTL_HIGH_LA);
   1268  1.52   msaitoh }
   1269  1.52   msaitoh 
   1270  1.52   msaitoh static void
   1271  1.52   msaitoh brgphy_eth_wirespeed(struct mii_softc *sc)
   1272  1.52   msaitoh {
   1273  1.52   msaitoh 	u_int32_t val;
   1274  1.52   msaitoh 
   1275  1.52   msaitoh 	/* Enable Ethernet@Wirespeed */
   1276  1.52   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x7007);
   1277  1.52   msaitoh 	val = PHY_READ(sc, BRGPHY_MII_AUXCTL);
   1278  1.52   msaitoh 	PHY_WRITE(sc, BRGPHY_MII_AUXCTL,
   1279  1.52   msaitoh 		(val | (1 << 15) | (1 << 4)));
   1280  1.52   msaitoh }
   1281