xref: /freebsd-src/sys/dev/usb/net/if_mos.c (revision 685dc743dc3b5645e34836464128e1c0558b404b)
1b2dce55fSHans Petter Selasky /*-
29b10f59aSPedro F. Giffuni  * SPDX-License-Identifier: (BSD-1-Clause AND BSD-4-Clause)
3718cf2ccSPedro F. Giffuni  *
4b2dce55fSHans Petter Selasky  * Copyright (c) 2011 Rick van der Zwet <info@rickvanderzwet.nl>
5b2dce55fSHans Petter Selasky  *
6b2dce55fSHans Petter Selasky  * Permission to use, copy, modify, and distribute this software for any
7b2dce55fSHans Petter Selasky  * purpose with or without fee is hereby granted, provided that the above
8b2dce55fSHans Petter Selasky  * copyright notice and this permission notice appear in all copies.
9b2dce55fSHans Petter Selasky  *
10b2dce55fSHans Petter Selasky  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11b2dce55fSHans Petter Selasky  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12b2dce55fSHans Petter Selasky  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13b2dce55fSHans Petter Selasky  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14b2dce55fSHans Petter Selasky  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15b2dce55fSHans Petter Selasky  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16b2dce55fSHans Petter Selasky  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17b2dce55fSHans Petter Selasky  */
18b2dce55fSHans Petter Selasky 
19b2dce55fSHans Petter Selasky /*-
20b2dce55fSHans Petter Selasky  * Copyright (c) 2008 Johann Christian Rode <jcrode@gmx.net>
21b2dce55fSHans Petter Selasky  *
22b2dce55fSHans Petter Selasky  * Permission to use, copy, modify, and distribute this software for any
23b2dce55fSHans Petter Selasky  * purpose with or without fee is hereby granted, provided that the above
24b2dce55fSHans Petter Selasky  * copyright notice and this permission notice appear in all copies.
25b2dce55fSHans Petter Selasky  *
26b2dce55fSHans Petter Selasky  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
27b2dce55fSHans Petter Selasky  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
28b2dce55fSHans Petter Selasky  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
29b2dce55fSHans Petter Selasky  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
30b2dce55fSHans Petter Selasky  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
31b2dce55fSHans Petter Selasky  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
32b2dce55fSHans Petter Selasky  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
33b2dce55fSHans Petter Selasky  */
34b2dce55fSHans Petter Selasky 
35b2dce55fSHans Petter Selasky /*-
36b2dce55fSHans Petter Selasky  * Copyright (c) 2005, 2006, 2007 Jonathan Gray <jsg@openbsd.org>
37b2dce55fSHans Petter Selasky  *
38b2dce55fSHans Petter Selasky  * Permission to use, copy, modify, and distribute this software for any
39b2dce55fSHans Petter Selasky  * purpose with or without fee is hereby granted, provided that the above
40b2dce55fSHans Petter Selasky  * copyright notice and this permission notice appear in all copies.
41b2dce55fSHans Petter Selasky  *
42b2dce55fSHans Petter Selasky  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
43b2dce55fSHans Petter Selasky  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
44b2dce55fSHans Petter Selasky  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
45b2dce55fSHans Petter Selasky  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
46b2dce55fSHans Petter Selasky  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
47b2dce55fSHans Petter Selasky  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
48b2dce55fSHans Petter Selasky  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
49b2dce55fSHans Petter Selasky  */
50b2dce55fSHans Petter Selasky 
51b2dce55fSHans Petter Selasky /*-
52b2dce55fSHans Petter Selasky  * Copyright (c) 1997, 1998, 1999, 2000-2003
53b2dce55fSHans Petter Selasky  *	Bill Paul <wpaul@windriver.com>.  All rights reserved.
54b2dce55fSHans Petter Selasky  *
55b2dce55fSHans Petter Selasky  * Redistribution and use in source and binary forms, with or without
56b2dce55fSHans Petter Selasky  * modification, are permitted provided that the following conditions
57b2dce55fSHans Petter Selasky  * are met:
58b2dce55fSHans Petter Selasky  * 1. Redistributions of source code must retain the above copyright
59b2dce55fSHans Petter Selasky  *    notice, this list of conditions and the following disclaimer.
60b2dce55fSHans Petter Selasky  * 2. Redistributions in binary form must reproduce the above copyright
61b2dce55fSHans Petter Selasky  *    notice, this list of conditions and the following disclaimer in the
62b2dce55fSHans Petter Selasky  *    documentation and/or other materials provided with the distribution.
63b2dce55fSHans Petter Selasky  * 3. All advertising materials mentioning features or use of this software
64b2dce55fSHans Petter Selasky  *    must display the following acknowledgement:
65b2dce55fSHans Petter Selasky  *	This product includes software developed by Bill Paul.
66b2dce55fSHans Petter Selasky  * 4. Neither the name of the author nor the names of any co-contributors
67b2dce55fSHans Petter Selasky  *    may be used to endorse or promote products derived from this software
68b2dce55fSHans Petter Selasky  *    without specific prior written permission.
69b2dce55fSHans Petter Selasky  *
70b2dce55fSHans Petter Selasky  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
71b2dce55fSHans Petter Selasky  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
72b2dce55fSHans Petter Selasky  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
73b2dce55fSHans Petter Selasky  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
74b2dce55fSHans Petter Selasky  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
75b2dce55fSHans Petter Selasky  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
76b2dce55fSHans Petter Selasky  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
77b2dce55fSHans Petter Selasky  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
78b2dce55fSHans Petter Selasky  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
79b2dce55fSHans Petter Selasky  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
80b2dce55fSHans Petter Selasky  * THE POSSIBILITY OF SUCH DAMAGE.
81b2dce55fSHans Petter Selasky  */
82b2dce55fSHans Petter Selasky 
83b2dce55fSHans Petter Selasky #include <sys/cdefs.h>
84b2dce55fSHans Petter Selasky /*
85d4d6dcc5SKevin Lo  * Moschip MCS7730/MCS7830/MCS7832 USB to Ethernet controller
86b2dce55fSHans Petter Selasky  * The datasheet is available at the following URL:
87b2dce55fSHans Petter Selasky  * http://www.moschip.com/data/products/MCS7830/Data%20Sheet_7830.pdf
88b2dce55fSHans Petter Selasky  */
89b2dce55fSHans Petter Selasky 
90b2dce55fSHans Petter Selasky /*
91b2dce55fSHans Petter Selasky  * The FreeBSD if_mos.c driver is based on various different sources:
92b2dce55fSHans Petter Selasky  * The vendor provided driver at the following URL:
93b2dce55fSHans Petter Selasky  * http://www.moschip.com/data/products/MCS7830/Driver_FreeBSD_7830.tar.gz
94b2dce55fSHans Petter Selasky  *
95b2dce55fSHans Petter Selasky  * Mixed together with the OpenBSD if_mos.c driver for validation and checking
96b2dce55fSHans Petter Selasky  * and the FreeBSD if_reu.c as reference for the USB Ethernet framework.
97b2dce55fSHans Petter Selasky  */
98b2dce55fSHans Petter Selasky 
99b2dce55fSHans Petter Selasky #include <sys/stdint.h>
100b2dce55fSHans Petter Selasky #include <sys/stddef.h>
101b2dce55fSHans Petter Selasky #include <sys/param.h>
102b2dce55fSHans Petter Selasky #include <sys/queue.h>
103b2dce55fSHans Petter Selasky #include <sys/types.h>
104b2dce55fSHans Petter Selasky #include <sys/systm.h>
10576039bc8SGleb Smirnoff #include <sys/socket.h>
106b2dce55fSHans Petter Selasky #include <sys/kernel.h>
107b2dce55fSHans Petter Selasky #include <sys/bus.h>
108b2dce55fSHans Petter Selasky #include <sys/module.h>
109b2dce55fSHans Petter Selasky #include <sys/lock.h>
110b2dce55fSHans Petter Selasky #include <sys/mutex.h>
111b2dce55fSHans Petter Selasky #include <sys/condvar.h>
112b2dce55fSHans Petter Selasky #include <sys/sysctl.h>
113b2dce55fSHans Petter Selasky #include <sys/sx.h>
114b2dce55fSHans Petter Selasky #include <sys/unistd.h>
115b2dce55fSHans Petter Selasky #include <sys/callout.h>
116b2dce55fSHans Petter Selasky #include <sys/malloc.h>
117b2dce55fSHans Petter Selasky #include <sys/priv.h>
118b2dce55fSHans Petter Selasky 
11976039bc8SGleb Smirnoff #include <net/if.h>
12076039bc8SGleb Smirnoff #include <net/if_var.h>
12131c484adSJustin Hibbits #include <net/if_media.h>
12231c484adSJustin Hibbits 
12331c484adSJustin Hibbits #include <dev/mii/mii.h>
12431c484adSJustin Hibbits #include <dev/mii/miivar.h>
12576039bc8SGleb Smirnoff 
126b2dce55fSHans Petter Selasky #include <dev/usb/usb.h>
127b2dce55fSHans Petter Selasky #include <dev/usb/usbdi.h>
128b2dce55fSHans Petter Selasky #include <dev/usb/usbdi_util.h>
129b2dce55fSHans Petter Selasky #include "usbdevs.h"
130b2dce55fSHans Petter Selasky 
131b2dce55fSHans Petter Selasky #define	USB_DEBUG_VAR mos_debug
132b2dce55fSHans Petter Selasky #include <dev/usb/usb_debug.h>
133b2dce55fSHans Petter Selasky #include <dev/usb/usb_process.h>
134b2dce55fSHans Petter Selasky 
135b2dce55fSHans Petter Selasky #include <dev/usb/net/usb_ethernet.h>
136b2dce55fSHans Petter Selasky 
13731c484adSJustin Hibbits #include "miibus_if.h"
13831c484adSJustin Hibbits 
139b2dce55fSHans Petter Selasky //#include <dev/usb/net/if_mosreg.h>
140b2dce55fSHans Petter Selasky #include "if_mosreg.h"
141b2dce55fSHans Petter Selasky 
142b2dce55fSHans Petter Selasky #ifdef USB_DEBUG
143b2dce55fSHans Petter Selasky static int mos_debug = 0;
144b2dce55fSHans Petter Selasky 
145f8d2b1f3SPawel Biernacki static SYSCTL_NODE(_hw_usb, OID_AUTO, mos, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
146f8d2b1f3SPawel Biernacki     "USB mos");
147ece4b0bdSHans Petter Selasky SYSCTL_INT(_hw_usb_mos, OID_AUTO, debug, CTLFLAG_RWTUN, &mos_debug, 0,
148b2dce55fSHans Petter Selasky     "Debug level");
149b2dce55fSHans Petter Selasky #endif
150b2dce55fSHans Petter Selasky 
151b2dce55fSHans Petter Selasky #define MOS_DPRINTFN(fmt,...) \
152b2dce55fSHans Petter Selasky   DPRINTF("mos: %s: " fmt "\n",__FUNCTION__,## __VA_ARGS__)
153b2dce55fSHans Petter Selasky 
154b2dce55fSHans Petter Selasky #define	USB_PRODUCT_MOSCHIP_MCS7730	0x7730
155b2dce55fSHans Petter Selasky #define	USB_PRODUCT_SITECOMEU_LN030	0x0021
156b2dce55fSHans Petter Selasky 
157b2dce55fSHans Petter Selasky /* Various supported device vendors/products. */
158f1a16106SHans Petter Selasky static const STRUCT_USB_HOST_ID mos_devs[] = {
159b2dce55fSHans Petter Selasky 	{USB_VPI(USB_VENDOR_MOSCHIP, USB_PRODUCT_MOSCHIP_MCS7730, MCS7730)},
160b2dce55fSHans Petter Selasky 	{USB_VPI(USB_VENDOR_MOSCHIP, USB_PRODUCT_MOSCHIP_MCS7830, MCS7830)},
161d4d6dcc5SKevin Lo 	{USB_VPI(USB_VENDOR_MOSCHIP, USB_PRODUCT_MOSCHIP_MCS7832, MCS7832)},
162b2dce55fSHans Petter Selasky 	{USB_VPI(USB_VENDOR_SITECOMEU, USB_PRODUCT_SITECOMEU_LN030, MCS7830)},
163b2dce55fSHans Petter Selasky };
164b2dce55fSHans Petter Selasky 
165b2dce55fSHans Petter Selasky static int mos_probe(device_t dev);
166b2dce55fSHans Petter Selasky static int mos_attach(device_t dev);
167b2dce55fSHans Petter Selasky static void mos_attach_post(struct usb_ether *ue);
168b2dce55fSHans Petter Selasky static int mos_detach(device_t dev);
169b2dce55fSHans Petter Selasky 
170b2dce55fSHans Petter Selasky static void mos_bulk_read_callback(struct usb_xfer *xfer, usb_error_t error);
171b2dce55fSHans Petter Selasky static void mos_bulk_write_callback(struct usb_xfer *xfer, usb_error_t error);
172b2dce55fSHans Petter Selasky static void mos_intr_callback(struct usb_xfer *xfer, usb_error_t error);
173b2dce55fSHans Petter Selasky static void mos_tick(struct usb_ether *);
174b2dce55fSHans Petter Selasky static void mos_start(struct usb_ether *);
175b2dce55fSHans Petter Selasky static void mos_init(struct usb_ether *);
176b2dce55fSHans Petter Selasky static void mos_chip_init(struct mos_softc *);
177b2dce55fSHans Petter Selasky static void mos_stop(struct usb_ether *);
178b2dce55fSHans Petter Selasky static int mos_miibus_readreg(device_t, int, int);
179b2dce55fSHans Petter Selasky static int mos_miibus_writereg(device_t, int, int, int);
180b2dce55fSHans Petter Selasky static void mos_miibus_statchg(device_t);
181*935b194dSJustin Hibbits static int mos_ifmedia_upd(if_t);
182*935b194dSJustin Hibbits static void mos_ifmedia_sts(if_t, struct ifmediareq *);
183b2dce55fSHans Petter Selasky static void mos_reset(struct mos_softc *sc);
184b2dce55fSHans Petter Selasky 
185b2dce55fSHans Petter Selasky static int mos_reg_read_1(struct mos_softc *, int);
186b2dce55fSHans Petter Selasky static int mos_reg_read_2(struct mos_softc *, int);
187b2dce55fSHans Petter Selasky static int mos_reg_write_1(struct mos_softc *, int, int);
188b2dce55fSHans Petter Selasky static int mos_reg_write_2(struct mos_softc *, int, int);
189b2dce55fSHans Petter Selasky static int mos_readmac(struct mos_softc *, uint8_t *);
190b2dce55fSHans Petter Selasky static int mos_writemac(struct mos_softc *, uint8_t *);
191b2dce55fSHans Petter Selasky static int mos_write_mcast(struct mos_softc *, u_char *);
192b2dce55fSHans Petter Selasky 
193b2dce55fSHans Petter Selasky static void mos_setmulti(struct usb_ether *);
194b2dce55fSHans Petter Selasky static void mos_setpromisc(struct usb_ether *);
195b2dce55fSHans Petter Selasky 
196b2dce55fSHans Petter Selasky static const struct usb_config mos_config[MOS_ENDPT_MAX] = {
197b2dce55fSHans Petter Selasky 	[MOS_ENDPT_TX] = {
198b2dce55fSHans Petter Selasky 		.type = UE_BULK,
199b2dce55fSHans Petter Selasky 		.endpoint = UE_ADDR_ANY,
200b2dce55fSHans Petter Selasky 		.direction = UE_DIR_OUT,
201b2dce55fSHans Petter Selasky 		.bufsize = (MCLBYTES + 2),
202b2dce55fSHans Petter Selasky 		.flags = {.pipe_bof = 1,.force_short_xfer = 1,},
203b2dce55fSHans Petter Selasky 		.callback = mos_bulk_write_callback,
204b2dce55fSHans Petter Selasky 		.timeout = 10000,
205b2dce55fSHans Petter Selasky 	},
206b2dce55fSHans Petter Selasky 
207b2dce55fSHans Petter Selasky 	[MOS_ENDPT_RX] = {
208b2dce55fSHans Petter Selasky 		.type = UE_BULK,
209b2dce55fSHans Petter Selasky 		.endpoint = UE_ADDR_ANY,
210b2dce55fSHans Petter Selasky 		.direction = UE_DIR_IN,
211b2dce55fSHans Petter Selasky 		.bufsize = (MCLBYTES + 4 + ETHER_CRC_LEN),
212b2dce55fSHans Petter Selasky 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
213b2dce55fSHans Petter Selasky 		.callback = mos_bulk_read_callback,
214b2dce55fSHans Petter Selasky 	},
215b2dce55fSHans Petter Selasky 
216b2dce55fSHans Petter Selasky 	[MOS_ENDPT_INTR] = {
217b2dce55fSHans Petter Selasky 		.type = UE_INTERRUPT,
218b2dce55fSHans Petter Selasky 		.endpoint = UE_ADDR_ANY,
219b2dce55fSHans Petter Selasky 		.direction = UE_DIR_IN,
220b2dce55fSHans Petter Selasky 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
221b2dce55fSHans Petter Selasky 		.bufsize = 0,
222b2dce55fSHans Petter Selasky 		.callback = mos_intr_callback,
223b2dce55fSHans Petter Selasky 	},
224b2dce55fSHans Petter Selasky };
225b2dce55fSHans Petter Selasky 
226b2dce55fSHans Petter Selasky static device_method_t mos_methods[] = {
227b2dce55fSHans Petter Selasky 	/* Device interface */
228b2dce55fSHans Petter Selasky 	DEVMETHOD(device_probe, mos_probe),
229b2dce55fSHans Petter Selasky 	DEVMETHOD(device_attach, mos_attach),
230b2dce55fSHans Petter Selasky 	DEVMETHOD(device_detach, mos_detach),
231b2dce55fSHans Petter Selasky 
232b2dce55fSHans Petter Selasky 	/* MII interface */
233b2dce55fSHans Petter Selasky 	DEVMETHOD(miibus_readreg, mos_miibus_readreg),
234b2dce55fSHans Petter Selasky 	DEVMETHOD(miibus_writereg, mos_miibus_writereg),
235b2dce55fSHans Petter Selasky 	DEVMETHOD(miibus_statchg, mos_miibus_statchg),
236b2dce55fSHans Petter Selasky 
2374b7ec270SMarius Strobl 	DEVMETHOD_END
238b2dce55fSHans Petter Selasky };
239b2dce55fSHans Petter Selasky 
240b2dce55fSHans Petter Selasky static driver_t mos_driver = {
241b2dce55fSHans Petter Selasky 	.name = "mos",
242b2dce55fSHans Petter Selasky 	.methods = mos_methods,
243b2dce55fSHans Petter Selasky 	.size = sizeof(struct mos_softc)
244b2dce55fSHans Petter Selasky };
245b2dce55fSHans Petter Selasky 
246bc9372d7SJohn Baldwin DRIVER_MODULE(mos, uhub, mos_driver, NULL, NULL);
2473e38757dSJohn Baldwin DRIVER_MODULE(miibus, mos, miibus_driver, 0, 0);
248b2dce55fSHans Petter Selasky MODULE_DEPEND(mos, uether, 1, 1, 1);
249b2dce55fSHans Petter Selasky MODULE_DEPEND(mos, usb, 1, 1, 1);
250b2dce55fSHans Petter Selasky MODULE_DEPEND(mos, ether, 1, 1, 1);
251b2dce55fSHans Petter Selasky MODULE_DEPEND(mos, miibus, 1, 1, 1);
252f809f280SWarner Losh USB_PNP_HOST_INFO(mos_devs);
253b2dce55fSHans Petter Selasky 
254b2dce55fSHans Petter Selasky static const struct usb_ether_methods mos_ue_methods = {
255b2dce55fSHans Petter Selasky 	.ue_attach_post = mos_attach_post,
256b2dce55fSHans Petter Selasky 	.ue_start = mos_start,
257b2dce55fSHans Petter Selasky 	.ue_init = mos_init,
258b2dce55fSHans Petter Selasky 	.ue_stop = mos_stop,
259b2dce55fSHans Petter Selasky 	.ue_tick = mos_tick,
260b2dce55fSHans Petter Selasky 	.ue_setmulti = mos_setmulti,
261b2dce55fSHans Petter Selasky 	.ue_setpromisc = mos_setpromisc,
262b2dce55fSHans Petter Selasky 	.ue_mii_upd = mos_ifmedia_upd,
263b2dce55fSHans Petter Selasky 	.ue_mii_sts = mos_ifmedia_sts,
264b2dce55fSHans Petter Selasky };
265b2dce55fSHans Petter Selasky 
266b2dce55fSHans Petter Selasky static int
mos_reg_read_1(struct mos_softc * sc,int reg)267b2dce55fSHans Petter Selasky mos_reg_read_1(struct mos_softc *sc, int reg)
268b2dce55fSHans Petter Selasky {
269b2dce55fSHans Petter Selasky 	struct usb_device_request req;
270b2dce55fSHans Petter Selasky 	usb_error_t err;
271b2dce55fSHans Petter Selasky 	uByte val = 0;
272b2dce55fSHans Petter Selasky 
273b2dce55fSHans Petter Selasky 	req.bmRequestType = UT_READ_VENDOR_DEVICE;
274b2dce55fSHans Petter Selasky 	req.bRequest = MOS_UR_READREG;
275b2dce55fSHans Petter Selasky 	USETW(req.wValue, 0);
276b2dce55fSHans Petter Selasky 	USETW(req.wIndex, reg);
277b2dce55fSHans Petter Selasky 	USETW(req.wLength, 1);
278b2dce55fSHans Petter Selasky 
279b2dce55fSHans Petter Selasky 	err = uether_do_request(&sc->sc_ue, &req, &val, 1000);
280b2dce55fSHans Petter Selasky 
281b2dce55fSHans Petter Selasky 	if (err) {
282b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("mos_reg_read_1 error, reg: %d\n", reg);
283b2dce55fSHans Petter Selasky 		return (-1);
284b2dce55fSHans Petter Selasky 	}
285b2dce55fSHans Petter Selasky 	return (val);
286b2dce55fSHans Petter Selasky }
287b2dce55fSHans Petter Selasky 
288b2dce55fSHans Petter Selasky static int
mos_reg_read_2(struct mos_softc * sc,int reg)289b2dce55fSHans Petter Selasky mos_reg_read_2(struct mos_softc *sc, int reg)
290b2dce55fSHans Petter Selasky {
291b2dce55fSHans Petter Selasky 	struct usb_device_request req;
292b2dce55fSHans Petter Selasky 	usb_error_t err;
293b2dce55fSHans Petter Selasky 	uWord val;
294b2dce55fSHans Petter Selasky 
295b2dce55fSHans Petter Selasky 	USETW(val, 0);
296b2dce55fSHans Petter Selasky 
297b2dce55fSHans Petter Selasky 	req.bmRequestType = UT_READ_VENDOR_DEVICE;
298b2dce55fSHans Petter Selasky 	req.bRequest = MOS_UR_READREG;
299b2dce55fSHans Petter Selasky 	USETW(req.wValue, 0);
300b2dce55fSHans Petter Selasky 	USETW(req.wIndex, reg);
301b2dce55fSHans Petter Selasky 	USETW(req.wLength, 2);
302b2dce55fSHans Petter Selasky 
303b2dce55fSHans Petter Selasky 	err = uether_do_request(&sc->sc_ue, &req, &val, 1000);
304b2dce55fSHans Petter Selasky 
305b2dce55fSHans Petter Selasky 	if (err) {
306b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("mos_reg_read_2 error, reg: %d", reg);
307b2dce55fSHans Petter Selasky 		return (-1);
308b2dce55fSHans Petter Selasky 	}
309b2dce55fSHans Petter Selasky 	return (UGETW(val));
310b2dce55fSHans Petter Selasky }
311b2dce55fSHans Petter Selasky 
312b2dce55fSHans Petter Selasky static int
mos_reg_write_1(struct mos_softc * sc,int reg,int aval)313b2dce55fSHans Petter Selasky mos_reg_write_1(struct mos_softc *sc, int reg, int aval)
314b2dce55fSHans Petter Selasky {
315b2dce55fSHans Petter Selasky 	struct usb_device_request req;
316b2dce55fSHans Petter Selasky 	usb_error_t err;
317b2dce55fSHans Petter Selasky 	uByte val;
318b2dce55fSHans Petter Selasky 	val = aval;
319b2dce55fSHans Petter Selasky 
320b2dce55fSHans Petter Selasky 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
321b2dce55fSHans Petter Selasky 	req.bRequest = MOS_UR_WRITEREG;
322b2dce55fSHans Petter Selasky 	USETW(req.wValue, 0);
323b2dce55fSHans Petter Selasky 	USETW(req.wIndex, reg);
324b2dce55fSHans Petter Selasky 	USETW(req.wLength, 1);
325b2dce55fSHans Petter Selasky 
326b2dce55fSHans Petter Selasky 	err = uether_do_request(&sc->sc_ue, &req, &val, 1000);
327b2dce55fSHans Petter Selasky 
328b2dce55fSHans Petter Selasky 	if (err) {
329b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("mos_reg_write_1 error, reg: %d", reg);
330b2dce55fSHans Petter Selasky 		return (-1);
331b2dce55fSHans Petter Selasky 	}
332b2dce55fSHans Petter Selasky 	return (0);
333b2dce55fSHans Petter Selasky }
334b2dce55fSHans Petter Selasky 
335b2dce55fSHans Petter Selasky static int
mos_reg_write_2(struct mos_softc * sc,int reg,int aval)336b2dce55fSHans Petter Selasky mos_reg_write_2(struct mos_softc *sc, int reg, int aval)
337b2dce55fSHans Petter Selasky {
338b2dce55fSHans Petter Selasky 	struct usb_device_request req;
339b2dce55fSHans Petter Selasky 	usb_error_t err;
340b2dce55fSHans Petter Selasky 	uWord val;
341b2dce55fSHans Petter Selasky 
342b2dce55fSHans Petter Selasky 	USETW(val, aval);
343b2dce55fSHans Petter Selasky 
344b2dce55fSHans Petter Selasky 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
345b2dce55fSHans Petter Selasky 	req.bRequest = MOS_UR_WRITEREG;
346b2dce55fSHans Petter Selasky 	USETW(req.wValue, 0);
347b2dce55fSHans Petter Selasky 	USETW(req.wIndex, reg);
348b2dce55fSHans Petter Selasky 	USETW(req.wLength, 2);
349b2dce55fSHans Petter Selasky 
350b2dce55fSHans Petter Selasky 	err = uether_do_request(&sc->sc_ue, &req, &val, 1000);
351b2dce55fSHans Petter Selasky 
352b2dce55fSHans Petter Selasky 	if (err) {
353b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("mos_reg_write_2 error, reg: %d", reg);
354b2dce55fSHans Petter Selasky 		return (-1);
355b2dce55fSHans Petter Selasky 	}
356b2dce55fSHans Petter Selasky 	return (0);
357b2dce55fSHans Petter Selasky }
358b2dce55fSHans Petter Selasky 
359b2dce55fSHans Petter Selasky static int
mos_readmac(struct mos_softc * sc,u_char * mac)360b2dce55fSHans Petter Selasky mos_readmac(struct mos_softc *sc, u_char *mac)
361b2dce55fSHans Petter Selasky {
362b2dce55fSHans Petter Selasky 	struct usb_device_request req;
363b2dce55fSHans Petter Selasky 	usb_error_t err;
364b2dce55fSHans Petter Selasky 
365b2dce55fSHans Petter Selasky 	req.bmRequestType = UT_READ_VENDOR_DEVICE;
366b2dce55fSHans Petter Selasky 	req.bRequest = MOS_UR_READREG;
367b2dce55fSHans Petter Selasky 	USETW(req.wValue, 0);
368b2dce55fSHans Petter Selasky 	USETW(req.wIndex, MOS_MAC);
369b2dce55fSHans Petter Selasky 	USETW(req.wLength, ETHER_ADDR_LEN);
370b2dce55fSHans Petter Selasky 
371b2dce55fSHans Petter Selasky 	err = uether_do_request(&sc->sc_ue, &req, mac, 1000);
372b2dce55fSHans Petter Selasky 
373b2dce55fSHans Petter Selasky 	if (err) {
374b2dce55fSHans Petter Selasky 		return (-1);
375b2dce55fSHans Petter Selasky 	}
376b2dce55fSHans Petter Selasky 	return (0);
377b2dce55fSHans Petter Selasky }
378b2dce55fSHans Petter Selasky 
379b2dce55fSHans Petter Selasky static int
mos_writemac(struct mos_softc * sc,uint8_t * mac)380b2dce55fSHans Petter Selasky mos_writemac(struct mos_softc *sc, uint8_t *mac)
381b2dce55fSHans Petter Selasky {
382b2dce55fSHans Petter Selasky 	struct usb_device_request req;
383b2dce55fSHans Petter Selasky 	usb_error_t err;
384b2dce55fSHans Petter Selasky 
385b2dce55fSHans Petter Selasky 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
386b2dce55fSHans Petter Selasky 	req.bRequest = MOS_UR_WRITEREG;
387b2dce55fSHans Petter Selasky 	USETW(req.wValue, 0);
388b2dce55fSHans Petter Selasky 	USETW(req.wIndex, MOS_MAC);
389b2dce55fSHans Petter Selasky 	USETW(req.wLength, ETHER_ADDR_LEN);
390b2dce55fSHans Petter Selasky 
391b2dce55fSHans Petter Selasky 	err = uether_do_request(&sc->sc_ue, &req, mac, 1000);
392b2dce55fSHans Petter Selasky 
393b2dce55fSHans Petter Selasky 	if (err) {
394b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("mos_writemac error");
395b2dce55fSHans Petter Selasky 		return (-1);
396b2dce55fSHans Petter Selasky 	}
397b2dce55fSHans Petter Selasky 	return (0);
398b2dce55fSHans Petter Selasky }
399b2dce55fSHans Petter Selasky 
400b2dce55fSHans Petter Selasky static int
mos_write_mcast(struct mos_softc * sc,u_char * hashtbl)401b2dce55fSHans Petter Selasky mos_write_mcast(struct mos_softc *sc, u_char *hashtbl)
402b2dce55fSHans Petter Selasky {
403b2dce55fSHans Petter Selasky 	struct usb_device_request req;
404b2dce55fSHans Petter Selasky 	usb_error_t err;
405b2dce55fSHans Petter Selasky 
406b2dce55fSHans Petter Selasky 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
407b2dce55fSHans Petter Selasky 	req.bRequest = MOS_UR_WRITEREG;
408b2dce55fSHans Petter Selasky 	USETW(req.wValue, 0);
409b2dce55fSHans Petter Selasky 	USETW(req.wIndex, MOS_MCAST_TABLE);
410b2dce55fSHans Petter Selasky 	USETW(req.wLength, 8);
411b2dce55fSHans Petter Selasky 
412b2dce55fSHans Petter Selasky 	err = uether_do_request(&sc->sc_ue, &req, hashtbl, 1000);
413b2dce55fSHans Petter Selasky 
414b2dce55fSHans Petter Selasky 	if (err) {
415b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("mos_reg_mcast error");
416b2dce55fSHans Petter Selasky 		return (-1);
417b2dce55fSHans Petter Selasky 	}
418b2dce55fSHans Petter Selasky 	return (0);
419b2dce55fSHans Petter Selasky }
420b2dce55fSHans Petter Selasky 
421b2dce55fSHans Petter Selasky static int
mos_miibus_readreg(device_t dev,int phy,int reg)422afce6f3bSAdrian Chadd mos_miibus_readreg(device_t dev, int phy, int reg)
423b2dce55fSHans Petter Selasky {
424b2dce55fSHans Petter Selasky 	struct mos_softc *sc = device_get_softc(dev);
425b2dce55fSHans Petter Selasky 	int i, res, locked;
426b2dce55fSHans Petter Selasky 
427b2dce55fSHans Petter Selasky 	locked = mtx_owned(&sc->sc_mtx);
428b2dce55fSHans Petter Selasky 	if (!locked)
429b2dce55fSHans Petter Selasky 		MOS_LOCK(sc);
430b2dce55fSHans Petter Selasky 
431b2dce55fSHans Petter Selasky 	mos_reg_write_2(sc, MOS_PHY_DATA, 0);
432b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_PHY_CTL, (phy & MOS_PHYCTL_PHYADDR) |
433b2dce55fSHans Petter Selasky 	    MOS_PHYCTL_READ);
434b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_PHY_STS, (reg & MOS_PHYSTS_PHYREG) |
435b2dce55fSHans Petter Selasky 	    MOS_PHYSTS_PENDING);
436b2dce55fSHans Petter Selasky 
437b2dce55fSHans Petter Selasky 	for (i = 0; i < MOS_TIMEOUT; i++) {
438b2dce55fSHans Petter Selasky 		if (mos_reg_read_1(sc, MOS_PHY_STS) & MOS_PHYSTS_READY)
439b2dce55fSHans Petter Selasky 			break;
440b2dce55fSHans Petter Selasky 	}
441b2dce55fSHans Petter Selasky 	if (i == MOS_TIMEOUT) {
442b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("MII read timeout");
443b2dce55fSHans Petter Selasky 	}
444b2dce55fSHans Petter Selasky 	res = mos_reg_read_2(sc, MOS_PHY_DATA);
445b2dce55fSHans Petter Selasky 
446b2dce55fSHans Petter Selasky 	if (!locked)
447b2dce55fSHans Petter Selasky 		MOS_UNLOCK(sc);
448b2dce55fSHans Petter Selasky 	return (res);
449b2dce55fSHans Petter Selasky }
450b2dce55fSHans Petter Selasky 
451b2dce55fSHans Petter Selasky static int
mos_miibus_writereg(device_t dev,int phy,int reg,int val)452b2dce55fSHans Petter Selasky mos_miibus_writereg(device_t dev, int phy, int reg, int val)
453b2dce55fSHans Petter Selasky {
454b2dce55fSHans Petter Selasky 	struct mos_softc *sc = device_get_softc(dev);
455b2dce55fSHans Petter Selasky 	int i, locked;
456b2dce55fSHans Petter Selasky 
457b2dce55fSHans Petter Selasky 	locked = mtx_owned(&sc->sc_mtx);
458b2dce55fSHans Petter Selasky 	if (!locked)
459b2dce55fSHans Petter Selasky 		MOS_LOCK(sc);
460b2dce55fSHans Petter Selasky 
461b2dce55fSHans Petter Selasky 	mos_reg_write_2(sc, MOS_PHY_DATA, val);
462b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_PHY_CTL, (phy & MOS_PHYCTL_PHYADDR) |
463b2dce55fSHans Petter Selasky 	    MOS_PHYCTL_WRITE);
464b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_PHY_STS, (reg & MOS_PHYSTS_PHYREG) |
465b2dce55fSHans Petter Selasky 	    MOS_PHYSTS_PENDING);
466b2dce55fSHans Petter Selasky 
467b2dce55fSHans Petter Selasky 	for (i = 0; i < MOS_TIMEOUT; i++) {
468b2dce55fSHans Petter Selasky 		if (mos_reg_read_1(sc, MOS_PHY_STS) & MOS_PHYSTS_READY)
469b2dce55fSHans Petter Selasky 			break;
470b2dce55fSHans Petter Selasky 	}
471b2dce55fSHans Petter Selasky 	if (i == MOS_TIMEOUT)
472b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("MII write timeout");
473b2dce55fSHans Petter Selasky 
474b2dce55fSHans Petter Selasky 	if (!locked)
475b2dce55fSHans Petter Selasky 		MOS_UNLOCK(sc);
476b2dce55fSHans Petter Selasky 	return 0;
477b2dce55fSHans Petter Selasky }
478b2dce55fSHans Petter Selasky 
479b2dce55fSHans Petter Selasky static void
mos_miibus_statchg(device_t dev)480b2dce55fSHans Petter Selasky mos_miibus_statchg(device_t dev)
481b2dce55fSHans Petter Selasky {
482b2dce55fSHans Petter Selasky 	struct mos_softc *sc = device_get_softc(dev);
483b2dce55fSHans Petter Selasky 	struct mii_data *mii = GET_MII(sc);
484b2dce55fSHans Petter Selasky 	int val, err, locked;
485b2dce55fSHans Petter Selasky 
486b2dce55fSHans Petter Selasky 	locked = mtx_owned(&sc->sc_mtx);
487b2dce55fSHans Petter Selasky 	if (!locked)
488b2dce55fSHans Petter Selasky 		MOS_LOCK(sc);
489b2dce55fSHans Petter Selasky 
490b2dce55fSHans Petter Selasky 	/* disable RX, TX prior to changing FDX, SPEEDSEL */
491b2dce55fSHans Petter Selasky 	val = mos_reg_read_1(sc, MOS_CTL);
492b2dce55fSHans Petter Selasky 	val &= ~(MOS_CTL_TX_ENB | MOS_CTL_RX_ENB);
493b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_CTL, val);
494b2dce55fSHans Petter Selasky 
495b2dce55fSHans Petter Selasky 	/* reset register which counts dropped frames */
496b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_FRAME_DROP_CNT, 0);
497b2dce55fSHans Petter Selasky 
498b2dce55fSHans Petter Selasky 	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX)
499b2dce55fSHans Petter Selasky 		val |= MOS_CTL_FDX_ENB;
500b2dce55fSHans Petter Selasky 	else
501b2dce55fSHans Petter Selasky 		val &= ~(MOS_CTL_FDX_ENB);
502b2dce55fSHans Petter Selasky 
503b2dce55fSHans Petter Selasky 	switch (IFM_SUBTYPE(mii->mii_media_active)) {
504b2dce55fSHans Petter Selasky 	case IFM_100_TX:
505b2dce55fSHans Petter Selasky 		val |= MOS_CTL_SPEEDSEL;
506b2dce55fSHans Petter Selasky 		break;
507b2dce55fSHans Petter Selasky 	case IFM_10_T:
508b2dce55fSHans Petter Selasky 		val &= ~(MOS_CTL_SPEEDSEL);
509b2dce55fSHans Petter Selasky 		break;
510b2dce55fSHans Petter Selasky 	}
511b2dce55fSHans Petter Selasky 
512b2dce55fSHans Petter Selasky 	/* re-enable TX, RX */
513b2dce55fSHans Petter Selasky 	val |= (MOS_CTL_TX_ENB | MOS_CTL_RX_ENB);
514b2dce55fSHans Petter Selasky 	err = mos_reg_write_1(sc, MOS_CTL, val);
515b2dce55fSHans Petter Selasky 
516b2dce55fSHans Petter Selasky 	if (err)
517b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("media change failed");
518b2dce55fSHans Petter Selasky 
519b2dce55fSHans Petter Selasky 	if (!locked)
520b2dce55fSHans Petter Selasky 		MOS_UNLOCK(sc);
521b2dce55fSHans Petter Selasky }
522b2dce55fSHans Petter Selasky 
523b2dce55fSHans Petter Selasky /*
524b2dce55fSHans Petter Selasky  * Set media options.
525b2dce55fSHans Petter Selasky  */
526b2dce55fSHans Petter Selasky static int
mos_ifmedia_upd(if_t ifp)527*935b194dSJustin Hibbits mos_ifmedia_upd(if_t ifp)
528b2dce55fSHans Petter Selasky {
529*935b194dSJustin Hibbits 	struct mos_softc *sc = if_getsoftc(ifp);
530b2dce55fSHans Petter Selasky 	struct mii_data *mii = GET_MII(sc);
531b2dce55fSHans Petter Selasky 	struct mii_softc *miisc;
532ebe01023SKevin Lo 	int error;
533b2dce55fSHans Petter Selasky 
534b2dce55fSHans Petter Selasky 	MOS_LOCK_ASSERT(sc, MA_OWNED);
535b2dce55fSHans Petter Selasky 
536b2dce55fSHans Petter Selasky 	sc->mos_link = 0;
537b2dce55fSHans Petter Selasky 	LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
538ebe01023SKevin Lo 		PHY_RESET(miisc);
539ebe01023SKevin Lo 	error = mii_mediachg(mii);
540ebe01023SKevin Lo 	return (error);
541b2dce55fSHans Petter Selasky }
542b2dce55fSHans Petter Selasky 
543b2dce55fSHans Petter Selasky /*
544b2dce55fSHans Petter Selasky  * Report current media status.
545b2dce55fSHans Petter Selasky  */
546b2dce55fSHans Petter Selasky static void
mos_ifmedia_sts(if_t ifp,struct ifmediareq * ifmr)547*935b194dSJustin Hibbits mos_ifmedia_sts(if_t ifp, struct ifmediareq *ifmr)
548b2dce55fSHans Petter Selasky {
549*935b194dSJustin Hibbits 	struct mos_softc *sc = if_getsoftc(ifp);
550b2dce55fSHans Petter Selasky 	struct mii_data *mii = GET_MII(sc);
551b2dce55fSHans Petter Selasky 
552b2dce55fSHans Petter Selasky 	MOS_LOCK(sc);
553b2dce55fSHans Petter Selasky 	mii_pollstat(mii);
554b2dce55fSHans Petter Selasky 
555b2dce55fSHans Petter Selasky 	ifmr->ifm_active = mii->mii_media_active;
556b2dce55fSHans Petter Selasky 	ifmr->ifm_status = mii->mii_media_status;
557e9e549efSPyun YongHyeon 	MOS_UNLOCK(sc);
558b2dce55fSHans Petter Selasky }
559b2dce55fSHans Petter Selasky 
560b2dce55fSHans Petter Selasky static void
mos_setpromisc(struct usb_ether * ue)561b2dce55fSHans Petter Selasky mos_setpromisc(struct usb_ether *ue)
562b2dce55fSHans Petter Selasky {
563b2dce55fSHans Petter Selasky 	struct mos_softc *sc = uether_getsc(ue);
564*935b194dSJustin Hibbits 	if_t ifp = uether_getifp(ue);
565b2dce55fSHans Petter Selasky 
566b2dce55fSHans Petter Selasky 	uint8_t rxmode;
567b2dce55fSHans Petter Selasky 
568b2dce55fSHans Petter Selasky 	MOS_LOCK_ASSERT(sc, MA_OWNED);
569b2dce55fSHans Petter Selasky 
570b2dce55fSHans Petter Selasky 	rxmode = mos_reg_read_1(sc, MOS_CTL);
571b2dce55fSHans Petter Selasky 
572b2dce55fSHans Petter Selasky 	/* If we want promiscuous mode, set the allframes bit. */
573*935b194dSJustin Hibbits 	if (if_getflags(ifp) & IFF_PROMISC) {
574b2dce55fSHans Petter Selasky 		rxmode |= MOS_CTL_RX_PROMISC;
575b2dce55fSHans Petter Selasky 	} else {
576b2dce55fSHans Petter Selasky 		rxmode &= ~MOS_CTL_RX_PROMISC;
577b2dce55fSHans Petter Selasky 	}
578b2dce55fSHans Petter Selasky 
579b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_CTL, rxmode);
580b2dce55fSHans Petter Selasky }
581b2dce55fSHans Petter Selasky 
582f8ef073eSGleb Smirnoff static u_int
mos_hash_maddr(void * arg,struct sockaddr_dl * sdl,u_int cnt)583f8ef073eSGleb Smirnoff mos_hash_maddr(void *arg, struct sockaddr_dl *sdl, u_int cnt)
584f8ef073eSGleb Smirnoff {
585f8ef073eSGleb Smirnoff 	uint8_t *hashtbl = arg;
586f8ef073eSGleb Smirnoff 	uint32_t h;
587b2dce55fSHans Petter Selasky 
588f8ef073eSGleb Smirnoff 	h = ether_crc32_be(LLADDR(sdl), ETHER_ADDR_LEN) >> 26;
589f8ef073eSGleb Smirnoff 	hashtbl[h / 8] |= 1 << (h % 8);
590f8ef073eSGleb Smirnoff 
591f8ef073eSGleb Smirnoff 	return (1);
592f8ef073eSGleb Smirnoff }
593b2dce55fSHans Petter Selasky 
594b2dce55fSHans Petter Selasky static void
mos_setmulti(struct usb_ether * ue)595b2dce55fSHans Petter Selasky mos_setmulti(struct usb_ether *ue)
596b2dce55fSHans Petter Selasky {
597b2dce55fSHans Petter Selasky 	struct mos_softc *sc = uether_getsc(ue);
598*935b194dSJustin Hibbits 	if_t ifp = uether_getifp(ue);
599b2dce55fSHans Petter Selasky 	uint8_t rxmode;
600b2dce55fSHans Petter Selasky 	uint8_t hashtbl[8] = {0, 0, 0, 0, 0, 0, 0, 0};
601b2dce55fSHans Petter Selasky 	int allmulti = 0;
602b2dce55fSHans Petter Selasky 
603b2dce55fSHans Petter Selasky 	MOS_LOCK_ASSERT(sc, MA_OWNED);
604b2dce55fSHans Petter Selasky 
605b2dce55fSHans Petter Selasky 	rxmode = mos_reg_read_1(sc, MOS_CTL);
606b2dce55fSHans Petter Selasky 
607*935b194dSJustin Hibbits 	if (if_getflags(ifp) & IFF_ALLMULTI || if_getflags(ifp) & IFF_PROMISC)
608b2dce55fSHans Petter Selasky 		allmulti = 1;
609b2dce55fSHans Petter Selasky 
610b2dce55fSHans Petter Selasky 	/* get all new ones */
611f8ef073eSGleb Smirnoff 	if_foreach_llmaddr(ifp, mos_hash_maddr, &hashtbl);
612b2dce55fSHans Petter Selasky 
613b2dce55fSHans Petter Selasky 	/* now program new ones */
614b2dce55fSHans Petter Selasky 	if (allmulti == 1) {
615b2dce55fSHans Petter Selasky 		rxmode |= MOS_CTL_ALLMULTI;
616b2dce55fSHans Petter Selasky 		mos_reg_write_1(sc, MOS_CTL, rxmode);
617b2dce55fSHans Petter Selasky 	} else {
618b2dce55fSHans Petter Selasky 		rxmode &= ~MOS_CTL_ALLMULTI;
619b2dce55fSHans Petter Selasky 		mos_write_mcast(sc, (void *)&hashtbl);
620b2dce55fSHans Petter Selasky 		mos_reg_write_1(sc, MOS_CTL, rxmode);
621b2dce55fSHans Petter Selasky 	}
622b2dce55fSHans Petter Selasky }
623b2dce55fSHans Petter Selasky 
624b2dce55fSHans Petter Selasky static void
mos_reset(struct mos_softc * sc)625b2dce55fSHans Petter Selasky mos_reset(struct mos_softc *sc)
626b2dce55fSHans Petter Selasky {
627b2dce55fSHans Petter Selasky 	uint8_t ctl;
628b2dce55fSHans Petter Selasky 
629b2dce55fSHans Petter Selasky 	ctl = mos_reg_read_1(sc, MOS_CTL);
630b2dce55fSHans Petter Selasky 	ctl &= ~(MOS_CTL_RX_PROMISC | MOS_CTL_ALLMULTI | MOS_CTL_TX_ENB |
631b2dce55fSHans Petter Selasky 	    MOS_CTL_RX_ENB);
632b2dce55fSHans Petter Selasky 	/* Disable RX, TX, promiscuous and allmulticast mode */
633b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_CTL, ctl);
634b2dce55fSHans Petter Selasky 
635b2dce55fSHans Petter Selasky 	/* Reset frame drop counter register to zero */
636b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_FRAME_DROP_CNT, 0);
637b2dce55fSHans Petter Selasky 
638b2dce55fSHans Petter Selasky 	/* Wait a little while for the chip to get its brains in order. */
639b2dce55fSHans Petter Selasky 	usb_pause_mtx(&sc->sc_mtx, hz / 128);
640b2dce55fSHans Petter Selasky 	return;
641b2dce55fSHans Petter Selasky }
642b2dce55fSHans Petter Selasky 
643b2dce55fSHans Petter Selasky static void
mos_chip_init(struct mos_softc * sc)644b2dce55fSHans Petter Selasky mos_chip_init(struct mos_softc *sc)
645b2dce55fSHans Petter Selasky {
646b2dce55fSHans Petter Selasky 	int i;
647b2dce55fSHans Petter Selasky 
648b2dce55fSHans Petter Selasky 	/*
649b2dce55fSHans Petter Selasky 	 * Rev.C devices have a pause threshold register which needs to be set
650b2dce55fSHans Petter Selasky 	 * at startup.
651b2dce55fSHans Petter Selasky 	 */
652b2dce55fSHans Petter Selasky 	if (mos_reg_read_1(sc, MOS_PAUSE_TRHD) != -1) {
653b2dce55fSHans Petter Selasky 		for (i = 0; i < MOS_PAUSE_REWRITES; i++)
654b2dce55fSHans Petter Selasky 			mos_reg_write_1(sc, MOS_PAUSE_TRHD, 0);
655b2dce55fSHans Petter Selasky 	}
656b2dce55fSHans Petter Selasky 	sc->mos_phyaddrs[0] = 1;
657b2dce55fSHans Petter Selasky 	sc->mos_phyaddrs[1] = 0xFF;
658b2dce55fSHans Petter Selasky }
659b2dce55fSHans Petter Selasky 
660b2dce55fSHans Petter Selasky /*
661b2dce55fSHans Petter Selasky  * Probe for a MCS7x30 chip.
662b2dce55fSHans Petter Selasky  */
663b2dce55fSHans Petter Selasky static int
mos_probe(device_t dev)664b2dce55fSHans Petter Selasky mos_probe(device_t dev)
665b2dce55fSHans Petter Selasky {
666b2dce55fSHans Petter Selasky 	struct usb_attach_arg *uaa = device_get_ivars(dev);
667b2dce55fSHans Petter Selasky         int retval;
668b2dce55fSHans Petter Selasky 
669b2dce55fSHans Petter Selasky 	if (uaa->usb_mode != USB_MODE_HOST)
670b2dce55fSHans Petter Selasky 		return (ENXIO);
671b2dce55fSHans Petter Selasky 	if (uaa->info.bConfigIndex != MOS_CONFIG_IDX)
672b2dce55fSHans Petter Selasky 		return (ENXIO);
673b2dce55fSHans Petter Selasky 	if (uaa->info.bIfaceIndex != MOS_IFACE_IDX)
674b2dce55fSHans Petter Selasky 		return (ENXIO);
675b2dce55fSHans Petter Selasky 
676b2dce55fSHans Petter Selasky 	retval = usbd_lookup_id_by_uaa(mos_devs, sizeof(mos_devs), uaa);
677b2dce55fSHans Petter Selasky 	return (retval);
678b2dce55fSHans Petter Selasky }
679b2dce55fSHans Petter Selasky 
680b2dce55fSHans Petter Selasky /*
681b2dce55fSHans Petter Selasky  * Attach the interface. Allocate softc structures, do ifmedia
682b2dce55fSHans Petter Selasky  * setup and ethernet/BPF attach.
683b2dce55fSHans Petter Selasky  */
684b2dce55fSHans Petter Selasky static int
mos_attach(device_t dev)685b2dce55fSHans Petter Selasky mos_attach(device_t dev)
686b2dce55fSHans Petter Selasky {
687b2dce55fSHans Petter Selasky 	struct usb_attach_arg *uaa = device_get_ivars(dev);
688b2dce55fSHans Petter Selasky 	struct mos_softc *sc = device_get_softc(dev);
689b2dce55fSHans Petter Selasky 	struct usb_ether *ue = &sc->sc_ue;
690b2dce55fSHans Petter Selasky 	uint8_t iface_index;
691b2dce55fSHans Petter Selasky 	int error;
692b2dce55fSHans Petter Selasky 
693b2dce55fSHans Petter Selasky 	sc->mos_flags = USB_GET_DRIVER_INFO(uaa);
694b2dce55fSHans Petter Selasky 
695b2dce55fSHans Petter Selasky 	device_set_usb_desc(dev);
696b2dce55fSHans Petter Selasky 	mtx_init(&sc->sc_mtx, device_get_nameunit(dev), NULL, MTX_DEF);
697b2dce55fSHans Petter Selasky 
698b2dce55fSHans Petter Selasky 	iface_index = MOS_IFACE_IDX;
699b2dce55fSHans Petter Selasky 	error = usbd_transfer_setup(uaa->device, &iface_index,
700b2dce55fSHans Petter Selasky 	    sc->sc_xfer, mos_config, MOS_ENDPT_MAX,
701b2dce55fSHans Petter Selasky 	    sc, &sc->sc_mtx);
702b2dce55fSHans Petter Selasky 
703b2dce55fSHans Petter Selasky 	if (error) {
704b2dce55fSHans Petter Selasky 		device_printf(dev, "allocating USB transfers failed\n");
705b2dce55fSHans Petter Selasky 		goto detach;
706b2dce55fSHans Petter Selasky 	}
707b2dce55fSHans Petter Selasky 	ue->ue_sc = sc;
708b2dce55fSHans Petter Selasky 	ue->ue_dev = dev;
709b2dce55fSHans Petter Selasky 	ue->ue_udev = uaa->device;
710b2dce55fSHans Petter Selasky 	ue->ue_mtx = &sc->sc_mtx;
711b2dce55fSHans Petter Selasky 	ue->ue_methods = &mos_ue_methods;
712b2dce55fSHans Petter Selasky 
713b2dce55fSHans Petter Selasky 	if (sc->mos_flags & MCS7730) {
714b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("model: MCS7730");
715b2dce55fSHans Petter Selasky 	} else if (sc->mos_flags & MCS7830) {
716b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("model: MCS7830");
717d4d6dcc5SKevin Lo 	} else if (sc->mos_flags & MCS7832) {
718d4d6dcc5SKevin Lo 		MOS_DPRINTFN("model: MCS7832");
719b2dce55fSHans Petter Selasky 	}
720b2dce55fSHans Petter Selasky 	error = uether_ifattach(ue);
721b2dce55fSHans Petter Selasky 	if (error) {
722b2dce55fSHans Petter Selasky 		device_printf(dev, "could not attach interface\n");
723b2dce55fSHans Petter Selasky 		goto detach;
724b2dce55fSHans Petter Selasky 	}
725b2dce55fSHans Petter Selasky 	return (0);
726b2dce55fSHans Petter Selasky 
727b2dce55fSHans Petter Selasky detach:
728b2dce55fSHans Petter Selasky 	mos_detach(dev);
729b2dce55fSHans Petter Selasky 	return (ENXIO);
730b2dce55fSHans Petter Selasky }
731b2dce55fSHans Petter Selasky 
732b2dce55fSHans Petter Selasky static void
mos_attach_post(struct usb_ether * ue)733b2dce55fSHans Petter Selasky mos_attach_post(struct usb_ether *ue)
734b2dce55fSHans Petter Selasky {
735b2dce55fSHans Petter Selasky 	struct mos_softc *sc = uether_getsc(ue);
736b2dce55fSHans Petter Selasky         int err;
737b2dce55fSHans Petter Selasky 
738b2dce55fSHans Petter Selasky 	/* Read MAC address, inform the world. */
739b2dce55fSHans Petter Selasky 	err = mos_readmac(sc, ue->ue_eaddr);
740b2dce55fSHans Petter Selasky 
741b2dce55fSHans Petter Selasky 	if (err)
742b2dce55fSHans Petter Selasky 	  MOS_DPRINTFN("couldn't get MAC address");
743b2dce55fSHans Petter Selasky 
744b2dce55fSHans Petter Selasky 	MOS_DPRINTFN("address: %s", ether_sprintf(ue->ue_eaddr));
745b2dce55fSHans Petter Selasky 
746b2dce55fSHans Petter Selasky 	mos_chip_init(sc);
747b2dce55fSHans Petter Selasky }
748b2dce55fSHans Petter Selasky 
749b2dce55fSHans Petter Selasky static int
mos_detach(device_t dev)750b2dce55fSHans Petter Selasky mos_detach(device_t dev)
751b2dce55fSHans Petter Selasky {
752b2dce55fSHans Petter Selasky 	struct mos_softc *sc = device_get_softc(dev);
753b2dce55fSHans Petter Selasky 	struct usb_ether *ue = &sc->sc_ue;
754b2dce55fSHans Petter Selasky 
755b2dce55fSHans Petter Selasky 	usbd_transfer_unsetup(sc->sc_xfer, MOS_ENDPT_MAX);
756b2dce55fSHans Petter Selasky 	uether_ifdetach(ue);
757b2dce55fSHans Petter Selasky 	mtx_destroy(&sc->sc_mtx);
758b2dce55fSHans Petter Selasky 
759b2dce55fSHans Petter Selasky 	return (0);
760b2dce55fSHans Petter Selasky }
761b2dce55fSHans Petter Selasky 
762b2dce55fSHans Petter Selasky /*
763b2dce55fSHans Petter Selasky  * A frame has been uploaded: pass the resulting mbuf chain up to
764b2dce55fSHans Petter Selasky  * the higher level protocols.
765b2dce55fSHans Petter Selasky  */
766b2dce55fSHans Petter Selasky static void
mos_bulk_read_callback(struct usb_xfer * xfer,usb_error_t error)767b2dce55fSHans Petter Selasky mos_bulk_read_callback(struct usb_xfer *xfer, usb_error_t error)
768b2dce55fSHans Petter Selasky {
769b2dce55fSHans Petter Selasky 	struct mos_softc *sc = usbd_xfer_softc(xfer);
770b2dce55fSHans Petter Selasky 	struct usb_ether *ue = &sc->sc_ue;
771*935b194dSJustin Hibbits 	if_t ifp = uether_getifp(ue);
772b2dce55fSHans Petter Selasky 
773b2dce55fSHans Petter Selasky 	uint8_t rxstat = 0;
774b2dce55fSHans Petter Selasky 	uint32_t actlen;
775b2dce55fSHans Petter Selasky 	uint16_t pktlen = 0;
776b2dce55fSHans Petter Selasky 	struct usb_page_cache *pc;
777b2dce55fSHans Petter Selasky 
778b2dce55fSHans Petter Selasky 	usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
779b2dce55fSHans Petter Selasky 	pc = usbd_xfer_get_frame(xfer, 0);
780b2dce55fSHans Petter Selasky 
781b2dce55fSHans Petter Selasky 	switch (USB_GET_STATE(xfer)) {
782b2dce55fSHans Petter Selasky 	case USB_ST_TRANSFERRED:
783b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("actlen : %d", actlen);
784b2dce55fSHans Petter Selasky 		if (actlen <= 1) {
785ecc70d3fSGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
786b2dce55fSHans Petter Selasky 			goto tr_setup;
787b2dce55fSHans Petter Selasky 		}
788b2dce55fSHans Petter Selasky 		/* evaluate status byte at the end */
789b2dce55fSHans Petter Selasky 		usbd_copy_out(pc, actlen - sizeof(rxstat), &rxstat,
790b2dce55fSHans Petter Selasky 		    sizeof(rxstat));
791b2dce55fSHans Petter Selasky 
792b2dce55fSHans Petter Selasky 		if (rxstat != MOS_RXSTS_VALID) {
793b2dce55fSHans Petter Selasky 			MOS_DPRINTFN("erroneous frame received");
794b2dce55fSHans Petter Selasky 			if (rxstat & MOS_RXSTS_SHORT_FRAME)
795b2dce55fSHans Petter Selasky 				MOS_DPRINTFN("frame size less than 64 bytes");
79626fdf1e8SHans Petter Selasky 			if (rxstat & MOS_RXSTS_LARGE_FRAME) {
79726fdf1e8SHans Petter Selasky 				MOS_DPRINTFN("frame size larger than "
79826fdf1e8SHans Petter Selasky 				    "1532 bytes");
79926fdf1e8SHans Petter Selasky 			}
800b2dce55fSHans Petter Selasky 			if (rxstat & MOS_RXSTS_CRC_ERROR)
801b2dce55fSHans Petter Selasky 				MOS_DPRINTFN("CRC error");
802b2dce55fSHans Petter Selasky 			if (rxstat & MOS_RXSTS_ALIGN_ERROR)
803b2dce55fSHans Petter Selasky 				MOS_DPRINTFN("alignment error");
804ecc70d3fSGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
805b2dce55fSHans Petter Selasky 			goto tr_setup;
806b2dce55fSHans Petter Selasky 		}
807b2dce55fSHans Petter Selasky 		/* Remember the last byte was used for the status fields */
808b2dce55fSHans Petter Selasky 		pktlen = actlen - 1;
809b2dce55fSHans Petter Selasky 		if (pktlen < sizeof(struct ether_header)) {
81026fdf1e8SHans Petter Selasky 			MOS_DPRINTFN("error: pktlen %d is smaller "
81126fdf1e8SHans Petter Selasky 			    "than ether_header %zd", pktlen,
81226fdf1e8SHans Petter Selasky 			    sizeof(struct ether_header));
813ecc70d3fSGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
814b2dce55fSHans Petter Selasky 			goto tr_setup;
815b2dce55fSHans Petter Selasky 		}
816b2dce55fSHans Petter Selasky 		uether_rxbuf(ue, pc, 0, actlen);
817b2dce55fSHans Petter Selasky 		/* FALLTHROUGH */
818b2dce55fSHans Petter Selasky 	case USB_ST_SETUP:
819b2dce55fSHans Petter Selasky tr_setup:
820b2dce55fSHans Petter Selasky 		usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer));
821b2dce55fSHans Petter Selasky 		usbd_transfer_submit(xfer);
822b2dce55fSHans Petter Selasky 		uether_rxflush(ue);
823b2dce55fSHans Petter Selasky 		return;
824b2dce55fSHans Petter Selasky 	default:
825b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("bulk read error, %s", usbd_errstr(error));
826b2dce55fSHans Petter Selasky 		if (error != USB_ERR_CANCELLED) {
827b2dce55fSHans Petter Selasky 			usbd_xfer_set_stall(xfer);
828b2dce55fSHans Petter Selasky 			goto tr_setup;
829b2dce55fSHans Petter Selasky 		}
830b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("start rx %i", usbd_xfer_max_len(xfer));
831b2dce55fSHans Petter Selasky 		return;
832b2dce55fSHans Petter Selasky 	}
833b2dce55fSHans Petter Selasky }
834b2dce55fSHans Petter Selasky 
835b2dce55fSHans Petter Selasky /*
836b2dce55fSHans Petter Selasky  * A frame was downloaded to the chip. It's safe for us to clean up
837b2dce55fSHans Petter Selasky  * the list buffers.
838b2dce55fSHans Petter Selasky  */
839b2dce55fSHans Petter Selasky static void
mos_bulk_write_callback(struct usb_xfer * xfer,usb_error_t error)840b2dce55fSHans Petter Selasky mos_bulk_write_callback(struct usb_xfer *xfer, usb_error_t error)
841b2dce55fSHans Petter Selasky {
842b2dce55fSHans Petter Selasky 	struct mos_softc *sc = usbd_xfer_softc(xfer);
843*935b194dSJustin Hibbits 	if_t ifp = uether_getifp(&sc->sc_ue);
844b2dce55fSHans Petter Selasky 	struct usb_page_cache *pc;
845b2dce55fSHans Petter Selasky 	struct mbuf *m;
846b2dce55fSHans Petter Selasky 
847b2dce55fSHans Petter Selasky 	switch (USB_GET_STATE(xfer)) {
848b2dce55fSHans Petter Selasky 	case USB_ST_TRANSFERRED:
849b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("transfer of complete");
850ecc70d3fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
851b2dce55fSHans Petter Selasky 		/* FALLTHROUGH */
852b2dce55fSHans Petter Selasky 	case USB_ST_SETUP:
853b2dce55fSHans Petter Selasky tr_setup:
854b2dce55fSHans Petter Selasky 		/*
855b2dce55fSHans Petter Selasky 		 * XXX: don't send anything if there is no link?
856b2dce55fSHans Petter Selasky 		 */
857*935b194dSJustin Hibbits 		m = if_dequeue(ifp);
858b2dce55fSHans Petter Selasky 		if (m == NULL)
859b2dce55fSHans Petter Selasky 			return;
860b2dce55fSHans Petter Selasky 
861b2dce55fSHans Petter Selasky 		pc = usbd_xfer_get_frame(xfer, 0);
862b2dce55fSHans Petter Selasky 		usbd_m_copy_in(pc, 0, m, 0, m->m_pkthdr.len);
863b2dce55fSHans Petter Selasky 
864b2dce55fSHans Petter Selasky 		usbd_xfer_set_frame_len(xfer, 0, m->m_pkthdr.len);
865b2dce55fSHans Petter Selasky 
866b2dce55fSHans Petter Selasky 		/*
867b2dce55fSHans Petter Selasky 		 * if there's a BPF listener, bounce a copy
868b2dce55fSHans Petter Selasky 		 * of this frame to him:
869b2dce55fSHans Petter Selasky 		 */
870b2dce55fSHans Petter Selasky 		BPF_MTAP(ifp, m);
871b2dce55fSHans Petter Selasky 
872b2dce55fSHans Petter Selasky 		m_freem(m);
873b2dce55fSHans Petter Selasky 
874b2dce55fSHans Petter Selasky 		usbd_transfer_submit(xfer);
875b2dce55fSHans Petter Selasky 
876ecc70d3fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
877b2dce55fSHans Petter Selasky 		return;
878b2dce55fSHans Petter Selasky 	default:
879b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("usb error on tx: %s\n", usbd_errstr(error));
880ecc70d3fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
881b2dce55fSHans Petter Selasky 		if (error != USB_ERR_CANCELLED) {
882b2dce55fSHans Petter Selasky 			usbd_xfer_set_stall(xfer);
883b2dce55fSHans Petter Selasky 			goto tr_setup;
884b2dce55fSHans Petter Selasky 		}
885b2dce55fSHans Petter Selasky 		return;
886b2dce55fSHans Petter Selasky 	}
887b2dce55fSHans Petter Selasky }
888b2dce55fSHans Petter Selasky 
889b2dce55fSHans Petter Selasky static void
mos_tick(struct usb_ether * ue)890b2dce55fSHans Petter Selasky mos_tick(struct usb_ether *ue)
891b2dce55fSHans Petter Selasky {
892b2dce55fSHans Petter Selasky 	struct mos_softc *sc = uether_getsc(ue);
893b2dce55fSHans Petter Selasky 	struct mii_data *mii = GET_MII(sc);
894b2dce55fSHans Petter Selasky 
895b2dce55fSHans Petter Selasky 	MOS_LOCK_ASSERT(sc, MA_OWNED);
896b2dce55fSHans Petter Selasky 
897b2dce55fSHans Petter Selasky 	mii_tick(mii);
898b2dce55fSHans Petter Selasky 	if (!sc->mos_link && mii->mii_media_status & IFM_ACTIVE &&
899b2dce55fSHans Petter Selasky 	    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
900b2dce55fSHans Petter Selasky 		MOS_DPRINTFN("got link");
901b2dce55fSHans Petter Selasky 		sc->mos_link++;
902b2dce55fSHans Petter Selasky 		mos_start(ue);
903b2dce55fSHans Petter Selasky 	}
904b2dce55fSHans Petter Selasky }
905b2dce55fSHans Petter Selasky 
906b2dce55fSHans Petter Selasky static void
mos_start(struct usb_ether * ue)907b2dce55fSHans Petter Selasky mos_start(struct usb_ether *ue)
908b2dce55fSHans Petter Selasky {
909b2dce55fSHans Petter Selasky 	struct mos_softc *sc = uether_getsc(ue);
910b2dce55fSHans Petter Selasky 
911b2dce55fSHans Petter Selasky 	/*
912b2dce55fSHans Petter Selasky 	 * start the USB transfers, if not already started:
913b2dce55fSHans Petter Selasky 	 */
914b2dce55fSHans Petter Selasky 	usbd_transfer_start(sc->sc_xfer[MOS_ENDPT_TX]);
915b2dce55fSHans Petter Selasky 	usbd_transfer_start(sc->sc_xfer[MOS_ENDPT_RX]);
916b2dce55fSHans Petter Selasky 	usbd_transfer_start(sc->sc_xfer[MOS_ENDPT_INTR]);
917b2dce55fSHans Petter Selasky }
918b2dce55fSHans Petter Selasky 
919b2dce55fSHans Petter Selasky static void
mos_init(struct usb_ether * ue)920b2dce55fSHans Petter Selasky mos_init(struct usb_ether *ue)
921b2dce55fSHans Petter Selasky {
922b2dce55fSHans Petter Selasky 	struct mos_softc *sc = uether_getsc(ue);
923*935b194dSJustin Hibbits 	if_t ifp = uether_getifp(ue);
924b2dce55fSHans Petter Selasky 	uint8_t rxmode;
925b2dce55fSHans Petter Selasky 
926b2dce55fSHans Petter Selasky 	MOS_LOCK_ASSERT(sc, MA_OWNED);
927b2dce55fSHans Petter Selasky 
928b2dce55fSHans Petter Selasky 	/* Cancel pending I/O and free all RX/TX buffers. */
929b2dce55fSHans Petter Selasky 	mos_reset(sc);
930b2dce55fSHans Petter Selasky 
931b2dce55fSHans Petter Selasky 	/* Write MAC address */
932*935b194dSJustin Hibbits 	mos_writemac(sc, if_getlladdr(ifp));
933b2dce55fSHans Petter Selasky 
934b2dce55fSHans Petter Selasky 	/* Read and set transmitter IPG values */
935b2dce55fSHans Petter Selasky 	sc->mos_ipgs[0] = mos_reg_read_1(sc, MOS_IPG0);
936b2dce55fSHans Petter Selasky 	sc->mos_ipgs[1] = mos_reg_read_1(sc, MOS_IPG1);
937b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_IPG0, sc->mos_ipgs[0]);
938b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_IPG1, sc->mos_ipgs[1]);
939b2dce55fSHans Petter Selasky 
940b2dce55fSHans Petter Selasky 	/*
941b2dce55fSHans Petter Selasky 	 * Enable receiver and transmitter, bridge controls speed/duplex
942b2dce55fSHans Petter Selasky 	 * mode
943b2dce55fSHans Petter Selasky 	 */
944b2dce55fSHans Petter Selasky 	rxmode = mos_reg_read_1(sc, MOS_CTL);
945b2dce55fSHans Petter Selasky 	rxmode |= MOS_CTL_RX_ENB | MOS_CTL_TX_ENB | MOS_CTL_BS_ENB;
946b2dce55fSHans Petter Selasky 	rxmode &= ~(MOS_CTL_SLEEP);
947b2dce55fSHans Petter Selasky 
948b2dce55fSHans Petter Selasky 	mos_setpromisc(ue);
949b2dce55fSHans Petter Selasky 
950b2dce55fSHans Petter Selasky 	/* XXX: broadcast mode? */
951b2dce55fSHans Petter Selasky 	mos_reg_write_1(sc, MOS_CTL, rxmode);
952b2dce55fSHans Petter Selasky 
953b2dce55fSHans Petter Selasky 	/* Load the multicast filter. */
954b2dce55fSHans Petter Selasky 	mos_setmulti(ue);
955b2dce55fSHans Petter Selasky 
956*935b194dSJustin Hibbits 	if_setdrvflagbits(ifp, IFF_DRV_RUNNING, 0);
957b2dce55fSHans Petter Selasky 	mos_start(ue);
958b2dce55fSHans Petter Selasky }
959b2dce55fSHans Petter Selasky 
960b2dce55fSHans Petter Selasky static void
mos_intr_callback(struct usb_xfer * xfer,usb_error_t error)961b2dce55fSHans Petter Selasky mos_intr_callback(struct usb_xfer *xfer, usb_error_t error)
962b2dce55fSHans Petter Selasky {
963b2dce55fSHans Petter Selasky 	struct mos_softc *sc = usbd_xfer_softc(xfer);
964*935b194dSJustin Hibbits 	if_t ifp = uether_getifp(&sc->sc_ue);
965b2dce55fSHans Petter Selasky 	struct usb_page_cache *pc;
966b2dce55fSHans Petter Selasky 	uint32_t pkt;
967b2dce55fSHans Petter Selasky 	int actlen;
968b2dce55fSHans Petter Selasky 
969ecc70d3fSGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
970b2dce55fSHans Petter Selasky 
971b2dce55fSHans Petter Selasky 	usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
972b2dce55fSHans Petter Selasky 	MOS_DPRINTFN("actlen %i", actlen);
973b2dce55fSHans Petter Selasky 
974b2dce55fSHans Petter Selasky 	switch (USB_GET_STATE(xfer)) {
975b2dce55fSHans Petter Selasky 	case USB_ST_TRANSFERRED:
976b2dce55fSHans Petter Selasky 
977b2dce55fSHans Petter Selasky 		pc = usbd_xfer_get_frame(xfer, 0);
978b2dce55fSHans Petter Selasky 		usbd_copy_out(pc, 0, &pkt, sizeof(pkt));
979b2dce55fSHans Petter Selasky 		/* FALLTHROUGH */
980b2dce55fSHans Petter Selasky 	case USB_ST_SETUP:
981b2dce55fSHans Petter Selasky tr_setup:
982b2dce55fSHans Petter Selasky 		return;
983b2dce55fSHans Petter Selasky 	default:
984b2dce55fSHans Petter Selasky 		if (error != USB_ERR_CANCELLED) {
985b2dce55fSHans Petter Selasky 			usbd_xfer_set_stall(xfer);
986b2dce55fSHans Petter Selasky 			goto tr_setup;
987b2dce55fSHans Petter Selasky 		}
988b2dce55fSHans Petter Selasky 		return;
989b2dce55fSHans Petter Selasky 	}
990b2dce55fSHans Petter Selasky }
991b2dce55fSHans Petter Selasky 
992b2dce55fSHans Petter Selasky /*
993b2dce55fSHans Petter Selasky  * Stop the adapter and free any mbufs allocated to the
994b2dce55fSHans Petter Selasky  * RX and TX lists.
995b2dce55fSHans Petter Selasky  */
996b2dce55fSHans Petter Selasky static void
mos_stop(struct usb_ether * ue)997b2dce55fSHans Petter Selasky mos_stop(struct usb_ether *ue)
998b2dce55fSHans Petter Selasky {
999b2dce55fSHans Petter Selasky 	struct mos_softc *sc = uether_getsc(ue);
1000*935b194dSJustin Hibbits 	if_t ifp = uether_getifp(ue);
1001b2dce55fSHans Petter Selasky 
1002b2dce55fSHans Petter Selasky 	mos_reset(sc);
1003b2dce55fSHans Petter Selasky 
1004b2dce55fSHans Petter Selasky 	MOS_LOCK_ASSERT(sc, MA_OWNED);
1005*935b194dSJustin Hibbits 	if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
1006b2dce55fSHans Petter Selasky 
1007b2dce55fSHans Petter Selasky 	/* stop all the transfers, if not already stopped */
1008b2dce55fSHans Petter Selasky 	usbd_transfer_stop(sc->sc_xfer[MOS_ENDPT_TX]);
1009b2dce55fSHans Petter Selasky 	usbd_transfer_stop(sc->sc_xfer[MOS_ENDPT_RX]);
1010b2dce55fSHans Petter Selasky 	usbd_transfer_stop(sc->sc_xfer[MOS_ENDPT_INTR]);
1011b2dce55fSHans Petter Selasky 
1012b2dce55fSHans Petter Selasky 	sc->mos_link = 0;
1013b2dce55fSHans Petter Selasky }
1014