mii_physubr.c revision 1.41 1 1.41 thorpej /* $NetBSD: mii_physubr.c,v 1.41 2004/04/11 15:42:48 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.23 thorpej * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.1 thorpej * NASA Ames Research Center.
10 1.1 thorpej *
11 1.1 thorpej * Redistribution and use in source and binary forms, with or without
12 1.1 thorpej * modification, are permitted provided that the following conditions
13 1.1 thorpej * are met:
14 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer.
16 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.1 thorpej * documentation and/or other materials provided with the distribution.
19 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.1 thorpej * must display the following acknowledgement:
21 1.1 thorpej * This product includes software developed by the NetBSD
22 1.1 thorpej * Foundation, Inc. and its contributors.
23 1.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1 thorpej * contributors may be used to endorse or promote products derived
25 1.1 thorpej * from this software without specific prior written permission.
26 1.1 thorpej *
27 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.1 thorpej */
39 1.1 thorpej
40 1.1 thorpej /*
41 1.1 thorpej * Subroutines common to all PHYs.
42 1.1 thorpej */
43 1.30 lukem
44 1.30 lukem #include <sys/cdefs.h>
45 1.41 thorpej __KERNEL_RCSID(0, "$NetBSD: mii_physubr.c,v 1.41 2004/04/11 15:42:48 thorpej Exp $");
46 1.1 thorpej
47 1.1 thorpej #include <sys/param.h>
48 1.1 thorpej #include <sys/device.h>
49 1.1 thorpej #include <sys/systm.h>
50 1.3 thorpej #include <sys/kernel.h>
51 1.1 thorpej #include <sys/socket.h>
52 1.3 thorpej #include <sys/errno.h>
53 1.19 augustss #include <sys/proc.h>
54 1.1 thorpej
55 1.1 thorpej #include <net/if.h>
56 1.1 thorpej #include <net/if_media.h>
57 1.15 thorpej #include <net/route.h>
58 1.1 thorpej
59 1.1 thorpej #include <dev/mii/mii.h>
60 1.1 thorpej #include <dev/mii/miivar.h>
61 1.1 thorpej
62 1.6 thorpej /*
63 1.6 thorpej * Media to register setting conversion table. Order matters.
64 1.6 thorpej */
65 1.23 thorpej const struct mii_media mii_media_table[MII_NMEDIA] = {
66 1.23 thorpej /* None */
67 1.23 thorpej { BMCR_ISO, ANAR_CSMA,
68 1.23 thorpej 0, },
69 1.23 thorpej
70 1.23 thorpej /* 10baseT */
71 1.23 thorpej { BMCR_S10, ANAR_CSMA|ANAR_10,
72 1.23 thorpej 0, },
73 1.23 thorpej
74 1.23 thorpej /* 10baseT-FDX */
75 1.23 thorpej { BMCR_S10|BMCR_FDX, ANAR_CSMA|ANAR_10_FD,
76 1.23 thorpej 0, },
77 1.23 thorpej
78 1.23 thorpej /* 100baseT4 */
79 1.23 thorpej { BMCR_S100, ANAR_CSMA|ANAR_T4,
80 1.23 thorpej 0, },
81 1.23 thorpej
82 1.23 thorpej /* 100baseTX */
83 1.23 thorpej { BMCR_S100, ANAR_CSMA|ANAR_TX,
84 1.23 thorpej 0, },
85 1.23 thorpej
86 1.23 thorpej /* 100baseTX-FDX */
87 1.23 thorpej { BMCR_S100|BMCR_FDX, ANAR_CSMA|ANAR_TX_FD,
88 1.23 thorpej 0, },
89 1.23 thorpej
90 1.23 thorpej /* 1000baseX */
91 1.23 thorpej { BMCR_S1000, ANAR_CSMA,
92 1.23 thorpej 0, },
93 1.23 thorpej
94 1.23 thorpej /* 1000baseX-FDX */
95 1.23 thorpej { BMCR_S1000|BMCR_FDX, ANAR_CSMA,
96 1.23 thorpej 0, },
97 1.23 thorpej
98 1.23 thorpej /* 1000baseT */
99 1.23 thorpej { BMCR_S1000, ANAR_CSMA,
100 1.23 thorpej GTCR_ADV_1000THDX },
101 1.23 thorpej
102 1.23 thorpej /* 1000baseT-FDX */
103 1.23 thorpej { BMCR_S1000, ANAR_CSMA,
104 1.23 thorpej GTCR_ADV_1000TFDX },
105 1.6 thorpej };
106 1.6 thorpej
107 1.29 thorpej void mii_phy_auto_timeout(void *);
108 1.3 thorpej
109 1.6 thorpej void
110 1.29 thorpej mii_phy_setmedia(struct mii_softc *sc)
111 1.6 thorpej {
112 1.6 thorpej struct mii_data *mii = sc->mii_pdata;
113 1.6 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
114 1.23 thorpej int bmcr, anar, gtcr;
115 1.12 thorpej
116 1.13 thorpej if (IFM_SUBTYPE(ife->ifm_media) == IFM_AUTO) {
117 1.41 thorpej /*
118 1.41 thorpej * Force renegotiation if MIIF_DOPAUSE.
119 1.41 thorpej *
120 1.41 thorpej * XXX This is only necessary because many NICs don't
121 1.41 thorpej * XXX advertise PAUSE capabilities at boot time. Maybe
122 1.41 thorpej * XXX we should force this only once?
123 1.41 thorpej */
124 1.35 matt if ((PHY_READ(sc, MII_BMCR) & BMCR_AUTOEN) == 0 ||
125 1.38 thorpej (sc->mii_flags & (MIIF_FORCEANEG|MIIF_DOPAUSE)))
126 1.14 thorpej (void) mii_phy_auto(sc, 1);
127 1.13 thorpej return;
128 1.13 thorpej }
129 1.6 thorpej
130 1.6 thorpej /*
131 1.6 thorpej * Table index is stored in the media entry.
132 1.6 thorpej */
133 1.6 thorpej
134 1.6 thorpej #ifdef DIAGNOSTIC
135 1.6 thorpej if (ife->ifm_data < 0 || ife->ifm_data >= MII_NMEDIA)
136 1.6 thorpej panic("mii_phy_setmedia");
137 1.6 thorpej #endif
138 1.6 thorpej
139 1.6 thorpej anar = mii_media_table[ife->ifm_data].mm_anar;
140 1.6 thorpej bmcr = mii_media_table[ife->ifm_data].mm_bmcr;
141 1.23 thorpej gtcr = mii_media_table[ife->ifm_data].mm_gtcr;
142 1.23 thorpej
143 1.23 thorpej if (mii->mii_media.ifm_media & IFM_ETH_MASTER) {
144 1.23 thorpej switch (IFM_SUBTYPE(ife->ifm_media)) {
145 1.25 bjh21 case IFM_1000_T:
146 1.23 thorpej gtcr |= GTCR_MAN_MS|GTCR_ADV_MS;
147 1.23 thorpej break;
148 1.23 thorpej
149 1.23 thorpej default:
150 1.23 thorpej panic("mii_phy_setmedia: MASTER on wrong media");
151 1.23 thorpej }
152 1.23 thorpej }
153 1.6 thorpej
154 1.38 thorpej if (mii->mii_media.ifm_media & IFM_FLOW) {
155 1.38 thorpej if (sc->mii_flags & MIIF_IS_1000X)
156 1.38 thorpej anar |= ANAR_X_PAUSE_SYM | ANAR_X_PAUSE_ASYM;
157 1.38 thorpej else {
158 1.38 thorpej anar |= ANAR_FC;
159 1.38 thorpej /* XXX Only 1000BASE-T has PAUSE_ASYM? */
160 1.38 thorpej if ((sc->mii_flags & MIIF_HAVE_GTCR) &&
161 1.38 thorpej (sc->mii_extcapabilities &
162 1.38 thorpej (EXTSR_1000THDX|EXTSR_1000TFDX)))
163 1.38 thorpej anar |= ANAR_X_PAUSE_ASYM;
164 1.38 thorpej }
165 1.38 thorpej }
166 1.38 thorpej
167 1.6 thorpej if (ife->ifm_media & IFM_LOOP)
168 1.6 thorpej bmcr |= BMCR_LOOP;
169 1.6 thorpej
170 1.6 thorpej PHY_WRITE(sc, MII_ANAR, anar);
171 1.6 thorpej PHY_WRITE(sc, MII_BMCR, bmcr);
172 1.23 thorpej if (sc->mii_flags & MIIF_HAVE_GTCR)
173 1.23 thorpej PHY_WRITE(sc, MII_100T2CR, gtcr);
174 1.23 thorpej }
175 1.23 thorpej
176 1.1 thorpej int
177 1.29 thorpej mii_phy_auto(struct mii_softc *sc, int waitfor)
178 1.1 thorpej {
179 1.31 uwe int i;
180 1.1 thorpej
181 1.6 thorpej if ((sc->mii_flags & MIIF_DOINGAUTO) == 0) {
182 1.26 thorpej /*
183 1.26 thorpej * Check for 1000BASE-X. Autonegotiation is a bit
184 1.26 thorpej * different on such devices.
185 1.26 thorpej */
186 1.27 thorpej if (sc->mii_flags & MIIF_IS_1000X) {
187 1.27 thorpej uint16_t anar = 0;
188 1.27 thorpej
189 1.27 thorpej if (sc->mii_extcapabilities & EXTSR_1000XFDX)
190 1.27 thorpej anar |= ANAR_X_FD;
191 1.27 thorpej if (sc->mii_extcapabilities & EXTSR_1000XHDX)
192 1.27 thorpej anar |= ANAR_X_HD;
193 1.27 thorpej
194 1.27 thorpej if (sc->mii_flags & MIIF_DOPAUSE) {
195 1.27 thorpej /* XXX Asymmetric vs. symmetric? */
196 1.27 thorpej anar |= ANLPAR_X_PAUSE_TOWARDS;
197 1.27 thorpej }
198 1.27 thorpej
199 1.27 thorpej PHY_WRITE(sc, MII_ANAR, anar);
200 1.27 thorpej } else {
201 1.27 thorpej uint16_t anar;
202 1.27 thorpej
203 1.27 thorpej anar = BMSR_MEDIA_TO_ANAR(sc->mii_capabilities) |
204 1.27 thorpej ANAR_CSMA;
205 1.38 thorpej if (sc->mii_flags & MIIF_DOPAUSE) {
206 1.27 thorpej anar |= ANAR_FC;
207 1.38 thorpej /* XXX Only 1000BASE-T has PAUSE_ASYM? */
208 1.38 thorpej if ((sc->mii_flags & MIIF_HAVE_GTCR) &&
209 1.38 thorpej (sc->mii_extcapabilities &
210 1.38 thorpej (EXTSR_1000THDX|EXTSR_1000TFDX)))
211 1.38 thorpej anar |= ANAR_X_PAUSE_ASYM;
212 1.38 thorpej }
213 1.27 thorpej PHY_WRITE(sc, MII_ANAR, anar);
214 1.27 thorpej if (sc->mii_flags & MIIF_HAVE_GTCR) {
215 1.27 thorpej uint16_t gtcr = 0;
216 1.27 thorpej
217 1.27 thorpej if (sc->mii_extcapabilities & EXTSR_1000TFDX)
218 1.27 thorpej gtcr |= GTCR_ADV_1000TFDX;
219 1.27 thorpej if (sc->mii_extcapabilities & EXTSR_1000THDX)
220 1.27 thorpej gtcr |= GTCR_ADV_1000THDX;
221 1.26 thorpej
222 1.27 thorpej PHY_WRITE(sc, MII_100T2CR, gtcr);
223 1.27 thorpej }
224 1.26 thorpej }
225 1.6 thorpej PHY_WRITE(sc, MII_BMCR, BMCR_AUTOEN | BMCR_STARTNEG);
226 1.3 thorpej }
227 1.3 thorpej
228 1.3 thorpej if (waitfor) {
229 1.3 thorpej /* Wait 500ms for it to complete. */
230 1.3 thorpej for (i = 0; i < 500; i++) {
231 1.31 uwe if (PHY_READ(sc, MII_BMSR) & BMSR_ACOMP)
232 1.3 thorpej return (0);
233 1.3 thorpej delay(1000);
234 1.3 thorpej }
235 1.3 thorpej
236 1.3 thorpej /*
237 1.3 thorpej * Don't need to worry about clearing MIIF_DOINGAUTO.
238 1.3 thorpej * If that's set, a timeout is pending, and it will
239 1.3 thorpej * clear the flag.
240 1.3 thorpej */
241 1.3 thorpej return (EIO);
242 1.1 thorpej }
243 1.3 thorpej
244 1.3 thorpej /*
245 1.3 thorpej * Just let it finish asynchronously. This is for the benefit of
246 1.3 thorpej * the tick handler driving autonegotiation. Don't want 500ms
247 1.3 thorpej * delays all the time while the system is running!
248 1.3 thorpej */
249 1.19 augustss if (sc->mii_flags & MIIF_AUTOTSLEEP) {
250 1.19 augustss sc->mii_flags |= MIIF_DOINGAUTO;
251 1.19 augustss tsleep(&sc->mii_flags, PZERO, "miiaut", hz >> 1);
252 1.19 augustss mii_phy_auto_timeout(sc);
253 1.19 augustss } else if ((sc->mii_flags & MIIF_DOINGAUTO) == 0) {
254 1.6 thorpej sc->mii_flags |= MIIF_DOINGAUTO;
255 1.17 thorpej callout_reset(&sc->mii_nway_ch, hz >> 1,
256 1.17 thorpej mii_phy_auto_timeout, sc);
257 1.3 thorpej }
258 1.3 thorpej return (EJUSTRETURN);
259 1.3 thorpej }
260 1.3 thorpej
261 1.3 thorpej void
262 1.29 thorpej mii_phy_auto_timeout(void *arg)
263 1.3 thorpej {
264 1.6 thorpej struct mii_softc *sc = arg;
265 1.31 uwe int s;
266 1.3 thorpej
267 1.9 thorpej if ((sc->mii_dev.dv_flags & DVF_ACTIVE) == 0)
268 1.9 thorpej return;
269 1.9 thorpej
270 1.3 thorpej s = splnet();
271 1.6 thorpej sc->mii_flags &= ~MIIF_DOINGAUTO;
272 1.3 thorpej
273 1.3 thorpej /* Update the media status. */
274 1.18 thorpej (void) PHY_SERVICE(sc, sc->mii_pdata, MII_POLLSTAT);
275 1.3 thorpej splx(s);
276 1.2 thorpej }
277 1.2 thorpej
278 1.15 thorpej int
279 1.29 thorpej mii_phy_tick(struct mii_softc *sc)
280 1.15 thorpej {
281 1.15 thorpej struct mii_data *mii = sc->mii_pdata;
282 1.15 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
283 1.15 thorpej int reg;
284 1.15 thorpej
285 1.15 thorpej /* Just bail now if the interface is down. */
286 1.15 thorpej if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
287 1.15 thorpej return (EJUSTRETURN);
288 1.15 thorpej
289 1.15 thorpej /*
290 1.15 thorpej * If we're not doing autonegotiation, we don't need to do
291 1.15 thorpej * any extra work here. However, we need to check the link
292 1.15 thorpej * status so we can generate an announcement if the status
293 1.15 thorpej * changes.
294 1.15 thorpej */
295 1.15 thorpej if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
296 1.15 thorpej return (0);
297 1.15 thorpej
298 1.15 thorpej /* Read the status register twice; BMSR_LINK is latch-low. */
299 1.15 thorpej reg = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
300 1.15 thorpej if (reg & BMSR_LINK) {
301 1.15 thorpej /*
302 1.15 thorpej * See above.
303 1.15 thorpej */
304 1.15 thorpej return (0);
305 1.15 thorpej }
306 1.15 thorpej
307 1.15 thorpej /*
308 1.22 thorpej * Only retry autonegotiation every N seconds.
309 1.15 thorpej */
310 1.22 thorpej KASSERT(sc->mii_anegticks != 0);
311 1.22 thorpej if (++sc->mii_ticks != sc->mii_anegticks)
312 1.15 thorpej return (EJUSTRETURN);
313 1.15 thorpej
314 1.15 thorpej sc->mii_ticks = 0;
315 1.18 thorpej PHY_RESET(sc);
316 1.15 thorpej
317 1.15 thorpej if (mii_phy_auto(sc, 0) == EJUSTRETURN)
318 1.15 thorpej return (EJUSTRETURN);
319 1.15 thorpej
320 1.15 thorpej /*
321 1.15 thorpej * Might need to generate a status message if autonegotiation
322 1.15 thorpej * failed.
323 1.15 thorpej */
324 1.15 thorpej return (0);
325 1.15 thorpej }
326 1.15 thorpej
327 1.2 thorpej void
328 1.29 thorpej mii_phy_reset(struct mii_softc *sc)
329 1.2 thorpej {
330 1.2 thorpej int reg, i;
331 1.2 thorpej
332 1.6 thorpej if (sc->mii_flags & MIIF_NOISOLATE)
333 1.2 thorpej reg = BMCR_RESET;
334 1.2 thorpej else
335 1.2 thorpej reg = BMCR_RESET | BMCR_ISO;
336 1.6 thorpej PHY_WRITE(sc, MII_BMCR, reg);
337 1.2 thorpej
338 1.37 briggs /*
339 1.37 briggs * It is best to allow a little time for the reset to settle
340 1.37 briggs * in before we start polling the BMCR again. Notably, the
341 1.37 briggs * DP83840A manual states that there should be a 500us delay
342 1.37 briggs * between asserting software reset and attempting MII serial
343 1.37 briggs * operations. Also, a DP83815 can get into a bad state on
344 1.37 briggs * cable removal and reinsertion if we do not delay here.
345 1.37 briggs */
346 1.37 briggs delay(500);
347 1.37 briggs
348 1.37 briggs /* Wait another 100ms for it to complete. */
349 1.2 thorpej for (i = 0; i < 100; i++) {
350 1.6 thorpej reg = PHY_READ(sc, MII_BMCR);
351 1.2 thorpej if ((reg & BMCR_RESET) == 0)
352 1.2 thorpej break;
353 1.2 thorpej delay(1000);
354 1.2 thorpej }
355 1.2 thorpej
356 1.6 thorpej if (sc->mii_inst != 0 && ((sc->mii_flags & MIIF_NOISOLATE) == 0))
357 1.6 thorpej PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
358 1.8 thorpej }
359 1.8 thorpej
360 1.8 thorpej void
361 1.29 thorpej mii_phy_down(struct mii_softc *sc)
362 1.8 thorpej {
363 1.8 thorpej
364 1.8 thorpej if (sc->mii_flags & MIIF_DOINGAUTO) {
365 1.8 thorpej sc->mii_flags &= ~MIIF_DOINGAUTO;
366 1.17 thorpej callout_stop(&sc->mii_nway_ch);
367 1.8 thorpej }
368 1.11 thorpej }
369 1.11 thorpej
370 1.11 thorpej void
371 1.29 thorpej mii_phy_status(struct mii_softc *sc)
372 1.11 thorpej {
373 1.11 thorpej
374 1.18 thorpej PHY_STATUS(sc);
375 1.15 thorpej }
376 1.15 thorpej
377 1.15 thorpej void
378 1.29 thorpej mii_phy_update(struct mii_softc *sc, int cmd)
379 1.15 thorpej {
380 1.15 thorpej struct mii_data *mii = sc->mii_pdata;
381 1.32 thorpej int announce, s;
382 1.15 thorpej
383 1.15 thorpej if (sc->mii_media_active != mii->mii_media_active ||
384 1.15 thorpej sc->mii_media_status != mii->mii_media_status ||
385 1.15 thorpej cmd == MII_MEDIACHG) {
386 1.32 thorpej announce = mii_phy_statusmsg(sc);
387 1.15 thorpej (*mii->mii_statchg)(sc->mii_dev.dv_parent);
388 1.15 thorpej sc->mii_media_active = mii->mii_media_active;
389 1.15 thorpej sc->mii_media_status = mii->mii_media_status;
390 1.32 thorpej
391 1.32 thorpej if (announce) {
392 1.32 thorpej s = splnet();
393 1.32 thorpej rt_ifmsg(mii->mii_ifp);
394 1.32 thorpej splx(s);
395 1.32 thorpej }
396 1.15 thorpej }
397 1.15 thorpej }
398 1.15 thorpej
399 1.32 thorpej int
400 1.29 thorpej mii_phy_statusmsg(struct mii_softc *sc)
401 1.15 thorpej {
402 1.15 thorpej struct mii_data *mii = sc->mii_pdata;
403 1.15 thorpej struct ifnet *ifp = mii->mii_ifp;
404 1.34 thorpej int link_state, announce = 0;
405 1.34 thorpej u_int baudrate;
406 1.15 thorpej
407 1.15 thorpej if (mii->mii_media_status & IFM_AVALID) {
408 1.15 thorpej if (mii->mii_media_status & IFM_ACTIVE)
409 1.15 thorpej link_state = LINK_STATE_UP;
410 1.15 thorpej else
411 1.15 thorpej link_state = LINK_STATE_DOWN;
412 1.15 thorpej } else
413 1.15 thorpej link_state = LINK_STATE_UNKNOWN;
414 1.15 thorpej
415 1.15 thorpej baudrate = ifmedia_baudrate(mii->mii_media_active);
416 1.15 thorpej
417 1.15 thorpej if (link_state != ifp->if_link_state) {
418 1.15 thorpej ifp->if_link_state = link_state;
419 1.16 thorpej /*
420 1.16 thorpej * XXX Right here we'd like to notify protocols
421 1.16 thorpej * XXX that the link status has changed, so that
422 1.16 thorpej * XXX e.g. Duplicate Address Detection can restart.
423 1.16 thorpej */
424 1.15 thorpej announce = 1;
425 1.15 thorpej }
426 1.15 thorpej
427 1.15 thorpej if (baudrate != ifp->if_baudrate) {
428 1.15 thorpej ifp->if_baudrate = baudrate;
429 1.15 thorpej announce = 1;
430 1.15 thorpej }
431 1.15 thorpej
432 1.32 thorpej return (announce);
433 1.5 drochner }
434 1.5 drochner
435 1.5 drochner /*
436 1.5 drochner * Initialize generic PHY media based on BMSR, called when a PHY is
437 1.5 drochner * attached. We expect to be set up to print a comma-separated list
438 1.5 drochner * of media names. Does not print a newline.
439 1.5 drochner */
440 1.5 drochner void
441 1.29 thorpej mii_phy_add_media(struct mii_softc *sc)
442 1.5 drochner {
443 1.6 thorpej struct mii_data *mii = sc->mii_pdata;
444 1.5 drochner const char *sep = "";
445 1.38 thorpej int fdx = 0;
446 1.5 drochner
447 1.5 drochner #define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL)
448 1.36 thorpej #define PRINT(n) aprint_normal("%s%s", sep, (n)); sep = ", "
449 1.5 drochner
450 1.6 thorpej if ((sc->mii_flags & MIIF_NOISOLATE) == 0)
451 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst),
452 1.6 thorpej MII_MEDIA_NONE);
453 1.28 thorpej
454 1.28 thorpej /*
455 1.28 thorpej * There are different interpretations for the bits in
456 1.28 thorpej * HomePNA PHYs. And there is really only one media type
457 1.28 thorpej * that is supported.
458 1.28 thorpej */
459 1.28 thorpej if (sc->mii_flags & MIIF_IS_HPNA) {
460 1.28 thorpej if (sc->mii_capabilities & BMSR_10THDX) {
461 1.28 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_HPNA_1, 0,
462 1.28 thorpej sc->mii_inst),
463 1.28 thorpej MII_MEDIA_10_T);
464 1.28 thorpej PRINT("HomePNA1");
465 1.28 thorpej }
466 1.28 thorpej return;
467 1.28 thorpej }
468 1.6 thorpej
469 1.6 thorpej if (sc->mii_capabilities & BMSR_10THDX) {
470 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, sc->mii_inst),
471 1.6 thorpej MII_MEDIA_10_T);
472 1.5 drochner PRINT("10baseT");
473 1.5 drochner }
474 1.6 thorpej if (sc->mii_capabilities & BMSR_10TFDX) {
475 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, sc->mii_inst),
476 1.6 thorpej MII_MEDIA_10_T_FDX);
477 1.5 drochner PRINT("10baseT-FDX");
478 1.38 thorpej fdx = 1;
479 1.5 drochner }
480 1.6 thorpej if (sc->mii_capabilities & BMSR_100TXHDX) {
481 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, sc->mii_inst),
482 1.6 thorpej MII_MEDIA_100_TX);
483 1.5 drochner PRINT("100baseTX");
484 1.5 drochner }
485 1.6 thorpej if (sc->mii_capabilities & BMSR_100TXFDX) {
486 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, sc->mii_inst),
487 1.6 thorpej MII_MEDIA_100_TX_FDX);
488 1.5 drochner PRINT("100baseTX-FDX");
489 1.38 thorpej fdx = 1;
490 1.5 drochner }
491 1.6 thorpej if (sc->mii_capabilities & BMSR_100T4) {
492 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_T4, 0, sc->mii_inst),
493 1.6 thorpej MII_MEDIA_100_T4);
494 1.5 drochner PRINT("100baseT4");
495 1.5 drochner }
496 1.21 thorpej
497 1.21 thorpej if (sc->mii_extcapabilities & EXTSR_MEDIAMASK) {
498 1.21 thorpej /*
499 1.21 thorpej * XXX Right now only handle 1000SX and 1000TX. Need
500 1.22 thorpej * XXX to handle 1000LX and 1000CX some how.
501 1.22 thorpej *
502 1.22 thorpej * Note since it can take 5 seconds to auto-negotiate
503 1.22 thorpej * a gigabit link, we make anegticks 10 seconds for
504 1.22 thorpej * all the gigabit media types.
505 1.21 thorpej */
506 1.21 thorpej if (sc->mii_extcapabilities & EXTSR_1000XHDX) {
507 1.22 thorpej sc->mii_anegticks = 10;
508 1.27 thorpej sc->mii_flags |= MIIF_IS_1000X;
509 1.21 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_SX, 0,
510 1.23 thorpej sc->mii_inst), MII_MEDIA_1000_X);
511 1.21 thorpej PRINT("1000baseSX");
512 1.21 thorpej }
513 1.21 thorpej if (sc->mii_extcapabilities & EXTSR_1000XFDX) {
514 1.22 thorpej sc->mii_anegticks = 10;
515 1.27 thorpej sc->mii_flags |= MIIF_IS_1000X;
516 1.21 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_SX, IFM_FDX,
517 1.23 thorpej sc->mii_inst), MII_MEDIA_1000_X_FDX);
518 1.21 thorpej PRINT("1000baseSX-FDX");
519 1.38 thorpej fdx = 1;
520 1.21 thorpej }
521 1.23 thorpej
522 1.23 thorpej /*
523 1.23 thorpej * 1000baseT media needs to be able to manipulate
524 1.23 thorpej * master/slave mode. We set IFM_ETH_MASTER in
525 1.23 thorpej * the "don't care mask" and filter it out when
526 1.23 thorpej * the media is set.
527 1.23 thorpej *
528 1.23 thorpej * All 1000baseT PHYs have a 1000baseT control register.
529 1.23 thorpej */
530 1.21 thorpej if (sc->mii_extcapabilities & EXTSR_1000THDX) {
531 1.22 thorpej sc->mii_anegticks = 10;
532 1.23 thorpej sc->mii_flags |= MIIF_HAVE_GTCR;
533 1.23 thorpej mii->mii_media.ifm_mask |= IFM_ETH_MASTER;
534 1.25 bjh21 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, 0,
535 1.23 thorpej sc->mii_inst), MII_MEDIA_1000_T);
536 1.25 bjh21 PRINT("1000baseT");
537 1.21 thorpej }
538 1.21 thorpej if (sc->mii_extcapabilities & EXTSR_1000TFDX) {
539 1.22 thorpej sc->mii_anegticks = 10;
540 1.23 thorpej sc->mii_flags |= MIIF_HAVE_GTCR;
541 1.23 thorpej mii->mii_media.ifm_mask |= IFM_ETH_MASTER;
542 1.25 bjh21 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, IFM_FDX,
543 1.23 thorpej sc->mii_inst), MII_MEDIA_1000_T_FDX);
544 1.25 bjh21 PRINT("1000baseT-FDX");
545 1.38 thorpej fdx = 1;
546 1.21 thorpej }
547 1.21 thorpej }
548 1.21 thorpej
549 1.6 thorpej if (sc->mii_capabilities & BMSR_ANEG) {
550 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst),
551 1.6 thorpej MII_NMEDIA); /* intentionally invalid index */
552 1.5 drochner PRINT("auto");
553 1.5 drochner }
554 1.5 drochner #undef ADD
555 1.5 drochner #undef PRINT
556 1.38 thorpej if (fdx != 0 && (sc->mii_flags & MIIF_DOPAUSE))
557 1.38 thorpej mii->mii_media.ifm_mask |= IFM_ETH_FMASK;
558 1.9 thorpej }
559 1.9 thorpej
560 1.9 thorpej void
561 1.29 thorpej mii_phy_delete_media(struct mii_softc *sc)
562 1.9 thorpej {
563 1.9 thorpej struct mii_data *mii = sc->mii_pdata;
564 1.9 thorpej
565 1.9 thorpej ifmedia_delete_instance(&mii->mii_media, sc->mii_inst);
566 1.9 thorpej }
567 1.9 thorpej
568 1.9 thorpej int
569 1.29 thorpej mii_phy_activate(struct device *self, enum devact act)
570 1.9 thorpej {
571 1.9 thorpej int rv = 0;
572 1.9 thorpej
573 1.9 thorpej switch (act) {
574 1.9 thorpej case DVACT_ACTIVATE:
575 1.9 thorpej rv = EOPNOTSUPP;
576 1.9 thorpej break;
577 1.9 thorpej
578 1.9 thorpej case DVACT_DEACTIVATE:
579 1.9 thorpej /* Nothing special to do. */
580 1.9 thorpej break;
581 1.9 thorpej }
582 1.9 thorpej
583 1.9 thorpej return (rv);
584 1.9 thorpej }
585 1.9 thorpej
586 1.31 uwe /* ARGSUSED1 */
587 1.9 thorpej int
588 1.29 thorpej mii_phy_detach(struct device *self, int flags)
589 1.9 thorpej {
590 1.9 thorpej struct mii_softc *sc = (void *) self;
591 1.9 thorpej
592 1.9 thorpej if (sc->mii_flags & MIIF_DOINGAUTO)
593 1.17 thorpej callout_stop(&sc->mii_nway_ch);
594 1.9 thorpej
595 1.10 thorpej mii_phy_delete_media(sc);
596 1.9 thorpej
597 1.9 thorpej return (0);
598 1.24 thorpej }
599 1.24 thorpej
600 1.24 thorpej const struct mii_phydesc *
601 1.24 thorpej mii_phy_match(const struct mii_attach_args *ma, const struct mii_phydesc *mpd)
602 1.24 thorpej {
603 1.24 thorpej
604 1.24 thorpej for (; mpd->mpd_name != NULL; mpd++) {
605 1.24 thorpej if (MII_OUI(ma->mii_id1, ma->mii_id2) == mpd->mpd_oui &&
606 1.24 thorpej MII_MODEL(ma->mii_id2) == mpd->mpd_model)
607 1.24 thorpej return (mpd);
608 1.24 thorpej }
609 1.24 thorpej return (NULL);
610 1.1 thorpej }
611 1.38 thorpej
612 1.38 thorpej /*
613 1.38 thorpej * Return the flow control status flag from MII_ANAR & MII_ANLPAR.
614 1.38 thorpej */
615 1.38 thorpej u_int
616 1.40 thorpej mii_phy_flowstatus(struct mii_softc *sc)
617 1.38 thorpej {
618 1.38 thorpej u_int anar, anlpar;
619 1.38 thorpej
620 1.39 thorpej if ((sc->mii_flags & MIIF_DOPAUSE) == 0)
621 1.39 thorpej return (0);
622 1.39 thorpej
623 1.38 thorpej anar = PHY_READ(sc, MII_ANAR);
624 1.38 thorpej anlpar = PHY_READ(sc, MII_ANLPAR);
625 1.38 thorpej
626 1.38 thorpej if ((anar & ANAR_X_PAUSE_SYM) == 0) {
627 1.38 thorpej if ((anar & ANAR_X_PAUSE_ASYM) &&
628 1.38 thorpej ((anlpar &
629 1.38 thorpej ANLPAR_X_PAUSE_TOWARDS) == ANLPAR_X_PAUSE_TOWARDS))
630 1.38 thorpej return (IFM_FLOW|IFM_ETH_TXPAUSE);
631 1.38 thorpej else
632 1.38 thorpej return (0);
633 1.38 thorpej }
634 1.38 thorpej
635 1.38 thorpej if ((anar & ANAR_X_PAUSE_ASYM) == 0) {
636 1.38 thorpej if (anlpar & ANLPAR_X_PAUSE_SYM)
637 1.38 thorpej return (IFM_FLOW|IFM_ETH_TXPAUSE|IFM_ETH_RXPAUSE);
638 1.38 thorpej else
639 1.38 thorpej return (0);
640 1.38 thorpej }
641 1.38 thorpej
642 1.38 thorpej switch ((anlpar & ANLPAR_X_PAUSE_TOWARDS)) {
643 1.38 thorpej case ANLPAR_X_PAUSE_NONE:
644 1.38 thorpej return (0);
645 1.38 thorpej
646 1.38 thorpej case ANLPAR_X_PAUSE_ASYM:
647 1.38 thorpej return (IFM_FLOW|IFM_ETH_RXPAUSE);
648 1.38 thorpej
649 1.38 thorpej default:
650 1.38 thorpej return (IFM_FLOW|IFM_ETH_RXPAUSE|IFM_ETH_TXPAUSE);
651 1.38 thorpej }
652 1.38 thorpej /* NOTREACHED */
653 1.38 thorpej }
654