source: freebsd-mos-driver/if_mos.c@ 172

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