nsphy.c revision 1.27 1 1.27 thorpej /* $NetBSD: nsphy.c,v 1.27 2000/07/04 03:28:59 thorpej Exp $ */
2 1.5 thorpej
3 1.5 thorpej /*-
4 1.27 thorpej * Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
5 1.5 thorpej * All rights reserved.
6 1.5 thorpej *
7 1.5 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.5 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.5 thorpej * NASA Ames Research Center.
10 1.5 thorpej *
11 1.5 thorpej * Redistribution and use in source and binary forms, with or without
12 1.5 thorpej * modification, are permitted provided that the following conditions
13 1.5 thorpej * are met:
14 1.5 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.5 thorpej * notice, this list of conditions and the following disclaimer.
16 1.5 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.5 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.5 thorpej * documentation and/or other materials provided with the distribution.
19 1.5 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.5 thorpej * must display the following acknowledgement:
21 1.5 thorpej * This product includes software developed by the NetBSD
22 1.5 thorpej * Foundation, Inc. and its contributors.
23 1.5 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.5 thorpej * contributors may be used to endorse or promote products derived
25 1.5 thorpej * from this software without specific prior written permission.
26 1.5 thorpej *
27 1.5 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.5 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.5 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.5 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.5 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.5 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.5 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.5 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.5 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.5 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.5 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.5 thorpej */
39 1.5 thorpej
40 1.1 bouyer /*
41 1.1 bouyer * Copyright (c) 1997 Manuel Bouyer. All rights reserved.
42 1.1 bouyer *
43 1.1 bouyer * Redistribution and use in source and binary forms, with or without
44 1.1 bouyer * modification, are permitted provided that the following conditions
45 1.1 bouyer * are met:
46 1.1 bouyer * 1. Redistributions of source code must retain the above copyright
47 1.1 bouyer * notice, this list of conditions and the following disclaimer.
48 1.1 bouyer * 2. Redistributions in binary form must reproduce the above copyright
49 1.1 bouyer * notice, this list of conditions and the following disclaimer in the
50 1.1 bouyer * documentation and/or other materials provided with the distribution.
51 1.1 bouyer * 3. All advertising materials mentioning features or use of this software
52 1.1 bouyer * must display the following acknowledgement:
53 1.2 thorpej * This product includes software developed by Manuel Bouyer.
54 1.1 bouyer * 4. The name of the author may not be used to endorse or promote products
55 1.1 bouyer * derived from this software without specific prior written permission.
56 1.1 bouyer *
57 1.1 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
58 1.1 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
59 1.1 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
60 1.1 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
61 1.1 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
62 1.1 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
63 1.1 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
64 1.1 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
65 1.1 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
66 1.1 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
67 1.1 bouyer */
68 1.1 bouyer
69 1.5 thorpej /*
70 1.5 thorpej * driver for National Semiconductor's DP83840A ethernet 10/100 PHY
71 1.5 thorpej * Data Sheet available from www.national.com
72 1.5 thorpej */
73 1.1 bouyer
74 1.1 bouyer #include <sys/param.h>
75 1.1 bouyer #include <sys/systm.h>
76 1.1 bouyer #include <sys/kernel.h>
77 1.1 bouyer #include <sys/device.h>
78 1.1 bouyer #include <sys/malloc.h>
79 1.1 bouyer #include <sys/socket.h>
80 1.17 thorpej #include <sys/errno.h>
81 1.5 thorpej
82 1.1 bouyer #include <net/if.h>
83 1.1 bouyer #include <net/if_media.h>
84 1.1 bouyer
85 1.5 thorpej #include <dev/mii/mii.h>
86 1.5 thorpej #include <dev/mii/miivar.h>
87 1.5 thorpej #include <dev/mii/miidevs.h>
88 1.5 thorpej
89 1.5 thorpej #include <dev/mii/nsphyreg.h>
90 1.5 thorpej
91 1.2 thorpej int nsphymatch __P((struct device *, struct cfdata *, void *));
92 1.2 thorpej void nsphyattach __P((struct device *, struct device *, void *));
93 1.1 bouyer
94 1.1 bouyer struct cfattach nsphy_ca = {
95 1.22 thorpej sizeof(struct mii_softc), nsphymatch, nsphyattach, mii_phy_detach,
96 1.22 thorpej mii_phy_activate
97 1.1 bouyer };
98 1.1 bouyer
99 1.5 thorpej int nsphy_service __P((struct mii_softc *, struct mii_data *, int));
100 1.15 thorpej void nsphy_status __P((struct mii_softc *));
101 1.5 thorpej
102 1.27 thorpej const struct mii_phy_funcs nsphy_funcs = {
103 1.27 thorpej nsphy_service, nsphy_status, mii_phy_reset,
104 1.27 thorpej };
105 1.27 thorpej
106 1.1 bouyer int
107 1.1 bouyer nsphymatch(parent, match, aux)
108 1.2 thorpej struct device *parent;
109 1.1 bouyer struct cfdata *match;
110 1.1 bouyer void *aux;
111 1.1 bouyer {
112 1.5 thorpej struct mii_attach_args *ma = aux;
113 1.5 thorpej
114 1.5 thorpej if (MII_OUI(ma->mii_id1, ma->mii_id2) == MII_OUI_NATSEMI &&
115 1.5 thorpej MII_MODEL(ma->mii_id2) == MII_MODEL_NATSEMI_DP83840)
116 1.14 thorpej return (10);
117 1.1 bouyer
118 1.5 thorpej return (0);
119 1.1 bouyer }
120 1.1 bouyer
121 1.1 bouyer void
122 1.1 bouyer nsphyattach(parent, self, aux)
123 1.2 thorpej struct device *parent, *self;
124 1.1 bouyer void *aux;
125 1.1 bouyer {
126 1.15 thorpej struct mii_softc *sc = (struct mii_softc *)self;
127 1.5 thorpej struct mii_attach_args *ma = aux;
128 1.5 thorpej struct mii_data *mii = ma->mii_data;
129 1.5 thorpej
130 1.5 thorpej printf(": %s, rev. %d\n", MII_STR_NATSEMI_DP83840,
131 1.5 thorpej MII_REV(ma->mii_id2));
132 1.5 thorpej
133 1.15 thorpej sc->mii_inst = mii->mii_instance;
134 1.15 thorpej sc->mii_phy = ma->mii_phyno;
135 1.27 thorpej sc->mii_funcs = &nsphy_funcs;
136 1.15 thorpej sc->mii_pdata = mii;
137 1.23 thorpej sc->mii_flags = mii->mii_flags;
138 1.13 thorpej
139 1.27 thorpej PHY_RESET(sc);
140 1.5 thorpej
141 1.15 thorpej sc->mii_capabilities =
142 1.15 thorpej PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
143 1.15 thorpej printf("%s: ", sc->mii_dev.dv_xname);
144 1.15 thorpej if ((sc->mii_capabilities & BMSR_MEDIAMASK) == 0)
145 1.5 thorpej printf("no media present");
146 1.5 thorpej else
147 1.22 thorpej mii_phy_add_media(sc);
148 1.5 thorpej printf("\n");
149 1.5 thorpej }
150 1.5 thorpej
151 1.5 thorpej int
152 1.15 thorpej nsphy_service(sc, mii, cmd)
153 1.15 thorpej struct mii_softc *sc;
154 1.5 thorpej struct mii_data *mii;
155 1.5 thorpej int cmd;
156 1.5 thorpej {
157 1.10 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
158 1.5 thorpej int reg;
159 1.21 thorpej
160 1.21 thorpej if ((sc->mii_dev.dv_flags & DVF_ACTIVE) == 0)
161 1.21 thorpej return (ENXIO);
162 1.5 thorpej
163 1.5 thorpej switch (cmd) {
164 1.5 thorpej case MII_POLLSTAT:
165 1.5 thorpej /*
166 1.5 thorpej * If we're not polling our PHY instance, just return.
167 1.5 thorpej */
168 1.15 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst)
169 1.5 thorpej return (0);
170 1.5 thorpej break;
171 1.5 thorpej
172 1.5 thorpej case MII_MEDIACHG:
173 1.5 thorpej /*
174 1.5 thorpej * If the media indicates a different PHY instance,
175 1.5 thorpej * isolate ourselves.
176 1.5 thorpej */
177 1.15 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
178 1.15 thorpej reg = PHY_READ(sc, MII_BMCR);
179 1.15 thorpej PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
180 1.5 thorpej return (0);
181 1.5 thorpej }
182 1.5 thorpej
183 1.5 thorpej /*
184 1.5 thorpej * If the interface is not up, don't do anything.
185 1.5 thorpej */
186 1.5 thorpej if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
187 1.5 thorpej break;
188 1.5 thorpej
189 1.15 thorpej reg = PHY_READ(sc, MII_NSPHY_PCR);
190 1.9 thorpej
191 1.5 thorpej /*
192 1.5 thorpej * Set up the PCR to use LED4 to indicate full-duplex
193 1.5 thorpej * in both 10baseT and 100baseTX modes.
194 1.5 thorpej */
195 1.9 thorpej reg |= PCR_LED4MODE;
196 1.9 thorpej
197 1.9 thorpej /*
198 1.9 thorpej * Make sure Carrier Intgrity Monitor function is
199 1.9 thorpej * disabled (normal for Node operation, but sometimes
200 1.9 thorpej * it's not set?!)
201 1.9 thorpej */
202 1.9 thorpej reg |= PCR_CIMDIS;
203 1.9 thorpej
204 1.9 thorpej /*
205 1.18 thorpej * Make sure "force link good" is set to normal mode.
206 1.18 thorpej * It's only intended for debugging.
207 1.9 thorpej */
208 1.18 thorpej reg |= PCR_FLINK100;
209 1.9 thorpej
210 1.9 thorpej #if 0
211 1.9 thorpej /*
212 1.9 thorpej * Mystery bits which are supposedly `reserved',
213 1.9 thorpej * but we seem to need to set them when the PHY
214 1.9 thorpej * is connected to some interfaces!
215 1.9 thorpej */
216 1.9 thorpej reg |= 0x0100 | 0x0400;
217 1.9 thorpej #endif
218 1.9 thorpej
219 1.15 thorpej PHY_WRITE(sc, MII_NSPHY_PCR, reg);
220 1.5 thorpej
221 1.25 thorpej mii_phy_setmedia(sc);
222 1.5 thorpej break;
223 1.5 thorpej
224 1.5 thorpej case MII_TICK:
225 1.5 thorpej /*
226 1.5 thorpej * If we're not currently selected, just return.
227 1.5 thorpej */
228 1.15 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst)
229 1.5 thorpej return (0);
230 1.5 thorpej
231 1.26 thorpej if (mii_phy_tick(sc) == EJUSTRETURN)
232 1.17 thorpej return (0);
233 1.5 thorpej break;
234 1.20 thorpej
235 1.20 thorpej case MII_DOWN:
236 1.20 thorpej mii_phy_down(sc);
237 1.20 thorpej return (0);
238 1.5 thorpej }
239 1.5 thorpej
240 1.5 thorpej /* Update the media status. */
241 1.24 thorpej mii_phy_status(sc);
242 1.5 thorpej
243 1.5 thorpej /* Callback if something changed. */
244 1.26 thorpej mii_phy_update(sc, cmd);
245 1.5 thorpej return (0);
246 1.5 thorpej }
247 1.5 thorpej
248 1.5 thorpej void
249 1.5 thorpej nsphy_status(sc)
250 1.15 thorpej struct mii_softc *sc;
251 1.5 thorpej {
252 1.15 thorpej struct mii_data *mii = sc->mii_pdata;
253 1.19 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
254 1.8 thorpej int bmsr, bmcr, par, anlpar;
255 1.5 thorpej
256 1.5 thorpej mii->mii_media_status = IFM_AVALID;
257 1.5 thorpej mii->mii_media_active = IFM_ETHER;
258 1.1 bouyer
259 1.15 thorpej bmsr = PHY_READ(sc, MII_BMSR) |
260 1.15 thorpej PHY_READ(sc, MII_BMSR);
261 1.5 thorpej if (bmsr & BMSR_LINK)
262 1.5 thorpej mii->mii_media_status |= IFM_ACTIVE;
263 1.5 thorpej
264 1.15 thorpej bmcr = PHY_READ(sc, MII_BMCR);
265 1.5 thorpej if (bmcr & BMCR_ISO) {
266 1.5 thorpej mii->mii_media_active |= IFM_NONE;
267 1.5 thorpej mii->mii_media_status = 0;
268 1.1 bouyer return;
269 1.1 bouyer }
270 1.5 thorpej
271 1.5 thorpej if (bmcr & BMCR_LOOP)
272 1.5 thorpej mii->mii_media_active |= IFM_LOOP;
273 1.5 thorpej
274 1.5 thorpej if (bmcr & BMCR_AUTOEN) {
275 1.5 thorpej /*
276 1.5 thorpej * The PAR status bits are only valid of autonegotiation
277 1.5 thorpej * has completed (or it's disabled).
278 1.5 thorpej */
279 1.5 thorpej if ((bmsr & BMSR_ACOMP) == 0) {
280 1.7 thorpej /* Erg, still trying, I guess... */
281 1.7 thorpej mii->mii_media_active |= IFM_NONE;
282 1.5 thorpej return;
283 1.5 thorpej }
284 1.8 thorpej
285 1.8 thorpej /*
286 1.8 thorpej * Argh. The PAR doesn't seem to indicate duplex mode
287 1.8 thorpej * properly! Determine media based on link partner's
288 1.8 thorpej * advertised capabilities.
289 1.8 thorpej */
290 1.15 thorpej if (PHY_READ(sc, MII_ANER) & ANER_LPAN) {
291 1.15 thorpej anlpar = PHY_READ(sc, MII_ANAR) &
292 1.15 thorpej PHY_READ(sc, MII_ANLPAR);
293 1.8 thorpej if (anlpar & ANLPAR_T4)
294 1.8 thorpej mii->mii_media_active |= IFM_100_T4;
295 1.8 thorpej else if (anlpar & ANLPAR_TX_FD)
296 1.8 thorpej mii->mii_media_active |= IFM_100_TX|IFM_FDX;
297 1.8 thorpej else if (anlpar & ANLPAR_TX)
298 1.8 thorpej mii->mii_media_active |= IFM_100_TX;
299 1.8 thorpej else if (anlpar & ANLPAR_10_FD)
300 1.8 thorpej mii->mii_media_active |= IFM_10_T|IFM_FDX;
301 1.8 thorpej else if (anlpar & ANLPAR_10)
302 1.8 thorpej mii->mii_media_active |= IFM_10_T;
303 1.8 thorpej else
304 1.8 thorpej mii->mii_media_active |= IFM_NONE;
305 1.8 thorpej return;
306 1.8 thorpej }
307 1.8 thorpej
308 1.8 thorpej /*
309 1.8 thorpej * Link partner is not capable of autonegotiation.
310 1.8 thorpej * We will never be in full-duplex mode if this is
311 1.8 thorpej * the case, so reading the PAR is OK.
312 1.8 thorpej */
313 1.15 thorpej par = PHY_READ(sc, MII_NSPHY_PAR);
314 1.5 thorpej if (par & PAR_10)
315 1.5 thorpej mii->mii_media_active |= IFM_10_T;
316 1.5 thorpej else
317 1.5 thorpej mii->mii_media_active |= IFM_100_TX;
318 1.8 thorpej #if 0
319 1.5 thorpej if (par & PAR_FDX)
320 1.5 thorpej mii->mii_media_active |= IFM_FDX;
321 1.8 thorpej #endif
322 1.16 thorpej } else
323 1.19 thorpej mii->mii_media_active = ife->ifm_media;
324 1.1 bouyer }
325