1 /* $NetBSD: gentbi.c,v 1.15 2006/03/29 07:05:24 thorpej Exp $ */ 2 3 /*- 4 * Copyright (c) 1998, 1999, 2000, 2001 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 40 /* 41 * Copyright (c) 1997 Manuel Bouyer. All rights reserved. 42 * 43 * Redistribution and use in source and binary forms, with or without 44 * modification, are permitted provided that the following conditions 45 * are met: 46 * 1. Redistributions of source code must retain the above copyright 47 * notice, this list of conditions and the following disclaimer. 48 * 2. Redistributions in binary form must reproduce the above copyright 49 * notice, this list of conditions and the following disclaimer in the 50 * documentation and/or other materials provided with the distribution. 51 * 3. All advertising materials mentioning features or use of this software 52 * must display the following acknowledgement: 53 * This product includes software developed by Manuel Bouyer. 54 * 4. The name of the author may not be used to endorse or promote products 55 * derived from this software without specific prior written permission. 56 * 57 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 58 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 59 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 60 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 61 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 62 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 63 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 64 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 65 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 66 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 67 */ 68 69 /* 70 * Driver for generic ten-bit (1000BASE-SX) interfaces, built in to 71 * many Gigabit Ethernet chips. 72 * 73 * All we have to do here is correctly report speed and duplex. 74 */ 75 76 #include <sys/cdefs.h> 77 __FBSDID("$FreeBSD$"); 78 79 /* 80 * Driver for generic unknown ten-bit interfaces(1000BASE-{LX,SX} 81 * fiber interfaces). 82 */ 83 84 #include <sys/param.h> 85 #include <sys/systm.h> 86 #include <sys/kernel.h> 87 #include <sys/module.h> 88 #include <sys/socket.h> 89 #include <sys/errno.h> 90 #include <sys/bus.h> 91 92 #include <net/if.h> 93 #include <net/if_media.h> 94 95 #include <dev/mii/mii.h> 96 #include <dev/mii/miivar.h> 97 #include "miidevs.h" 98 99 #include "miibus_if.h" 100 101 static int gentbi_probe(device_t); 102 static int gentbi_attach(device_t); 103 104 static device_method_t gentbi_methods[] = { 105 /* device interface */ 106 DEVMETHOD(device_probe, gentbi_probe), 107 DEVMETHOD(device_attach, gentbi_attach), 108 DEVMETHOD(device_detach, mii_phy_detach), 109 DEVMETHOD(device_shutdown, bus_generic_shutdown), 110 {0, 0} 111 }; 112 113 static devclass_t gentbi_devclass; 114 115 static driver_t gentbi_driver = { 116 "gentbi", 117 gentbi_methods, 118 sizeof(struct mii_softc) 119 }; 120 121 DRIVER_MODULE(gentbi, miibus, gentbi_driver, gentbi_devclass, 0, 0); 122 123 static int gentbi_service(struct mii_softc *, struct mii_data *, int); 124 static void gentbi_status(struct mii_softc *); 125 126 static int 127 gentbi_probe(device_t dev) 128 { 129 device_t parent; 130 struct mii_attach_args *ma; 131 int bmsr, extsr; 132 133 parent = device_get_parent(dev); 134 ma = device_get_ivars(dev); 135 136 /* 137 * We match as a generic TBI if: 138 * 139 * - There is no media in the BMSR. 140 * - EXTSR has only 1000X. 141 */ 142 bmsr = MIIBUS_READREG(parent, ma->mii_phyno, MII_BMSR); 143 if ((bmsr & BMSR_EXTSTAT) == 0 || (bmsr & BMSR_MEDIAMASK) != 0) 144 return (ENXIO); 145 146 extsr = MIIBUS_READREG(parent, ma->mii_phyno, MII_EXTSR); 147 if (extsr & (EXTSR_1000TFDX|EXTSR_1000THDX)) 148 return (ENXIO); 149 150 if (extsr & (EXTSR_1000XFDX|EXTSR_1000XHDX)) { 151 /* 152 * We think this is a generic TBI. Return a match 153 * priority higher than ukphy, but lower than what 154 * specific drivers will return. 155 */ 156 device_set_desc(dev, "Generic ten-bit interface"); 157 return (BUS_PROBE_LOW_PRIORITY); 158 } 159 160 return (ENXIO); 161 } 162 163 static int 164 gentbi_attach(device_t dev) 165 { 166 struct mii_softc *sc; 167 struct mii_attach_args *ma; 168 struct mii_data *mii; 169 170 sc = device_get_softc(dev); 171 ma = device_get_ivars(dev); 172 sc->mii_dev = device_get_parent(dev); 173 mii = device_get_softc(sc->mii_dev); 174 LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list); 175 176 if (bootverbose) 177 device_printf(dev, "OUI 0x%06x, model 0x%04x, rev. %d\n", 178 MII_OUI(ma->mii_id1, ma->mii_id2), 179 MII_MODEL(ma->mii_id2), MII_REV(ma->mii_id2)); 180 181 sc->mii_inst = mii->mii_instance; 182 sc->mii_phy = ma->mii_phyno; 183 sc->mii_service = gentbi_service; 184 sc->mii_pdata = mii; 185 sc->mii_flags |= MIIF_NOISOLATE; 186 187 mii->mii_instance++; 188 189 mii_phy_reset(sc); 190 191 /* 192 * Mask out all media in the BMSR. We only are really interested 193 * in "auto". 194 */ 195 sc->mii_capabilities = 196 PHY_READ(sc, MII_BMSR) & ma->mii_capmask & ~BMSR_MEDIAMASK; 197 if (sc->mii_capabilities & BMSR_EXTSTAT) 198 sc->mii_extcapabilities = PHY_READ(sc, MII_EXTSR); 199 200 device_printf(dev, " "); 201 if ((sc->mii_capabilities & BMSR_MEDIAMASK) == 0 && 202 (sc->mii_extcapabilities & EXTSR_MEDIAMASK) == 0) 203 printf("no media present"); 204 else 205 mii_phy_add_media(sc); 206 printf("\n"); 207 208 return (0); 209 } 210 211 static int 212 gentbi_service(struct mii_softc *sc, struct mii_data *mii, int cmd) 213 { 214 struct ifmedia_entry *ife = mii->mii_media.ifm_cur; 215 int reg; 216 217 switch (cmd) { 218 case MII_POLLSTAT: 219 /* 220 * If we're not polling our PHY instance, just return. 221 */ 222 if (IFM_INST(ife->ifm_media) != sc->mii_inst) 223 return (0); 224 break; 225 226 case MII_MEDIACHG: 227 /* 228 * If the media indicates a different PHY instance, 229 * isolate ourselves. 230 */ 231 if (IFM_INST(ife->ifm_media) != sc->mii_inst) { 232 reg = PHY_READ(sc, MII_BMCR); 233 PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO); 234 return (0); 235 } 236 237 /* 238 * If the interface is not up, don't do anything. 239 */ 240 if ((mii->mii_ifp->if_flags & IFF_UP) == 0) 241 break; 242 243 mii_phy_setmedia(sc); 244 break; 245 246 case MII_TICK: 247 /* 248 * If we're not currently selected, just return. 249 */ 250 if (IFM_INST(ife->ifm_media) != sc->mii_inst) 251 return (0); 252 253 if (mii_phy_tick(sc) == EJUSTRETURN) 254 return (0); 255 break; 256 } 257 258 /* Update the media status. */ 259 gentbi_status(sc); 260 261 /* Callback if something changed. */ 262 mii_phy_update(sc, cmd); 263 return (0); 264 } 265 266 static void 267 gentbi_status(struct mii_softc *sc) 268 { 269 struct mii_data *mii = sc->mii_pdata; 270 struct ifmedia_entry *ife = mii->mii_media.ifm_cur; 271 int bmsr, bmcr, anlpar; 272 273 mii->mii_media_status = IFM_AVALID; 274 mii->mii_media_active = IFM_ETHER; 275 276 bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR); 277 278 if (bmsr & BMSR_LINK) 279 mii->mii_media_status |= IFM_ACTIVE; 280 281 bmcr = PHY_READ(sc, MII_BMCR); 282 if (bmcr & BMCR_ISO) { 283 mii->mii_media_active |= IFM_NONE; 284 mii->mii_media_status = 0; 285 return; 286 } 287 288 if (bmcr & BMCR_LOOP) 289 mii->mii_media_active |= IFM_LOOP; 290 291 if (bmcr & BMCR_AUTOEN) { 292 /* 293 * The media status bits are only valid of autonegotiation 294 * has completed (or it's disabled). 295 */ 296 if ((bmsr & BMSR_ACOMP) == 0) { 297 /* Erg, still trying, I guess... */ 298 mii->mii_media_active |= IFM_NONE; 299 return; 300 } 301 302 /* 303 * The media is always 1000baseSX. Check the ANLPAR to 304 * see if we're doing full-duplex. 305 */ 306 mii->mii_media_active |= IFM_1000_SX; 307 308 anlpar = PHY_READ(sc, MII_ANLPAR); 309 if ((sc->mii_extcapabilities & EXTSR_1000XFDX) != 0 && 310 (anlpar & ANLPAR_X_FD) != 0) 311 mii->mii_media_active |= IFM_FDX; 312 } else 313 mii->mii_media_active = ife->ifm_media; 314 } 315