xref: /dragonfly/sys/dev/netif/mii_layer/pnphy.c (revision af79c6e5)
1 /*
2  * Copyright (c) 1997, 1998, 1999
3  *	Bill Paul <wpaul@ee.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
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by Bill Paul.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
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  * $FreeBSD: src/sys/dev/mii/pnphy.c,v 1.1.2.1 2002/11/08 21:53:49 semenu Exp $
33  * $DragonFly: src/sys/dev/netif/mii_layer/pnphy.c,v 1.4 2003/08/27 09:38:31 rob Exp $
34  *
35  * $FreeBSD: src/sys/dev/mii/pnphy.c,v 1.1.2.1 2002/11/08 21:53:49 semenu Exp $
36  */
37 
38 /*
39  * Pseudo-driver for media selection on the Lite-On PNIC 82c168
40  * chip. The NWAY support on this chip is horribly broken, so we
41  * only support manual mode selection. This is lame, but getting
42  * NWAY to work right is amazingly difficult.
43  */
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/socket.h>
49 #include <sys/errno.h>
50 #include <sys/module.h>
51 #include <sys/bus.h>
52 
53 #include <net/if.h>
54 #include <net/if_arp.h>
55 #include <net/if_media.h>
56 
57 #include "mii.h"
58 #include "miivar.h"
59 #include "miidevs.h"
60 
61 #include <machine/clock.h>
62 #include <machine/bus_pio.h>
63 #include <machine/bus_memio.h>
64 #include <machine/bus.h>
65 #include <machine/resource.h>
66 #include <sys/bus.h>
67 
68 #include "../dc/if_dcreg.h"
69 
70 #include "miibus_if.h"
71 
72 #define DC_SETBIT(sc, reg, x)                           \
73         CSR_WRITE_4(sc, reg,                            \
74                 CSR_READ_4(sc, reg) | x)
75 
76 #define DC_CLRBIT(sc, reg, x)                           \
77         CSR_WRITE_4(sc, reg,                            \
78                 CSR_READ_4(sc, reg) & ~x)
79 
80 static int pnphy_probe		(device_t);
81 static int pnphy_attach		(device_t);
82 static int pnphy_detach		(device_t);
83 
84 static device_method_t pnphy_methods[] = {
85 	/* device interface */
86 	DEVMETHOD(device_probe,		pnphy_probe),
87 	DEVMETHOD(device_attach,	pnphy_attach),
88 	DEVMETHOD(device_detach,	pnphy_detach),
89 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
90 	{ 0, 0 }
91 };
92 
93 static devclass_t pnphy_devclass;
94 
95 static driver_t pnphy_driver = {
96 	"pnphy",
97 	pnphy_methods,
98 	sizeof(struct mii_softc)
99 };
100 
101 DRIVER_MODULE(pnphy, miibus, pnphy_driver, pnphy_devclass, 0, 0);
102 
103 int	pnphy_service (struct mii_softc *, struct mii_data *, int);
104 void	pnphy_status (struct mii_softc *);
105 
106 static int pnphy_probe(dev)
107 	device_t		dev;
108 {
109 	struct mii_attach_args *ma;
110 
111 	ma = device_get_ivars(dev);
112 
113 	/*
114 	 * The dc driver will report the 82c168 vendor and device
115 	 * ID to let us know that it wants us to attach.
116 	 */
117 	if (ma->mii_id1 != DC_VENDORID_LO ||
118 	    ma->mii_id2 != DC_DEVICEID_82C168)
119 		return(ENXIO);
120 
121 	device_set_desc(dev, "PNIC 82c168 media interface");
122 
123 	return (0);
124 }
125 
126 static int pnphy_attach(dev)
127 	device_t		dev;
128 {
129 	struct mii_softc *sc;
130 	struct mii_attach_args *ma;
131 	struct mii_data *mii;
132 
133 	sc = device_get_softc(dev);
134 	ma = device_get_ivars(dev);
135 	sc->mii_dev = device_get_parent(dev);
136 	mii = device_get_softc(sc->mii_dev);
137 	LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
138 
139 	sc->mii_inst = mii->mii_instance;
140 	sc->mii_phy = ma->mii_phyno;
141 	sc->mii_service = pnphy_service;
142 	sc->mii_pdata = mii;
143 
144 	sc->mii_flags |= MIIF_NOISOLATE;
145 	mii->mii_instance++;
146 
147 #define	ADD(m, c)	ifmedia_add(&mii->mii_media, (m), (c), NULL)
148 
149 	sc->mii_capabilities =
150 	    BMSR_100TXFDX|BMSR_100TXHDX|BMSR_10TFDX|BMSR_10THDX;
151 	sc->mii_capabilities &= ma->mii_capmask;
152 	device_printf(dev, " ");
153 	if ((sc->mii_capabilities & BMSR_MEDIAMASK) == 0)
154 		printf("no media present");
155 	else
156 		mii_add_media(mii, sc->mii_capabilities, sc->mii_inst);
157 	printf("\n");
158 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst),
159 	    BMCR_ISO);
160 
161 	ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_LOOP, sc->mii_inst),
162 	    BMCR_LOOP|BMCR_S100);
163 
164 #undef ADD
165 
166 	MIIBUS_MEDIAINIT(sc->mii_dev);
167 	return(0);
168 }
169 
170 static int pnphy_detach(dev)
171 	device_t		dev;
172 {
173 	struct mii_softc *sc;
174 	struct mii_data *mii;
175 
176 	sc = device_get_softc(dev);
177 	mii = device_get_softc(device_get_parent(dev));
178 	sc->mii_dev = NULL;
179 	LIST_REMOVE(sc, mii_list);
180 
181 	return(0);
182 }
183 
184 int
185 pnphy_service(sc, mii, cmd)
186 	struct mii_softc *sc;
187 	struct mii_data *mii;
188 	int cmd;
189 {
190 	struct dc_softc		*dc_sc;
191 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
192 
193 	dc_sc = mii->mii_ifp->if_softc;
194 
195 	switch (cmd) {
196 	case MII_POLLSTAT:
197 		/*
198 		 * If we're not polling our PHY instance, just return.
199 		 */
200 		if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
201 			return (0);
202 		}
203 		break;
204 
205 	case MII_MEDIACHG:
206 		/*
207 		 * If the media indicates a different PHY instance,
208 		 * isolate ourselves.
209 		 */
210 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
211 			return (0);
212 
213 		/*
214 		 * If the interface is not up, don't do anything.
215 		 */
216 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
217 			break;
218 
219 		sc->mii_flags = 0;
220 
221 		switch (IFM_SUBTYPE(ife->ifm_media)) {
222 		case IFM_AUTO:
223 			/* NWAY is busted on this chip */
224 		case IFM_100_T4:
225 			/*
226 			 * XXX Not supported as a manual setting right now.
227 			 */
228 			return (EINVAL);
229 		case IFM_100_TX:
230 			mii->mii_media_active = IFM_ETHER|IFM_100_TX;
231 			if ((ife->ifm_media & IFM_GMASK) == IFM_FDX)
232 				mii->mii_media_active |= IFM_FDX;
233 			MIIBUS_STATCHG(sc->mii_dev);
234 			return(0);
235 			break;
236 		case IFM_10_T:
237 			mii->mii_media_active = IFM_ETHER|IFM_10_T;
238 			if ((ife->ifm_media & IFM_GMASK) == IFM_FDX)
239 				mii->mii_media_active |= IFM_FDX;
240 			MIIBUS_STATCHG(sc->mii_dev);
241 			return(0);
242 			break;
243 		default:
244 			return(EINVAL);
245 			break;
246 		}
247 		break;
248 
249 	case MII_TICK:
250 		/*
251 		 * If we're not currently selected, just return.
252 		 */
253 		if (IFM_INST(ife->ifm_media) != sc->mii_inst)
254 			return (0);
255 
256 		/*
257 		 * Only used for autonegotiation.
258 		 */
259 		if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
260 			return (0);
261 
262 		/*
263 		 * Is the interface even up?
264 		 */
265 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
266 			return (0);
267 
268 		return(0);
269 	}
270 
271 	/* Update the media status. */
272 	pnphy_status(sc);
273 
274 	/* Callback if something changed. */
275 	if (sc->mii_active != mii->mii_media_active || cmd == MII_MEDIACHG) {
276 		MIIBUS_STATCHG(sc->mii_dev);
277 		sc->mii_active = mii->mii_media_active;
278 	}
279 	return (0);
280 }
281 
282 void
283 pnphy_status(sc)
284 	struct mii_softc *sc;
285 {
286 	struct mii_data *mii = sc->mii_pdata;
287 	int reg;
288 	struct dc_softc		*dc_sc;
289 
290 	dc_sc = mii->mii_ifp->if_softc;
291 
292 	mii->mii_media_status = IFM_AVALID;
293 	mii->mii_media_active = IFM_ETHER;
294 
295 	reg = CSR_READ_4(dc_sc, DC_ISR);
296 
297 	if (!(reg & DC_ISR_LINKFAIL))
298 		mii->mii_media_status |= IFM_ACTIVE;
299 
300 	if (CSR_READ_4(dc_sc, DC_NETCFG) & DC_NETCFG_SPEEDSEL)
301 		mii->mii_media_active |= IFM_10_T;
302 	else
303 		mii->mii_media_active |= IFM_100_TX;
304 	if (CSR_READ_4(dc_sc, DC_NETCFG) & DC_NETCFG_FULLDUPLEX)
305 		mii->mii_media_active |= IFM_FDX;
306 
307 	return;
308 }
309