1 /* 2 * Copyright (c) 1997, 1998, 1999 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 AMD AM79c873 PHYs 37 * This driver also works for the Davicom DM9101 PHY, which appears to 38 * be an AM79c873 workalike. 39 */ 40 41 #include <sys/param.h> 42 #include <sys/systm.h> 43 #include <sys/kernel.h> 44 #include <sys/socket.h> 45 #include <sys/bus.h> 46 47 #include <net/if.h> 48 #include <net/if_media.h> 49 50 #include <dev/mii/mii.h> 51 #include <dev/mii/miivar.h> 52 #include <dev/mii/miidevs.h> 53 54 #include <dev/mii/amphyreg.h> 55 56 #include "miibus_if.h" 57 58 #if !defined(lint) 59 static const char rcsid[] = 60 "$FreeBSD$"; 61 #endif 62 63 static int amphy_probe __P((device_t)); 64 static int amphy_attach __P((device_t)); 65 static int amphy_detach __P((device_t)); 66 67 static device_method_t amphy_methods[] = { 68 /* device interface */ 69 DEVMETHOD(device_probe, amphy_probe), 70 DEVMETHOD(device_attach, amphy_attach), 71 DEVMETHOD(device_detach, amphy_detach), 72 DEVMETHOD(device_shutdown, bus_generic_shutdown), 73 { 0, 0 } 74 }; 75 76 static devclass_t amphy_devclass; 77 78 static driver_t amphy_driver = { 79 "amphy", 80 amphy_methods, 81 sizeof(struct mii_softc) 82 }; 83 84 DRIVER_MODULE(amphy, miibus, amphy_driver, amphy_devclass, 0, 0); 85 86 int amphy_service __P((struct mii_softc *, struct mii_data *, int)); 87 void amphy_status __P((struct mii_softc *)); 88 89 static int amphy_probe(dev) 90 device_t dev; 91 { 92 struct mii_attach_args *ma; 93 94 ma = device_get_ivars(dev); 95 96 if ((MII_OUI(ma->mii_id1, ma->mii_id2) != MII_OUI_xxAMD || 97 MII_MODEL(ma->mii_id2) != MII_MODEL_xxAMD_79C873) && 98 (MII_OUI(ma->mii_id1, ma->mii_id2) != MII_OUI_xxDAVICOM || 99 MII_MODEL(ma->mii_id2) != MII_MODEL_xxDAVICOM_DM9101)) 100 return(ENXIO); 101 102 if (MII_OUI(ma->mii_id1, ma->mii_id2) == MII_OUI_xxAMD) 103 device_set_desc(dev, MII_STR_xxAMD_79C873); 104 else if (MII_OUI(ma->mii_id1, ma->mii_id2) == MII_OUI_xxDAVICOM) 105 device_set_desc(dev, MII_STR_xxDAVICOM_DM9101); 106 107 return(0); 108 } 109 110 static int amphy_attach(dev) 111 device_t dev; 112 { 113 struct mii_softc *sc; 114 struct mii_attach_args *ma; 115 struct mii_data *mii; 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 = amphy_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 133 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst), 134 BMCR_ISO); 135 #if 0 136 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_LOOP, sc->mii_inst), 137 BMCR_LOOP|BMCR_S100); 138 #endif 139 140 mii_phy_reset(sc); 141 142 sc->mii_capabilities = 143 PHY_READ(sc, MII_BMSR) & ma->mii_capmask; 144 device_printf(dev, " "); 145 if ((sc->mii_capabilities & BMSR_MEDIAMASK) == 0) 146 printf("no media present"); 147 else 148 mii_add_media(mii, sc->mii_capabilities, 149 sc->mii_inst); 150 printf("\n"); 151 #undef ADD 152 MIIBUS_MEDIAINIT(sc->mii_dev); 153 return(0); 154 } 155 156 static int amphy_detach(dev) 157 device_t dev; 158 { 159 struct mii_softc *sc; 160 struct mii_data *mii; 161 162 sc = device_get_softc(dev); 163 mii = device_get_softc(device_get_parent(dev)); 164 sc->mii_dev = NULL; 165 LIST_REMOVE(sc, mii_list); 166 167 return(0); 168 } 169 int 170 amphy_service(sc, mii, cmd) 171 struct mii_softc *sc; 172 struct mii_data *mii; 173 int cmd; 174 { 175 struct ifmedia_entry *ife = mii->mii_media.ifm_cur; 176 int reg; 177 178 switch (cmd) { 179 case MII_POLLSTAT: 180 /* 181 * If we're not polling our PHY instance, just return. 182 */ 183 if (IFM_INST(ife->ifm_media) != sc->mii_inst) 184 return (0); 185 break; 186 187 case MII_MEDIACHG: 188 /* 189 * If the media indicates a different PHY instance, 190 * isolate ourselves. 191 */ 192 if (IFM_INST(ife->ifm_media) != sc->mii_inst) { 193 reg = PHY_READ(sc, MII_BMCR); 194 PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO); 195 return (0); 196 } 197 198 /* 199 * If the interface is not up, don't do anything. 200 */ 201 if ((mii->mii_ifp->if_flags & IFF_UP) == 0) 202 break; 203 204 switch (IFM_SUBTYPE(ife->ifm_media)) { 205 case IFM_AUTO: 206 /* 207 * If we're already in auto mode, just return. 208 */ 209 if (PHY_READ(sc, MII_BMCR) & BMCR_AUTOEN) 210 return (0); 211 (void) mii_phy_auto(sc, 1); 212 break; 213 case IFM_100_T4: 214 /* 215 * XXX Not supported as a manual setting right now. 216 */ 217 return (EINVAL); 218 default: 219 /* 220 * BMCR data is stored in the ifmedia entry. 221 */ 222 PHY_WRITE(sc, MII_ANAR, 223 mii_anar(ife->ifm_media)); 224 PHY_WRITE(sc, MII_BMCR, ife->ifm_data); 225 } 226 break; 227 228 case MII_TICK: 229 /* 230 * If we're not currently selected, just return. 231 */ 232 if (IFM_INST(ife->ifm_media) != sc->mii_inst) 233 return (0); 234 235 /* 236 * Only used for autonegotiation. 237 */ 238 if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO) 239 return (0); 240 241 /* 242 * Is the interface even up? 243 */ 244 if ((mii->mii_ifp->if_flags & IFF_UP) == 0) 245 return (0); 246 247 /* 248 * Only retry autonegotiation every 5 seconds. 249 */ 250 if (++sc->mii_ticks != 5) 251 return (0); 252 253 sc->mii_ticks = 0; 254 255 /* 256 * Check to see if we have link. If we do, we don't 257 * need to restart the autonegotiation process. Read 258 * the BMSR twice in case it's latched. 259 */ 260 reg = PHY_READ(sc, MII_BMSR) | 261 PHY_READ(sc, MII_BMSR); 262 if (reg & BMSR_LINK) 263 break; 264 265 mii_phy_reset(sc); 266 if (mii_phy_auto(sc, 0) == EJUSTRETURN) 267 return(0); 268 break; 269 } 270 271 /* Update the media status. */ 272 amphy_status(sc); 273 274 /* Callback if something changed. */ 275 if (sc->mii_active != mii->mii_media_active || cmd == MII_MEDIACHG) { 276 MIIBUS_STATCHG(sc->mii_dev); 277 sc->mii_active = mii->mii_media_active; 278 } 279 return (0); 280 } 281 282 void 283 amphy_status(sc) 284 struct mii_softc *sc; 285 { 286 struct mii_data *mii = sc->mii_pdata; 287 int bmsr, bmcr, par, anlpar; 288 289 mii->mii_media_status = IFM_AVALID; 290 mii->mii_media_active = IFM_ETHER; 291 292 bmsr = PHY_READ(sc, MII_BMSR) | 293 PHY_READ(sc, MII_BMSR); 294 if (bmsr & BMSR_LINK) 295 mii->mii_media_status |= IFM_ACTIVE; 296 297 bmcr = PHY_READ(sc, MII_BMCR); 298 if (bmcr & BMCR_ISO) { 299 mii->mii_media_active |= IFM_NONE; 300 mii->mii_media_status = 0; 301 return; 302 } 303 304 if (bmcr & BMCR_LOOP) 305 mii->mii_media_active |= IFM_LOOP; 306 307 if (bmcr & BMCR_AUTOEN) { 308 /* 309 * The PAR status bits are only valid of autonegotiation 310 * has completed (or it's disabled). 311 */ 312 if ((bmsr & BMSR_ACOMP) == 0) { 313 /* Erg, still trying, I guess... */ 314 mii->mii_media_active |= IFM_NONE; 315 return; 316 } 317 318 if (PHY_READ(sc, MII_ANER) & ANER_LPAN) { 319 anlpar = PHY_READ(sc, MII_ANAR) & 320 PHY_READ(sc, MII_ANLPAR); 321 if (anlpar & ANLPAR_T4) 322 mii->mii_media_active |= IFM_100_T4; 323 else if (anlpar & ANLPAR_TX_FD) 324 mii->mii_media_active |= IFM_100_TX|IFM_FDX; 325 else if (anlpar & ANLPAR_TX) 326 mii->mii_media_active |= IFM_100_TX; 327 else if (anlpar & ANLPAR_10_FD) 328 mii->mii_media_active |= IFM_10_T|IFM_FDX; 329 else if (anlpar & ANLPAR_10) 330 mii->mii_media_active |= IFM_10_T; 331 else 332 mii->mii_media_active |= IFM_NONE; 333 return; 334 } 335 336 /* 337 * Link partner is not capable of autonegotiation. 338 */ 339 par = PHY_READ(sc, MII_AMPHY_DSCSR); 340 if (par & DSCSR_100FDX) 341 mii->mii_media_active |= IFM_100_TX|IFM_FDX; 342 else if (par & DSCSR_100HDX) 343 mii->mii_media_active |= IFM_100_TX; 344 else if (par & DSCSR_10FDX) 345 mii->mii_media_active |= IFM_10_T|IFM_HDX; 346 else if (par & DSCSR_10HDX) 347 mii->mii_media_active |= IFM_10_T; 348 } else 349 mii->mii_media_active = mii_media_from_bmcr(bmcr); 350 } 351