Deleted Added
full compact
rlphy.c (217910) rlphy.c (221407)
1/*-
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

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
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

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
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/dev/mii/rlphy.c 217910 2011-01-26 21:07:44Z yongari $");
34__FBSDID("$FreeBSD: head/sys/dev/mii/rlphy.c 221407 2011-05-03 19:51:29Z marius $");
35
36/*
37 * driver for RealTek 8139 internal PHYs
38 */
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/kernel.h>

--- 9 unchanged lines hidden (view full) ---

52#include <dev/mii/miivar.h>
53#include "miidevs.h"
54
55#include <machine/bus.h>
56#include <pci/if_rlreg.h>
57
58#include "miibus_if.h"
59
35
36/*
37 * driver for RealTek 8139 internal PHYs
38 */
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/kernel.h>

--- 9 unchanged lines hidden (view full) ---

52#include <dev/mii/miivar.h>
53#include "miidevs.h"
54
55#include <machine/bus.h>
56#include <pci/if_rlreg.h>
57
58#include "miibus_if.h"
59
60struct rlphy_softc {
61 struct mii_softc sc_mii; /* generic PHY */
62 int sc_is_RTL8201L; /* is an external RTL8201L PHY */
63};
64
65static int rlphy_probe(device_t);
66static int rlphy_attach(device_t);
67
68static device_method_t rlphy_methods[] = {
69 /* device interface */
70 DEVMETHOD(device_probe, rlphy_probe),
71 DEVMETHOD(device_attach, rlphy_attach),
72 DEVMETHOD(device_detach, mii_phy_detach),
73 DEVMETHOD(device_shutdown, bus_generic_shutdown),
74 { 0, 0 }
75};
76
77static devclass_t rlphy_devclass;
78
79static driver_t rlphy_driver = {
80 "rlphy",
81 rlphy_methods,
60static int rlphy_probe(device_t);
61static int rlphy_attach(device_t);
62
63static device_method_t rlphy_methods[] = {
64 /* device interface */
65 DEVMETHOD(device_probe, rlphy_probe),
66 DEVMETHOD(device_attach, rlphy_attach),
67 DEVMETHOD(device_detach, mii_phy_detach),
68 DEVMETHOD(device_shutdown, bus_generic_shutdown),
69 { 0, 0 }
70};
71
72static devclass_t rlphy_devclass;
73
74static driver_t rlphy_driver = {
75 "rlphy",
76 rlphy_methods,
82 sizeof(struct rlphy_softc)
77 sizeof(struct mii_softc)
83};
84
85DRIVER_MODULE(rlphy, miibus, rlphy_driver, rlphy_devclass, 0, 0);
86
87static int rlphy_service(struct mii_softc *, struct mii_data *, int);
88static void rlphy_status(struct mii_softc *);
89
90/*
91 * RealTek internal PHYs don't have vendor/device ID registers;
92 * re(4) and rl(4) fake up a return value of all zeros.
93 */
94static const struct mii_phydesc rlintphys[] = {
95 { 0, 0, "RealTek internal media interface" },
96 MII_PHY_END
97};
98
99static const struct mii_phydesc rlphys[] = {
78};
79
80DRIVER_MODULE(rlphy, miibus, rlphy_driver, rlphy_devclass, 0, 0);
81
82static int rlphy_service(struct mii_softc *, struct mii_data *, int);
83static void rlphy_status(struct mii_softc *);
84
85/*
86 * RealTek internal PHYs don't have vendor/device ID registers;
87 * re(4) and rl(4) fake up a return value of all zeros.
88 */
89static const struct mii_phydesc rlintphys[] = {
90 { 0, 0, "RealTek internal media interface" },
91 MII_PHY_END
92};
93
94static const struct mii_phydesc rlphys[] = {
100 MII_PHY_DESC(REALTEK, RTL8201L),
101 MII_PHY_DESC(xxREALTEK, RTL8201E),
102 MII_PHY_DESC(ICPLUS, IP101),
95 MII_PHY_DESC(yyREALTEK, RTL8201L),
96 MII_PHY_DESC(REALTEK, RTL8201E),
97 MII_PHY_DESC(xxICPLUS, IP101),
103 MII_PHY_END
104};
105
98 MII_PHY_END
99};
100
101static const struct mii_phy_funcs rlphy_funcs = {
102 rlphy_service,
103 rlphy_status,
104 mii_phy_reset
105};
106
106static int
107rlphy_probe(device_t dev)
108{
109 const char *nic;
110 int rv;
111
112 rv = mii_phy_dev_probe(dev, rlphys, BUS_PROBE_DEFAULT);
113 if (rv <= 0)
114 return (rv);
115
116 nic = device_get_name(device_get_parent(device_get_parent(dev)));
117 if (strcmp(nic, "rl") == 0 || strcmp(nic, "re") == 0)
118 return (mii_phy_dev_probe(dev, rlintphys, BUS_PROBE_DEFAULT));
119 return (ENXIO);
120}
121
122static int
123rlphy_attach(device_t dev)
124{
107static int
108rlphy_probe(device_t dev)
109{
110 const char *nic;
111 int rv;
112
113 rv = mii_phy_dev_probe(dev, rlphys, BUS_PROBE_DEFAULT);
114 if (rv <= 0)
115 return (rv);
116
117 nic = device_get_name(device_get_parent(device_get_parent(dev)));
118 if (strcmp(nic, "rl") == 0 || strcmp(nic, "re") == 0)
119 return (mii_phy_dev_probe(dev, rlintphys, BUS_PROBE_DEFAULT));
120 return (ENXIO);
121}
122
123static int
124rlphy_attach(device_t dev)
125{
125 struct mii_softc *sc;
126 struct mii_attach_args *ma;
127 struct mii_data *mii;
128 struct rlphy_softc *rsc;
129
126
130 sc = device_get_softc(dev);
131 ma = device_get_ivars(dev);
132 sc->mii_dev = device_get_parent(dev);
133 mii = ma->mii_data;
134
135 /*
136 * Check whether we're the RTL8201L PHY and remember so the status
137 * routine can query the proper register for speed detection.
138 */
139 rsc = (struct rlphy_softc *)sc;
140 if (mii_phy_dev_probe(dev, rlphys, 0) == 0)
141 rsc->sc_is_RTL8201L++;
142
143 LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
144
145 sc->mii_flags = miibus_get_flags(dev);
146 sc->mii_inst = mii->mii_instance++;
147 sc->mii_phy = ma->mii_phyno;
148 sc->mii_service = rlphy_service;
149 sc->mii_pdata = mii;
150
151 /*
152 * The RealTek PHY can never be isolated.
153 */
127 /*
128 * The RealTek PHY can never be isolated.
129 */
154 sc->mii_flags |= MIIF_NOISOLATE;
155
156#define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL)
157
158 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_LOOP, sc->mii_inst),
159 MII_MEDIA_100_TX);
160
161 mii_phy_reset(sc);
162
163 sc->mii_capabilities = PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
164 device_printf(dev, " ");
165 mii_phy_add_media(sc);
166 printf("\n");
167#undef ADD
168 MIIBUS_MEDIAINIT(sc->mii_dev);
130 mii_phy_dev_attach(dev, MIIF_NOISOLATE | MIIF_NOMANPAUSE,
131 &rlphy_funcs, 1);
169 return (0);
170}
171
172static int
173rlphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
174{
175
176 switch (cmd) {

--- 20 unchanged lines hidden (view full) ---

197 /*
198 * The RealTek PHY's autonegotiation doesn't need to be
199 * kicked; it continues in the background.
200 */
201 break;
202 }
203
204 /* Update the media status. */
132 return (0);
133}
134
135static int
136rlphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
137{
138
139 switch (cmd) {

--- 20 unchanged lines hidden (view full) ---

160 /*
161 * The RealTek PHY's autonegotiation doesn't need to be
162 * kicked; it continues in the background.
163 */
164 break;
165 }
166
167 /* Update the media status. */
205 rlphy_status(sc);
168 PHY_STATUS(sc);
206
207 /* Callback if something changed. */
208 mii_phy_update(sc, cmd);
209 return (0);
210}
211
212static void
213rlphy_status(struct mii_softc *phy)
214{
169
170 /* Callback if something changed. */
171 mii_phy_update(sc, cmd);
172 return (0);
173}
174
175static void
176rlphy_status(struct mii_softc *phy)
177{
215 struct rlphy_softc *rsc =(struct rlphy_softc *)phy;
216 struct mii_data *mii = phy->mii_pdata;
217 struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
218 int bmsr, bmcr, anlpar;
219
220 mii->mii_media_status = IFM_AVALID;
221 mii->mii_media_active = IFM_ETHER;
222
223 bmsr = PHY_READ(phy, MII_BMSR) | PHY_READ(phy, MII_BMSR);

--- 31 unchanged lines hidden (view full) ---

255 else if (anlpar & ANLPAR_TX)
256 mii->mii_media_active |= IFM_100_TX|IFM_HDX;
257 else if (anlpar & ANLPAR_10_FD)
258 mii->mii_media_active |= IFM_10_T|IFM_FDX;
259 else if (anlpar & ANLPAR_10)
260 mii->mii_media_active |= IFM_10_T|IFM_HDX;
261 else
262 mii->mii_media_active |= IFM_NONE;
178 struct mii_data *mii = phy->mii_pdata;
179 struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
180 int bmsr, bmcr, anlpar;
181
182 mii->mii_media_status = IFM_AVALID;
183 mii->mii_media_active = IFM_ETHER;
184
185 bmsr = PHY_READ(phy, MII_BMSR) | PHY_READ(phy, MII_BMSR);

--- 31 unchanged lines hidden (view full) ---

217 else if (anlpar & ANLPAR_TX)
218 mii->mii_media_active |= IFM_100_TX|IFM_HDX;
219 else if (anlpar & ANLPAR_10_FD)
220 mii->mii_media_active |= IFM_10_T|IFM_FDX;
221 else if (anlpar & ANLPAR_10)
222 mii->mii_media_active |= IFM_10_T|IFM_HDX;
223 else
224 mii->mii_media_active |= IFM_NONE;
225 if ((mii->mii_media_active & IFM_FDX) != 0)
226 mii->mii_media_active |=
227 mii_phy_flowstatus(phy);
263 return;
264 }
265 /*
266 * If the other side doesn't support NWAY, then the
267 * best we can do is determine if we have a 10Mbps or
268 * 100Mbps link. There's no way to know if the link
269 * is full or half duplex, so we default to half duplex
270 * and hope that the user is clever enough to manually

--- 4 unchanged lines hidden (view full) ---

275 * The RealTek PHY supports non-NWAY link speed
276 * detection, however it does not report the link
277 * detection results via the ANLPAR or BMSR registers.
278 * (What? RealTek doesn't do things the way everyone
279 * else does? I'm just shocked, shocked I tell you.)
280 * To determine the link speed, we have to do one
281 * of two things:
282 *
228 return;
229 }
230 /*
231 * If the other side doesn't support NWAY, then the
232 * best we can do is determine if we have a 10Mbps or
233 * 100Mbps link. There's no way to know if the link
234 * is full or half duplex, so we default to half duplex
235 * and hope that the user is clever enough to manually

--- 4 unchanged lines hidden (view full) ---

240 * The RealTek PHY supports non-NWAY link speed
241 * detection, however it does not report the link
242 * detection results via the ANLPAR or BMSR registers.
243 * (What? RealTek doesn't do things the way everyone
244 * else does? I'm just shocked, shocked I tell you.)
245 * To determine the link speed, we have to do one
246 * of two things:
247 *
283 * - If this is a standalone RealTek RTL8201(L) PHY,
284 * we can determine the link speed by testing bit 0
285 * in the magic, vendor-specific register at offset
286 * 0x19.
248 * - If this is a standalone RealTek RTL8201(L) or
249 * workalike PHY, we can determine the link speed by
250 * testing bit 0 in the magic, vendor-specific register
251 * at offset 0x19.
287 *
288 * - If this is a RealTek MAC with integrated PHY, we
289 * can test the 'SPEED10' bit of the MAC's media status
290 * register.
291 */
252 *
253 * - If this is a RealTek MAC with integrated PHY, we
254 * can test the 'SPEED10' bit of the MAC's media status
255 * register.
256 */
292 if (rsc->sc_is_RTL8201L) {
257 if (!(phy->mii_mpd_model == 0 && phy->mii_mpd_rev == 0)) {
293 if (PHY_READ(phy, 0x0019) & 0x01)
294 mii->mii_media_active |= IFM_100_TX;
295 else
296 mii->mii_media_active |= IFM_10_T;
297 } else {
298 if (PHY_READ(phy, RL_MEDIASTAT) &
299 RL_MEDIASTAT_SPEED10)
300 mii->mii_media_active |= IFM_10_T;
301 else
302 mii->mii_media_active |= IFM_100_TX;
303 }
304 mii->mii_media_active |= IFM_HDX;
305 } else
306 mii->mii_media_active = ife->ifm_media;
307}
258 if (PHY_READ(phy, 0x0019) & 0x01)
259 mii->mii_media_active |= IFM_100_TX;
260 else
261 mii->mii_media_active |= IFM_10_T;
262 } else {
263 if (PHY_READ(phy, RL_MEDIASTAT) &
264 RL_MEDIASTAT_SPEED10)
265 mii->mii_media_active |= IFM_10_T;
266 else
267 mii->mii_media_active |= IFM_100_TX;
268 }
269 mii->mii_media_active |= IFM_HDX;
270 } else
271 mii->mii_media_active = ife->ifm_media;
272}