rlphy.c revision 1.30.18.2 1 1.30.18.2 martin /* $NetBSD: rlphy.c,v 1.30.18.2 2020/04/08 14:08:08 martin Exp $ */
2 1.1 xtraeme /* $OpenBSD: rlphy.c,v 1.20 2005/07/31 05:27:30 pvalchev Exp $ */
3 1.1 xtraeme
4 1.1 xtraeme /*
5 1.1 xtraeme * Copyright (c) 1998, 1999 Jason L. Wright (jason (at) thought.net)
6 1.1 xtraeme * All rights reserved.
7 1.1 xtraeme *
8 1.1 xtraeme * Redistribution and use in source and binary forms, with or without
9 1.1 xtraeme * modification, are permitted provided that the following conditions
10 1.1 xtraeme * are met:
11 1.1 xtraeme * 1. Redistributions of source code must retain the above copyright
12 1.1 xtraeme * notice, this list of conditions and the following disclaimer.
13 1.1 xtraeme * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 xtraeme * notice, this list of conditions and the following disclaimer in the
15 1.1 xtraeme * documentation and/or other materials provided with the distribution.
16 1.1 xtraeme *
17 1.1 xtraeme * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 1.1 xtraeme * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 1.1 xtraeme * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 1.1 xtraeme * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
21 1.1 xtraeme * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 1.1 xtraeme * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 1.1 xtraeme * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 1.1 xtraeme * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25 1.1 xtraeme * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 1.1 xtraeme * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 1.1 xtraeme * POSSIBILITY OF SUCH DAMAGE.
28 1.1 xtraeme */
29 1.1 xtraeme
30 1.1 xtraeme /*
31 1.1 xtraeme * Driver for the internal PHY found on RTL8139 based nics, based
32 1.1 xtraeme * on drivers for the 'exphy' (Internal 3Com phys) and 'nsphy'
33 1.1 xtraeme * (National Semiconductor DP83840).
34 1.1 xtraeme */
35 1.1 xtraeme
36 1.1 xtraeme /*
37 1.1 xtraeme * Ported to NetBSD by Juan Romero Pardines <xtraeme (at) NetBSD.org>
38 1.1 xtraeme */
39 1.1 xtraeme
40 1.1 xtraeme #include <sys/cdefs.h>
41 1.30.18.2 martin __KERNEL_RCSID(0, "$NetBSD: rlphy.c,v 1.30.18.2 2020/04/08 14:08:08 martin Exp $");
42 1.1 xtraeme
43 1.1 xtraeme #include <sys/param.h>
44 1.1 xtraeme #include <sys/systm.h>
45 1.1 xtraeme #include <sys/kernel.h>
46 1.1 xtraeme #include <sys/device.h>
47 1.1 xtraeme #include <sys/socket.h>
48 1.1 xtraeme #include <sys/errno.h>
49 1.1 xtraeme
50 1.1 xtraeme #include <net/if.h>
51 1.1 xtraeme #include <net/if_media.h>
52 1.1 xtraeme
53 1.1 xtraeme #include <dev/mii/mii.h>
54 1.1 xtraeme #include <dev/mii/miivar.h>
55 1.1 xtraeme #include <dev/mii/miidevs.h>
56 1.17 ad #include <sys/bus.h>
57 1.1 xtraeme #include <dev/ic/rtl81x9reg.h>
58 1.1 xtraeme
59 1.14 tsutsui struct rlphy_softc {
60 1.14 tsutsui struct mii_softc sc_mii;
61 1.30.18.1 christos int sc_rtl8201;
62 1.14 tsutsui };
63 1.14 tsutsui
64 1.30.18.1 christos static int rlphymatch(device_t, cfdata_t, void *);
65 1.30.18.1 christos static void rlphyattach(device_t, device_t, void *);
66 1.1 xtraeme
67 1.22 xtraeme CFATTACH_DECL_NEW(rlphy, sizeof(struct rlphy_softc),
68 1.1 xtraeme rlphymatch, rlphyattach, mii_phy_detach, mii_phy_activate);
69 1.1 xtraeme
70 1.30.18.1 christos static int rlphy_service(struct mii_softc *, struct mii_data *, int);
71 1.30.18.1 christos static void rlphy_status(struct mii_softc *);
72 1.30.18.1 christos static void rlphy_reset(struct mii_softc *);
73 1.13 tsutsui
74 1.1 xtraeme const struct mii_phy_funcs rlphy_funcs = {
75 1.13 tsutsui rlphy_service, rlphy_status, rlphy_reset,
76 1.1 xtraeme };
77 1.1 xtraeme
78 1.7 chs static const struct mii_phydesc rlphys[] = {
79 1.30.18.1 christos MII_PHY_DESC(yyREALTEK, RTL8201L),
80 1.30.18.1 christos MII_PHY_DESC(REALTEK, RTL8201E),
81 1.30.18.1 christos MII_PHY_DESC(ICPLUS, IP101),
82 1.30.18.1 christos MII_PHY_END,
83 1.7 chs };
84 1.7 chs
85 1.30.18.1 christos static int
86 1.22 xtraeme rlphymatch(device_t parent, cfdata_t match, void *aux)
87 1.1 xtraeme {
88 1.1 xtraeme struct mii_attach_args *ma = aux;
89 1.27 pooka struct mii_data *mii = ma->mii_data;
90 1.27 pooka
91 1.27 pooka if (mii->mii_instance != 0)
92 1.27 pooka return 0;
93 1.1 xtraeme
94 1.7 chs if (mii_phy_match(ma, rlphys) != NULL)
95 1.30.18.1 christos return 10;
96 1.1 xtraeme
97 1.1 xtraeme if (MII_OUI(ma->mii_id1, ma->mii_id2) != 0 ||
98 1.1 xtraeme MII_MODEL(ma->mii_id2) != 0)
99 1.1 xtraeme return 0;
100 1.1 xtraeme
101 1.11 tsutsui if (!device_is_a(parent, "rtk") && !device_is_a(parent, "re"))
102 1.1 xtraeme return 0;
103 1.1 xtraeme
104 1.1 xtraeme /*
105 1.1 xtraeme * A "real" phy should get preference, but on the 8139 there
106 1.1 xtraeme * is no phyid register.
107 1.1 xtraeme */
108 1.1 xtraeme return 5;
109 1.1 xtraeme }
110 1.1 xtraeme
111 1.30.18.1 christos static void
112 1.22 xtraeme rlphyattach(device_t parent, device_t self, void *aux)
113 1.1 xtraeme {
114 1.14 tsutsui struct rlphy_softc *rsc = device_private(self);
115 1.14 tsutsui struct mii_softc *sc = &rsc->sc_mii;
116 1.1 xtraeme struct mii_attach_args *ma = aux;
117 1.1 xtraeme struct mii_data *mii = ma->mii_data;
118 1.1 xtraeme
119 1.18 uwe aprint_naive("\n");
120 1.1 xtraeme if (MII_MODEL(ma->mii_id2) == MII_MODEL_yyREALTEK_RTL8201L) {
121 1.30.18.1 christos rsc->sc_rtl8201 = 1;
122 1.1 xtraeme aprint_normal(": %s, rev. %d\n", MII_STR_yyREALTEK_RTL8201L,
123 1.1 xtraeme MII_REV(ma->mii_id2));
124 1.30.18.1 christos } else if (MII_MODEL(ma->mii_id2) == MII_MODEL_REALTEK_RTL8201E) {
125 1.30.18.1 christos rsc->sc_rtl8201 = 1;
126 1.30.18.1 christos aprint_normal(": %s, rev. %d\n", MII_STR_REALTEK_RTL8201E,
127 1.30.18.1 christos MII_REV(ma->mii_id2));
128 1.1 xtraeme } else
129 1.1 xtraeme aprint_normal(": Realtek internal PHY\n");
130 1.1 xtraeme
131 1.22 xtraeme sc->mii_dev = self;
132 1.1 xtraeme sc->mii_inst = mii->mii_instance;
133 1.1 xtraeme sc->mii_phy = ma->mii_phyno;
134 1.1 xtraeme sc->mii_funcs = &rlphy_funcs;
135 1.1 xtraeme sc->mii_pdata = mii;
136 1.1 xtraeme sc->mii_flags = ma->mii_flags;
137 1.1 xtraeme
138 1.1 xtraeme sc->mii_flags |= MIIF_NOISOLATE;
139 1.1 xtraeme
140 1.30.18.2 martin mii_lock(mii);
141 1.30.18.2 martin
142 1.1 xtraeme PHY_RESET(sc);
143 1.1 xtraeme
144 1.30.18.1 christos PHY_READ(sc, MII_BMSR, &sc->mii_capabilities);
145 1.30.18.1 christos sc->mii_capabilities &= ma->mii_capmask;
146 1.30.18.2 martin
147 1.30.18.2 martin mii_unlock(mii);
148 1.30.18.2 martin
149 1.30.18.2 martin mii_phy_add_media(sc);
150 1.1 xtraeme }
151 1.1 xtraeme
152 1.30.18.1 christos static int
153 1.1 xtraeme rlphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
154 1.1 xtraeme {
155 1.1 xtraeme struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
156 1.1 xtraeme
157 1.30.18.1 christos /* Can't isolate the RTL8139 phy, so it has to be the only one. */
158 1.1 xtraeme if (IFM_INST(ife->ifm_media) != sc->mii_inst)
159 1.1 xtraeme panic("rlphy_service: attempt to isolate phy");
160 1.1 xtraeme
161 1.30.18.2 martin KASSERT(mii_locked(mii));
162 1.30.18.2 martin
163 1.1 xtraeme switch (cmd) {
164 1.1 xtraeme case MII_POLLSTAT:
165 1.1 xtraeme break;
166 1.1 xtraeme
167 1.1 xtraeme case MII_MEDIACHG:
168 1.30.18.1 christos /* If the interface is not up, don't do anything. */
169 1.1 xtraeme if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
170 1.1 xtraeme break;
171 1.1 xtraeme
172 1.26 mlelstv mii_phy_setmedia(sc);
173 1.1 xtraeme break;
174 1.1 xtraeme
175 1.1 xtraeme case MII_TICK:
176 1.30.18.1 christos /* Is the interface even up? */
177 1.1 xtraeme if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
178 1.30.18.1 christos return 0;
179 1.1 xtraeme
180 1.30.18.1 christos /* Only used for autonegotiation. */
181 1.1 xtraeme if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
182 1.1 xtraeme break;
183 1.1 xtraeme
184 1.1 xtraeme /*
185 1.1 xtraeme * The RealTek PHY's autonegotiation doesn't need to be
186 1.1 xtraeme * kicked; it continues in the background.
187 1.1 xtraeme */
188 1.1 xtraeme break;
189 1.1 xtraeme
190 1.1 xtraeme case MII_DOWN:
191 1.1 xtraeme mii_phy_down(sc);
192 1.30.18.1 christos return 0;
193 1.1 xtraeme }
194 1.1 xtraeme
195 1.1 xtraeme /* Update the media status. */
196 1.1 xtraeme mii_phy_status(sc);
197 1.1 xtraeme
198 1.1 xtraeme /* Callback if something changed. */
199 1.1 xtraeme mii_phy_update(sc, cmd);
200 1.30.18.1 christos return 0;
201 1.1 xtraeme }
202 1.1 xtraeme
203 1.30.18.1 christos static void
204 1.1 xtraeme rlphy_status(struct mii_softc *sc)
205 1.1 xtraeme {
206 1.14 tsutsui struct rlphy_softc *rsc = (void *)sc;
207 1.1 xtraeme struct mii_data *mii = sc->mii_pdata;
208 1.1 xtraeme struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
209 1.30.18.1 christos uint16_t bmsr, bmcr, anar, anlpar, result, reg;
210 1.1 xtraeme
211 1.30.18.2 martin KASSERT(mii_locked(mii));
212 1.30.18.2 martin
213 1.1 xtraeme mii->mii_media_status = IFM_AVALID;
214 1.1 xtraeme mii->mii_media_active = IFM_ETHER;
215 1.1 xtraeme
216 1.30.18.1 christos PHY_READ(sc, MII_BMSR, &bmsr);
217 1.30.18.1 christos PHY_READ(sc, MII_BMSR, &bmsr);
218 1.1 xtraeme if (bmsr & BMSR_LINK)
219 1.1 xtraeme mii->mii_media_status |= IFM_ACTIVE;
220 1.1 xtraeme
221 1.30.18.1 christos PHY_READ(sc, MII_BMCR, &bmcr);
222 1.1 xtraeme if (bmcr & BMCR_ISO) {
223 1.1 xtraeme mii->mii_media_active |= IFM_NONE;
224 1.1 xtraeme mii->mii_media_status = 0;
225 1.1 xtraeme return;
226 1.1 xtraeme }
227 1.1 xtraeme
228 1.1 xtraeme if (bmcr & BMCR_LOOP)
229 1.1 xtraeme mii->mii_media_active |= IFM_LOOP;
230 1.1 xtraeme
231 1.1 xtraeme if (bmcr & BMCR_AUTOEN) {
232 1.1 xtraeme /*
233 1.1 xtraeme * NWay autonegotiation takes the highest-order common
234 1.1 xtraeme * bit of the ANAR and ANLPAR (i.e. best media advertised
235 1.1 xtraeme * both by us and our link partner).
236 1.1 xtraeme */
237 1.1 xtraeme if ((bmsr & BMSR_ACOMP) == 0) {
238 1.1 xtraeme /* Erg, still trying, I guess... */
239 1.1 xtraeme mii->mii_media_active |= IFM_NONE;
240 1.1 xtraeme return;
241 1.1 xtraeme }
242 1.1 xtraeme
243 1.30.18.1 christos PHY_READ(sc, MII_ANAR, &anar);
244 1.30.18.1 christos PHY_READ(sc, MII_ANLPAR, &anlpar);
245 1.30.18.1 christos result = anar & anlpar;
246 1.30.18.1 christos if (result != 0) {
247 1.30.18.1 christos if (result & ANLPAR_TX_FD)
248 1.30.18.1 christos mii->mii_media_active |= IFM_100_TX | IFM_FDX;
249 1.30.18.1 christos else if (result & ANLPAR_T4)
250 1.30.18.1 christos mii->mii_media_active |= IFM_100_T4 | IFM_HDX;
251 1.30.18.1 christos else if (result & ANLPAR_TX)
252 1.30.18.1 christos mii->mii_media_active |= IFM_100_TX | IFM_HDX;
253 1.30.18.1 christos else if (result & ANLPAR_10_FD)
254 1.30.18.1 christos mii->mii_media_active |= IFM_10_T | IFM_FDX;
255 1.30.18.1 christos else if (result & ANLPAR_10)
256 1.30.18.1 christos mii->mii_media_active |= IFM_10_T | IFM_HDX;
257 1.1 xtraeme else
258 1.1 xtraeme mii->mii_media_active |= IFM_NONE;
259 1.1 xtraeme return;
260 1.1 xtraeme }
261 1.1 xtraeme
262 1.1 xtraeme /*
263 1.1 xtraeme * If the other side doesn't support NWAY, then the
264 1.1 xtraeme * best we can do is determine if we have a 10Mbps or
265 1.28 msaitoh * 100Mbps link. There's no way to know if the link
266 1.1 xtraeme * is full or half duplex, so we default to half duplex
267 1.1 xtraeme * and hope that the user is clever enough to manually
268 1.1 xtraeme * change the media settings if we're wrong.
269 1.1 xtraeme */
270 1.1 xtraeme
271 1.1 xtraeme /*
272 1.1 xtraeme * The RealTek PHY supports non-NWAY link speed
273 1.1 xtraeme * detection, however it does not report the link
274 1.1 xtraeme * detection results via the ANLPAR or BMSR registers.
275 1.1 xtraeme * (What? RealTek doesn't do things the way everyone
276 1.1 xtraeme * else does? I'm just shocked, shocked I tell you.)
277 1.1 xtraeme * To determine the link speed, we have to do one
278 1.1 xtraeme * of two things:
279 1.1 xtraeme *
280 1.30.18.1 christos * - If this is a standalone RealTek RTL8201 PHY,
281 1.1 xtraeme * we can determine the link speed by testing bit 0
282 1.1 xtraeme * in the magic, vendor-specific register at offset
283 1.1 xtraeme * 0x19.
284 1.1 xtraeme *
285 1.1 xtraeme * - If this is a RealTek MAC with integrated PHY, we
286 1.1 xtraeme * can test the 'SPEED10' bit of the MAC's media status
287 1.1 xtraeme * register.
288 1.1 xtraeme */
289 1.30.18.1 christos if (rsc->sc_rtl8201) {
290 1.30.18.1 christos PHY_READ(sc, 0x0019, ®);
291 1.30.18.1 christos if (reg & 0x01)
292 1.14 tsutsui mii->mii_media_active |= IFM_100_TX;
293 1.14 tsutsui else
294 1.14 tsutsui mii->mii_media_active |= IFM_10_T;
295 1.14 tsutsui } else {
296 1.30.18.1 christos PHY_READ(sc, RTK_MEDIASTAT, ®);
297 1.30.18.1 christos if (reg & RTK_MEDIASTAT_SPEED10)
298 1.1 xtraeme mii->mii_media_active |= IFM_10_T;
299 1.1 xtraeme else
300 1.1 xtraeme mii->mii_media_active |= IFM_100_TX;
301 1.1 xtraeme }
302 1.29 msaitoh mii->mii_media_active |= IFM_HDX;
303 1.1 xtraeme } else
304 1.1 xtraeme mii->mii_media_active = ife->ifm_media;
305 1.1 xtraeme }
306 1.13 tsutsui
307 1.13 tsutsui static void
308 1.13 tsutsui rlphy_reset(struct mii_softc *sc)
309 1.13 tsutsui {
310 1.13 tsutsui
311 1.30.18.2 martin KASSERT(mii_locked(sc->mii_pdata));
312 1.30.18.2 martin
313 1.13 tsutsui mii_phy_reset(sc);
314 1.13 tsutsui
315 1.13 tsutsui /*
316 1.13 tsutsui * XXX RealTek PHY doesn't set the BMCR properly after
317 1.13 tsutsui * XXX reset, which breaks autonegotiation.
318 1.13 tsutsui */
319 1.13 tsutsui PHY_WRITE(sc, MII_BMCR, BMCR_AUTOEN);
320 1.13 tsutsui }
321