1098ca2bdSWarner Losh /*-
2df57947fSPedro F. Giffuni * SPDX-License-Identifier: BSD-4-Clause
3df57947fSPedro F. Giffuni *
4a07bd003SBill Paul * Copyright (c) 2004
5a07bd003SBill Paul * Bill Paul <wpaul@windriver.com>. All rights reserved.
6a07bd003SBill Paul *
7a07bd003SBill Paul * Redistribution and use in source and binary forms, with or without
8a07bd003SBill Paul * modification, are permitted provided that the following conditions
9a07bd003SBill Paul * are met:
10a07bd003SBill Paul * 1. Redistributions of source code must retain the above copyright
11a07bd003SBill Paul * notice, this list of conditions and the following disclaimer.
12a07bd003SBill Paul * 2. Redistributions in binary form must reproduce the above copyright
13a07bd003SBill Paul * notice, this list of conditions and the following disclaimer in the
14a07bd003SBill Paul * documentation and/or other materials provided with the distribution.
15a07bd003SBill Paul * 3. All advertising materials mentioning features or use of this software
16a07bd003SBill Paul * must display the following acknowledgement:
17a07bd003SBill Paul * This product includes software developed by Bill Paul.
18a07bd003SBill Paul * 4. Neither the name of the author nor the names of any co-contributors
19a07bd003SBill Paul * may be used to endorse or promote products derived from this software
20a07bd003SBill Paul * without specific prior written permission.
21a07bd003SBill Paul *
22a07bd003SBill Paul * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
23a07bd003SBill Paul * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24a07bd003SBill Paul * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25a07bd003SBill Paul * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
26a07bd003SBill Paul * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27a07bd003SBill Paul * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28a07bd003SBill Paul * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29a07bd003SBill Paul * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30a07bd003SBill Paul * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31a07bd003SBill Paul * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32a07bd003SBill Paul * THE POSSIBILITY OF SUCH DAMAGE.
33a07bd003SBill Paul */
34a07bd003SBill Paul
35a07bd003SBill Paul #include <sys/cdefs.h>
36a07bd003SBill Paul /*
37324eb733SRafal Jaworowski * Driver for the Cicada/Vitesse CS/VSC8xxx 10/100/1000 copper PHY.
38a07bd003SBill Paul */
39a07bd003SBill Paul
40a07bd003SBill Paul #include <sys/param.h>
41a07bd003SBill Paul #include <sys/systm.h>
42a07bd003SBill Paul #include <sys/kernel.h>
43a07bd003SBill Paul #include <sys/module.h>
44a07bd003SBill Paul #include <sys/socket.h>
45a07bd003SBill Paul #include <sys/bus.h>
46a07bd003SBill Paul
47a07bd003SBill Paul #include <net/if.h>
48a07bd003SBill Paul #include <net/if_arp.h>
49a07bd003SBill Paul #include <net/if_media.h>
50a07bd003SBill Paul
51a07bd003SBill Paul #include <dev/mii/mii.h>
52a07bd003SBill Paul #include <dev/mii/miivar.h>
53a07bd003SBill Paul #include "miidevs.h"
54a07bd003SBill Paul
55a07bd003SBill Paul #include <dev/mii/ciphyreg.h>
56a07bd003SBill Paul
57a07bd003SBill Paul #include "miibus_if.h"
58a07bd003SBill Paul
59a07bd003SBill Paul #include <machine/bus.h>
608e5d93dbSMarius Strobl
61a07bd003SBill Paul static int ciphy_probe(device_t);
62a07bd003SBill Paul static int ciphy_attach(device_t);
63a07bd003SBill Paul
64a07bd003SBill Paul static device_method_t ciphy_methods[] = {
65a07bd003SBill Paul /* device interface */
66a07bd003SBill Paul DEVMETHOD(device_probe, ciphy_probe),
67a07bd003SBill Paul DEVMETHOD(device_attach, ciphy_attach),
68a07bd003SBill Paul DEVMETHOD(device_detach, mii_phy_detach),
69a07bd003SBill Paul DEVMETHOD(device_shutdown, bus_generic_shutdown),
70604f5f1fSMarius Strobl DEVMETHOD_END
71a07bd003SBill Paul };
72a07bd003SBill Paul
73a07bd003SBill Paul static driver_t ciphy_driver = {
74a07bd003SBill Paul "ciphy",
75a07bd003SBill Paul ciphy_methods,
76a07bd003SBill Paul sizeof(struct mii_softc)
77a07bd003SBill Paul };
78a07bd003SBill Paul
79*f438c2ffSJohn Baldwin DRIVER_MODULE(ciphy, miibus, ciphy_driver, 0, 0);
80a07bd003SBill Paul
81a07bd003SBill Paul static int ciphy_service(struct mii_softc *, struct mii_data *, int);
82a07bd003SBill Paul static void ciphy_status(struct mii_softc *);
83a07bd003SBill Paul static void ciphy_reset(struct mii_softc *);
84a07bd003SBill Paul static void ciphy_fixup(struct mii_softc *);
85a07bd003SBill Paul
86a35b9333SMarius Strobl static const struct mii_phydesc ciphys[] = {
873fcb7a53SMarius Strobl MII_PHY_DESC(xxCICADA, CS8201),
883fcb7a53SMarius Strobl MII_PHY_DESC(xxCICADA, CS8201A),
893fcb7a53SMarius Strobl MII_PHY_DESC(xxCICADA, CS8201B),
903fcb7a53SMarius Strobl MII_PHY_DESC(xxCICADA, CS8204),
913fcb7a53SMarius Strobl MII_PHY_DESC(xxCICADA, VSC8211),
929994219bSRafal Jaworowski MII_PHY_DESC(xxCICADA, VSC8221),
933fcb7a53SMarius Strobl MII_PHY_DESC(xxCICADA, CS8244),
943fcb7a53SMarius Strobl MII_PHY_DESC(xxVITESSE, VSC8601),
959994219bSRafal Jaworowski MII_PHY_DESC(xxVITESSE, VSC8641),
96a35b9333SMarius Strobl MII_PHY_END
97a35b9333SMarius Strobl };
98a35b9333SMarius Strobl
993fcb7a53SMarius Strobl static const struct mii_phy_funcs ciphy_funcs = {
1003fcb7a53SMarius Strobl ciphy_service,
1013fcb7a53SMarius Strobl ciphy_status,
1023fcb7a53SMarius Strobl ciphy_reset
1033fcb7a53SMarius Strobl };
1043fcb7a53SMarius Strobl
105a07bd003SBill Paul static int
ciphy_probe(device_t dev)1067d830ac9SWarner Losh ciphy_probe(device_t dev)
107a07bd003SBill Paul {
108a07bd003SBill Paul
109a35b9333SMarius Strobl return (mii_phy_dev_probe(dev, ciphys, BUS_PROBE_DEFAULT));
110a07bd003SBill Paul }
111a07bd003SBill Paul
112a07bd003SBill Paul static int
ciphy_attach(device_t dev)1137d830ac9SWarner Losh ciphy_attach(device_t dev)
114a07bd003SBill Paul {
115a07bd003SBill Paul
1163fcb7a53SMarius Strobl mii_phy_dev_attach(dev, MIIF_NOISOLATE | MIIF_NOMANPAUSE,
1173fcb7a53SMarius Strobl &ciphy_funcs, 1);
118a07bd003SBill Paul return (0);
119a07bd003SBill Paul }
120a07bd003SBill Paul
121a07bd003SBill Paul static int
ciphy_service(struct mii_softc * sc,struct mii_data * mii,int cmd)1227d830ac9SWarner Losh ciphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
123a07bd003SBill Paul {
124a07bd003SBill Paul struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
125a07bd003SBill Paul int reg, speed, gig;
126a07bd003SBill Paul
127a07bd003SBill Paul switch (cmd) {
128a07bd003SBill Paul case MII_POLLSTAT:
129a07bd003SBill Paul break;
130a07bd003SBill Paul
131a07bd003SBill Paul case MII_MEDIACHG:
132a07bd003SBill Paul ciphy_fixup(sc); /* XXX hardware bug work-around */
133a07bd003SBill Paul
134a07bd003SBill Paul switch (IFM_SUBTYPE(ife->ifm_media)) {
135a07bd003SBill Paul case IFM_AUTO:
136a07bd003SBill Paul #ifdef foo
137a07bd003SBill Paul /*
138a07bd003SBill Paul * If we're already in auto mode, just return.
139a07bd003SBill Paul */
140a07bd003SBill Paul if (PHY_READ(sc, CIPHY_MII_BMCR) & CIPHY_BMCR_AUTOEN)
141a07bd003SBill Paul return (0);
142a07bd003SBill Paul #endif
143a07bd003SBill Paul (void)mii_phy_auto(sc);
144a07bd003SBill Paul break;
145a07bd003SBill Paul case IFM_1000_T:
146a07bd003SBill Paul speed = CIPHY_S1000;
147a07bd003SBill Paul goto setit;
148a07bd003SBill Paul case IFM_100_TX:
149a07bd003SBill Paul speed = CIPHY_S100;
150a07bd003SBill Paul goto setit;
151a07bd003SBill Paul case IFM_10_T:
152a07bd003SBill Paul speed = CIPHY_S10;
153a07bd003SBill Paul setit:
15487a303dcSMarius Strobl if ((ife->ifm_media & IFM_FDX) != 0) {
155a07bd003SBill Paul speed |= CIPHY_BMCR_FDX;
156a07bd003SBill Paul gig = CIPHY_1000CTL_AFD;
15787a303dcSMarius Strobl } else
158a07bd003SBill Paul gig = CIPHY_1000CTL_AHD;
159a07bd003SBill Paul
16087a303dcSMarius Strobl if (IFM_SUBTYPE(ife->ifm_media) == IFM_1000_T) {
161efd4fc3fSMarius Strobl gig |= CIPHY_1000CTL_MSE;
162efd4fc3fSMarius Strobl if ((ife->ifm_media & IFM_ETH_MASTER) != 0)
163efd4fc3fSMarius Strobl gig |= CIPHY_1000CTL_MSC;
16487a303dcSMarius Strobl speed |=
16587a303dcSMarius Strobl CIPHY_BMCR_AUTOEN | CIPHY_BMCR_STARTNEG;
16687a303dcSMarius Strobl } else
16787a303dcSMarius Strobl gig = 0;
168a07bd003SBill Paul PHY_WRITE(sc, CIPHY_MII_1000CTL, gig);
16987a303dcSMarius Strobl PHY_WRITE(sc, CIPHY_MII_BMCR, speed);
17087a303dcSMarius Strobl PHY_WRITE(sc, CIPHY_MII_ANAR, CIPHY_SEL_TYPE);
171a07bd003SBill Paul break;
172a07bd003SBill Paul case IFM_NONE:
173a07bd003SBill Paul PHY_WRITE(sc, MII_BMCR, BMCR_ISO | BMCR_PDOWN);
174a07bd003SBill Paul break;
175a07bd003SBill Paul default:
176a07bd003SBill Paul return (EINVAL);
177a07bd003SBill Paul }
178a07bd003SBill Paul break;
179a07bd003SBill Paul
180a07bd003SBill Paul case MII_TICK:
181a07bd003SBill Paul /*
182a07bd003SBill Paul * Only used for autonegotiation.
183a07bd003SBill Paul */
184a07bd003SBill Paul if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
185a07bd003SBill Paul break;
186a07bd003SBill Paul
187a07bd003SBill Paul /*
188a07bd003SBill Paul * Check to see if we have link. If we do, we don't
189a07bd003SBill Paul * need to restart the autonegotiation process. Read
190a07bd003SBill Paul * the BMSR twice in case it's latched.
191a07bd003SBill Paul */
192a07bd003SBill Paul reg = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
193a07bd003SBill Paul if (reg & BMSR_LINK)
194a07bd003SBill Paul break;
195a07bd003SBill Paul
196138b38ffSPyun YongHyeon /* Announce link loss right after it happens. */
197138b38ffSPyun YongHyeon if (++sc->mii_ticks == 0)
198138b38ffSPyun YongHyeon break;
199a07bd003SBill Paul /*
200eb10e723SPyun YongHyeon * Only retry autonegotiation every mii_anegticks seconds.
201a07bd003SBill Paul */
202eb10e723SPyun YongHyeon if (sc->mii_ticks <= sc->mii_anegticks)
203a07bd003SBill Paul break;
204a07bd003SBill Paul
205a07bd003SBill Paul sc->mii_ticks = 0;
206a07bd003SBill Paul mii_phy_auto(sc);
20793798224SPyun YongHyeon break;
208a07bd003SBill Paul }
209a07bd003SBill Paul
210a07bd003SBill Paul /* Update the media status. */
2113fcb7a53SMarius Strobl PHY_STATUS(sc);
212a07bd003SBill Paul
213a07bd003SBill Paul /*
214a07bd003SBill Paul * Callback if something changed. Note that we need to poke
215a07bd003SBill Paul * apply fixups for certain PHY revs.
216a07bd003SBill Paul */
217a07bd003SBill Paul if (sc->mii_media_active != mii->mii_media_active ||
218a07bd003SBill Paul sc->mii_media_status != mii->mii_media_status ||
219a07bd003SBill Paul cmd == MII_MEDIACHG) {
220a07bd003SBill Paul ciphy_fixup(sc);
221a07bd003SBill Paul }
222a07bd003SBill Paul mii_phy_update(sc, cmd);
223a07bd003SBill Paul return (0);
224a07bd003SBill Paul }
225a07bd003SBill Paul
226a07bd003SBill Paul static void
ciphy_status(struct mii_softc * sc)2277d830ac9SWarner Losh ciphy_status(struct mii_softc *sc)
228a07bd003SBill Paul {
229a07bd003SBill Paul struct mii_data *mii = sc->mii_pdata;
230a07bd003SBill Paul int bmsr, bmcr;
231a07bd003SBill Paul
232a07bd003SBill Paul mii->mii_media_status = IFM_AVALID;
233a07bd003SBill Paul mii->mii_media_active = IFM_ETHER;
234a07bd003SBill Paul
235a07bd003SBill Paul bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
236a07bd003SBill Paul
237a07bd003SBill Paul if (bmsr & BMSR_LINK)
238a07bd003SBill Paul mii->mii_media_status |= IFM_ACTIVE;
239a07bd003SBill Paul
240a07bd003SBill Paul bmcr = PHY_READ(sc, CIPHY_MII_BMCR);
241a07bd003SBill Paul
242a07bd003SBill Paul if (bmcr & CIPHY_BMCR_LOOP)
243a07bd003SBill Paul mii->mii_media_active |= IFM_LOOP;
244a07bd003SBill Paul
245a07bd003SBill Paul if (bmcr & CIPHY_BMCR_AUTOEN) {
246a07bd003SBill Paul if ((bmsr & CIPHY_BMSR_ACOMP) == 0) {
247a07bd003SBill Paul /* Erg, still trying, I guess... */
248a07bd003SBill Paul mii->mii_media_active |= IFM_NONE;
249a07bd003SBill Paul return;
250a07bd003SBill Paul }
251a07bd003SBill Paul }
252a07bd003SBill Paul
253a07bd003SBill Paul bmsr = PHY_READ(sc, CIPHY_MII_AUXCSR);
254a07bd003SBill Paul switch (bmsr & CIPHY_AUXCSR_SPEED) {
255a07bd003SBill Paul case CIPHY_SPEED10:
256a07bd003SBill Paul mii->mii_media_active |= IFM_10_T;
257a07bd003SBill Paul break;
258a07bd003SBill Paul case CIPHY_SPEED100:
259a07bd003SBill Paul mii->mii_media_active |= IFM_100_TX;
260a07bd003SBill Paul break;
261a07bd003SBill Paul case CIPHY_SPEED1000:
262a07bd003SBill Paul mii->mii_media_active |= IFM_1000_T;
263a07bd003SBill Paul break;
264a07bd003SBill Paul default:
265a07bd003SBill Paul device_printf(sc->mii_dev, "unknown PHY speed %x\n",
266a07bd003SBill Paul bmsr & CIPHY_AUXCSR_SPEED);
267a07bd003SBill Paul break;
268a07bd003SBill Paul }
269a07bd003SBill Paul
270a07bd003SBill Paul if (bmsr & CIPHY_AUXCSR_FDX)
2713fcb7a53SMarius Strobl mii->mii_media_active |= IFM_FDX | mii_phy_flowstatus(sc);
272f350b4e7SPyun YongHyeon else
273f350b4e7SPyun YongHyeon mii->mii_media_active |= IFM_HDX;
274efd4fc3fSMarius Strobl
275efd4fc3fSMarius Strobl if ((IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T) &&
276efd4fc3fSMarius Strobl (PHY_READ(sc, CIPHY_MII_1000STS) & CIPHY_1000STS_MSR) != 0)
277efd4fc3fSMarius Strobl mii->mii_media_active |= IFM_ETH_MASTER;
278a07bd003SBill Paul }
279a07bd003SBill Paul
280a07bd003SBill Paul static void
ciphy_reset(struct mii_softc * sc)281a07bd003SBill Paul ciphy_reset(struct mii_softc *sc)
282a07bd003SBill Paul {
283028ccec4SMarius Strobl
284a07bd003SBill Paul mii_phy_reset(sc);
285a07bd003SBill Paul DELAY(1000);
286a07bd003SBill Paul }
287a07bd003SBill Paul
288a07bd003SBill Paul #define PHY_SETBIT(x, y, z) \
289a07bd003SBill Paul PHY_WRITE(x, y, (PHY_READ(x, y) | (z)))
290a07bd003SBill Paul #define PHY_CLRBIT(x, y, z) \
291a07bd003SBill Paul PHY_WRITE(x, y, (PHY_READ(x, y) & ~(z)))
292a07bd003SBill Paul
293a07bd003SBill Paul static void
ciphy_fixup(struct mii_softc * sc)294a07bd003SBill Paul ciphy_fixup(struct mii_softc *sc)
295a07bd003SBill Paul {
296a07bd003SBill Paul uint16_t model;
297a07bd003SBill Paul uint16_t status, speed;
2989f6cc3adSPyun YongHyeon uint16_t val;
299a07bd003SBill Paul
300a07bd003SBill Paul model = MII_MODEL(PHY_READ(sc, CIPHY_MII_PHYIDR2));
301a07bd003SBill Paul status = PHY_READ(sc, CIPHY_MII_AUXCSR);
302a07bd003SBill Paul speed = status & CIPHY_AUXCSR_SPEED;
303a07bd003SBill Paul
3047e310d2dSGleb Smirnoff if (mii_phy_mac_match(sc, "nfe")) {
3059f6cc3adSPyun YongHyeon /* need to set for 2.5V RGMII for NVIDIA adapters */
3069f6cc3adSPyun YongHyeon val = PHY_READ(sc, CIPHY_MII_ECTL1);
3079f6cc3adSPyun YongHyeon val &= ~(CIPHY_ECTL1_IOVOL | CIPHY_ECTL1_INTSEL);
3089f6cc3adSPyun YongHyeon val |= (CIPHY_IOVOL_2500MV | CIPHY_INTSEL_RGMII);
3099f6cc3adSPyun YongHyeon PHY_WRITE(sc, CIPHY_MII_ECTL1, val);
3109f6cc3adSPyun YongHyeon /* From Linux. */
3119f6cc3adSPyun YongHyeon val = PHY_READ(sc, CIPHY_MII_AUXCSR);
3129f6cc3adSPyun YongHyeon val |= CIPHY_AUXCSR_MDPPS;
3139f6cc3adSPyun YongHyeon PHY_WRITE(sc, CIPHY_MII_AUXCSR, val);
3149f6cc3adSPyun YongHyeon val = PHY_READ(sc, CIPHY_MII_10BTCSR);
3159f6cc3adSPyun YongHyeon val |= CIPHY_10BTCSR_ECHO;
3169f6cc3adSPyun YongHyeon PHY_WRITE(sc, CIPHY_MII_10BTCSR, val);
3179f6cc3adSPyun YongHyeon }
3189f6cc3adSPyun YongHyeon
319a07bd003SBill Paul switch (model) {
3203fcb7a53SMarius Strobl case MII_MODEL_xxCICADA_CS8204:
3213fcb7a53SMarius Strobl case MII_MODEL_xxCICADA_CS8201:
322a07bd003SBill Paul
323a07bd003SBill Paul /* Turn off "aux mode" (whatever that means) */
324a07bd003SBill Paul PHY_SETBIT(sc, CIPHY_MII_AUXCSR, CIPHY_AUXCSR_MDPPS);
325a07bd003SBill Paul
326a07bd003SBill Paul /*
327a07bd003SBill Paul * Work around speed polling bug in VT3119/VT3216
328a07bd003SBill Paul * when using MII in full duplex mode.
329a07bd003SBill Paul */
330a07bd003SBill Paul if ((speed == CIPHY_SPEED10 || speed == CIPHY_SPEED100) &&
331a07bd003SBill Paul (status & CIPHY_AUXCSR_FDX)) {
332a07bd003SBill Paul PHY_SETBIT(sc, CIPHY_MII_10BTCSR, CIPHY_10BTCSR_ECHO);
333a07bd003SBill Paul } else {
334a07bd003SBill Paul PHY_CLRBIT(sc, CIPHY_MII_10BTCSR, CIPHY_10BTCSR_ECHO);
335a07bd003SBill Paul }
336a07bd003SBill Paul
337a07bd003SBill Paul /* Enable link/activity LED blink. */
338a07bd003SBill Paul PHY_SETBIT(sc, CIPHY_MII_LED, CIPHY_LED_LINKACTBLINK);
339a07bd003SBill Paul
340a07bd003SBill Paul break;
341a07bd003SBill Paul
3423fcb7a53SMarius Strobl case MII_MODEL_xxCICADA_CS8201A:
3433fcb7a53SMarius Strobl case MII_MODEL_xxCICADA_CS8201B:
344a07bd003SBill Paul
345a07bd003SBill Paul /*
346a07bd003SBill Paul * Work around speed polling bug in VT3119/VT3216
347a07bd003SBill Paul * when using MII in full duplex mode.
348a07bd003SBill Paul */
349a07bd003SBill Paul if ((speed == CIPHY_SPEED10 || speed == CIPHY_SPEED100) &&
350a07bd003SBill Paul (status & CIPHY_AUXCSR_FDX)) {
351a07bd003SBill Paul PHY_SETBIT(sc, CIPHY_MII_10BTCSR, CIPHY_10BTCSR_ECHO);
352a07bd003SBill Paul } else {
353a07bd003SBill Paul PHY_CLRBIT(sc, CIPHY_MII_10BTCSR, CIPHY_10BTCSR_ECHO);
354a07bd003SBill Paul }
355a07bd003SBill Paul
356a07bd003SBill Paul break;
3573fcb7a53SMarius Strobl case MII_MODEL_xxCICADA_VSC8211:
3589994219bSRafal Jaworowski case MII_MODEL_xxCICADA_VSC8221:
3593fcb7a53SMarius Strobl case MII_MODEL_xxCICADA_CS8244:
3603fcb7a53SMarius Strobl case MII_MODEL_xxVITESSE_VSC8601:
3619994219bSRafal Jaworowski case MII_MODEL_xxVITESSE_VSC8641:
3629f6cc3adSPyun YongHyeon break;
363a07bd003SBill Paul default:
364a07bd003SBill Paul device_printf(sc->mii_dev, "unknown CICADA PHY model %x\n",
365a07bd003SBill Paul model);
366a07bd003SBill Paul break;
367a07bd003SBill Paul }
368a07bd003SBill Paul }
369