FreeBSD/Linux Kernel Cross Reference
sys/dev/mii/nsphy.c
1 /* $NetBSD: nsphy.c,v 1.18 1999/07/14 23:57:36 thorpej 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
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 #include <sys/cdefs.h>
70 __FBSDID("$FreeBSD$");
71
72 /*
73 * driver for National Semiconductor's DP83840A ethernet 10/100 PHY
74 * Data Sheet available from www.national.com
75 */
76
77 #include <sys/param.h>
78 #include <sys/systm.h>
79 #include <sys/kernel.h>
80 #include <sys/socket.h>
81 #include <sys/errno.h>
82 #include <sys/module.h>
83 #include <sys/bus.h>
84
85 #include <net/if.h>
86 #include <net/if_media.h>
87
88 #include <dev/mii/mii.h>
89 #include <dev/mii/miivar.h>
90 #include "miidevs.h"
91
92 #include <dev/mii/nsphyreg.h>
93
94 #include "miibus_if.h"
95
96 static int nsphy_probe(device_t);
97 static int nsphy_attach(device_t);
98
99 static device_method_t nsphy_methods[] = {
100 /* device interface */
101 DEVMETHOD(device_probe, nsphy_probe),
102 DEVMETHOD(device_attach, nsphy_attach),
103 DEVMETHOD(device_detach, mii_phy_detach),
104 DEVMETHOD(device_shutdown, bus_generic_shutdown),
105 { 0, 0 }
106 };
107
108 static devclass_t nsphy_devclass;
109
110 static driver_t nsphy_driver = {
111 "nsphy",
112 nsphy_methods,
113 sizeof(struct mii_softc)
114 };
115
116 DRIVER_MODULE(nsphy, miibus, nsphy_driver, nsphy_devclass, 0, 0);
117
118 static int nsphy_service(struct mii_softc *, struct mii_data *, int);
119 static void nsphy_status(struct mii_softc *);
120 static void nsphy_reset(struct mii_softc *);
121
122 static const struct mii_phydesc nsphys[] = {
123 MII_PHY_DESC(NATSEMI, DP83840),
124 MII_PHY_END
125 };
126
127 static int
128 nsphy_probe(device_t dev)
129 {
130
131 return (mii_phy_dev_probe(dev, nsphys, BUS_PROBE_DEFAULT));
132 }
133
134 static int
135 nsphy_attach(device_t dev)
136 {
137 struct mii_softc *sc;
138 struct mii_attach_args *ma;
139 struct mii_data *mii;
140 const char *nic;
141
142 sc = device_get_softc(dev);
143 ma = device_get_ivars(dev);
144 sc->mii_dev = device_get_parent(dev);
145 mii = device_get_softc(sc->mii_dev);
146 LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
147
148 sc->mii_inst = mii->mii_instance;
149 sc->mii_phy = ma->mii_phyno;
150 sc->mii_service = nsphy_service;
151 sc->mii_pdata = mii;
152
153 mii->mii_instance++;
154
155 nic = device_get_name(device_get_parent(sc->mii_dev));
156 /*
157 * Am79C971 and i82557 wedge when isolating all of their
158 * (external) PHYs.
159 */
160 if (strcmp(nic, "fxp") == 0 || strcmp(nic, "pcn") == 0)
161 sc->mii_flags |= MIIF_NOISOLATE;
162
163 /*
164 * DP83840A used with HME chips don't advertise their media
165 * capabilities themselves properly so force writing the ANAR
166 * according to the BMSR in mii_phy_setmedia().
167 */
168 if (strcmp(nic, "hme") == 0)
169 sc->mii_flags |= MIIF_FORCEANEG;
170
171 #define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL)
172
173 /*
174 * In order for MII loopback to work Am79C971 and greater PCnet
175 * chips additionally need to be placed into external loopback
176 * mode which pcn(4) doesn't do so far.
177 */
178 if (strcmp(nic, "pcn") != 0)
179 #if 1
180 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_LOOP,
181 sc->mii_inst), MII_MEDIA_100_TX);
182 #else
183 if (strcmp(nic, "pcn") == 0)
184 sc->mii_flags |= MIIF_NOLOOP;
185 #endif
186
187 nsphy_reset(sc);
188
189 sc->mii_capabilities =
190 PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
191 device_printf(dev, " ");
192 mii_phy_add_media(sc);
193 printf("\n");
194 #undef ADD
195
196 MIIBUS_MEDIAINIT(sc->mii_dev);
197 return (0);
198 }
199
200 static int
201 nsphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
202 {
203 struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
204 int reg;
205
206 switch (cmd) {
207 case MII_POLLSTAT:
208 /*
209 * If we're not polling our PHY instance, just return.
210 */
211 if (IFM_INST(ife->ifm_media) != sc->mii_inst)
212 return (0);
213 break;
214
215 case MII_MEDIACHG:
216 /*
217 * If the media indicates a different PHY instance,
218 * isolate ourselves.
219 */
220 if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
221 reg = PHY_READ(sc, MII_BMCR);
222 PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
223 return (0);
224 }
225
226 /*
227 * If the interface is not up, don't do anything.
228 */
229 if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
230 break;
231
232 reg = PHY_READ(sc, MII_NSPHY_PCR);
233
234 /*
235 * Set up the PCR to use LED4 to indicate full-duplex
236 * in both 10baseT and 100baseTX modes.
237 */
238 reg |= PCR_LED4MODE;
239
240 /*
241 * Make sure Carrier Integrity Monitor function is
242 * disabled (normal for Node operation, but sometimes
243 * it's not set?!)
244 */
245 reg |= PCR_CIMDIS;
246
247 /*
248 * Make sure "force link good" is set to normal mode.
249 * It's only intended for debugging.
250 */
251 reg |= PCR_FLINK100;
252
253 /*
254 * Mystery bits which are supposedly `reserved',
255 * but we seem to need to set them when the PHY
256 * is connected to some interfaces:
257 *
258 * 0x0400 is needed for fxp
259 * (Intel EtherExpress Pro 10+/100B, 82557 chip)
260 * (nsphy with a DP83840 chip)
261 * 0x0100 may be needed for some other card
262 */
263 reg |= 0x0100 | 0x0400;
264
265 if (strcmp(mii->mii_ifp->if_dname, "fxp") == 0)
266 PHY_WRITE(sc, MII_NSPHY_PCR, reg);
267
268 mii_phy_setmedia(sc);
269 break;
270
271 case MII_TICK:
272 /*
273 * If we're not currently selected, just return.
274 */
275 if (IFM_INST(ife->ifm_media) != sc->mii_inst)
276 return (0);
277 if (mii_phy_tick(sc) == EJUSTRETURN)
278 return (0);
279 break;
280 }
281
282 /* Update the media status. */
283 nsphy_status(sc);
284
285 /* Callback if something changed. */
286 mii_phy_update(sc, cmd);
287 return (0);
288 }
289
290 static void
291 nsphy_status(struct mii_softc *sc)
292 {
293 struct mii_data *mii = sc->mii_pdata;
294 struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
295 int bmsr, bmcr, par, anlpar;
296
297 mii->mii_media_status = IFM_AVALID;
298 mii->mii_media_active = IFM_ETHER;
299
300 bmsr = PHY_READ(sc, MII_BMSR) |
301 PHY_READ(sc, MII_BMSR);
302 if (bmsr & BMSR_LINK)
303 mii->mii_media_status |= IFM_ACTIVE;
304
305 bmcr = PHY_READ(sc, MII_BMCR);
306 if (bmcr & BMCR_ISO) {
307 mii->mii_media_active |= IFM_NONE;
308 mii->mii_media_status = 0;
309 return;
310 }
311
312 if (bmcr & BMCR_LOOP)
313 mii->mii_media_active |= IFM_LOOP;
314
315 if (bmcr & BMCR_AUTOEN) {
316 /*
317 * The PAR status bits are only valid of autonegotiation
318 * has completed (or it's disabled).
319 */
320 if ((bmsr & BMSR_ACOMP) == 0) {
321 /* Erg, still trying, I guess... */
322 mii->mii_media_active |= IFM_NONE;
323 return;
324 }
325
326 /*
327 * Argh. The PAR doesn't seem to indicate duplex mode
328 * properly! Determine media based on link partner's
329 * advertised capabilities.
330 */
331 if (PHY_READ(sc, MII_ANER) & ANER_LPAN) {
332 anlpar = PHY_READ(sc, MII_ANAR) &
333 PHY_READ(sc, MII_ANLPAR);
334 if (anlpar & ANLPAR_T4)
335 mii->mii_media_active |= IFM_100_T4;
336 else if (anlpar & ANLPAR_TX_FD)
337 mii->mii_media_active |= IFM_100_TX|IFM_FDX;
338 else if (anlpar & ANLPAR_TX)
339 mii->mii_media_active |= IFM_100_TX;
340 else if (anlpar & ANLPAR_10_FD)
341 mii->mii_media_active |= IFM_10_T|IFM_FDX;
342 else if (anlpar & ANLPAR_10)
343 mii->mii_media_active |= IFM_10_T;
344 else
345 mii->mii_media_active |= IFM_NONE;
346 return;
347 }
348
349 /*
350 * Link partner is not capable of autonegotiation.
351 * We will never be in full-duplex mode if this is
352 * the case, so reading the PAR is OK.
353 */
354 par = PHY_READ(sc, MII_NSPHY_PAR);
355 if (par & PAR_10)
356 mii->mii_media_active |= IFM_10_T;
357 else
358 mii->mii_media_active |= IFM_100_TX;
359 #if 0
360 if (par & PAR_FDX)
361 mii->mii_media_active |= IFM_FDX;
362 #endif
363 } else
364 mii->mii_media_active = ife->ifm_media;
365 }
366
367 static void
368 nsphy_reset(struct mii_softc *sc)
369 {
370 struct ifmedia_entry *ife = sc->mii_pdata->mii_media.ifm_cur;
371 int reg, i;
372
373 if (sc->mii_flags & MIIF_NOISOLATE)
374 reg = BMCR_RESET;
375 else
376 reg = BMCR_RESET | BMCR_ISO;
377 PHY_WRITE(sc, MII_BMCR, reg);
378
379 /*
380 * Give it a little time to settle in case we just got power.
381 * The DP83840A data sheet suggests that a soft reset should not
382 * happen within 500us of power being applied. Be conservative.
383 */
384 DELAY(1000);
385
386 /*
387 * Wait another 2s for it to complete.
388 * This is only a little overkill as under normal circumstances
389 * the PHY can take up to 1s to complete reset.
390 * This is also a bit odd because after a reset, the BMCR will
391 * clear the reset bit and simply reports 0 even though the reset
392 * is not yet complete.
393 */
394 for (i = 0; i < 1000; i++) {
395 reg = PHY_READ(sc, MII_BMCR);
396 if (reg != 0 && (reg & BMCR_RESET) == 0)
397 break;
398 DELAY(2000);
399 }
400
401 if ((sc->mii_flags & MIIF_NOISOLATE) == 0) {
402 if ((ife == NULL && sc->mii_inst != 0) ||
403 (ife != NULL && IFM_INST(ife->ifm_media) != sc->mii_inst))
404 PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
405 }
406 }
Cache object: 6176c19ea7b9fc8759d0b82cdf5d13c8
|