1 /* $NetBSD: mii_physubr.c,v 1.5 1999/08/03 19:41:49 drochner Exp $ */ 2 3 /*- 4 * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, 9 * NASA Ames Research Center. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions and the following disclaimer. 16 * 2. Redistributions in binary form must reproduce the above copyright 17 * notice, this list of conditions and the following disclaimer in the 18 * documentation and/or other materials provided with the distribution. 19 * 3. All advertising materials mentioning features or use of this software 20 * must display the following acknowledgement: 21 * This product includes software developed by the NetBSD 22 * Foundation, Inc. and its contributors. 23 * 4. Neither the name of The NetBSD Foundation nor the names of its 24 * contributors may be used to endorse or promote products derived 25 * from this software without specific prior written permission. 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 28 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 29 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 31 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 37 * POSSIBILITY OF SUCH DAMAGE. 38 * 39 * $FreeBSD: src/sys/dev/mii/mii_physubr.c,v 1.2.2.1 2000/12/12 19:29:14 wpaul Exp $ 40 * $DragonFly: src/sys/dev/netif/mii_layer/mii_physubr.c,v 1.7 2005/10/12 00:57:41 dillon Exp $ 41 */ 42 43 /* 44 * Subroutines common to all PHYs. 45 */ 46 47 #include <sys/param.h> 48 #include <sys/systm.h> 49 #include <sys/kernel.h> 50 #include <sys/socket.h> 51 #include <sys/errno.h> 52 #include <sys/module.h> 53 #include <sys/bus.h> 54 #include <sys/thread2.h> 55 56 #include <machine/clock.h> 57 58 #include <net/if.h> 59 #include <net/if_media.h> 60 61 #include "mii.h" 62 #include "miivar.h" 63 64 #include "miibus_if.h" 65 66 void mii_phy_auto_timeout (void *); 67 68 void 69 mii_softc_init(struct mii_softc *mii) 70 { 71 callout_init(&mii->mii_auto_ch); 72 } 73 74 int 75 mii_phy_auto(mii, waitfor) 76 struct mii_softc *mii; 77 int waitfor; 78 { 79 int bmsr, i; 80 81 if ((mii->mii_flags & MIIF_DOINGAUTO) == 0) { 82 PHY_WRITE(mii, MII_ANAR, 83 mii_bmsr_media_to_anar(mii->mii_capabilities) | ANAR_CSMA); 84 PHY_WRITE(mii, MII_BMCR, BMCR_AUTOEN | BMCR_STARTNEG); 85 } 86 87 if (waitfor) { 88 /* Wait 500ms for it to complete. */ 89 for (i = 0; i < 500; i++) { 90 if ((bmsr = PHY_READ(mii, MII_BMSR)) & BMSR_ACOMP) 91 return (0); 92 DELAY(1000); 93 #if 0 94 if ((bmsr & BMSR_ACOMP) == 0) 95 printf("%s: autonegotiation failed to complete\n", 96 mii->mii_dev.dv_xname); 97 #endif 98 } 99 100 /* 101 * Don't need to worry about clearing MIIF_DOINGAUTO. 102 * If that's set, a timeout is pending, and it will 103 * clear the flag. 104 */ 105 return (EIO); 106 } 107 108 /* 109 * Just let it finish asynchronously. This is for the benefit of 110 * the tick handler driving autonegotiation. Don't want 500ms 111 * delays all the time while the system is running! 112 */ 113 if ((mii->mii_flags & MIIF_DOINGAUTO) == 0) { 114 mii->mii_flags |= MIIF_DOINGAUTO; 115 callout_reset(&mii->mii_auto_ch, hz >> 1, 116 mii_phy_auto_timeout, mii); 117 } 118 return (EJUSTRETURN); 119 } 120 121 void 122 mii_phy_auto_stop(sc) 123 struct mii_softc *sc; 124 { 125 if (sc->mii_flags & MIIF_DOINGAUTO) { 126 sc->mii_flags &= ~MIIF_DOINGAUTO; 127 callout_stop(&sc->mii_auto_ch); 128 } 129 } 130 131 void 132 mii_phy_auto_timeout(arg) 133 void *arg; 134 { 135 struct mii_softc *mii = arg; 136 int bmsr; 137 138 crit_enter(); 139 140 mii->mii_flags &= ~MIIF_DOINGAUTO; 141 bmsr = PHY_READ(mii, MII_BMSR); 142 #if 0 143 if ((bmsr & BMSR_ACOMP) == 0) 144 printf("%s: autonegotiation failed to complete\n", 145 sc->sc_dev.dv_xname); 146 #endif 147 148 /* Update the media status. */ 149 (void) (*mii->mii_service)(mii, mii->mii_pdata, MII_POLLSTAT); 150 151 crit_exit(); 152 } 153 154 void 155 mii_phy_reset(mii) 156 struct mii_softc *mii; 157 { 158 int reg, i; 159 160 if (mii->mii_flags & MIIF_NOISOLATE) 161 reg = BMCR_RESET; 162 else 163 reg = BMCR_RESET | BMCR_ISO; 164 PHY_WRITE(mii, MII_BMCR, reg); 165 166 /* Wait 100ms for it to complete. */ 167 for (i = 0; i < 100; i++) { 168 reg = PHY_READ(mii, MII_BMCR); 169 if ((reg & BMCR_RESET) == 0) 170 break; 171 DELAY(1000); 172 } 173 174 if (mii->mii_inst != 0 && ((mii->mii_flags & MIIF_NOISOLATE) == 0)) 175 PHY_WRITE(mii, MII_BMCR, reg | BMCR_ISO); 176 } 177 178 /* 179 * Given an ifmedia word, return the corresponding ANAR value. 180 */ 181 int 182 mii_anar(media) 183 int media; 184 { 185 int rv; 186 187 switch (media & (IFM_TMASK|IFM_NMASK|IFM_FDX)) { 188 case IFM_ETHER|IFM_1000_T: 189 rv = ANAR_1000|ANAR_CSMA; 190 break; 191 case IFM_ETHER|IFM_1000_T|IFM_FDX: 192 rv = ANAR_1000_FD|ANAR_CSMA; 193 break; 194 case IFM_ETHER|IFM_10_T: 195 rv = ANAR_10|ANAR_CSMA; 196 break; 197 case IFM_ETHER|IFM_10_T|IFM_FDX: 198 rv = ANAR_10_FD|ANAR_CSMA; 199 break; 200 case IFM_ETHER|IFM_100_TX: 201 rv = ANAR_TX|ANAR_CSMA; 202 break; 203 case IFM_ETHER|IFM_100_TX|IFM_FDX: 204 rv = ANAR_TX_FD|ANAR_CSMA; 205 break; 206 case IFM_ETHER|IFM_100_T4: 207 rv = ANAR_T4|ANAR_CSMA; 208 break; 209 default: 210 rv = 0; 211 break; 212 } 213 214 return (rv); 215 } 216 217 /* 218 * Given a BMCR value, return the corresponding ifmedia word. 219 */ 220 int 221 mii_media_from_bmcr(bmcr) 222 int bmcr; 223 { 224 int rv = IFM_ETHER; 225 226 if (bmcr & BMCR_S100) 227 rv |= IFM_100_TX; 228 else 229 rv |= IFM_10_T; 230 if (bmcr & BMCR_FDX) 231 rv |= IFM_FDX; 232 233 return (rv); 234 } 235 236 /* 237 * Initialize generic PHY media based on BMSR, called when a PHY is 238 * attached. We expect to be set up to print a comma-separated list 239 * of media names. Does not print a newline. 240 */ 241 void 242 mii_add_media(mii, bmsr, instance) 243 struct mii_data *mii; 244 int bmsr, instance; 245 { 246 const char *sep = ""; 247 248 #define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL) 249 #define PRINT(s) printf("%s%s", sep, s); sep = ", " 250 251 if (bmsr & BMSR_10THDX) { 252 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, instance), 0); 253 PRINT("10baseT"); 254 } 255 if (bmsr & BMSR_10TFDX) { 256 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, instance), 257 BMCR_FDX); 258 PRINT("10baseT-FDX"); 259 } 260 if (bmsr & BMSR_100TXHDX) { 261 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, instance), 262 BMCR_S100); 263 PRINT("100baseTX"); 264 } 265 if (bmsr & BMSR_100TXFDX) { 266 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, instance), 267 BMCR_S100|BMCR_FDX); 268 PRINT("100baseTX-FDX"); 269 } 270 if (bmsr & BMSR_100T4) { 271 /* 272 * XXX How do you enable 100baseT4? I assume we set 273 * XXX BMCR_S100 and then assume the PHYs will take 274 * XXX watever action is necessary to switch themselves 275 * XXX into T4 mode. 276 */ 277 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_T4, 0, instance), 278 BMCR_S100); 279 PRINT("100baseT4"); 280 } 281 if (bmsr & BMSR_1000) { 282 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, IFM_FDX, instance), 283 BMCR_S1000); 284 PRINT("1000baseT-FDX"); 285 } 286 if (bmsr & BMSR_ANEG) { 287 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, instance), 288 BMCR_AUTOEN); 289 PRINT("auto"); 290 } 291 #undef ADD 292 #undef PRINT 293 } 294 295 int 296 mii_bmsr_media_to_anar(int bmsr) 297 { 298 int res = 0; 299 300 if (bmsr & BMSR_100T4) 301 res |= ANAR_T4; 302 if (bmsr & BMSR_100TXFDX) 303 res |= ANAR_TX_FD; 304 if (bmsr & BMSR_100TXHDX) 305 res |= ANAR_TX; 306 if (bmsr & BMSR_10TFDX) 307 res |= ANAR_10_FD; 308 if (bmsr & BMSR_10THDX) 309 res |= ANAR_10; 310 if (bmsr & BMSR_1000) 311 res |= ANAR_1000_FD; 312 return (res); 313 } 314 315