pnaphy.c revision 1.2 1 1.2 thorpej /* $NetBSD: pnaphy.c,v 1.2 2001/08/25 18:04:02 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright 2001 Wasabi Systems, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 1.1 thorpej *
9 1.1 thorpej * Redistribution and use in source and binary forms, with or without
10 1.1 thorpej * modification, are permitted provided that the following conditions
11 1.1 thorpej * are met:
12 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer.
14 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
16 1.1 thorpej * documentation and/or other materials provided with the distribution.
17 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
18 1.1 thorpej * must display the following acknowledgement:
19 1.1 thorpej * This product includes software developed for the NetBSD Project by
20 1.1 thorpej * Wasabi Systems, Inc.
21 1.1 thorpej * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.1 thorpej * or promote products derived from this software without specific prior
23 1.1 thorpej * written permission.
24 1.1 thorpej *
25 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
36 1.1 thorpej */
37 1.1 thorpej
38 1.1 thorpej /*
39 1.1 thorpej * Driver for generic HomePNA 1.0 PHYs.
40 1.1 thorpej *
41 1.1 thorpej * HomePNA 1.0 PHYs are pretty simple -- they support exactly one
42 1.1 thorpej * media type, and don't do autonegotiation.
43 1.1 thorpej *
44 1.1 thorpej * HomePNA PHYs often have vendor-specific registers for tuning
45 1.1 thorpej * the network connection, but we don't deal with any of that
46 1.1 thorpej * at all.
47 1.1 thorpej */
48 1.1 thorpej
49 1.1 thorpej #include <sys/param.h>
50 1.1 thorpej #include <sys/systm.h>
51 1.1 thorpej #include <sys/kernel.h>
52 1.1 thorpej #include <sys/device.h>
53 1.1 thorpej #include <sys/malloc.h>
54 1.1 thorpej #include <sys/socket.h>
55 1.1 thorpej #include <sys/errno.h>
56 1.1 thorpej
57 1.1 thorpej #include <net/if.h>
58 1.1 thorpej #include <net/if_media.h>
59 1.1 thorpej
60 1.1 thorpej #include <dev/mii/mii.h>
61 1.1 thorpej #include <dev/mii/miivar.h>
62 1.1 thorpej #include <dev/mii/miidevs.h>
63 1.1 thorpej
64 1.1 thorpej int pnaphymatch(struct device *, struct cfdata *, void *);
65 1.1 thorpej void pnaphyattach(struct device *, struct device *, void *);
66 1.1 thorpej
67 1.1 thorpej struct cfattach pnaphy_ca = {
68 1.1 thorpej sizeof(struct mii_softc), pnaphymatch, pnaphyattach,
69 1.1 thorpej mii_phy_detach, mii_phy_activate
70 1.1 thorpej };
71 1.1 thorpej
72 1.1 thorpej int pnaphy_service(struct mii_softc *, struct mii_data *, int);
73 1.1 thorpej void pnaphy_status(struct mii_softc *);
74 1.1 thorpej
75 1.1 thorpej const struct mii_phy_funcs pnaphy_funcs = {
76 1.1 thorpej pnaphy_service, pnaphy_status, mii_phy_reset,
77 1.1 thorpej };
78 1.1 thorpej
79 1.1 thorpej const struct mii_phydesc pnaphys[] = {
80 1.1 thorpej { MII_OUI_yyAMD, MII_MODEL_yyAMD_79c901home,
81 1.1 thorpej MII_STR_yyAMD_79c901home },
82 1.1 thorpej
83 1.1 thorpej { 0, 0,
84 1.1 thorpej NULL },
85 1.1 thorpej };
86 1.1 thorpej
87 1.1 thorpej int
88 1.2 thorpej pnaphymatch(struct device *parent, struct cfdata *match, void *aux)
89 1.1 thorpej {
90 1.1 thorpej struct mii_attach_args *ma = aux;
91 1.1 thorpej
92 1.1 thorpej if (mii_phy_match(ma, pnaphys) != NULL) {
93 1.1 thorpej /*
94 1.1 thorpej * Match higher than ukphy, but lower than a specific
95 1.1 thorpej * driver would match.
96 1.1 thorpej */
97 1.1 thorpej return (2);
98 1.1 thorpej }
99 1.1 thorpej
100 1.1 thorpej return (0);
101 1.1 thorpej }
102 1.1 thorpej
103 1.1 thorpej void
104 1.2 thorpej pnaphyattach(struct device *parent, struct device *self, void *aux)
105 1.1 thorpej {
106 1.1 thorpej struct mii_softc *sc = (struct mii_softc *)self;
107 1.1 thorpej struct mii_attach_args *ma = aux;
108 1.1 thorpej struct mii_data *mii = ma->mii_data;
109 1.1 thorpej const struct mii_phydesc *mpd;
110 1.1 thorpej
111 1.1 thorpej mpd = mii_phy_match(ma, pnaphys);
112 1.1 thorpej printf(": %s, rev. %d\n", mpd->mpd_name, MII_REV(ma->mii_id2));
113 1.1 thorpej
114 1.1 thorpej sc->mii_inst = mii->mii_instance;
115 1.1 thorpej sc->mii_phy = ma->mii_phyno;
116 1.1 thorpej sc->mii_funcs = &pnaphy_funcs;
117 1.1 thorpej sc->mii_pdata = mii;
118 1.1 thorpej sc->mii_flags = mii->mii_flags;
119 1.1 thorpej sc->mii_anegticks = 5;
120 1.1 thorpej
121 1.1 thorpej PHY_RESET(sc);
122 1.1 thorpej
123 1.1 thorpej sc->mii_capabilities =
124 1.1 thorpej PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
125 1.1 thorpej printf("%s: ", sc->mii_dev.dv_xname);
126 1.1 thorpej if ((sc->mii_capabilities & BMSR_MEDIAMASK) == 0)
127 1.1 thorpej printf("no media present");
128 1.1 thorpej else
129 1.1 thorpej mii_phy_add_media(sc);
130 1.1 thorpej printf("\n");
131 1.1 thorpej }
132 1.1 thorpej
133 1.1 thorpej int
134 1.2 thorpej pnaphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
135 1.1 thorpej {
136 1.1 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
137 1.1 thorpej int reg;
138 1.1 thorpej
139 1.1 thorpej switch (cmd) {
140 1.1 thorpej case MII_POLLSTAT:
141 1.1 thorpej /*
142 1.1 thorpej * If we're not polling our PHY instance, just return.
143 1.1 thorpej */
144 1.1 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst)
145 1.1 thorpej return (0);
146 1.1 thorpej break;
147 1.1 thorpej
148 1.1 thorpej case MII_MEDIACHG:
149 1.1 thorpej /*
150 1.1 thorpej * If the media indicates a different PHY instance,
151 1.1 thorpej * isolate ourselves.
152 1.1 thorpej */
153 1.1 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
154 1.1 thorpej reg = PHY_READ(sc, MII_BMCR);
155 1.1 thorpej PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
156 1.1 thorpej return (0);
157 1.1 thorpej }
158 1.1 thorpej
159 1.1 thorpej /*
160 1.1 thorpej * If the interface is not up, don't do anything.
161 1.1 thorpej */
162 1.1 thorpej if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
163 1.1 thorpej break;
164 1.1 thorpej
165 1.1 thorpej mii_phy_setmedia(sc);
166 1.1 thorpej break;
167 1.1 thorpej
168 1.1 thorpej case MII_TICK:
169 1.1 thorpej /*
170 1.1 thorpej * If we're not currently selected, just return.
171 1.1 thorpej */
172 1.1 thorpej if (IFM_INST(ife->ifm_media) != sc->mii_inst)
173 1.1 thorpej return (0);
174 1.1 thorpej
175 1.1 thorpej if (mii_phy_tick(sc) == EJUSTRETURN)
176 1.1 thorpej return (0);
177 1.1 thorpej break;
178 1.1 thorpej
179 1.1 thorpej case MII_DOWN:
180 1.1 thorpej mii_phy_down(sc);
181 1.1 thorpej return (0);
182 1.1 thorpej }
183 1.1 thorpej
184 1.1 thorpej /* Update the media status. */
185 1.1 thorpej mii_phy_status(sc);
186 1.1 thorpej
187 1.1 thorpej /* Callback if something changed. */
188 1.1 thorpej mii_phy_update(sc, cmd);
189 1.1 thorpej return (0);
190 1.1 thorpej }
191 1.1 thorpej
192 1.1 thorpej void
193 1.2 thorpej pnaphy_status(struct mii_softc *sc)
194 1.1 thorpej {
195 1.1 thorpej struct mii_data *mii = sc->mii_pdata;
196 1.1 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
197 1.1 thorpej int bmsr, bmcr;
198 1.1 thorpej
199 1.1 thorpej mii->mii_media_status = IFM_AVALID;
200 1.1 thorpej mii->mii_media_active = IFM_ETHER;
201 1.1 thorpej
202 1.1 thorpej bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
203 1.1 thorpej
204 1.1 thorpej if (bmsr & BMSR_LINK)
205 1.1 thorpej mii->mii_media_status |= IFM_ACTIVE;
206 1.1 thorpej
207 1.1 thorpej bmcr = PHY_READ(sc, MII_BMCR);
208 1.1 thorpej if (bmcr & BMCR_ISO) {
209 1.1 thorpej mii->mii_media_active |= IFM_NONE;
210 1.1 thorpej mii->mii_media_status = 0;
211 1.1 thorpej return;
212 1.1 thorpej }
213 1.1 thorpej
214 1.1 thorpej if (bmcr & BMCR_LOOP)
215 1.1 thorpej mii->mii_media_active |= IFM_LOOP;
216 1.1 thorpej
217 1.1 thorpej /*
218 1.1 thorpej * On HomePNA PHYs, the current media is always the selected
219 1.1 thorpej * media.
220 1.1 thorpej *
221 1.1 thorpej * XXX May not be the case w/ HomePNA 2.
222 1.1 thorpej */
223 1.1 thorpej mii->mii_media_active = ife->ifm_media;
224 1.1 thorpej }
225