1 /* $NetBSD: tlphy.c,v 1.58 2008/11/17 03:04:27 dyoung Exp $ */
4 * Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
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.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
20 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
34 * Copyright (c) 1997 Manuel Bouyer. All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
45 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
46 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
47 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
48 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
49 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
50 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
51 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
52 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
53 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
54 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
58 * Driver for Texas Instruments's ThunderLAN PHYs
61 #include <sys/cdefs.h>
62 __KERNEL_RCSID(0, "$NetBSD: tlphy.c,v 1.58 2008/11/17 03:04:27 dyoung Exp $");
64 #include <sys/param.h>
65 #include <sys/systm.h>
66 #include <sys/kernel.h>
67 #include <sys/device.h>
68 #include <sys/socket.h>
69 #include <sys/errno.h>
74 #include <net/if_media.h>
76 #include <net/if_ether.h>
78 #include <dev/mii/mii.h>
79 #include <dev/mii/miivar.h>
80 #include <dev/mii/miidevs.h>
82 #include <dev/mii/tlphyreg.h>
83 #include <dev/mii/tlphyvar.h>
85 /* ThunderLAN PHY can only be on a ThunderLAN */
86 #include <dev/pci/if_tlvar.h>
89 struct mii_softc sc_mii
; /* generic PHY */
94 static int tlphymatch(device_t
, cfdata_t
, void *);
95 static void tlphyattach(device_t
, device_t
, void *);
97 CFATTACH_DECL_NEW(tlphy
, sizeof(struct tlphy_softc
),
98 tlphymatch
, tlphyattach
, mii_phy_detach
, mii_phy_activate
);
100 static int tlphy_service(struct mii_softc
*, struct mii_data
*, int);
101 static int tlphy_auto(struct tlphy_softc
*, int);
102 static void tlphy_acomp(struct tlphy_softc
*);
103 static void tlphy_status(struct mii_softc
*);
105 static const struct mii_phy_funcs tlphy_funcs
= {
106 tlphy_service
, tlphy_status
, mii_phy_reset
,
109 static const struct mii_phydesc tlphys
[] = {
110 { MII_OUI_TI
, MII_MODEL_TI_TLAN10T
,
111 MII_STR_TI_TLAN10T
},
118 tlphymatch(device_t parent
, cfdata_t match
, void *aux
)
120 struct mii_attach_args
*ma
= aux
;
122 if (mii_phy_match(ma
, tlphys
) != NULL
)
129 tlphyattach(device_t parent
, device_t self
, void *aux
)
131 struct tlphy_softc
*tsc
= device_private(self
);
132 struct mii_softc
*sc
= &tsc
->sc_mii
;
133 struct tl_softc
*tlsc
= device_private(device_parent(self
));
134 struct mii_attach_args
*ma
= aux
;
135 struct mii_data
*mii
= ma
->mii_data
;
136 const struct mii_phydesc
*mpd
;
137 const char *sep
= "";
139 mpd
= mii_phy_match(ma
, tlphys
);
140 aprint_naive(": Media interface\n");
141 aprint_normal(": %s, rev. %d\n", mpd
->mpd_name
, MII_REV(ma
->mii_id2
));
144 sc
->mii_inst
= mii
->mii_instance
;
145 sc
->mii_phy
= ma
->mii_phyno
;
146 sc
->mii_funcs
= &tlphy_funcs
;
148 sc
->mii_flags
= ma
->mii_flags
;
149 sc
->mii_anegticks
= MII_ANEGTICKS
;
154 * Note that if we're on a device that also supports 100baseTX,
155 * we are not going to want to use the built-in 10baseT port,
156 * since there will be another PHY on the MII wired up to the
157 * UTP connector. The parent indicates this to us by specifying
158 * the TLPHY_MEDIA_NO_10_T bit.
160 tsc
->sc_tlphycap
= tlsc
->tl_product
->tp_tlphymedia
;
161 if ((tsc
->sc_tlphycap
& TLPHY_MEDIA_NO_10_T
) == 0)
162 sc
->mii_capabilities
=
163 PHY_READ(sc
, MII_BMSR
) & ma
->mii_capmask
;
165 sc
->mii_capabilities
= 0;
168 #define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL)
169 #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", "
171 aprint_normal_dev(self
, "");
172 if (tsc
->sc_tlphycap
) {
173 if (tsc
->sc_tlphycap
& TLPHY_MEDIA_10_2
) {
174 ADD(IFM_MAKEWORD(IFM_ETHER
, IFM_10_2
, 0,
177 } else if (tsc
->sc_tlphycap
& TLPHY_MEDIA_10_5
) {
178 ADD(IFM_MAKEWORD(IFM_ETHER
, IFM_10_5
, 0,
183 if (sc
->mii_capabilities
& BMSR_MEDIAMASK
) {
184 aprint_normal("%s", sep
);
185 mii_phy_add_media(sc
);
186 } else if ((tsc
->sc_tlphycap
&
187 (TLPHY_MEDIA_10_2
| TLPHY_MEDIA_10_5
)) == 0)
188 aprint_error("no media present");
189 else if (!pmf_device_register(self
, NULL
, mii_phy_resume
)) {
191 aprint_error_dev(self
, "couldn't establish power handler");
199 tlphy_service(struct mii_softc
*sc
, struct mii_data
*mii
, int cmd
)
201 struct tlphy_softc
*tsc
= (struct tlphy_softc
*)sc
;
202 struct ifmedia_entry
*ife
= mii
->mii_media
.ifm_cur
;
205 if ((sc
->mii_flags
& MIIF_DOINGAUTO
) == 0 && tsc
->sc_need_acomp
)
211 * If we're not polling our PHY instance, just return.
213 if (IFM_INST(ife
->ifm_media
) != sc
->mii_inst
)
219 * If the media indicates a different PHY instance,
222 if (IFM_INST(ife
->ifm_media
) != sc
->mii_inst
) {
223 reg
= PHY_READ(sc
, MII_BMCR
);
224 PHY_WRITE(sc
, MII_BMCR
, reg
| BMCR_ISO
);
229 * If the interface is not up, don't do anything.
231 if ((mii
->mii_ifp
->if_flags
& IFF_UP
) == 0)
234 switch (IFM_SUBTYPE(ife
->ifm_media
)) {
237 * The ThunderLAN PHY doesn't self-configure after
238 * an autonegotiation cycle, so there's no such
239 * thing as "already in auto mode".
241 (void) tlphy_auto(tsc
, 1);
245 PHY_WRITE(sc
, MII_BMCR
, 0);
246 PHY_WRITE(sc
, MII_TLPHY_CTRL
, CTRL_AUISEL
);
250 PHY_WRITE(sc
, MII_TLPHY_CTRL
, 0);
252 mii_phy_setmedia(sc
);
258 * If we're not currently selected, just return.
260 if (IFM_INST(ife
->ifm_media
) != sc
->mii_inst
)
264 * Only used for autonegotiation.
266 if (IFM_SUBTYPE(ife
->ifm_media
) != IFM_AUTO
)
270 * Is the interface even up?
272 if ((mii
->mii_ifp
->if_flags
& IFF_UP
) == 0)
276 * XXX WHAT ABOUT CHECKING LINK ON THE BNC/AUI?!
279 if (mii_phy_tick(sc
) == EJUSTRETURN
)
288 /* Update the media status. */
291 /* Callback if something changed. */
292 mii_phy_update(sc
, cmd
);
297 tlphy_status(struct mii_softc
*sc
)
299 struct tlphy_softc
*tsc
= (struct tlphy_softc
*)sc
;
300 struct mii_data
*mii
= sc
->mii_pdata
;
301 int bmsr
, bmcr
, tlctrl
;
303 mii
->mii_media_status
= IFM_AVALID
;
304 mii
->mii_media_active
= IFM_ETHER
;
306 bmcr
= PHY_READ(sc
, MII_BMCR
);
307 if (bmcr
& BMCR_ISO
) {
308 mii
->mii_media_active
|= IFM_NONE
;
309 mii
->mii_media_status
= 0;
313 tlctrl
= PHY_READ(sc
, MII_TLPHY_CTRL
);
314 if (tlctrl
& CTRL_AUISEL
) {
315 if (tsc
->sc_tlphycap
& TLPHY_MEDIA_10_2
)
316 mii
->mii_media_active
|= IFM_10_2
;
317 else if (tsc
->sc_tlphycap
& TLPHY_MEDIA_10_5
)
318 mii
->mii_media_active
|= IFM_10_5
;
320 printf("%s: AUI selected with no matching media !\n",
321 device_xname(sc
->mii_dev
));
322 mii
->mii_media_status
|= IFM_ACTIVE
;
326 bmsr
= PHY_READ(sc
, MII_BMSR
) |
327 PHY_READ(sc
, MII_BMSR
);
328 if (bmsr
& BMSR_LINK
)
329 mii
->mii_media_status
|= IFM_ACTIVE
;
331 if (bmcr
& BMCR_LOOP
)
332 mii
->mii_media_active
|= IFM_LOOP
;
335 * Grr, braindead ThunderLAN PHY doesn't have any way to
336 * tell which media is actually active. (Note it also
337 * doesn't self-configure after autonegotiation.) We
338 * just have to report what's in the BMCR.
341 mii
->mii_media_active
|= IFM_FDX
;
342 mii
->mii_media_active
|= IFM_10_T
;
346 tlphy_auto(struct tlphy_softc
*tsc
, int waitfor
)
348 struct mii_softc
*sc
= &tsc
->sc_mii
;
351 switch ((error
= mii_phy_auto(sc
, waitfor
))) {
354 * Just assume we're not in full-duplex mode.
355 * XXX Check link and try AUI/BNC?
357 PHY_WRITE(sc
, MII_BMCR
, 0);
361 /* Flag that we need to program when it completes. */
362 tsc
->sc_need_acomp
= 1;
373 tlphy_acomp(struct tlphy_softc
*tsc
)
375 struct mii_softc
*sc
= &tsc
->sc_mii
;
378 tsc
->sc_need_acomp
= 0;
381 * Grr, braindead ThunderLAN PHY doesn't self-configure
382 * after autonegotiation. We have to do it ourselves
383 * based on the link partner status.
386 aner
= PHY_READ(sc
, MII_ANER
);
387 if (aner
& ANER_LPAN
) {
388 anlpar
= PHY_READ(sc
, MII_ANLPAR
) &
389 PHY_READ(sc
, MII_ANAR
);
390 if (anlpar
& ANAR_10_FD
) {
391 PHY_WRITE(sc
, MII_BMCR
, BMCR_FDX
);
395 PHY_WRITE(sc
, MII_BMCR
, 0);