brgphy.c revision 1.87 1 1.87 jmcneill /* $NetBSD: brgphy.c,v 1.87 2020/02/22 18:57:31 jmcneill Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 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 *
20 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
31 1.1 thorpej */
32 1.1 thorpej
33 1.1 thorpej /*
34 1.1 thorpej * Copyright (c) 1997 Manuel Bouyer. All rights reserved.
35 1.1 thorpej *
36 1.1 thorpej * Redistribution and use in source and binary forms, with or without
37 1.1 thorpej * modification, are permitted provided that the following conditions
38 1.1 thorpej * are met:
39 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
40 1.1 thorpej * notice, this list of conditions and the following disclaimer.
41 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
42 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
43 1.1 thorpej * documentation and/or other materials provided with the distribution.
44 1.1 thorpej *
45 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
46 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
47 1.1 thorpej * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
48 1.1 thorpej * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
49 1.1 thorpej * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
50 1.1 thorpej * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
51 1.1 thorpej * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
52 1.1 thorpej * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
53 1.1 thorpej * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
54 1.1 thorpej * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
55 1.1 thorpej */
56 1.1 thorpej
57 1.1 thorpej /*
58 1.57 jym * driver for the Broadcom BCM5400 and BCM5700 Gig-E PHYs.
59 1.1 thorpej *
60 1.1 thorpej * Programming information for this PHY was gleaned from FreeBSD
61 1.1 thorpej * (they were apparently able to get a datasheet from Broadcom).
62 1.1 thorpej */
63 1.5 lukem
64 1.5 lukem #include <sys/cdefs.h>
65 1.87 jmcneill __KERNEL_RCSID(0, "$NetBSD: brgphy.c,v 1.87 2020/02/22 18:57:31 jmcneill Exp $");
66 1.1 thorpej
67 1.1 thorpej #include <sys/param.h>
68 1.1 thorpej #include <sys/systm.h>
69 1.1 thorpej #include <sys/kernel.h>
70 1.1 thorpej #include <sys/device.h>
71 1.1 thorpej #include <sys/socket.h>
72 1.1 thorpej #include <sys/errno.h>
73 1.44 msaitoh #include <prop/proplib.h>
74 1.1 thorpej
75 1.1 thorpej #include <net/if.h>
76 1.1 thorpej #include <net/if_media.h>
77 1.1 thorpej
78 1.1 thorpej #include <dev/mii/mii.h>
79 1.1 thorpej #include <dev/mii/miivar.h>
80 1.1 thorpej #include <dev/mii/miidevs.h>
81 1.1 thorpej #include <dev/mii/brgphyreg.h>
82 1.1 thorpej
83 1.43 msaitoh #include <dev/pci/if_bgereg.h>
84 1.43 msaitoh #include <dev/pci/if_bnxreg.h>
85 1.43 msaitoh
86 1.39 xtraeme static int brgphymatch(device_t, cfdata_t, void *);
87 1.39 xtraeme static void brgphyattach(device_t, device_t, void *);
88 1.1 thorpej
89 1.44 msaitoh struct brgphy_softc {
90 1.44 msaitoh struct mii_softc sc_mii;
91 1.54 dyoung bool sc_isbge;
92 1.54 dyoung bool sc_isbnx;
93 1.71 msaitoh uint32_t sc_chipid; /* parent's chipid */
94 1.71 msaitoh uint32_t sc_phyflags; /* parent's phyflags */
95 1.71 msaitoh uint32_t sc_shared_hwcfg; /* shared hw config */
96 1.71 msaitoh uint32_t sc_port_hwcfg; /* port specific hw config */
97 1.44 msaitoh };
98 1.44 msaitoh
99 1.44 msaitoh CFATTACH_DECL3_NEW(brgphy, sizeof(struct brgphy_softc),
100 1.42 dyoung brgphymatch, brgphyattach, mii_phy_detach, mii_phy_activate, NULL, NULL,
101 1.42 dyoung DVF_DETACH_SHUTDOWN);
102 1.1 thorpej
103 1.21 thorpej static int brgphy_service(struct mii_softc *, struct mii_data *, int);
104 1.71 msaitoh static void brgphy_copper_status(struct mii_softc *);
105 1.71 msaitoh static void brgphy_fiber_status(struct mii_softc *);
106 1.71 msaitoh static void brgphy_5708s_status(struct mii_softc *);
107 1.71 msaitoh static void brgphy_5709s_status(struct mii_softc *);
108 1.32 msaitoh static int brgphy_mii_phy_auto(struct mii_softc *);
109 1.32 msaitoh static void brgphy_loop(struct mii_softc *);
110 1.43 msaitoh static void brgphy_reset(struct mii_softc *);
111 1.43 msaitoh static void brgphy_bcm5401_dspcode(struct mii_softc *);
112 1.43 msaitoh static void brgphy_bcm5411_dspcode(struct mii_softc *);
113 1.43 msaitoh static void brgphy_bcm5421_dspcode(struct mii_softc *);
114 1.43 msaitoh static void brgphy_bcm54k2_dspcode(struct mii_softc *);
115 1.43 msaitoh static void brgphy_adc_bug(struct mii_softc *);
116 1.43 msaitoh static void brgphy_5704_a0_bug(struct mii_softc *);
117 1.43 msaitoh static void brgphy_ber_bug(struct mii_softc *);
118 1.43 msaitoh static void brgphy_crc_bug(struct mii_softc *);
119 1.58 jym static void brgphy_disable_early_dac(struct mii_softc *);
120 1.52 msaitoh static void brgphy_jumbo_settings(struct mii_softc *);
121 1.52 msaitoh static void brgphy_eth_wirespeed(struct mii_softc *);
122 1.1 thorpej
123 1.10 thorpej
124 1.71 msaitoh static const struct mii_phy_funcs brgphy_copper_funcs = {
125 1.71 msaitoh brgphy_service, brgphy_copper_status, brgphy_reset,
126 1.71 msaitoh };
127 1.71 msaitoh
128 1.71 msaitoh static const struct mii_phy_funcs brgphy_fiber_funcs = {
129 1.71 msaitoh brgphy_service, brgphy_fiber_status, brgphy_reset,
130 1.71 msaitoh };
131 1.71 msaitoh
132 1.71 msaitoh static const struct mii_phy_funcs brgphy_5708s_funcs = {
133 1.71 msaitoh brgphy_service, brgphy_5708s_status, brgphy_reset,
134 1.71 msaitoh };
135 1.71 msaitoh
136 1.71 msaitoh static const struct mii_phy_funcs brgphy_5709s_funcs = {
137 1.71 msaitoh brgphy_service, brgphy_5709s_status, brgphy_reset,
138 1.34 markd };
139 1.34 markd
140 1.21 thorpej static const struct mii_phydesc brgphys[] = {
141 1.81 christos MII_PHY_DESC(BROADCOM, BCM5400),
142 1.81 christos MII_PHY_DESC(BROADCOM, BCM5401),
143 1.82 msaitoh MII_PHY_DESC(BROADCOM, BCM5402),
144 1.82 msaitoh MII_PHY_DESC(BROADCOM, BCM5404),
145 1.81 christos MII_PHY_DESC(BROADCOM, BCM5411),
146 1.81 christos MII_PHY_DESC(BROADCOM, BCM5421),
147 1.82 msaitoh MII_PHY_DESC(BROADCOM, BCM5424),
148 1.82 msaitoh MII_PHY_DESC(BROADCOM, BCM5461),
149 1.81 christos MII_PHY_DESC(BROADCOM, BCM5462),
150 1.82 msaitoh MII_PHY_DESC(BROADCOM, BCM5464),
151 1.82 msaitoh MII_PHY_DESC(BROADCOM, BCM5466),
152 1.81 christos MII_PHY_DESC(BROADCOM, BCM54K2),
153 1.81 christos MII_PHY_DESC(BROADCOM, BCM5701),
154 1.81 christos MII_PHY_DESC(BROADCOM, BCM5703),
155 1.81 christos MII_PHY_DESC(BROADCOM, BCM5704),
156 1.81 christos MII_PHY_DESC(BROADCOM, BCM5705),
157 1.81 christos MII_PHY_DESC(BROADCOM, BCM5706),
158 1.81 christos MII_PHY_DESC(BROADCOM, BCM5714),
159 1.81 christos MII_PHY_DESC(BROADCOM, BCM5750),
160 1.81 christos MII_PHY_DESC(BROADCOM, BCM5752),
161 1.81 christos MII_PHY_DESC(BROADCOM, BCM5780),
162 1.81 christos MII_PHY_DESC(BROADCOM, BCM5708C),
163 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5481),
164 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5482),
165 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5708S),
166 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5709C),
167 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5709S),
168 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5709CAX),
169 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5722),
170 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5754),
171 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5755),
172 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5756),
173 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5761),
174 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5784),
175 1.81 christos MII_PHY_DESC(BROADCOM2, BCM5785),
176 1.81 christos MII_PHY_DESC(BROADCOM3, BCM5717C),
177 1.81 christos MII_PHY_DESC(BROADCOM3, BCM5719C),
178 1.81 christos MII_PHY_DESC(BROADCOM3, BCM5720C),
179 1.81 christos MII_PHY_DESC(BROADCOM3, BCM57765),
180 1.81 christos MII_PHY_DESC(BROADCOM3, BCM57780),
181 1.87 jmcneill MII_PHY_DESC(BROADCOM4, BCM54213PE),
182 1.81 christos MII_PHY_DESC(BROADCOM4, BCM5725C),
183 1.81 christos MII_PHY_DESC(xxBROADCOM_ALT1, BCM5906),
184 1.81 christos MII_PHY_END,
185 1.1 thorpej };
186 1.1 thorpej
187 1.21 thorpej static int
188 1.48 tsutsui brgphymatch(device_t parent, cfdata_t match, void *aux)
189 1.1 thorpej {
190 1.1 thorpej struct mii_attach_args *ma = aux;
191 1.1 thorpej
192 1.2 thorpej if (mii_phy_match(ma, brgphys) != NULL)
193 1.83 msaitoh return 10;
194 1.1 thorpej
195 1.83 msaitoh return 0;
196 1.1 thorpej }
197 1.1 thorpej
198 1.21 thorpej static void
199 1.46 cegger brgphyattach(device_t parent, device_t self, void *aux)
200 1.1 thorpej {
201 1.44 msaitoh struct brgphy_softc *bsc = device_private(self);
202 1.44 msaitoh struct mii_softc *sc = &bsc->sc_mii;
203 1.1 thorpej struct mii_attach_args *ma = aux;
204 1.1 thorpej struct mii_data *mii = ma->mii_data;
205 1.2 thorpej const struct mii_phydesc *mpd;
206 1.44 msaitoh prop_dictionary_t dict;
207 1.1 thorpej
208 1.2 thorpej mpd = mii_phy_match(ma, brgphys);
209 1.17 thorpej aprint_naive(": Media interface\n");
210 1.17 thorpej aprint_normal(": %s, rev. %d\n", mpd->mpd_name, MII_REV(ma->mii_id2));
211 1.1 thorpej
212 1.39 xtraeme sc->mii_dev = self;
213 1.1 thorpej sc->mii_inst = mii->mii_instance;
214 1.1 thorpej sc->mii_phy = ma->mii_phyno;
215 1.61 msaitoh sc->mii_mpd_oui = MII_OUI(ma->mii_id1, ma->mii_id2);
216 1.32 msaitoh sc->mii_mpd_model = MII_MODEL(ma->mii_id2);
217 1.43 msaitoh sc->mii_mpd_rev = MII_REV(ma->mii_id2);
218 1.1 thorpej sc->mii_pdata = mii;
219 1.6 thorpej sc->mii_flags = ma->mii_flags;
220 1.10 thorpej
221 1.58 jym if (device_is_a(parent, "bge"))
222 1.54 dyoung bsc->sc_isbge = true;
223 1.58 jym else if (device_is_a(parent, "bnx"))
224 1.54 dyoung bsc->sc_isbnx = true;
225 1.58 jym
226 1.72 msaitoh dict = device_properties(parent);
227 1.58 jym if (bsc->sc_isbge || bsc->sc_isbnx) {
228 1.57 jym if (!prop_dictionary_get_uint32(dict, "phyflags",
229 1.58 jym &bsc->sc_phyflags))
230 1.58 jym aprint_error_dev(self, "failed to get phyflags\n");
231 1.58 jym if (!prop_dictionary_get_uint32(dict, "chipid",
232 1.58 jym &bsc->sc_chipid))
233 1.58 jym aprint_error_dev(self, "failed to get chipid\n");
234 1.44 msaitoh }
235 1.57 jym
236 1.71 msaitoh if (bsc->sc_isbnx) {
237 1.71 msaitoh /* Currently, only bnx use sc_shared_hwcfg and sc_port_hwcfg */
238 1.71 msaitoh if (!prop_dictionary_get_uint32(dict, "shared_hwcfg",
239 1.71 msaitoh &bsc->sc_shared_hwcfg))
240 1.71 msaitoh aprint_error_dev(self, "failed to get shared_hwcfg\n");
241 1.71 msaitoh if (!prop_dictionary_get_uint32(dict, "port_hwcfg",
242 1.71 msaitoh &bsc->sc_port_hwcfg))
243 1.71 msaitoh aprint_error_dev(self, "failed to get port_hwcfg\n");
244 1.71 msaitoh }
245 1.71 msaitoh
246 1.71 msaitoh if (sc->mii_flags & MIIF_HAVEFIBER) {
247 1.74 msaitoh if ((sc->mii_mpd_oui == MII_OUI_BROADCOM2)
248 1.74 msaitoh && sc->mii_mpd_model == MII_MODEL_BROADCOM2_BCM5708S)
249 1.71 msaitoh sc->mii_funcs = &brgphy_5708s_funcs;
250 1.74 msaitoh else if ((sc->mii_mpd_oui == MII_OUI_BROADCOM2)
251 1.75 msaitoh && (sc->mii_mpd_model == MII_MODEL_BROADCOM2_BCM5709S)) {
252 1.75 msaitoh if (bsc->sc_isbnx)
253 1.75 msaitoh sc->mii_funcs = &brgphy_5709s_funcs;
254 1.75 msaitoh else {
255 1.75 msaitoh /*
256 1.75 msaitoh * XXX
257 1.75 msaitoh * 5720S and 5709S shares the same PHY id.
258 1.75 msaitoh * Assume 5720S PHY if parent device is bge(4).
259 1.75 msaitoh */
260 1.75 msaitoh sc->mii_funcs = &brgphy_5708s_funcs;
261 1.75 msaitoh }
262 1.75 msaitoh } else
263 1.71 msaitoh sc->mii_funcs = &brgphy_fiber_funcs;
264 1.71 msaitoh } else
265 1.71 msaitoh sc->mii_funcs = &brgphy_copper_funcs;
266 1.71 msaitoh
267 1.63 msaitoh PHY_RESET(sc);
268 1.63 msaitoh
269 1.79 msaitoh PHY_READ(sc, MII_BMSR, &sc->mii_capabilities);
270 1.79 msaitoh sc->mii_capabilities &= ma->mii_capmask;
271 1.63 msaitoh if (sc->mii_capabilities & BMSR_EXTSTAT)
272 1.79 msaitoh PHY_READ(sc, MII_EXTSR, &sc->mii_extcapabilities);
273 1.63 msaitoh
274 1.75 msaitoh if (sc->mii_flags & MIIF_HAVEFIBER) {
275 1.75 msaitoh sc->mii_flags |= MIIF_NOISOLATE | MIIF_NOLOOP;
276 1.57 jym
277 1.75 msaitoh /*
278 1.75 msaitoh * Set the proper bits for capabilities so that the
279 1.75 msaitoh * correct media get selected by mii_phy_add_media()
280 1.75 msaitoh */
281 1.75 msaitoh sc->mii_capabilities |= BMSR_ANEG;
282 1.75 msaitoh sc->mii_capabilities &= ~BMSR_100T4;
283 1.75 msaitoh sc->mii_extcapabilities |= EXTSR_1000XFDX;
284 1.75 msaitoh
285 1.75 msaitoh if (bsc->sc_isbnx) {
286 1.57 jym /*
287 1.75 msaitoh * 2.5Gb support is a software enabled feature
288 1.75 msaitoh * on the BCM5708S and BCM5709S controllers.
289 1.57 jym */
290 1.57 jym #define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL)
291 1.75 msaitoh if (bsc->sc_phyflags
292 1.75 msaitoh & BNX_PHY_2_5G_CAPABLE_FLAG) {
293 1.75 msaitoh ADD(IFM_MAKEWORD(IFM_ETHER, IFM_2500_SX,
294 1.75 msaitoh IFM_FDX, sc->mii_inst), 0);
295 1.86 msaitoh aprint_normal_dev(self, "2500baseSX-FDX\n");
296 1.57 jym #undef ADD
297 1.57 jym }
298 1.57 jym }
299 1.57 jym }
300 1.75 msaitoh mii_phy_add_media(sc);
301 1.1 thorpej }
302 1.1 thorpej
303 1.21 thorpej static int
304 1.4 thorpej brgphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
305 1.1 thorpej {
306 1.1 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
307 1.79 msaitoh uint16_t reg, speed, gig;
308 1.1 thorpej
309 1.1 thorpej switch (cmd) {
310 1.1 thorpej case MII_POLLSTAT:
311 1.73 msaitoh /* If we're not polling our PHY instance, just return. */
312 1.1 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst)
313 1.83 msaitoh return 0;
314 1.1 thorpej break;
315 1.1 thorpej
316 1.1 thorpej case MII_MEDIACHG:
317 1.1 thorpej /*
318 1.1 thorpej * If the media indicates a different PHY instance,
319 1.1 thorpej * isolate ourselves.
320 1.1 thorpej */
321 1.1 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
322 1.79 msaitoh PHY_READ(sc, MII_BMCR, ®);
323 1.1 thorpej PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
324 1.83 msaitoh return 0;
325 1.1 thorpej }
326 1.1 thorpej
327 1.73 msaitoh /* If the interface is not up, don't do anything. */
328 1.1 thorpej if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
329 1.1 thorpej break;
330 1.1 thorpej
331 1.32 msaitoh PHY_RESET(sc); /* XXX hardware bug work-around */
332 1.32 msaitoh
333 1.32 msaitoh switch (IFM_SUBTYPE(ife->ifm_media)) {
334 1.32 msaitoh case IFM_AUTO:
335 1.32 msaitoh (void) brgphy_mii_phy_auto(sc);
336 1.32 msaitoh break;
337 1.71 msaitoh case IFM_2500_SX:
338 1.71 msaitoh speed = BRGPHY_5708S_BMCR_2500;
339 1.71 msaitoh goto setit;
340 1.71 msaitoh case IFM_1000_SX:
341 1.32 msaitoh case IFM_1000_T:
342 1.32 msaitoh speed = BMCR_S1000;
343 1.32 msaitoh goto setit;
344 1.32 msaitoh case IFM_100_TX:
345 1.32 msaitoh speed = BMCR_S100;
346 1.32 msaitoh goto setit;
347 1.32 msaitoh case IFM_10_T:
348 1.32 msaitoh speed = BMCR_S10;
349 1.32 msaitoh setit:
350 1.32 msaitoh brgphy_loop(sc);
351 1.84 msaitoh if ((ife->ifm_media & IFM_FDX) != 0) {
352 1.32 msaitoh speed |= BMCR_FDX;
353 1.32 msaitoh gig = GTCR_ADV_1000TFDX;
354 1.69 msaitoh } else
355 1.32 msaitoh gig = GTCR_ADV_1000THDX;
356 1.32 msaitoh
357 1.32 msaitoh PHY_WRITE(sc, MII_100T2CR, 0);
358 1.51 bouyer PHY_WRITE(sc, MII_ANAR, ANAR_CSMA);
359 1.32 msaitoh PHY_WRITE(sc, MII_BMCR, speed);
360 1.32 msaitoh
361 1.71 msaitoh if ((IFM_SUBTYPE(ife->ifm_media) != IFM_1000_T) &&
362 1.71 msaitoh (IFM_SUBTYPE(ife->ifm_media) != IFM_1000_SX) &&
363 1.71 msaitoh (IFM_SUBTYPE(ife->ifm_media) != IFM_2500_SX))
364 1.32 msaitoh break;
365 1.32 msaitoh
366 1.32 msaitoh PHY_WRITE(sc, MII_100T2CR, gig);
367 1.32 msaitoh PHY_WRITE(sc, MII_BMCR,
368 1.65 msaitoh speed | BMCR_AUTOEN | BMCR_STARTNEG);
369 1.32 msaitoh
370 1.61 msaitoh if ((sc->mii_mpd_oui != MII_OUI_BROADCOM)
371 1.61 msaitoh || (sc->mii_mpd_model != MII_MODEL_BROADCOM_BCM5701))
372 1.33 msaitoh break;
373 1.32 msaitoh
374 1.32 msaitoh if (mii->mii_media.ifm_media & IFM_ETH_MASTER)
375 1.32 msaitoh gig |= GTCR_MAN_MS | GTCR_ADV_MS;
376 1.32 msaitoh PHY_WRITE(sc, MII_100T2CR, gig);
377 1.32 msaitoh break;
378 1.32 msaitoh default:
379 1.83 msaitoh return EINVAL;
380 1.32 msaitoh }
381 1.1 thorpej break;
382 1.1 thorpej
383 1.1 thorpej case MII_TICK:
384 1.73 msaitoh /* If we're not currently selected, just return. */
385 1.1 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst)
386 1.83 msaitoh return 0;
387 1.1 thorpej
388 1.73 msaitoh /* Is the interface even up? */
389 1.67 msaitoh if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
390 1.67 msaitoh return 0;
391 1.67 msaitoh
392 1.73 msaitoh /* Only used for autonegotiation. */
393 1.67 msaitoh if ((IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO) &&
394 1.67 msaitoh (IFM_SUBTYPE(ife->ifm_media) != IFM_1000_T)) {
395 1.67 msaitoh sc->mii_ticks = 0;
396 1.67 msaitoh break;
397 1.67 msaitoh }
398 1.67 msaitoh
399 1.67 msaitoh /*
400 1.67 msaitoh * Check for link.
401 1.67 msaitoh * Read the status register twice; BMSR_LINK is latch-low.
402 1.67 msaitoh */
403 1.79 msaitoh PHY_READ(sc, MII_BMSR, ®);
404 1.79 msaitoh PHY_READ(sc, MII_BMSR, ®);
405 1.67 msaitoh if (reg & BMSR_LINK) {
406 1.67 msaitoh sc->mii_ticks = 0;
407 1.67 msaitoh break;
408 1.67 msaitoh }
409 1.67 msaitoh
410 1.67 msaitoh /*
411 1.67 msaitoh * mii_ticks == 0 means it's the first tick after changing the
412 1.67 msaitoh * media or the link became down since the last tick
413 1.67 msaitoh * (see above), so break to update the status.
414 1.67 msaitoh */
415 1.67 msaitoh if (sc->mii_ticks++ == 0)
416 1.67 msaitoh break;
417 1.67 msaitoh
418 1.73 msaitoh /* Only retry autonegotiation every mii_anegticks seconds. */
419 1.67 msaitoh KASSERT(sc->mii_anegticks != 0);
420 1.67 msaitoh if (sc->mii_ticks <= sc->mii_anegticks)
421 1.67 msaitoh break;
422 1.67 msaitoh
423 1.67 msaitoh brgphy_mii_phy_auto(sc);
424 1.1 thorpej break;
425 1.1 thorpej
426 1.1 thorpej case MII_DOWN:
427 1.1 thorpej mii_phy_down(sc);
428 1.83 msaitoh return 0;
429 1.1 thorpej }
430 1.1 thorpej
431 1.1 thorpej /* Update the media status. */
432 1.1 thorpej mii_phy_status(sc);
433 1.1 thorpej
434 1.10 thorpej /*
435 1.32 msaitoh * Callback if something changed. Note that we need to poke the DSP on
436 1.32 msaitoh * the Broadcom PHYs if the media changes.
437 1.10 thorpej */
438 1.23 perry if (sc->mii_media_active != mii->mii_media_active ||
439 1.10 thorpej sc->mii_media_status != mii->mii_media_status ||
440 1.10 thorpej cmd == MII_MEDIACHG) {
441 1.61 msaitoh switch (sc->mii_mpd_oui) {
442 1.61 msaitoh case MII_OUI_BROADCOM:
443 1.61 msaitoh switch (sc->mii_mpd_model) {
444 1.61 msaitoh case MII_MODEL_BROADCOM_BCM5400:
445 1.43 msaitoh brgphy_bcm5401_dspcode(sc);
446 1.61 msaitoh break;
447 1.61 msaitoh case MII_MODEL_BROADCOM_BCM5401:
448 1.61 msaitoh if (sc->mii_mpd_rev == 1 || sc->mii_mpd_rev == 3)
449 1.61 msaitoh brgphy_bcm5401_dspcode(sc);
450 1.61 msaitoh break;
451 1.61 msaitoh case MII_MODEL_BROADCOM_BCM5411:
452 1.61 msaitoh brgphy_bcm5411_dspcode(sc);
453 1.61 msaitoh break;
454 1.61 msaitoh }
455 1.43 msaitoh break;
456 1.43 msaitoh }
457 1.10 thorpej }
458 1.43 msaitoh
459 1.43 msaitoh /* Callback if something changed. */
460 1.43 msaitoh mii_phy_update(sc, cmd);
461 1.83 msaitoh return 0;
462 1.1 thorpej }
463 1.1 thorpej
464 1.21 thorpej static void
465 1.71 msaitoh brgphy_copper_status(struct mii_softc *sc)
466 1.1 thorpej {
467 1.1 thorpej struct mii_data *mii = sc->mii_pdata;
468 1.1 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
469 1.79 msaitoh uint16_t bmcr, bmsr, auxsts, gtsr;
470 1.1 thorpej
471 1.1 thorpej mii->mii_media_status = IFM_AVALID;
472 1.1 thorpej mii->mii_media_active = IFM_ETHER;
473 1.1 thorpej
474 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
475 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
476 1.57 jym if (bmsr & BMSR_LINK)
477 1.1 thorpej mii->mii_media_status |= IFM_ACTIVE;
478 1.1 thorpej
479 1.79 msaitoh PHY_READ(sc, MII_BMCR, &bmcr);
480 1.1 thorpej if (bmcr & BMCR_ISO) {
481 1.1 thorpej mii->mii_media_active |= IFM_NONE;
482 1.1 thorpej mii->mii_media_status = 0;
483 1.1 thorpej return;
484 1.1 thorpej }
485 1.1 thorpej
486 1.1 thorpej if (bmcr & BMCR_LOOP)
487 1.1 thorpej mii->mii_media_active |= IFM_LOOP;
488 1.1 thorpej
489 1.1 thorpej if (bmcr & BMCR_AUTOEN) {
490 1.1 thorpej /*
491 1.85 msaitoh * The media status bits are only valid if autonegotiation
492 1.1 thorpej * has completed (or it's disabled).
493 1.1 thorpej */
494 1.57 jym if ((bmsr & BMSR_ACOMP) == 0) {
495 1.1 thorpej /* Erg, still trying, I guess... */
496 1.1 thorpej mii->mii_media_active |= IFM_NONE;
497 1.1 thorpej return;
498 1.1 thorpej }
499 1.1 thorpej
500 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_AUXSTS, &auxsts);
501 1.71 msaitoh
502 1.71 msaitoh switch (auxsts & BRGPHY_AUXSTS_AN_RES) {
503 1.71 msaitoh case BRGPHY_RES_1000FD:
504 1.71 msaitoh mii->mii_media_active |= IFM_1000_T | IFM_FDX;
505 1.79 msaitoh PHY_READ(sc, MII_100T2SR, >sr);
506 1.71 msaitoh if (gtsr & GTSR_MS_RES)
507 1.71 msaitoh mii->mii_media_active |= IFM_ETH_MASTER;
508 1.71 msaitoh break;
509 1.71 msaitoh
510 1.71 msaitoh case BRGPHY_RES_1000HD:
511 1.71 msaitoh mii->mii_media_active |= IFM_1000_T | IFM_HDX;
512 1.79 msaitoh PHY_READ(sc, MII_100T2SR, >sr);
513 1.71 msaitoh if (gtsr & GTSR_MS_RES)
514 1.71 msaitoh mii->mii_media_active |= IFM_ETH_MASTER;
515 1.71 msaitoh break;
516 1.71 msaitoh
517 1.71 msaitoh case BRGPHY_RES_100FD:
518 1.71 msaitoh mii->mii_media_active |= IFM_100_TX | IFM_FDX;
519 1.71 msaitoh break;
520 1.71 msaitoh
521 1.71 msaitoh case BRGPHY_RES_100T4:
522 1.71 msaitoh mii->mii_media_active |= IFM_100_T4 | IFM_HDX;
523 1.71 msaitoh break;
524 1.71 msaitoh
525 1.71 msaitoh case BRGPHY_RES_100HD:
526 1.71 msaitoh mii->mii_media_active |= IFM_100_TX | IFM_HDX;
527 1.71 msaitoh break;
528 1.71 msaitoh
529 1.71 msaitoh case BRGPHY_RES_10FD:
530 1.71 msaitoh mii->mii_media_active |= IFM_10_T | IFM_FDX;
531 1.71 msaitoh break;
532 1.71 msaitoh
533 1.71 msaitoh case BRGPHY_RES_10HD:
534 1.71 msaitoh mii->mii_media_active |= IFM_10_T | IFM_HDX;
535 1.71 msaitoh break;
536 1.71 msaitoh
537 1.71 msaitoh default:
538 1.71 msaitoh mii->mii_media_active |= IFM_NONE;
539 1.71 msaitoh mii->mii_media_status = 0;
540 1.71 msaitoh }
541 1.71 msaitoh
542 1.71 msaitoh if (mii->mii_media_active & IFM_FDX)
543 1.71 msaitoh mii->mii_media_active |= mii_phy_flowstatus(sc);
544 1.71 msaitoh
545 1.71 msaitoh } else
546 1.71 msaitoh mii->mii_media_active = ife->ifm_media;
547 1.71 msaitoh }
548 1.71 msaitoh
549 1.71 msaitoh void
550 1.71 msaitoh brgphy_fiber_status(struct mii_softc *sc)
551 1.71 msaitoh {
552 1.71 msaitoh struct mii_data *mii = sc->mii_pdata;
553 1.71 msaitoh struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
554 1.79 msaitoh uint16_t bmcr, bmsr, anar, anlpar, result;
555 1.71 msaitoh
556 1.71 msaitoh mii->mii_media_status = IFM_AVALID;
557 1.71 msaitoh mii->mii_media_active = IFM_ETHER;
558 1.71 msaitoh
559 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
560 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
561 1.71 msaitoh if (bmsr & BMSR_LINK)
562 1.71 msaitoh mii->mii_media_status |= IFM_ACTIVE;
563 1.57 jym
564 1.79 msaitoh PHY_READ(sc, MII_BMCR, &bmcr);
565 1.71 msaitoh if (bmcr & BMCR_LOOP)
566 1.71 msaitoh mii->mii_media_active |= IFM_LOOP;
567 1.57 jym
568 1.71 msaitoh if (bmcr & BMCR_AUTOEN) {
569 1.71 msaitoh if ((bmsr & BMSR_ACOMP) == 0) {
570 1.71 msaitoh /* Erg, still trying, I guess... */
571 1.71 msaitoh mii->mii_media_active |= IFM_NONE;
572 1.71 msaitoh return;
573 1.71 msaitoh }
574 1.57 jym
575 1.71 msaitoh mii->mii_media_active |= IFM_1000_SX;
576 1.57 jym
577 1.79 msaitoh PHY_READ(sc, MII_ANAR, &anar);
578 1.79 msaitoh PHY_READ(sc, MII_ANLPAR, &anlpar);
579 1.79 msaitoh result = anar & anlpar;
580 1.57 jym
581 1.79 msaitoh if (result & ANAR_X_FD)
582 1.71 msaitoh mii->mii_media_active |= IFM_FDX;
583 1.71 msaitoh else
584 1.71 msaitoh mii->mii_media_active |= IFM_HDX;
585 1.1 thorpej
586 1.71 msaitoh if (mii->mii_media_active & IFM_FDX)
587 1.71 msaitoh mii->mii_media_active |= mii_phy_flowstatus(sc);
588 1.71 msaitoh } else
589 1.71 msaitoh mii->mii_media_active = ife->ifm_media;
590 1.71 msaitoh }
591 1.1 thorpej
592 1.71 msaitoh void
593 1.71 msaitoh brgphy_5708s_status(struct mii_softc *sc)
594 1.71 msaitoh {
595 1.71 msaitoh struct mii_data *mii = sc->mii_pdata;
596 1.71 msaitoh struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
597 1.79 msaitoh uint16_t bmcr, bmsr;
598 1.1 thorpej
599 1.71 msaitoh mii->mii_media_status = IFM_AVALID;
600 1.71 msaitoh mii->mii_media_active = IFM_ETHER;
601 1.1 thorpej
602 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
603 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
604 1.71 msaitoh if (bmsr & BMSR_LINK)
605 1.71 msaitoh mii->mii_media_status |= IFM_ACTIVE;
606 1.1 thorpej
607 1.79 msaitoh PHY_READ(sc, MII_BMCR, &bmcr);
608 1.71 msaitoh if (bmcr & BMCR_LOOP)
609 1.71 msaitoh mii->mii_media_active |= IFM_LOOP;
610 1.1 thorpej
611 1.71 msaitoh if (bmcr & BMCR_AUTOEN) {
612 1.79 msaitoh uint16_t xstat;
613 1.1 thorpej
614 1.71 msaitoh if ((bmsr & BMSR_ACOMP) == 0) {
615 1.71 msaitoh PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
616 1.71 msaitoh BRGPHY_5708S_DIG_PG0);
617 1.79 msaitoh PHY_READ(sc, BRGPHY_5708S_PG0_1000X_STAT1, &xstat);
618 1.71 msaitoh if ((xstat & BRGPHY_5708S_PG0_1000X_STAT1_LINK) == 0) {
619 1.71 msaitoh /* Erg, still trying, I guess... */
620 1.57 jym mii->mii_media_active |= IFM_NONE;
621 1.71 msaitoh return;
622 1.57 jym }
623 1.1 thorpej }
624 1.57 jym
625 1.71 msaitoh PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
626 1.71 msaitoh BRGPHY_5708S_DIG_PG0);
627 1.79 msaitoh PHY_READ(sc, BRGPHY_5708S_PG0_1000X_STAT1, &xstat);
628 1.71 msaitoh
629 1.71 msaitoh switch (xstat & BRGPHY_5708S_PG0_1000X_STAT1_SPEED_MASK) {
630 1.71 msaitoh case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_10:
631 1.71 msaitoh mii->mii_media_active |= IFM_10_FL;
632 1.71 msaitoh break;
633 1.71 msaitoh case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_100:
634 1.71 msaitoh mii->mii_media_active |= IFM_100_FX;
635 1.71 msaitoh break;
636 1.71 msaitoh case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_1G:
637 1.71 msaitoh mii->mii_media_active |= IFM_1000_SX;
638 1.71 msaitoh break;
639 1.71 msaitoh case BRGPHY_5708S_PG0_1000X_STAT1_SPEED_25G:
640 1.71 msaitoh mii->mii_media_active |= IFM_2500_SX;
641 1.71 msaitoh break;
642 1.71 msaitoh }
643 1.71 msaitoh
644 1.71 msaitoh if (xstat & BRGPHY_5708S_PG0_1000X_STAT1_FDX)
645 1.71 msaitoh mii->mii_media_active |= IFM_FDX;
646 1.71 msaitoh else
647 1.71 msaitoh mii->mii_media_active |= IFM_HDX;
648 1.71 msaitoh
649 1.71 msaitoh if (mii->mii_media_active & IFM_FDX) {
650 1.71 msaitoh if (xstat & BRGPHY_5708S_PG0_1000X_STAT1_TX_PAUSE)
651 1.83 msaitoh mii->mii_media_active
652 1.83 msaitoh |= IFM_FLOW | IFM_ETH_TXPAUSE;
653 1.71 msaitoh if (xstat & BRGPHY_5708S_PG0_1000X_STAT1_RX_PAUSE)
654 1.83 msaitoh mii->mii_media_active
655 1.83 msaitoh |= IFM_FLOW | IFM_ETH_RXPAUSE;
656 1.71 msaitoh }
657 1.71 msaitoh } else
658 1.71 msaitoh mii->mii_media_active = ife->ifm_media;
659 1.71 msaitoh }
660 1.71 msaitoh
661 1.71 msaitoh static void
662 1.71 msaitoh brgphy_5709s_status(struct mii_softc *sc)
663 1.71 msaitoh {
664 1.71 msaitoh struct mii_data *mii = sc->mii_pdata;
665 1.71 msaitoh struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
666 1.79 msaitoh uint16_t bmcr, bmsr, auxsts;
667 1.71 msaitoh
668 1.71 msaitoh mii->mii_media_status = IFM_AVALID;
669 1.71 msaitoh mii->mii_media_active = IFM_ETHER;
670 1.71 msaitoh
671 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
672 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
673 1.71 msaitoh if (bmsr & BMSR_LINK)
674 1.71 msaitoh mii->mii_media_status |= IFM_ACTIVE;
675 1.71 msaitoh
676 1.79 msaitoh PHY_READ(sc, MII_BMCR, &bmcr);
677 1.71 msaitoh if (bmcr & BMCR_ISO) {
678 1.71 msaitoh mii->mii_media_active |= IFM_NONE;
679 1.71 msaitoh mii->mii_media_status = 0;
680 1.71 msaitoh return;
681 1.71 msaitoh }
682 1.71 msaitoh
683 1.71 msaitoh if (bmcr & BMCR_LOOP)
684 1.71 msaitoh mii->mii_media_active |= IFM_LOOP;
685 1.71 msaitoh
686 1.71 msaitoh if (bmcr & BMCR_AUTOEN) {
687 1.71 msaitoh /*
688 1.71 msaitoh * The media status bits are only valid of autonegotiation
689 1.71 msaitoh * has completed (or it's disabled).
690 1.71 msaitoh */
691 1.71 msaitoh if ((bmsr & BMSR_ACOMP) == 0) {
692 1.71 msaitoh /* Erg, still trying, I guess... */
693 1.71 msaitoh mii->mii_media_active |= IFM_NONE;
694 1.71 msaitoh return;
695 1.71 msaitoh }
696 1.71 msaitoh
697 1.71 msaitoh /* 5709S has its own general purpose status registers */
698 1.79 msaitoh PHY_WRITE(sc, BRGPHY_BLOCK_ADDR, BRGPHY_BLOCK_ADDR_GP_STATUS);
699 1.79 msaitoh PHY_READ(sc, BRGPHY_GP_STATUS_TOP_ANEG_STATUS, &auxsts);
700 1.71 msaitoh
701 1.71 msaitoh PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
702 1.71 msaitoh BRGPHY_BLOCK_ADDR_COMBO_IEEE0);
703 1.71 msaitoh
704 1.71 msaitoh switch (auxsts & BRGPHY_GP_STATUS_TOP_ANEG_SPEED_MASK) {
705 1.71 msaitoh case BRGPHY_GP_STATUS_TOP_ANEG_SPEED_10:
706 1.71 msaitoh mii->mii_media_active |= IFM_10_FL;
707 1.71 msaitoh break;
708 1.71 msaitoh case BRGPHY_GP_STATUS_TOP_ANEG_SPEED_100:
709 1.71 msaitoh mii->mii_media_active |= IFM_100_FX;
710 1.71 msaitoh break;
711 1.71 msaitoh case BRGPHY_GP_STATUS_TOP_ANEG_SPEED_1G:
712 1.71 msaitoh mii->mii_media_active |= IFM_1000_SX;
713 1.71 msaitoh break;
714 1.71 msaitoh case BRGPHY_GP_STATUS_TOP_ANEG_SPEED_25G:
715 1.71 msaitoh mii->mii_media_active |= IFM_2500_SX;
716 1.71 msaitoh break;
717 1.71 msaitoh default:
718 1.71 msaitoh mii->mii_media_active |= IFM_NONE;
719 1.71 msaitoh mii->mii_media_status = 0;
720 1.71 msaitoh break;
721 1.71 msaitoh }
722 1.71 msaitoh
723 1.71 msaitoh if (auxsts & BRGPHY_GP_STATUS_TOP_ANEG_FDX)
724 1.71 msaitoh mii->mii_media_active |= IFM_FDX;
725 1.71 msaitoh else
726 1.71 msaitoh mii->mii_media_active |= IFM_HDX;
727 1.71 msaitoh
728 1.19 thorpej if (mii->mii_media_active & IFM_FDX)
729 1.20 thorpej mii->mii_media_active |= mii_phy_flowstatus(sc);
730 1.1 thorpej } else
731 1.1 thorpej mii->mii_media_active = ife->ifm_media;
732 1.10 thorpej }
733 1.10 thorpej
734 1.32 msaitoh int
735 1.32 msaitoh brgphy_mii_phy_auto(struct mii_softc *sc)
736 1.32 msaitoh {
737 1.79 msaitoh uint16_t anar, ktcr = 0;
738 1.32 msaitoh
739 1.64 msaitoh sc->mii_ticks = 0;
740 1.32 msaitoh brgphy_loop(sc);
741 1.32 msaitoh PHY_RESET(sc);
742 1.57 jym
743 1.57 jym if (sc->mii_flags & MIIF_HAVEFIBER) {
744 1.57 jym anar = ANAR_X_FD | ANAR_X_HD;
745 1.57 jym if (sc->mii_flags & MIIF_DOPAUSE)
746 1.69 msaitoh anar |= ANAR_X_PAUSE_TOWARDS;
747 1.57 jym } else {
748 1.57 jym anar = BMSR_MEDIA_TO_ANAR(sc->mii_capabilities) | ANAR_CSMA;
749 1.57 jym if (sc->mii_flags & MIIF_DOPAUSE)
750 1.66 msaitoh anar |= ANAR_FC | ANAR_PAUSE_ASYM;
751 1.71 msaitoh ktcr = GTCR_ADV_1000TFDX | GTCR_ADV_1000THDX;
752 1.71 msaitoh if ((sc->mii_mpd_oui == MII_OUI_BROADCOM)
753 1.71 msaitoh && (sc->mii_mpd_model == MII_MODEL_BROADCOM_BCM5701))
754 1.71 msaitoh ktcr |= GTCR_MAN_MS | GTCR_ADV_MS;
755 1.71 msaitoh PHY_WRITE(sc, MII_100T2CR, ktcr);
756 1.57 jym }
757 1.32 msaitoh PHY_WRITE(sc, MII_ANAR, anar);
758 1.57 jym
759 1.57 jym /* Start autonegotiation */
760 1.69 msaitoh PHY_WRITE(sc, MII_BMCR, BMCR_AUTOEN | BMCR_STARTNEG);
761 1.32 msaitoh PHY_WRITE(sc, BRGPHY_MII_IMR, 0xFF00);
762 1.32 msaitoh
763 1.83 msaitoh return EJUSTRETURN;
764 1.32 msaitoh }
765 1.32 msaitoh
766 1.32 msaitoh void
767 1.32 msaitoh brgphy_loop(struct mii_softc *sc)
768 1.32 msaitoh {
769 1.79 msaitoh uint16_t bmsr;
770 1.32 msaitoh int i;
771 1.32 msaitoh
772 1.32 msaitoh PHY_WRITE(sc, MII_BMCR, BMCR_LOOP);
773 1.33 msaitoh for (i = 0; i < 15000; i++) {
774 1.79 msaitoh PHY_READ(sc, MII_BMSR, &bmsr);
775 1.32 msaitoh if (!(bmsr & BMSR_LINK))
776 1.32 msaitoh break;
777 1.32 msaitoh DELAY(10);
778 1.32 msaitoh }
779 1.32 msaitoh }
780 1.32 msaitoh
781 1.21 thorpej static void
782 1.43 msaitoh brgphy_reset(struct mii_softc *sc)
783 1.10 thorpej {
784 1.56 jym struct brgphy_softc *bsc = device_private(sc->mii_dev);
785 1.79 msaitoh uint16_t reg;
786 1.10 thorpej
787 1.10 thorpej mii_phy_reset(sc);
788 1.61 msaitoh switch (sc->mii_mpd_oui) {
789 1.61 msaitoh case MII_OUI_BROADCOM:
790 1.61 msaitoh switch (sc->mii_mpd_model) {
791 1.61 msaitoh case MII_MODEL_BROADCOM_BCM5400:
792 1.43 msaitoh brgphy_bcm5401_dspcode(sc);
793 1.61 msaitoh break;
794 1.61 msaitoh case MII_MODEL_BROADCOM_BCM5401:
795 1.61 msaitoh if (sc->mii_mpd_rev == 1 || sc->mii_mpd_rev == 3)
796 1.61 msaitoh brgphy_bcm5401_dspcode(sc);
797 1.61 msaitoh break;
798 1.61 msaitoh case MII_MODEL_BROADCOM_BCM5411:
799 1.61 msaitoh brgphy_bcm5411_dspcode(sc);
800 1.61 msaitoh break;
801 1.61 msaitoh case MII_MODEL_BROADCOM_BCM5421:
802 1.61 msaitoh brgphy_bcm5421_dspcode(sc);
803 1.61 msaitoh break;
804 1.61 msaitoh case MII_MODEL_BROADCOM_BCM54K2:
805 1.61 msaitoh brgphy_bcm54k2_dspcode(sc);
806 1.61 msaitoh break;
807 1.61 msaitoh }
808 1.43 msaitoh break;
809 1.61 msaitoh case MII_OUI_BROADCOM3:
810 1.61 msaitoh switch (sc->mii_mpd_model) {
811 1.61 msaitoh case MII_MODEL_BROADCOM3_BCM5717C:
812 1.61 msaitoh case MII_MODEL_BROADCOM3_BCM5719C:
813 1.61 msaitoh case MII_MODEL_BROADCOM3_BCM5720C:
814 1.61 msaitoh case MII_MODEL_BROADCOM3_BCM57765:
815 1.61 msaitoh return;
816 1.61 msaitoh }
817 1.43 msaitoh break;
818 1.61 msaitoh default:
819 1.43 msaitoh break;
820 1.43 msaitoh }
821 1.15 jonathan
822 1.43 msaitoh /* Handle any bge (NetXtreme/NetLink) workarounds. */
823 1.54 dyoung if (bsc->sc_isbge) {
824 1.43 msaitoh if (!(sc->mii_flags & MIIF_HAVEFIBER)) {
825 1.43 msaitoh
826 1.68 msaitoh if (bsc->sc_phyflags & BGEPHYF_ADC_BUG)
827 1.43 msaitoh brgphy_adc_bug(sc);
828 1.68 msaitoh if (bsc->sc_phyflags & BGEPHYF_5704_A0_BUG)
829 1.43 msaitoh brgphy_5704_a0_bug(sc);
830 1.68 msaitoh if (bsc->sc_phyflags & BGEPHYF_BER_BUG)
831 1.43 msaitoh brgphy_ber_bug(sc);
832 1.68 msaitoh else if (bsc->sc_phyflags & BGEPHYF_JITTER_BUG) {
833 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0c00);
834 1.79 msaitoh PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG, 0x000a);
835 1.43 msaitoh
836 1.77 msaitoh if (bsc->sc_phyflags
837 1.68 msaitoh & BGEPHYF_ADJUST_TRIM) {
838 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT,
839 1.43 msaitoh 0x110b);
840 1.43 msaitoh PHY_WRITE(sc, BRGPHY_TEST1,
841 1.43 msaitoh BRGPHY_TEST1_TRIM_EN | 0x4);
842 1.43 msaitoh } else {
843 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT,
844 1.43 msaitoh 0x010b);
845 1.43 msaitoh }
846 1.15 jonathan
847 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0400);
848 1.43 msaitoh }
849 1.68 msaitoh if (bsc->sc_phyflags & BGEPHYF_CRC_BUG)
850 1.43 msaitoh brgphy_crc_bug(sc);
851 1.15 jonathan
852 1.43 msaitoh /* Set Jumbo frame settings in the PHY. */
853 1.68 msaitoh if (bsc->sc_phyflags & BGEPHYF_JUMBO_CAPABLE)
854 1.43 msaitoh brgphy_jumbo_settings(sc);
855 1.43 msaitoh
856 1.43 msaitoh /* Adjust output voltage */
857 1.61 msaitoh if ((sc->mii_mpd_oui == MII_OUI_BROADCOM2)
858 1.61 msaitoh && (sc->mii_mpd_model == MII_MODEL_BROADCOM2_BCM5906))
859 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_EPHY_PTEST, 0x12);
860 1.43 msaitoh
861 1.43 msaitoh /* Enable Ethernet@Wirespeed */
862 1.68 msaitoh if (!(bsc->sc_phyflags & BGEPHYF_NO_WIRESPEED))
863 1.43 msaitoh brgphy_eth_wirespeed(sc);
864 1.43 msaitoh
865 1.52 msaitoh #if 0
866 1.43 msaitoh /* Enable Link LED on Dell boxes */
867 1.68 msaitoh if (bsc->sc_phyflags & BGEPHYF_NO_3LED) {
868 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_PHY_EXTCTL, ®);
869 1.77 msaitoh PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL,
870 1.79 msaitoh reg & ~BRGPHY_PHY_EXTCTL_3_LED);
871 1.43 msaitoh }
872 1.43 msaitoh #endif
873 1.43 msaitoh }
874 1.57 jym /* Handle any bnx (NetXtreme II) workarounds. */
875 1.57 jym } else if (bsc->sc_isbnx) {
876 1.83 msaitoh uint32_t chip_num = _BNX_CHIP_NUM(bsc->sc_chipid);
877 1.83 msaitoh uint32_t chip_id = _BNX_CHIP_ID(bsc->sc_chipid);
878 1.83 msaitoh uint32_t chip_rev = _BNX_CHIP_REV(bsc->sc_chipid);
879 1.83 msaitoh
880 1.61 msaitoh if ((sc->mii_mpd_oui == MII_OUI_BROADCOM2)
881 1.61 msaitoh && sc->mii_mpd_model == MII_MODEL_BROADCOM2_BCM5708S) {
882 1.83 msaitoh /*
883 1.83 msaitoh * Store autoneg capabilities/results in digital block
884 1.83 msaitoh * (Page 0)
885 1.83 msaitoh */
886 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
887 1.83 msaitoh BRGPHY_5708S_DIG3_PG2);
888 1.77 msaitoh PHY_WRITE(sc, BRGPHY_5708S_PG2_DIGCTL_3_0,
889 1.77 msaitoh BRGPHY_5708S_PG2_DIGCTL_3_0_USE_IEEE);
890 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
891 1.83 msaitoh BRGPHY_5708S_DIG_PG0);
892 1.43 msaitoh
893 1.43 msaitoh /* Enable fiber mode and autodetection */
894 1.79 msaitoh PHY_READ(sc, BRGPHY_5708S_PG0_1000X_CTL1, ®);
895 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_PG0_1000X_CTL1, reg |
896 1.83 msaitoh BRGPHY_5708S_PG0_1000X_CTL1_AUTODET_EN |
897 1.77 msaitoh BRGPHY_5708S_PG0_1000X_CTL1_FIBER_MODE);
898 1.43 msaitoh
899 1.43 msaitoh /* Enable parallel detection */
900 1.79 msaitoh PHY_READ(sc, BRGPHY_5708S_PG0_1000X_CTL2, ®);
901 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_PG0_1000X_CTL2,
902 1.79 msaitoh reg | BRGPHY_5708S_PG0_1000X_CTL2_PAR_DET_EN);
903 1.43 msaitoh
904 1.83 msaitoh /*
905 1.83 msaitoh * Advertise 2.5G support through next page during
906 1.83 msaitoh * autoneg
907 1.83 msaitoh */
908 1.79 msaitoh if (bsc->sc_phyflags & BNX_PHY_2_5G_CAPABLE_FLAG) {
909 1.79 msaitoh PHY_READ(sc, BRGPHY_5708S_ANEG_NXT_PG_XMIT1,
910 1.79 msaitoh ®);
911 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_ANEG_NXT_PG_XMIT1,
912 1.79 msaitoh reg | BRGPHY_5708S_ANEG_NXT_PG_XMIT1_25G);
913 1.79 msaitoh }
914 1.43 msaitoh
915 1.43 msaitoh /* Increase TX signal amplitude */
916 1.83 msaitoh if ((chip_id == BNX_CHIP_ID_5708_A0) ||
917 1.83 msaitoh (chip_id == BNX_CHIP_ID_5708_B0) ||
918 1.83 msaitoh (chip_id == BNX_CHIP_ID_5708_B1)) {
919 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
920 1.79 msaitoh BRGPHY_5708S_TX_MISC_PG5);
921 1.79 msaitoh PHY_READ(sc, BRGPHY_5708S_PG5_TXACTL1, ®);
922 1.77 msaitoh PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL1,
923 1.79 msaitoh reg & ~BRGPHY_5708S_PG5_TXACTL1_VCM);
924 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
925 1.79 msaitoh BRGPHY_5708S_DIG_PG0);
926 1.43 msaitoh }
927 1.15 jonathan
928 1.83 msaitoh /*
929 1.83 msaitoh * Backplanes use special
930 1.83 msaitoh * driver/pre-driver/pre-emphasis values.
931 1.83 msaitoh */
932 1.71 msaitoh if ((bsc->sc_shared_hwcfg & BNX_SHARED_HW_CFG_PHY_BACKPLANE) &&
933 1.71 msaitoh (bsc->sc_port_hwcfg & BNX_PORT_HW_CFG_CFG_TXCTL3_MASK)) {
934 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
935 1.83 msaitoh BRGPHY_5708S_TX_MISC_PG5);
936 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_PG5_TXACTL3,
937 1.83 msaitoh bsc->sc_port_hwcfg &
938 1.83 msaitoh BNX_PORT_HW_CFG_CFG_TXCTL3_MASK);
939 1.83 msaitoh PHY_WRITE(sc, BRGPHY_5708S_BLOCK_ADDR,
940 1.83 msaitoh BRGPHY_5708S_DIG_PG0);
941 1.43 msaitoh }
942 1.71 msaitoh } else if ((sc->mii_mpd_oui == MII_OUI_BROADCOM2)
943 1.61 msaitoh && (sc->mii_mpd_model == MII_MODEL_BROADCOM2_BCM5709S)) {
944 1.57 jym /* Select the SerDes Digital block of the AN MMD. */
945 1.57 jym PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
946 1.57 jym BRGPHY_BLOCK_ADDR_SERDES_DIG);
947 1.57 jym
948 1.79 msaitoh PHY_READ(sc, BRGPHY_SERDES_DIG_1000X_CTL1, ®);
949 1.57 jym PHY_WRITE(sc, BRGPHY_SERDES_DIG_1000X_CTL1,
950 1.79 msaitoh (reg & ~BRGPHY_SD_DIG_1000X_CTL1_AUTODET) |
951 1.57 jym BRGPHY_SD_DIG_1000X_CTL1_FIBER);
952 1.57 jym
953 1.58 jym if (bsc->sc_phyflags & BNX_PHY_2_5G_CAPABLE_FLAG) {
954 1.57 jym /* Select the Over 1G block of the AN MMD. */
955 1.57 jym PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
956 1.57 jym BRGPHY_BLOCK_ADDR_OVER_1G);
957 1.57 jym
958 1.57 jym /*
959 1.57 jym * Enable autoneg "Next Page" to advertise
960 1.57 jym * 2.5G support.
961 1.57 jym */
962 1.79 msaitoh PHY_READ(sc, BRGPHY_OVER_1G_UNFORMAT_PG1,
963 1.79 msaitoh ®);
964 1.57 jym PHY_WRITE(sc, BRGPHY_OVER_1G_UNFORMAT_PG1,
965 1.79 msaitoh reg | BRGPHY_5708S_ANEG_NXT_PG_XMIT1_25G);
966 1.57 jym }
967 1.57 jym
968 1.77 msaitoh /*
969 1.77 msaitoh * Select the Multi-Rate Backplane Ethernet block of
970 1.77 msaitoh * the AN MMD.
971 1.77 msaitoh */
972 1.77 msaitoh PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
973 1.77 msaitoh BRGPHY_BLOCK_ADDR_MRBE);
974 1.77 msaitoh
975 1.77 msaitoh /* Enable MRBE speed autoneg. */
976 1.79 msaitoh PHY_READ(sc, BRGPHY_MRBE_MSG_PG5_NP, ®);
977 1.77 msaitoh PHY_WRITE(sc, BRGPHY_MRBE_MSG_PG5_NP,
978 1.79 msaitoh reg | BRGPHY_MRBE_MSG_PG5_NP_MBRE |
979 1.77 msaitoh BRGPHY_MRBE_MSG_PG5_NP_T2);
980 1.77 msaitoh
981 1.77 msaitoh /* Select the Clause 73 User B0 block of the AN MMD. */
982 1.77 msaitoh PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
983 1.77 msaitoh BRGPHY_BLOCK_ADDR_CL73_USER_B0);
984 1.57 jym
985 1.77 msaitoh /* Enable MRBE speed autoneg. */
986 1.77 msaitoh PHY_WRITE(sc, BRGPHY_CL73_USER_B0_MBRE_CTL1,
987 1.77 msaitoh BRGPHY_CL73_USER_B0_MBRE_CTL1_NP_AFT_BP |
988 1.77 msaitoh BRGPHY_CL73_USER_B0_MBRE_CTL1_STA_MGR |
989 1.77 msaitoh BRGPHY_CL73_USER_B0_MBRE_CTL1_ANEG);
990 1.77 msaitoh
991 1.77 msaitoh PHY_WRITE(sc, BRGPHY_BLOCK_ADDR,
992 1.77 msaitoh BRGPHY_BLOCK_ADDR_COMBO_IEEE0);
993 1.57 jym
994 1.83 msaitoh } else if (chip_num == BNX_CHIP_NUM_5709) {
995 1.83 msaitoh if ((chip_rev == BNX_CHIP_REV_Ax) ||
996 1.83 msaitoh (chip_rev == BNX_CHIP_REV_Bx))
997 1.58 jym brgphy_disable_early_dac(sc);
998 1.58 jym
999 1.58 jym /* Set Jumbo frame settings in the PHY. */
1000 1.58 jym brgphy_jumbo_settings(sc);
1001 1.58 jym
1002 1.58 jym /* Enable Ethernet@Wirespeed */
1003 1.58 jym brgphy_eth_wirespeed(sc);
1004 1.43 msaitoh } else {
1005 1.43 msaitoh if (!(sc->mii_flags & MIIF_HAVEFIBER)) {
1006 1.43 msaitoh brgphy_ber_bug(sc);
1007 1.18 hannken
1008 1.43 msaitoh /* Set Jumbo frame settings in the PHY. */
1009 1.43 msaitoh brgphy_jumbo_settings(sc);
1010 1.18 hannken
1011 1.43 msaitoh /* Enable Ethernet@Wirespeed */
1012 1.43 msaitoh brgphy_eth_wirespeed(sc);
1013 1.43 msaitoh }
1014 1.43 msaitoh }
1015 1.43 msaitoh }
1016 1.34 markd }
1017 1.34 markd
1018 1.16 jonathan /* Turn off tap power management on 5401. */
1019 1.10 thorpej static void
1020 1.43 msaitoh brgphy_bcm5401_dspcode(struct mii_softc *sc)
1021 1.10 thorpej {
1022 1.10 thorpej static const struct {
1023 1.10 thorpej int reg;
1024 1.10 thorpej uint16_t val;
1025 1.10 thorpej } dspcode[] = {
1026 1.16 jonathan { BRGPHY_MII_AUXCTL, 0x0c20 },
1027 1.10 thorpej { BRGPHY_MII_DSP_ADDR_REG, 0x0012 },
1028 1.10 thorpej { BRGPHY_MII_DSP_RW_PORT, 0x1804 },
1029 1.10 thorpej { BRGPHY_MII_DSP_ADDR_REG, 0x0013 },
1030 1.10 thorpej { BRGPHY_MII_DSP_RW_PORT, 0x1204 },
1031 1.10 thorpej { BRGPHY_MII_DSP_ADDR_REG, 0x8006 },
1032 1.10 thorpej { BRGPHY_MII_DSP_RW_PORT, 0x0132 },
1033 1.10 thorpej { BRGPHY_MII_DSP_ADDR_REG, 0x8006 },
1034 1.10 thorpej { BRGPHY_MII_DSP_RW_PORT, 0x0232 },
1035 1.10 thorpej { BRGPHY_MII_DSP_ADDR_REG, 0x201f },
1036 1.10 thorpej { BRGPHY_MII_DSP_RW_PORT, 0x0a20 },
1037 1.10 thorpej { 0, 0 },
1038 1.10 thorpej };
1039 1.10 thorpej int i;
1040 1.10 thorpej
1041 1.10 thorpej for (i = 0; dspcode[i].reg != 0; i++)
1042 1.10 thorpej PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
1043 1.61 msaitoh delay(40);
1044 1.10 thorpej }
1045 1.10 thorpej
1046 1.10 thorpej static void
1047 1.43 msaitoh brgphy_bcm5411_dspcode(struct mii_softc *sc)
1048 1.10 thorpej {
1049 1.10 thorpej static const struct {
1050 1.10 thorpej int reg;
1051 1.10 thorpej uint16_t val;
1052 1.10 thorpej } dspcode[] = {
1053 1.10 thorpej { 0x1c, 0x8c23 },
1054 1.10 thorpej { 0x1c, 0x8ca3 },
1055 1.10 thorpej { 0x1c, 0x8c23 },
1056 1.15 jonathan { 0, 0 },
1057 1.15 jonathan };
1058 1.15 jonathan int i;
1059 1.15 jonathan
1060 1.15 jonathan for (i = 0; dspcode[i].reg != 0; i++)
1061 1.15 jonathan PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
1062 1.15 jonathan }
1063 1.15 jonathan
1064 1.43 msaitoh void
1065 1.43 msaitoh brgphy_bcm5421_dspcode(struct mii_softc *sc)
1066 1.43 msaitoh {
1067 1.43 msaitoh uint16_t data;
1068 1.43 msaitoh
1069 1.43 msaitoh /* Set Class A mode */
1070 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x1007);
1071 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_AUXCTL, &data);
1072 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, data | 0x0400);
1073 1.43 msaitoh
1074 1.43 msaitoh /* Set FFE gamma override to -0.125 */
1075 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x0007);
1076 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_AUXCTL, &data);
1077 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, data | 0x0800);
1078 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG, 0x000a);
1079 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_DSP_RW_PORT, &data);
1080 1.43 msaitoh PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT, data | 0x0200);
1081 1.43 msaitoh }
1082 1.43 msaitoh
1083 1.43 msaitoh void
1084 1.43 msaitoh brgphy_bcm54k2_dspcode(struct mii_softc *sc)
1085 1.43 msaitoh {
1086 1.43 msaitoh static const struct {
1087 1.43 msaitoh int reg;
1088 1.43 msaitoh uint16_t val;
1089 1.43 msaitoh } dspcode[] = {
1090 1.43 msaitoh { 4, 0x01e1 },
1091 1.43 msaitoh { 9, 0x0300 },
1092 1.43 msaitoh { 0, 0 },
1093 1.43 msaitoh };
1094 1.43 msaitoh int i;
1095 1.43 msaitoh
1096 1.43 msaitoh for (i = 0; dspcode[i].reg != 0; i++)
1097 1.43 msaitoh PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
1098 1.43 msaitoh }
1099 1.43 msaitoh
1100 1.15 jonathan static void
1101 1.43 msaitoh brgphy_adc_bug(struct mii_softc *sc)
1102 1.15 jonathan {
1103 1.15 jonathan static const struct {
1104 1.15 jonathan int reg;
1105 1.15 jonathan uint16_t val;
1106 1.15 jonathan } dspcode[] = {
1107 1.15 jonathan { BRGPHY_MII_AUXCTL, 0x0c00 },
1108 1.15 jonathan { BRGPHY_MII_DSP_ADDR_REG, 0x201f },
1109 1.15 jonathan { BRGPHY_MII_DSP_RW_PORT, 0x2aaa },
1110 1.43 msaitoh { BRGPHY_MII_DSP_ADDR_REG, 0x000a },
1111 1.43 msaitoh { BRGPHY_MII_DSP_RW_PORT, 0x0323 },
1112 1.43 msaitoh { BRGPHY_MII_AUXCTL, 0x0400 },
1113 1.15 jonathan { 0, 0 },
1114 1.15 jonathan };
1115 1.15 jonathan int i;
1116 1.15 jonathan
1117 1.15 jonathan for (i = 0; dspcode[i].reg != 0; i++)
1118 1.15 jonathan PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
1119 1.15 jonathan }
1120 1.15 jonathan
1121 1.15 jonathan static void
1122 1.43 msaitoh brgphy_5704_a0_bug(struct mii_softc *sc)
1123 1.15 jonathan {
1124 1.15 jonathan static const struct {
1125 1.15 jonathan int reg;
1126 1.15 jonathan uint16_t val;
1127 1.15 jonathan } dspcode[] = {
1128 1.15 jonathan { 0x1c, 0x8d68 },
1129 1.33 msaitoh { 0x1c, 0x8d68 },
1130 1.10 thorpej { 0, 0 },
1131 1.10 thorpej };
1132 1.10 thorpej int i;
1133 1.10 thorpej
1134 1.10 thorpej for (i = 0; dspcode[i].reg != 0; i++)
1135 1.10 thorpej PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
1136 1.1 thorpej }
1137 1.22 cube
1138 1.22 cube static void
1139 1.43 msaitoh brgphy_ber_bug(struct mii_softc *sc)
1140 1.22 cube {
1141 1.22 cube static const struct {
1142 1.22 cube int reg;
1143 1.22 cube uint16_t val;
1144 1.22 cube } dspcode[] = {
1145 1.22 cube { BRGPHY_MII_AUXCTL, 0x0c00 },
1146 1.22 cube { BRGPHY_MII_DSP_ADDR_REG, 0x000a },
1147 1.22 cube { BRGPHY_MII_DSP_RW_PORT, 0x310b },
1148 1.22 cube { BRGPHY_MII_DSP_ADDR_REG, 0x201f },
1149 1.22 cube { BRGPHY_MII_DSP_RW_PORT, 0x9506 },
1150 1.22 cube { BRGPHY_MII_DSP_ADDR_REG, 0x401f },
1151 1.22 cube { BRGPHY_MII_DSP_RW_PORT, 0x14e2 },
1152 1.22 cube { BRGPHY_MII_AUXCTL, 0x0400 },
1153 1.22 cube { 0, 0 },
1154 1.22 cube };
1155 1.22 cube int i;
1156 1.22 cube
1157 1.22 cube for (i = 0; dspcode[i].reg != 0; i++)
1158 1.22 cube PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
1159 1.22 cube }
1160 1.34 markd
1161 1.43 msaitoh /* BCM5701 A0/B0 CRC bug workaround */
1162 1.43 msaitoh void
1163 1.43 msaitoh brgphy_crc_bug(struct mii_softc *sc)
1164 1.34 markd {
1165 1.34 markd static const struct {
1166 1.34 markd int reg;
1167 1.34 markd uint16_t val;
1168 1.34 markd } dspcode[] = {
1169 1.43 msaitoh { BRGPHY_MII_DSP_ADDR_REG, 0x0a75 },
1170 1.43 msaitoh { 0x1c, 0x8c68 },
1171 1.43 msaitoh { 0x1c, 0x8d68 },
1172 1.43 msaitoh { 0x1c, 0x8c68 },
1173 1.34 markd { 0, 0 },
1174 1.34 markd };
1175 1.34 markd int i;
1176 1.34 markd
1177 1.34 markd for (i = 0; dspcode[i].reg != 0; i++)
1178 1.34 markd PHY_WRITE(sc, dspcode[i].reg, dspcode[i].val);
1179 1.34 markd }
1180 1.52 msaitoh
1181 1.52 msaitoh static void
1182 1.58 jym brgphy_disable_early_dac(struct mii_softc *sc)
1183 1.58 jym {
1184 1.79 msaitoh uint16_t val;
1185 1.58 jym
1186 1.58 jym PHY_WRITE(sc, BRGPHY_MII_DSP_ADDR_REG, 0x0f08);
1187 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_DSP_RW_PORT, &val);
1188 1.58 jym val &= ~(1 << 8);
1189 1.58 jym PHY_WRITE(sc, BRGPHY_MII_DSP_RW_PORT, val);
1190 1.58 jym
1191 1.58 jym }
1192 1.58 jym
1193 1.58 jym static void
1194 1.52 msaitoh brgphy_jumbo_settings(struct mii_softc *sc)
1195 1.52 msaitoh {
1196 1.79 msaitoh uint16_t val;
1197 1.52 msaitoh
1198 1.52 msaitoh /* Set Jumbo frame settings in the PHY. */
1199 1.61 msaitoh if ((sc->mii_mpd_oui == MII_OUI_BROADCOM)
1200 1.61 msaitoh && (sc->mii_mpd_model == MII_MODEL_BROADCOM_BCM5401)) {
1201 1.52 msaitoh /* Cannot do read-modify-write on the BCM5401 */
1202 1.52 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x4c20);
1203 1.52 msaitoh } else {
1204 1.52 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x7);
1205 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_AUXCTL, &val);
1206 1.52 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL,
1207 1.79 msaitoh val & ~(BRGPHY_AUXCTL_LONG_PKT | 0x7));
1208 1.52 msaitoh }
1209 1.52 msaitoh
1210 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_PHY_EXTCTL, &val);
1211 1.79 msaitoh PHY_WRITE(sc, BRGPHY_MII_PHY_EXTCTL, val & ~BRGPHY_PHY_EXTCTL_HIGH_LA);
1212 1.52 msaitoh }
1213 1.52 msaitoh
1214 1.52 msaitoh static void
1215 1.52 msaitoh brgphy_eth_wirespeed(struct mii_softc *sc)
1216 1.52 msaitoh {
1217 1.79 msaitoh uint16_t val;
1218 1.52 msaitoh
1219 1.52 msaitoh /* Enable Ethernet@Wirespeed */
1220 1.52 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, 0x7007);
1221 1.79 msaitoh PHY_READ(sc, BRGPHY_MII_AUXCTL, &val);
1222 1.79 msaitoh PHY_WRITE(sc, BRGPHY_MII_AUXCTL, val | (1 << 15) | (1 << 4));
1223 1.52 msaitoh }
1224