mii_physubr.c revision 1.18.2.4 1 1.18.2.4 nathanw /* $NetBSD: mii_physubr.c,v 1.18.2.4 2001/11/14 19:15:02 nathanw Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.18.2.1 nathanw * 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.18.2.4 nathanw
44 1.18.2.4 nathanw #include <sys/cdefs.h>
45 1.18.2.4 nathanw __KERNEL_RCSID(0, "$NetBSD: mii_physubr.c,v 1.18.2.4 2001/11/14 19:15:02 nathanw 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.18.2.1 nathanw #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.18.2.1 nathanw const struct mii_media mii_media_table[MII_NMEDIA] = {
66 1.18.2.1 nathanw /* None */
67 1.18.2.1 nathanw { BMCR_ISO, ANAR_CSMA,
68 1.18.2.1 nathanw 0, },
69 1.18.2.1 nathanw
70 1.18.2.1 nathanw /* 10baseT */
71 1.18.2.1 nathanw { BMCR_S10, ANAR_CSMA|ANAR_10,
72 1.18.2.1 nathanw 0, },
73 1.18.2.1 nathanw
74 1.18.2.1 nathanw /* 10baseT-FDX */
75 1.18.2.1 nathanw { BMCR_S10|BMCR_FDX, ANAR_CSMA|ANAR_10_FD,
76 1.18.2.1 nathanw 0, },
77 1.18.2.1 nathanw
78 1.18.2.1 nathanw /* 100baseT4 */
79 1.18.2.1 nathanw { BMCR_S100, ANAR_CSMA|ANAR_T4,
80 1.18.2.1 nathanw 0, },
81 1.18.2.1 nathanw
82 1.18.2.1 nathanw /* 100baseTX */
83 1.18.2.1 nathanw { BMCR_S100, ANAR_CSMA|ANAR_TX,
84 1.18.2.1 nathanw 0, },
85 1.18.2.1 nathanw
86 1.18.2.1 nathanw /* 100baseTX-FDX */
87 1.18.2.1 nathanw { BMCR_S100|BMCR_FDX, ANAR_CSMA|ANAR_TX_FD,
88 1.18.2.1 nathanw 0, },
89 1.18.2.1 nathanw
90 1.18.2.1 nathanw /* 1000baseX */
91 1.18.2.1 nathanw { BMCR_S1000, ANAR_CSMA,
92 1.18.2.1 nathanw 0, },
93 1.18.2.1 nathanw
94 1.18.2.1 nathanw /* 1000baseX-FDX */
95 1.18.2.1 nathanw { BMCR_S1000|BMCR_FDX, ANAR_CSMA,
96 1.18.2.1 nathanw 0, },
97 1.18.2.1 nathanw
98 1.18.2.1 nathanw /* 1000baseT */
99 1.18.2.1 nathanw { BMCR_S1000, ANAR_CSMA,
100 1.18.2.1 nathanw GTCR_ADV_1000THDX },
101 1.18.2.1 nathanw
102 1.18.2.1 nathanw /* 1000baseT-FDX */
103 1.18.2.1 nathanw { BMCR_S1000, ANAR_CSMA,
104 1.18.2.1 nathanw GTCR_ADV_1000TFDX },
105 1.6 thorpej };
106 1.6 thorpej
107 1.18.2.3 nathanw void mii_phy_auto_timeout(void *);
108 1.3 thorpej
109 1.6 thorpej void
110 1.18.2.3 nathanw 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.18.2.1 nathanw int bmcr, anar, gtcr;
115 1.12 thorpej
116 1.13 thorpej if (IFM_SUBTYPE(ife->ifm_media) == IFM_AUTO) {
117 1.14 thorpej if ((PHY_READ(sc, MII_BMCR) & BMCR_AUTOEN) == 0)
118 1.14 thorpej (void) mii_phy_auto(sc, 1);
119 1.13 thorpej return;
120 1.13 thorpej }
121 1.6 thorpej
122 1.6 thorpej /*
123 1.6 thorpej * Table index is stored in the media entry.
124 1.6 thorpej */
125 1.6 thorpej
126 1.6 thorpej #ifdef DIAGNOSTIC
127 1.6 thorpej if (ife->ifm_data < 0 || ife->ifm_data >= MII_NMEDIA)
128 1.6 thorpej panic("mii_phy_setmedia");
129 1.6 thorpej #endif
130 1.6 thorpej
131 1.6 thorpej anar = mii_media_table[ife->ifm_data].mm_anar;
132 1.6 thorpej bmcr = mii_media_table[ife->ifm_data].mm_bmcr;
133 1.18.2.1 nathanw gtcr = mii_media_table[ife->ifm_data].mm_gtcr;
134 1.18.2.1 nathanw
135 1.18.2.1 nathanw if (mii->mii_media.ifm_media & IFM_ETH_MASTER) {
136 1.18.2.1 nathanw switch (IFM_SUBTYPE(ife->ifm_media)) {
137 1.18.2.2 nathanw case IFM_1000_T:
138 1.18.2.1 nathanw gtcr |= GTCR_MAN_MS|GTCR_ADV_MS;
139 1.18.2.1 nathanw break;
140 1.18.2.1 nathanw
141 1.18.2.1 nathanw default:
142 1.18.2.1 nathanw panic("mii_phy_setmedia: MASTER on wrong media");
143 1.18.2.1 nathanw }
144 1.18.2.1 nathanw }
145 1.6 thorpej
146 1.6 thorpej if (ife->ifm_media & IFM_LOOP)
147 1.6 thorpej bmcr |= BMCR_LOOP;
148 1.6 thorpej
149 1.6 thorpej PHY_WRITE(sc, MII_ANAR, anar);
150 1.6 thorpej PHY_WRITE(sc, MII_BMCR, bmcr);
151 1.18.2.1 nathanw if (sc->mii_flags & MIIF_HAVE_GTCR)
152 1.18.2.1 nathanw PHY_WRITE(sc, MII_100T2CR, gtcr);
153 1.18.2.1 nathanw }
154 1.18.2.1 nathanw
155 1.1 thorpej int
156 1.18.2.3 nathanw mii_phy_auto(struct mii_softc *sc, int waitfor)
157 1.1 thorpej {
158 1.1 thorpej int bmsr, i;
159 1.1 thorpej
160 1.6 thorpej if ((sc->mii_flags & MIIF_DOINGAUTO) == 0) {
161 1.18.2.2 nathanw /*
162 1.18.2.2 nathanw * Check for 1000BASE-X. Autonegotiation is a bit
163 1.18.2.2 nathanw * different on such devices.
164 1.18.2.2 nathanw */
165 1.18.2.2 nathanw if (sc->mii_flags & MIIF_IS_1000X) {
166 1.18.2.2 nathanw uint16_t anar = 0;
167 1.18.2.2 nathanw
168 1.18.2.2 nathanw if (sc->mii_extcapabilities & EXTSR_1000XFDX)
169 1.18.2.2 nathanw anar |= ANAR_X_FD;
170 1.18.2.2 nathanw if (sc->mii_extcapabilities & EXTSR_1000XHDX)
171 1.18.2.2 nathanw anar |= ANAR_X_HD;
172 1.18.2.2 nathanw
173 1.18.2.2 nathanw if (sc->mii_flags & MIIF_DOPAUSE) {
174 1.18.2.2 nathanw /* XXX Asymmetric vs. symmetric? */
175 1.18.2.2 nathanw anar |= ANLPAR_X_PAUSE_TOWARDS;
176 1.18.2.2 nathanw }
177 1.18.2.2 nathanw
178 1.18.2.2 nathanw PHY_WRITE(sc, MII_ANAR, anar);
179 1.18.2.2 nathanw } else {
180 1.18.2.2 nathanw uint16_t anar;
181 1.18.2.2 nathanw
182 1.18.2.2 nathanw anar = BMSR_MEDIA_TO_ANAR(sc->mii_capabilities) |
183 1.18.2.2 nathanw ANAR_CSMA;
184 1.18.2.2 nathanw if (sc->mii_flags & MIIF_DOPAUSE)
185 1.18.2.2 nathanw anar |= ANAR_FC;
186 1.18.2.2 nathanw PHY_WRITE(sc, MII_ANAR, anar);
187 1.18.2.2 nathanw if (sc->mii_flags & MIIF_HAVE_GTCR) {
188 1.18.2.2 nathanw uint16_t gtcr = 0;
189 1.18.2.2 nathanw
190 1.18.2.2 nathanw if (sc->mii_extcapabilities & EXTSR_1000TFDX)
191 1.18.2.2 nathanw gtcr |= GTCR_ADV_1000TFDX;
192 1.18.2.2 nathanw if (sc->mii_extcapabilities & EXTSR_1000THDX)
193 1.18.2.2 nathanw gtcr |= GTCR_ADV_1000THDX;
194 1.18.2.2 nathanw
195 1.18.2.2 nathanw PHY_WRITE(sc, MII_100T2CR, gtcr);
196 1.18.2.2 nathanw }
197 1.18.2.2 nathanw }
198 1.6 thorpej PHY_WRITE(sc, MII_BMCR, BMCR_AUTOEN | BMCR_STARTNEG);
199 1.3 thorpej }
200 1.3 thorpej
201 1.3 thorpej if (waitfor) {
202 1.3 thorpej /* Wait 500ms for it to complete. */
203 1.3 thorpej for (i = 0; i < 500; i++) {
204 1.6 thorpej if ((bmsr = PHY_READ(sc, MII_BMSR)) & BMSR_ACOMP)
205 1.3 thorpej return (0);
206 1.3 thorpej delay(1000);
207 1.3 thorpej }
208 1.3 thorpej
209 1.3 thorpej /*
210 1.3 thorpej * Don't need to worry about clearing MIIF_DOINGAUTO.
211 1.3 thorpej * If that's set, a timeout is pending, and it will
212 1.3 thorpej * clear the flag.
213 1.3 thorpej */
214 1.3 thorpej return (EIO);
215 1.1 thorpej }
216 1.3 thorpej
217 1.3 thorpej /*
218 1.3 thorpej * Just let it finish asynchronously. This is for the benefit of
219 1.3 thorpej * the tick handler driving autonegotiation. Don't want 500ms
220 1.3 thorpej * delays all the time while the system is running!
221 1.3 thorpej */
222 1.18.2.1 nathanw if (sc->mii_flags & MIIF_AUTOTSLEEP) {
223 1.18.2.1 nathanw sc->mii_flags |= MIIF_DOINGAUTO;
224 1.18.2.1 nathanw tsleep(&sc->mii_flags, PZERO, "miiaut", hz >> 1);
225 1.18.2.1 nathanw mii_phy_auto_timeout(sc);
226 1.18.2.1 nathanw } else if ((sc->mii_flags & MIIF_DOINGAUTO) == 0) {
227 1.6 thorpej sc->mii_flags |= MIIF_DOINGAUTO;
228 1.17 thorpej callout_reset(&sc->mii_nway_ch, hz >> 1,
229 1.17 thorpej mii_phy_auto_timeout, sc);
230 1.3 thorpej }
231 1.3 thorpej return (EJUSTRETURN);
232 1.3 thorpej }
233 1.3 thorpej
234 1.3 thorpej void
235 1.18.2.3 nathanw mii_phy_auto_timeout(void *arg)
236 1.3 thorpej {
237 1.6 thorpej struct mii_softc *sc = arg;
238 1.3 thorpej int s, bmsr;
239 1.3 thorpej
240 1.9 thorpej if ((sc->mii_dev.dv_flags & DVF_ACTIVE) == 0)
241 1.9 thorpej return;
242 1.9 thorpej
243 1.3 thorpej s = splnet();
244 1.6 thorpej sc->mii_flags &= ~MIIF_DOINGAUTO;
245 1.6 thorpej bmsr = PHY_READ(sc, MII_BMSR);
246 1.3 thorpej
247 1.3 thorpej /* Update the media status. */
248 1.18 thorpej (void) PHY_SERVICE(sc, sc->mii_pdata, MII_POLLSTAT);
249 1.3 thorpej splx(s);
250 1.2 thorpej }
251 1.2 thorpej
252 1.15 thorpej int
253 1.18.2.3 nathanw mii_phy_tick(struct mii_softc *sc)
254 1.15 thorpej {
255 1.15 thorpej struct mii_data *mii = sc->mii_pdata;
256 1.15 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
257 1.15 thorpej int reg;
258 1.15 thorpej
259 1.15 thorpej /* Just bail now if the interface is down. */
260 1.15 thorpej if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
261 1.15 thorpej return (EJUSTRETURN);
262 1.15 thorpej
263 1.15 thorpej /*
264 1.15 thorpej * If we're not doing autonegotiation, we don't need to do
265 1.15 thorpej * any extra work here. However, we need to check the link
266 1.15 thorpej * status so we can generate an announcement if the status
267 1.15 thorpej * changes.
268 1.15 thorpej */
269 1.15 thorpej if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
270 1.15 thorpej return (0);
271 1.15 thorpej
272 1.15 thorpej /* Read the status register twice; BMSR_LINK is latch-low. */
273 1.15 thorpej reg = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
274 1.15 thorpej if (reg & BMSR_LINK) {
275 1.15 thorpej /*
276 1.15 thorpej * See above.
277 1.15 thorpej */
278 1.15 thorpej return (0);
279 1.15 thorpej }
280 1.15 thorpej
281 1.15 thorpej /*
282 1.18.2.1 nathanw * Only retry autonegotiation every N seconds.
283 1.15 thorpej */
284 1.18.2.1 nathanw KASSERT(sc->mii_anegticks != 0);
285 1.18.2.1 nathanw if (++sc->mii_ticks != sc->mii_anegticks)
286 1.15 thorpej return (EJUSTRETURN);
287 1.15 thorpej
288 1.15 thorpej sc->mii_ticks = 0;
289 1.18 thorpej PHY_RESET(sc);
290 1.15 thorpej
291 1.15 thorpej if (mii_phy_auto(sc, 0) == EJUSTRETURN)
292 1.15 thorpej return (EJUSTRETURN);
293 1.15 thorpej
294 1.15 thorpej /*
295 1.15 thorpej * Might need to generate a status message if autonegotiation
296 1.15 thorpej * failed.
297 1.15 thorpej */
298 1.15 thorpej return (0);
299 1.15 thorpej }
300 1.15 thorpej
301 1.2 thorpej void
302 1.18.2.3 nathanw mii_phy_reset(struct mii_softc *sc)
303 1.2 thorpej {
304 1.2 thorpej int reg, i;
305 1.2 thorpej
306 1.6 thorpej if (sc->mii_flags & MIIF_NOISOLATE)
307 1.2 thorpej reg = BMCR_RESET;
308 1.2 thorpej else
309 1.2 thorpej reg = BMCR_RESET | BMCR_ISO;
310 1.6 thorpej PHY_WRITE(sc, MII_BMCR, reg);
311 1.2 thorpej
312 1.2 thorpej /* Wait 100ms for it to complete. */
313 1.2 thorpej for (i = 0; i < 100; i++) {
314 1.6 thorpej reg = PHY_READ(sc, MII_BMCR);
315 1.2 thorpej if ((reg & BMCR_RESET) == 0)
316 1.2 thorpej break;
317 1.2 thorpej delay(1000);
318 1.2 thorpej }
319 1.2 thorpej
320 1.6 thorpej if (sc->mii_inst != 0 && ((sc->mii_flags & MIIF_NOISOLATE) == 0))
321 1.6 thorpej PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
322 1.8 thorpej }
323 1.8 thorpej
324 1.8 thorpej void
325 1.18.2.3 nathanw mii_phy_down(struct mii_softc *sc)
326 1.8 thorpej {
327 1.8 thorpej
328 1.8 thorpej if (sc->mii_flags & MIIF_DOINGAUTO) {
329 1.8 thorpej sc->mii_flags &= ~MIIF_DOINGAUTO;
330 1.17 thorpej callout_stop(&sc->mii_nway_ch);
331 1.8 thorpej }
332 1.11 thorpej }
333 1.11 thorpej
334 1.11 thorpej void
335 1.18.2.3 nathanw mii_phy_status(struct mii_softc *sc)
336 1.11 thorpej {
337 1.11 thorpej
338 1.18 thorpej PHY_STATUS(sc);
339 1.15 thorpej }
340 1.15 thorpej
341 1.15 thorpej void
342 1.18.2.3 nathanw mii_phy_update(struct mii_softc *sc, int cmd)
343 1.15 thorpej {
344 1.15 thorpej struct mii_data *mii = sc->mii_pdata;
345 1.15 thorpej
346 1.15 thorpej if (sc->mii_media_active != mii->mii_media_active ||
347 1.15 thorpej sc->mii_media_status != mii->mii_media_status ||
348 1.15 thorpej cmd == MII_MEDIACHG) {
349 1.15 thorpej (*mii->mii_statchg)(sc->mii_dev.dv_parent);
350 1.15 thorpej mii_phy_statusmsg(sc);
351 1.15 thorpej sc->mii_media_active = mii->mii_media_active;
352 1.15 thorpej sc->mii_media_status = mii->mii_media_status;
353 1.15 thorpej }
354 1.15 thorpej }
355 1.15 thorpej
356 1.15 thorpej void
357 1.18.2.3 nathanw mii_phy_statusmsg(struct mii_softc *sc)
358 1.15 thorpej {
359 1.15 thorpej struct mii_data *mii = sc->mii_pdata;
360 1.15 thorpej struct ifnet *ifp = mii->mii_ifp;
361 1.16 thorpej int s, baudrate, link_state, announce = 0;
362 1.15 thorpej
363 1.15 thorpej if (mii->mii_media_status & IFM_AVALID) {
364 1.15 thorpej if (mii->mii_media_status & IFM_ACTIVE)
365 1.15 thorpej link_state = LINK_STATE_UP;
366 1.15 thorpej else
367 1.15 thorpej link_state = LINK_STATE_DOWN;
368 1.15 thorpej } else
369 1.15 thorpej link_state = LINK_STATE_UNKNOWN;
370 1.15 thorpej
371 1.15 thorpej baudrate = ifmedia_baudrate(mii->mii_media_active);
372 1.15 thorpej
373 1.15 thorpej if (link_state != ifp->if_link_state) {
374 1.15 thorpej ifp->if_link_state = link_state;
375 1.16 thorpej /*
376 1.16 thorpej * XXX Right here we'd like to notify protocols
377 1.16 thorpej * XXX that the link status has changed, so that
378 1.16 thorpej * XXX e.g. Duplicate Address Detection can restart.
379 1.16 thorpej */
380 1.15 thorpej announce = 1;
381 1.15 thorpej }
382 1.15 thorpej
383 1.15 thorpej if (baudrate != ifp->if_baudrate) {
384 1.15 thorpej ifp->if_baudrate = baudrate;
385 1.15 thorpej announce = 1;
386 1.15 thorpej }
387 1.15 thorpej
388 1.16 thorpej if (announce) {
389 1.18.2.1 nathanw s = splnet();
390 1.15 thorpej rt_ifmsg(ifp);
391 1.16 thorpej splx(s);
392 1.16 thorpej }
393 1.5 drochner }
394 1.5 drochner
395 1.5 drochner /*
396 1.5 drochner * Initialize generic PHY media based on BMSR, called when a PHY is
397 1.5 drochner * attached. We expect to be set up to print a comma-separated list
398 1.5 drochner * of media names. Does not print a newline.
399 1.5 drochner */
400 1.5 drochner void
401 1.18.2.3 nathanw mii_phy_add_media(struct mii_softc *sc)
402 1.5 drochner {
403 1.6 thorpej struct mii_data *mii = sc->mii_pdata;
404 1.5 drochner const char *sep = "";
405 1.5 drochner
406 1.5 drochner #define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL)
407 1.5 drochner #define PRINT(s) printf("%s%s", sep, s); sep = ", "
408 1.5 drochner
409 1.6 thorpej if ((sc->mii_flags & MIIF_NOISOLATE) == 0)
410 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst),
411 1.6 thorpej MII_MEDIA_NONE);
412 1.6 thorpej
413 1.18.2.3 nathanw /*
414 1.18.2.3 nathanw * There are different interpretations for the bits in
415 1.18.2.3 nathanw * HomePNA PHYs. And there is really only one media type
416 1.18.2.3 nathanw * that is supported.
417 1.18.2.3 nathanw */
418 1.18.2.3 nathanw if (sc->mii_flags & MIIF_IS_HPNA) {
419 1.18.2.3 nathanw if (sc->mii_capabilities & BMSR_10THDX) {
420 1.18.2.3 nathanw ADD(IFM_MAKEWORD(IFM_ETHER, IFM_HPNA_1, 0,
421 1.18.2.3 nathanw sc->mii_inst),
422 1.18.2.3 nathanw MII_MEDIA_10_T);
423 1.18.2.3 nathanw PRINT("HomePNA1");
424 1.18.2.3 nathanw }
425 1.18.2.3 nathanw return;
426 1.18.2.3 nathanw }
427 1.18.2.3 nathanw
428 1.6 thorpej if (sc->mii_capabilities & BMSR_10THDX) {
429 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, sc->mii_inst),
430 1.6 thorpej MII_MEDIA_10_T);
431 1.5 drochner PRINT("10baseT");
432 1.5 drochner }
433 1.6 thorpej if (sc->mii_capabilities & BMSR_10TFDX) {
434 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, sc->mii_inst),
435 1.6 thorpej MII_MEDIA_10_T_FDX);
436 1.5 drochner PRINT("10baseT-FDX");
437 1.5 drochner }
438 1.6 thorpej if (sc->mii_capabilities & BMSR_100TXHDX) {
439 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, sc->mii_inst),
440 1.6 thorpej MII_MEDIA_100_TX);
441 1.5 drochner PRINT("100baseTX");
442 1.5 drochner }
443 1.6 thorpej if (sc->mii_capabilities & BMSR_100TXFDX) {
444 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, sc->mii_inst),
445 1.6 thorpej MII_MEDIA_100_TX_FDX);
446 1.5 drochner PRINT("100baseTX-FDX");
447 1.5 drochner }
448 1.6 thorpej if (sc->mii_capabilities & BMSR_100T4) {
449 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_T4, 0, sc->mii_inst),
450 1.6 thorpej MII_MEDIA_100_T4);
451 1.5 drochner PRINT("100baseT4");
452 1.5 drochner }
453 1.18.2.1 nathanw
454 1.18.2.1 nathanw if (sc->mii_extcapabilities & EXTSR_MEDIAMASK) {
455 1.18.2.1 nathanw /*
456 1.18.2.1 nathanw * XXX Right now only handle 1000SX and 1000TX. Need
457 1.18.2.1 nathanw * XXX to handle 1000LX and 1000CX some how.
458 1.18.2.1 nathanw *
459 1.18.2.1 nathanw * Note since it can take 5 seconds to auto-negotiate
460 1.18.2.1 nathanw * a gigabit link, we make anegticks 10 seconds for
461 1.18.2.1 nathanw * all the gigabit media types.
462 1.18.2.1 nathanw */
463 1.18.2.1 nathanw if (sc->mii_extcapabilities & EXTSR_1000XHDX) {
464 1.18.2.1 nathanw sc->mii_anegticks = 10;
465 1.18.2.2 nathanw sc->mii_flags |= MIIF_IS_1000X;
466 1.18.2.1 nathanw ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_SX, 0,
467 1.18.2.1 nathanw sc->mii_inst), MII_MEDIA_1000_X);
468 1.18.2.1 nathanw PRINT("1000baseSX");
469 1.18.2.1 nathanw }
470 1.18.2.1 nathanw if (sc->mii_extcapabilities & EXTSR_1000XFDX) {
471 1.18.2.1 nathanw sc->mii_anegticks = 10;
472 1.18.2.2 nathanw sc->mii_flags |= MIIF_IS_1000X;
473 1.18.2.1 nathanw ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_SX, IFM_FDX,
474 1.18.2.1 nathanw sc->mii_inst), MII_MEDIA_1000_X_FDX);
475 1.18.2.1 nathanw PRINT("1000baseSX-FDX");
476 1.18.2.1 nathanw }
477 1.18.2.1 nathanw
478 1.18.2.1 nathanw /*
479 1.18.2.1 nathanw * 1000baseT media needs to be able to manipulate
480 1.18.2.1 nathanw * master/slave mode. We set IFM_ETH_MASTER in
481 1.18.2.1 nathanw * the "don't care mask" and filter it out when
482 1.18.2.1 nathanw * the media is set.
483 1.18.2.1 nathanw *
484 1.18.2.1 nathanw * All 1000baseT PHYs have a 1000baseT control register.
485 1.18.2.1 nathanw */
486 1.18.2.1 nathanw if (sc->mii_extcapabilities & EXTSR_1000THDX) {
487 1.18.2.1 nathanw sc->mii_anegticks = 10;
488 1.18.2.1 nathanw sc->mii_flags |= MIIF_HAVE_GTCR;
489 1.18.2.1 nathanw mii->mii_media.ifm_mask |= IFM_ETH_MASTER;
490 1.18.2.2 nathanw ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, 0,
491 1.18.2.1 nathanw sc->mii_inst), MII_MEDIA_1000_T);
492 1.18.2.2 nathanw PRINT("1000baseT");
493 1.18.2.1 nathanw }
494 1.18.2.1 nathanw if (sc->mii_extcapabilities & EXTSR_1000TFDX) {
495 1.18.2.1 nathanw sc->mii_anegticks = 10;
496 1.18.2.1 nathanw sc->mii_flags |= MIIF_HAVE_GTCR;
497 1.18.2.1 nathanw mii->mii_media.ifm_mask |= IFM_ETH_MASTER;
498 1.18.2.2 nathanw ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, IFM_FDX,
499 1.18.2.1 nathanw sc->mii_inst), MII_MEDIA_1000_T_FDX);
500 1.18.2.2 nathanw PRINT("1000baseT-FDX");
501 1.18.2.1 nathanw }
502 1.18.2.1 nathanw }
503 1.18.2.1 nathanw
504 1.6 thorpej if (sc->mii_capabilities & BMSR_ANEG) {
505 1.6 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst),
506 1.6 thorpej MII_NMEDIA); /* intentionally invalid index */
507 1.5 drochner PRINT("auto");
508 1.5 drochner }
509 1.5 drochner #undef ADD
510 1.5 drochner #undef PRINT
511 1.9 thorpej }
512 1.9 thorpej
513 1.9 thorpej void
514 1.18.2.3 nathanw mii_phy_delete_media(struct mii_softc *sc)
515 1.9 thorpej {
516 1.9 thorpej struct mii_data *mii = sc->mii_pdata;
517 1.9 thorpej
518 1.9 thorpej ifmedia_delete_instance(&mii->mii_media, sc->mii_inst);
519 1.9 thorpej }
520 1.9 thorpej
521 1.9 thorpej int
522 1.18.2.3 nathanw mii_phy_activate(struct device *self, enum devact act)
523 1.9 thorpej {
524 1.9 thorpej int rv = 0;
525 1.9 thorpej
526 1.9 thorpej switch (act) {
527 1.9 thorpej case DVACT_ACTIVATE:
528 1.9 thorpej rv = EOPNOTSUPP;
529 1.9 thorpej break;
530 1.9 thorpej
531 1.9 thorpej case DVACT_DEACTIVATE:
532 1.9 thorpej /* Nothing special to do. */
533 1.9 thorpej break;
534 1.9 thorpej }
535 1.9 thorpej
536 1.9 thorpej return (rv);
537 1.9 thorpej }
538 1.9 thorpej
539 1.9 thorpej int
540 1.18.2.3 nathanw mii_phy_detach(struct device *self, int flags)
541 1.9 thorpej {
542 1.9 thorpej struct mii_softc *sc = (void *) self;
543 1.9 thorpej
544 1.9 thorpej if (sc->mii_flags & MIIF_DOINGAUTO)
545 1.17 thorpej callout_stop(&sc->mii_nway_ch);
546 1.9 thorpej
547 1.10 thorpej mii_phy_delete_media(sc);
548 1.9 thorpej
549 1.9 thorpej return (0);
550 1.18.2.1 nathanw }
551 1.18.2.1 nathanw
552 1.18.2.1 nathanw const struct mii_phydesc *
553 1.18.2.1 nathanw mii_phy_match(const struct mii_attach_args *ma, const struct mii_phydesc *mpd)
554 1.18.2.1 nathanw {
555 1.18.2.1 nathanw
556 1.18.2.1 nathanw for (; mpd->mpd_name != NULL; mpd++) {
557 1.18.2.1 nathanw if (MII_OUI(ma->mii_id1, ma->mii_id2) == mpd->mpd_oui &&
558 1.18.2.1 nathanw MII_MODEL(ma->mii_id2) == mpd->mpd_model)
559 1.18.2.1 nathanw return (mpd);
560 1.18.2.1 nathanw }
561 1.18.2.1 nathanw return (NULL);
562 1.1 thorpej }
563