1 /* 2 * Copyright (c) 2000 3 * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by Bill Paul. 16 * 4. Neither the name of the author nor the names of any co-contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD 24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 30 * THE POSSIBILITY OF SUCH DAMAGE. 31 * 32 * $FreeBSD$ 33 */ 34 35 /* 36 * Driver for the Broadcom BCR5400 1000baseTX PHY. Speed is always 37 * 1000mbps; all we need to negotiate here is full or half duplex. 38 */ 39 40 #include <sys/param.h> 41 #include <sys/systm.h> 42 #include <sys/kernel.h> 43 #include <sys/malloc.h> 44 #include <sys/socket.h> 45 #include <sys/bus.h> 46 47 48 #include <net/if.h> 49 #include <net/if_media.h> 50 51 #include <dev/mii/mii.h> 52 #include <dev/mii/miivar.h> 53 #include <dev/mii/miidevs.h> 54 55 #include <dev/mii/brgphyreg.h> 56 57 #include "miibus_if.h" 58 59 #if !defined(lint) 60 static const char rcsid[] = 61 "$FreeBSD$"; 62 #endif 63 64 static int brgphy_probe __P((device_t)); 65 static int brgphy_attach __P((device_t)); 66 static int brgphy_detach __P((device_t)); 67 68 static device_method_t brgphy_methods[] = { 69 /* device interface */ 70 DEVMETHOD(device_probe, brgphy_probe), 71 DEVMETHOD(device_attach, brgphy_attach), 72 DEVMETHOD(device_detach, brgphy_detach), 73 DEVMETHOD(device_shutdown, bus_generic_shutdown), 74 { 0, 0 } 75 }; 76 77 static devclass_t brgphy_devclass; 78 79 static driver_t brgphy_driver = { 80 "brgphy", 81 brgphy_methods, 82 sizeof(struct mii_softc) 83 }; 84 85 DRIVER_MODULE(brgphy, miibus, brgphy_driver, brgphy_devclass, 0, 0); 86 87 int brgphy_service __P((struct mii_softc *, struct mii_data *, int)); 88 void brgphy_status __P((struct mii_softc *)); 89 90 static int brgphy_mii_phy_auto __P((struct mii_softc *, int)); 91 extern void mii_phy_auto_timeout __P((void *)); 92 93 static int brgphy_probe(dev) 94 device_t dev; 95 { 96 struct mii_attach_args *ma; 97 98 ma = device_get_ivars(dev); 99 100 if (MII_OUI(ma->mii_id1, ma->mii_id2) != MII_OUI_xxBROADCOM || 101 MII_MODEL(ma->mii_id2) != MII_MODEL_xxBROADCOM_BCM5400) 102 return(ENXIO); 103 104 device_set_desc(dev, MII_STR_xxBROADCOM_BCM5400); 105 106 return(0); 107 } 108 109 static int brgphy_attach(dev) 110 device_t dev; 111 { 112 struct mii_softc *sc; 113 struct mii_attach_args *ma; 114 struct mii_data *mii; 115 const char *sep = ""; 116 117 sc = device_get_softc(dev); 118 ma = device_get_ivars(dev); 119 sc->mii_dev = device_get_parent(dev); 120 mii = device_get_softc(sc->mii_dev); 121 LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list); 122 123 sc->mii_inst = mii->mii_instance; 124 sc->mii_phy = ma->mii_phyno; 125 sc->mii_service = brgphy_service; 126 sc->mii_pdata = mii; 127 128 sc->mii_flags |= MIIF_NOISOLATE; 129 mii->mii_instance++; 130 131 #define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL) 132 #define PRINT(s) printf("%s%s", sep, s); sep = ", " 133 134 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst), 135 BMCR_ISO); 136 #if 0 137 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_LOOP, sc->mii_inst), 138 BMCR_LOOP|BMCR_S100); 139 #endif 140 141 mii_phy_reset(sc); 142 143 device_printf(dev, " "); 144 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_TX, 0, sc->mii_inst), 145 BRGPHY_BMCR_FDX); 146 PRINT("1000baseTX"); 147 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_TX, IFM_FDX, sc->mii_inst), 0); 148 PRINT("1000baseTX-FDX"); 149 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst), 0); 150 PRINT("auto"); 151 152 printf("\n"); 153 #undef ADD 154 #undef PRINT 155 156 MIIBUS_MEDIAINIT(sc->mii_dev); 157 return(0); 158 } 159 160 static int brgphy_detach(dev) 161 device_t dev; 162 { 163 struct mii_softc *sc; 164 struct mii_data *mii; 165 166 sc = device_get_softc(dev); 167 mii = device_get_softc(device_get_parent(dev)); 168 if (sc->mii_flags & MIIF_DOINGAUTO) 169 untimeout(mii_phy_auto_timeout, sc, sc->mii_auto_ch); 170 sc->mii_dev = NULL; 171 LIST_REMOVE(sc, mii_list); 172 173 return(0); 174 } 175 int 176 brgphy_service(sc, mii, cmd) 177 struct mii_softc *sc; 178 struct mii_data *mii; 179 int cmd; 180 { 181 struct ifmedia_entry *ife = mii->mii_media.ifm_cur; 182 int reg; 183 184 switch (cmd) { 185 case MII_POLLSTAT: 186 /* 187 * If we're not polling our PHY instance, just return. 188 */ 189 if (IFM_INST(ife->ifm_media) != sc->mii_inst) 190 return (0); 191 break; 192 193 case MII_MEDIACHG: 194 /* 195 * If the media indicates a different PHY instance, 196 * isolate ourselves. 197 */ 198 if (IFM_INST(ife->ifm_media) != sc->mii_inst) { 199 reg = PHY_READ(sc, MII_BMCR); 200 PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO); 201 return (0); 202 } 203 204 /* 205 * If the interface is not up, don't do anything. 206 */ 207 if ((mii->mii_ifp->if_flags & IFF_UP) == 0) 208 break; 209 210 PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL, 211 BRGPHY_PHY_EXTCTL_HIGH_LA|BRGPHY_PHY_EXTCTL_EN_LTR); 212 PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 213 BRGPHY_AUXCTL_LONG_PKT|BRGPHY_AUXCTL_TX_TST); 214 PHY_WRITE(sc, BRGPHY_MII_IMR, 0xFF00); 215 216 switch (IFM_SUBTYPE(ife->ifm_media)) { 217 case IFM_AUTO: 218 #ifdef foo 219 /* 220 * If we're already in auto mode, just return. 221 */ 222 if (PHY_READ(sc, BRGPHY_MII_BMCR) & BRGPHY_BMCR_AUTOEN) 223 return (0); 224 #endif 225 (void) brgphy_mii_phy_auto(sc, 1); 226 break; 227 case IFM_1000_TX: 228 if ((ife->ifm_media & IFM_GMASK) == IFM_FDX) { 229 PHY_WRITE(sc, BRGPHY_MII_BMCR, 230 BRGPHY_BMCR_FDX|BRGPHY_BMCR_SPD1); 231 } else { 232 PHY_WRITE(sc, BRGPHY_MII_BMCR, 233 BRGPHY_BMCR_SPD1); 234 } 235 PHY_WRITE(sc, BRGPHY_MII_ANAR, BRGPHY_SEL_TYPE); 236 237 /* 238 * When settning the link manually, one side must 239 * be the master and the other the slave. However 240 * ifmedia doesn't give us a good way to specify 241 * this, so we fake it by using one of the LINK 242 * flags. If LINK0 is set, we program the PHY to 243 * be a master, otherwise it's a slave. 244 */ 245 if ((mii->mii_ifp->if_flags & IFF_LINK0)) { 246 PHY_WRITE(sc, BRGPHY_MII_1000CTL, 247 BRGPHY_1000CTL_MSE|BRGPHY_1000CTL_MSC); 248 } else { 249 PHY_WRITE(sc, BRGPHY_MII_1000CTL, 250 BRGPHY_1000CTL_MSE); 251 } 252 break; 253 case IFM_100_T4: 254 case IFM_100_TX: 255 case IFM_10_T: 256 default: 257 return (EINVAL); 258 } 259 break; 260 261 case MII_TICK: 262 /* 263 * If we're not currently selected, just return. 264 */ 265 if (IFM_INST(ife->ifm_media) != sc->mii_inst) 266 return (0); 267 268 /* 269 * Only used for autonegotiation. 270 */ 271 if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO) 272 return (0); 273 274 /* 275 * Is the interface even up? 276 */ 277 if ((mii->mii_ifp->if_flags & IFF_UP) == 0) 278 return (0); 279 280 /* 281 * Only retry autonegotiation every 5 seconds. 282 */ 283 if (++sc->mii_ticks != 5) 284 return (0); 285 286 sc->mii_ticks = 0; 287 288 /* 289 * Check to see if we have link. If we do, we don't 290 * need to restart the autonegotiation process. Read 291 * the BMSR twice in case it's latched. 292 */ 293 reg = PHY_READ(sc, BRGPHY_MII_AUXSTS); 294 if (reg & BRGPHY_AUXSTS_LINK) 295 break; 296 297 mii_phy_reset(sc); 298 if (brgphy_mii_phy_auto(sc, 0) == EJUSTRETURN) 299 return(0); 300 break; 301 } 302 303 /* Update the media status. */ 304 brgphy_status(sc); 305 306 /* Callback if something changed. */ 307 if (sc->mii_active != mii->mii_media_active || cmd == MII_MEDIACHG) { 308 MIIBUS_STATCHG(sc->mii_dev); 309 sc->mii_active = mii->mii_media_active; 310 } 311 return (0); 312 } 313 314 void 315 brgphy_status(sc) 316 struct mii_softc *sc; 317 { 318 struct mii_data *mii = sc->mii_pdata; 319 int bmsr, bmcr, anlpar; 320 321 mii->mii_media_status = IFM_AVALID; 322 mii->mii_media_active = IFM_ETHER; 323 324 bmsr = PHY_READ(sc, BRGPHY_MII_BMSR); 325 if (PHY_READ(sc, BRGPHY_MII_AUXSTS) & BRGPHY_AUXSTS_LINK) 326 mii->mii_media_status |= IFM_ACTIVE; 327 328 bmcr = PHY_READ(sc, BRGPHY_MII_BMCR); 329 330 if (bmcr & BRGPHY_BMCR_LOOP) 331 mii->mii_media_active |= IFM_LOOP; 332 333 if (bmcr & BRGPHY_BMCR_AUTOEN) { 334 if ((bmsr & BRGPHY_BMSR_ACOMP) == 0) { 335 /* Erg, still trying, I guess... */ 336 mii->mii_media_active |= IFM_NONE; 337 return; 338 } 339 340 mii->mii_media_active |= IFM_1000_TX; 341 anlpar = PHY_READ(sc, BRGPHY_MII_AUXSTS); 342 if ((anlpar & BRGPHY_AUXSTS_AN_RES) == BRGPHY_RES_1000FD) 343 mii->mii_media_active |= IFM_FDX; 344 if ((anlpar & BRGPHY_AUXSTS_AN_RES) == BRGPHY_RES_1000HD) 345 mii->mii_media_active |= IFM_HDX; 346 return; 347 } 348 349 mii->mii_media_active |= IFM_1000_TX; 350 if (bmcr & BRGPHY_BMCR_FDX) 351 mii->mii_media_active |= IFM_FDX; 352 else 353 mii->mii_media_active |= IFM_HDX; 354 355 return; 356 } 357 358 359 static int 360 brgphy_mii_phy_auto(mii, waitfor) 361 struct mii_softc *mii; 362 int waitfor; 363 { 364 int bmsr, i; 365 366 if ((mii->mii_flags & MIIF_DOINGAUTO) == 0) { 367 PHY_WRITE(mii, BRGPHY_MII_1000CTL, 368 BRGPHY_1000CTL_AFD|BRGPHY_1000CTL_AHD); 369 PHY_WRITE(mii, BRGPHY_MII_ANAR, BRGPHY_SEL_TYPE); 370 PHY_WRITE(mii, BRGPHY_MII_BMCR, 371 BRGPHY_BMCR_AUTOEN | BRGPHY_BMCR_STARTNEG); 372 PHY_WRITE(mii, BRGPHY_MII_IMR, 0xFF00); 373 } 374 375 if (waitfor) { 376 /* Wait 500ms for it to complete. */ 377 for (i = 0; i < 500; i++) { 378 if ((bmsr = PHY_READ(mii, BRGPHY_MII_BMSR)) & 379 BRGPHY_BMSR_ACOMP) 380 return (0); 381 DELAY(1000); 382 #if 0 383 if ((bmsr & BMSR_ACOMP) == 0) 384 printf("%s: autonegotiation failed to complete\n", 385 mii->mii_dev.dv_xname); 386 #endif 387 } 388 389 /* 390 * Don't need to worry about clearing MIIF_DOINGAUTO. 391 * If that's set, a timeout is pending, and it will 392 * clear the flag. 393 */ 394 return (EIO); 395 } 396 397 /* 398 * Just let it finish asynchronously. This is for the benefit of 399 * the tick handler driving autonegotiation. Don't want 500ms 400 * delays all the time while the system is running! 401 */ 402 if ((mii->mii_flags & MIIF_DOINGAUTO) == 0) { 403 mii->mii_flags |= MIIF_DOINGAUTO; 404 mii->mii_auto_ch = timeout(mii_phy_auto_timeout, mii, hz >> 1); 405 } 406 return (EJUSTRETURN); 407 } 408