Add a Makefile stub to build ep as a module.
[dragonfly.git] / sys / dev / netif / cue / if_cue.c
1 /*
2  * Copyright (c) 1997, 1998, 1999, 2000
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/usb/if_cue.c,v 1.45 2003/12/08 07:54:14 obrien Exp $
33  * $DragonFly: src/sys/dev/netif/cue/if_cue.c,v 1.7 2004/03/14 15:36:49 joerg Exp $
34  *
35  */
36
37 /*
38  * CATC USB-EL1210A USB to ethernet driver. Used in the CATC Netmate
39  * adapters and others.
40  *
41  * Written by Bill Paul <wpaul@ee.columbia.edu>
42  * Electrical Engineering Department
43  * Columbia University, New York City
44  */
45
46 /*
47  * The CATC USB-EL1210A provides USB ethernet support at 10Mbps. The
48  * RX filter uses a 512-bit multicast hash table, single perfect entry
49  * for the station address, and promiscuous mode. Unlike the ADMtek
50  * and KLSI chips, the CATC ASIC supports read and write combining
51  * mode where multiple packets can be transfered using a single bulk
52  * transaction, which helps performance a great deal.
53  */
54
55 #include <sys/param.h>
56 #include <sys/systm.h>
57 #include <sys/sockio.h>
58 #include <sys/mbuf.h>
59 #include <sys/malloc.h>
60 #include <sys/kernel.h>
61 #include <sys/socket.h>
62
63 #include <net/if.h>
64 #include <net/if_arp.h>
65 #include <net/ethernet.h>
66 #include <net/if_dl.h>
67
68 #include <net/bpf.h>
69
70 #include <sys/bus.h>
71 #include <machine/bus.h>
72 #if defined(__DragonFly__) || __FreeBSD_version < 500000
73 #include <machine/clock.h>
74 #endif
75
76 #include <bus/usb/usb.h>
77 #include <bus/usb/usbdi.h>
78 #include <bus/usb/usbdi_util.h>
79 #include <bus/usb/usbdivar.h>
80 #include <bus/usb/usbdevs.h>
81 #include <bus/usb/usb_ethersubr.h>
82
83 #include "if_cuereg.h"
84
85 /*
86  * Various supported device vendors/products.
87  */
88 Static struct cue_type cue_devs[] = {
89         { USB_VENDOR_CATC, USB_PRODUCT_CATC_NETMATE },
90         { USB_VENDOR_CATC, USB_PRODUCT_CATC_NETMATE2 },
91         { USB_VENDOR_SMARTBRIDGES, USB_PRODUCT_SMARTBRIDGES_SMARTLINK },
92         { 0, 0 }
93 };
94
95 Static struct usb_qdat cue_qdat;
96
97 Static int cue_match(device_ptr_t);
98 Static int cue_attach(device_ptr_t);
99 Static int cue_detach(device_ptr_t);
100
101 Static int cue_tx_list_init(struct cue_softc *);
102 Static int cue_rx_list_init(struct cue_softc *);
103 Static int cue_newbuf(struct cue_softc *, struct cue_chain *, struct mbuf *);
104 Static int cue_encap(struct cue_softc *, struct mbuf *, int);
105 Static void cue_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
106 Static void cue_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
107 Static void cue_tick(void *);
108 Static void cue_rxstart(struct ifnet *);
109 Static void cue_start(struct ifnet *);
110 Static int cue_ioctl(struct ifnet *, u_long, caddr_t);
111 Static void cue_init(void *);
112 Static void cue_stop(struct cue_softc *);
113 Static void cue_watchdog(struct ifnet *);
114 Static void cue_shutdown(device_ptr_t);
115
116 Static void cue_setmulti(struct cue_softc *);
117 Static uint32_t cue_mchash(const uint8_t *);
118 Static void cue_reset(struct cue_softc *);
119
120 Static int cue_csr_read_1(struct cue_softc *, int);
121 Static int cue_csr_write_1(struct cue_softc *, int, int);
122 Static int cue_csr_read_2(struct cue_softc *, int);
123 #ifdef notdef
124 Static int cue_csr_write_2(struct cue_softc *, int, int);
125 #endif
126 Static int cue_mem(struct cue_softc *, int, int, void *, int);
127 Static int cue_getmac(struct cue_softc *, void *);
128
129 Static device_method_t cue_methods[] = {
130         /* Device interface */
131         DEVMETHOD(device_probe,         cue_match),
132         DEVMETHOD(device_attach,        cue_attach),
133         DEVMETHOD(device_detach,        cue_detach),
134         DEVMETHOD(device_shutdown,      cue_shutdown),
135
136         { 0, 0 }
137 };
138
139 Static driver_t cue_driver = {
140         "cue",
141         cue_methods,
142         sizeof(struct cue_softc)
143 };
144
145 Static devclass_t cue_devclass;
146
147 DECLARE_DUMMY_MODULE(if_cue);
148 DRIVER_MODULE(cue, uhub, cue_driver, cue_devclass, usbd_driver_load, 0);
149 MODULE_DEPEND(cue, usb, 1, 1, 1);
150 MODULE_DEPEND(cue, ether, 1, 1, 1);
151
152 #define CUE_SETBIT(sc, reg, x)                          \
153         cue_csr_write_1(sc, reg, cue_csr_read_1(sc, reg) | (x))
154
155 #define CUE_CLRBIT(sc, reg, x)                          \
156         cue_csr_write_1(sc, reg, cue_csr_read_1(sc, reg) & ~(x))
157
158 Static int
159 cue_csr_read_1(struct cue_softc *sc, int reg)
160 {
161         usb_device_request_t    req;
162         usbd_status             err;
163         u_int8_t                val = 0;
164
165         if (sc->cue_dying)
166                 return(0);
167
168         CUE_LOCK(sc);
169
170         req.bmRequestType = UT_READ_VENDOR_DEVICE;
171         req.bRequest = CUE_CMD_READREG;
172         USETW(req.wValue, 0);
173         USETW(req.wIndex, reg);
174         USETW(req.wLength, 1);
175
176         err = usbd_do_request(sc->cue_udev, &req, &val);
177
178         CUE_UNLOCK(sc);
179
180         if (err)
181                 return(0);
182
183         return(val);
184 }
185
186 Static int
187 cue_csr_read_2(struct cue_softc *sc, int reg)
188 {
189         usb_device_request_t    req;
190         usbd_status             err;
191         u_int16_t               val = 0;
192
193         if (sc->cue_dying)
194                 return(0);
195
196         CUE_LOCK(sc);
197
198         req.bmRequestType = UT_READ_VENDOR_DEVICE;
199         req.bRequest = CUE_CMD_READREG;
200         USETW(req.wValue, 0);
201         USETW(req.wIndex, reg);
202         USETW(req.wLength, 2);
203
204         err = usbd_do_request(sc->cue_udev, &req, &val);
205
206         CUE_UNLOCK(sc);
207
208         if (err)
209                 return(0);
210
211         return(val);
212 }
213
214 Static int
215 cue_csr_write_1(struct cue_softc *sc, int reg, int val)
216 {
217         usb_device_request_t    req;
218         usbd_status             err;
219
220         if (sc->cue_dying)
221                 return(0);
222
223         CUE_LOCK(sc);
224
225         req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
226         req.bRequest = CUE_CMD_WRITEREG;
227         USETW(req.wValue, val);
228         USETW(req.wIndex, reg);
229         USETW(req.wLength, 0);
230
231         err = usbd_do_request(sc->cue_udev, &req, NULL);
232
233         CUE_UNLOCK(sc);
234
235         if (err)
236                 return(-1);
237
238         return(0);
239 }
240
241 #ifdef notdef
242 Static int
243 cue_csr_write_2(struct cue_softc *sc, int reg, int val)
244 {
245         usb_device_request_t    req;
246         usbd_status             err;
247
248         if (sc->cue_dying)
249                 return(0);
250
251         CUE_LOCK(sc);
252
253         req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
254         req.bRequest = CUE_CMD_WRITEREG;
255         USETW(req.wValue, val);
256         USETW(req.wIndex, reg);
257         USETW(req.wLength, 0);
258
259         err = usbd_do_request(sc->cue_udev, &req, NULL);
260
261         CUE_UNLOCK(sc);
262
263         if (err)
264                 return(-1);
265
266         return(0);
267 }
268 #endif
269
270 Static int
271 cue_mem(struct cue_softc *sc, int cmd, int addr, void *buf, int len)
272 {
273         usb_device_request_t    req;
274         usbd_status             err;
275
276         if (sc->cue_dying)
277                 return(0);
278
279         CUE_LOCK(sc);
280
281         if (cmd == CUE_CMD_READSRAM)
282                 req.bmRequestType = UT_READ_VENDOR_DEVICE;
283         else
284                 req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
285         req.bRequest = cmd;
286         USETW(req.wValue, 0);
287         USETW(req.wIndex, addr);
288         USETW(req.wLength, len);
289
290         err = usbd_do_request(sc->cue_udev, &req, buf);
291
292         CUE_UNLOCK(sc);
293
294         if (err)
295                 return(-1);
296
297         return(0);
298 }
299
300 Static int
301 cue_getmac(struct cue_softc *sc, void *buf)
302 {
303         usb_device_request_t    req;
304         usbd_status             err;
305
306         if (sc->cue_dying)
307                 return(0);
308
309         CUE_LOCK(sc);
310
311         req.bmRequestType = UT_READ_VENDOR_DEVICE;
312         req.bRequest = CUE_CMD_GET_MACADDR;
313         USETW(req.wValue, 0);
314         USETW(req.wIndex, 0);
315         USETW(req.wLength, ETHER_ADDR_LEN);
316
317         err = usbd_do_request(sc->cue_udev, &req, buf);
318
319         CUE_UNLOCK(sc);
320
321         if (err) {
322                 printf("cue%d: read MAC address failed\n", sc->cue_unit);
323                 return(-1);
324         }
325
326         return(0);
327 }
328
329 #define CUE_POLY        0xEDB88320
330 #define CUE_BITS        9
331
332 Static uint32_t
333 cue_mchash(const uint8_t *addr)
334 {
335         uint32_t crc;
336         int idx, bit;
337         uint8_t data;
338
339         /* Compute CRC for the address value. */
340         crc = 0xFFFFFFFF; /* initial value */
341
342         for (idx = 0; idx < 6; idx++) {
343                 for (data = *addr++, bit = 0; bit < 8; bit++, data >>= 1)
344                         crc = (crc >> 1) ^ (((crc ^ data) & 1) ? CUE_POLY : 0);
345         }
346
347         return (crc & ((1 << CUE_BITS) - 1));
348 }
349
350 Static void
351 cue_setmulti(struct cue_softc *sc)
352 {
353         struct ifnet            *ifp;
354         struct ifmultiaddr      *ifma;
355         u_int32_t               h = 0, i;
356
357         ifp = &sc->arpcom.ac_if;
358
359         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
360                 for (i = 0; i < CUE_MCAST_TABLE_LEN; i++)
361                         sc->cue_mctab[i] = 0xFF;
362                 cue_mem(sc, CUE_CMD_WRITESRAM, CUE_MCAST_TABLE_ADDR,
363                     &sc->cue_mctab, CUE_MCAST_TABLE_LEN);
364                 return;
365         }
366
367         /* first, zot all the existing hash bits */
368         for (i = 0; i < CUE_MCAST_TABLE_LEN; i++)
369                 sc->cue_mctab[i] = 0;
370
371         /* now program new ones */
372 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
373         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
374 #else
375         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
376 #endif
377         {
378                 if (ifma->ifma_addr->sa_family != AF_LINK)
379                         continue;
380                 h = cue_mchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
381                 sc->cue_mctab[h >> 3] |= 1 << (h & 0x7);
382         }
383
384         /*
385          * Also include the broadcast address in the filter
386          * so we can receive broadcast frames.
387          */
388         if (ifp->if_flags & IFF_BROADCAST) {
389 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
390                 h = cue_mchash(ifp->if_broadcastaddr);
391 #else
392                 h = cue_mchash(etherbroadcastaddr);
393 #endif
394                 sc->cue_mctab[h >> 3] |= 1 << (h & 0x7);
395         }
396
397         cue_mem(sc, CUE_CMD_WRITESRAM, CUE_MCAST_TABLE_ADDR,
398             &sc->cue_mctab, CUE_MCAST_TABLE_LEN);
399
400         return;
401 }
402
403 Static void
404 cue_reset(struct cue_softc *sc)
405 {
406         usb_device_request_t    req;
407         usbd_status             err;
408
409         if (sc->cue_dying)
410                 return;
411
412         req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
413         req.bRequest = CUE_CMD_RESET;
414         USETW(req.wValue, 0);
415         USETW(req.wIndex, 0);
416         USETW(req.wLength, 0);
417         err = usbd_do_request(sc->cue_udev, &req, NULL);
418         if (err)
419                 printf("cue%d: reset failed\n", sc->cue_unit);
420
421         /* Wait a little while for the chip to get its brains in order. */
422         DELAY(1000);
423         return;
424 }
425
426 /*
427  * Probe for a Pegasus chip.
428  */
429 USB_MATCH(cue)
430 {
431         USB_MATCH_START(cue, uaa);
432         struct cue_type                 *t;
433
434         if (!uaa->iface)
435                 return(UMATCH_NONE);
436
437         t = cue_devs;
438         while(t->cue_vid) {
439                 if (uaa->vendor == t->cue_vid &&
440                     uaa->product == t->cue_did) {
441                         return(UMATCH_VENDOR_PRODUCT);
442                 }
443                 t++;
444         }
445
446         return(UMATCH_NONE);
447 }
448
449 /*
450  * Attach the interface. Allocate softc structures, do ifmedia
451  * setup and ethernet/BPF attach.
452  */
453 USB_ATTACH(cue)
454 {
455         USB_ATTACH_START(cue, sc, uaa);
456         char                    devinfo[1024];
457         u_char                  eaddr[ETHER_ADDR_LEN];
458         struct ifnet            *ifp;
459         usb_interface_descriptor_t      *id;
460         usb_endpoint_descriptor_t       *ed;
461         int                     i;
462
463         bzero(sc, sizeof(struct cue_softc));
464         sc->cue_iface = uaa->iface;
465         sc->cue_udev = uaa->device;
466         sc->cue_unit = device_get_unit(self);
467
468         if (usbd_set_config_no(sc->cue_udev, CUE_CONFIG_NO, 0)) {
469                 printf("cue%d: getting interface handle failed\n",
470                     sc->cue_unit);
471                 USB_ATTACH_ERROR_RETURN;
472         }
473
474         id = usbd_get_interface_descriptor(uaa->iface);
475
476         usbd_devinfo(uaa->device, 0, devinfo);
477         device_set_desc_copy(self, devinfo);
478         printf("%s: %s\n", USBDEVNAME(self), devinfo);
479
480         /* Find endpoints. */
481         for (i = 0; i < id->bNumEndpoints; i++) {
482                 ed = usbd_interface2endpoint_descriptor(uaa->iface, i);
483                 if (!ed) {
484                         printf("cue%d: couldn't get ep %d\n",
485                             sc->cue_unit, i);
486                         USB_ATTACH_ERROR_RETURN;
487                 }
488                 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
489                     UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
490                         sc->cue_ed[CUE_ENDPT_RX] = ed->bEndpointAddress;
491                 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
492                            UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
493                         sc->cue_ed[CUE_ENDPT_TX] = ed->bEndpointAddress;
494                 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
495                            UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
496                         sc->cue_ed[CUE_ENDPT_INTR] = ed->bEndpointAddress;
497                 }
498         }
499
500 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
501         mtx_init(&sc->cue_mtx, device_get_nameunit(self), MTX_NETWORK_LOCK,
502             MTX_DEF | MTX_RECURSE);
503 #endif
504         CUE_LOCK(sc);
505
506 #ifdef notdef
507         /* Reset the adapter. */
508         cue_reset(sc);
509 #endif
510         /*
511          * Get station address.
512          */
513         cue_getmac(sc, &eaddr);
514
515         /*
516          * A CATC chip was detected. Inform the world.
517          */
518         printf("cue%d: Ethernet address: %6D\n", sc->cue_unit, eaddr, ":");
519
520         bcopy(eaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);
521
522         ifp = &sc->arpcom.ac_if;
523         ifp->if_softc = sc;
524         if_initname(ifp, "cue", sc->cue_unit);
525         ifp->if_mtu = ETHERMTU;
526         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
527         ifp->if_ioctl = cue_ioctl;
528         ifp->if_output = ether_output;
529         ifp->if_start = cue_start;
530         ifp->if_watchdog = cue_watchdog;
531         ifp->if_init = cue_init;
532         ifp->if_baudrate = 10000000;
533         ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
534
535         cue_qdat.ifp = ifp;
536         cue_qdat.if_rxstart = cue_rxstart;
537
538         /*
539          * Call MI attach routine.
540          */
541         ether_ifattach(ifp, eaddr);
542         callout_handle_init(&sc->cue_stat_ch);
543         usb_register_netisr();
544         sc->cue_dying = 0;
545
546         CUE_UNLOCK(sc);
547         USB_ATTACH_SUCCESS_RETURN;
548 }
549
550 Static int
551 cue_detach(device_ptr_t dev)
552 {
553         struct cue_softc        *sc;
554         struct ifnet            *ifp;
555
556         sc = device_get_softc(dev);
557         CUE_LOCK(sc);
558         ifp = &sc->arpcom.ac_if;
559
560         sc->cue_dying = 1;
561         untimeout(cue_tick, sc, sc->cue_stat_ch);
562         ether_ifdetach(ifp);
563
564         if (sc->cue_ep[CUE_ENDPT_TX] != NULL)
565                 usbd_abort_pipe(sc->cue_ep[CUE_ENDPT_TX]);
566         if (sc->cue_ep[CUE_ENDPT_RX] != NULL)
567                 usbd_abort_pipe(sc->cue_ep[CUE_ENDPT_RX]);
568         if (sc->cue_ep[CUE_ENDPT_INTR] != NULL)
569                 usbd_abort_pipe(sc->cue_ep[CUE_ENDPT_INTR]);
570
571         CUE_UNLOCK(sc);
572 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
573         mtx_destroy(&sc->cue_mtx);
574 #endif
575
576         return(0);
577 }
578
579 /*
580  * Initialize an RX descriptor and attach an MBUF cluster.
581  */
582 Static int
583 cue_newbuf(struct cue_softc *sc, struct cue_chain *c, struct mbuf *m)
584 {
585         struct mbuf             *m_new = NULL;
586
587         if (m == NULL) {
588                 MGETHDR(m_new, M_DONTWAIT, MT_DATA);
589                 if (m_new == NULL) {
590                         printf("cue%d: no memory for rx list "
591                             "-- packet dropped!\n", sc->cue_unit);
592                         return(ENOBUFS);
593                 }
594
595                 MCLGET(m_new, M_DONTWAIT);
596                 if (!(m_new->m_flags & M_EXT)) {
597                         printf("cue%d: no memory for rx list "
598                             "-- packet dropped!\n", sc->cue_unit);
599                         m_freem(m_new);
600                         return(ENOBUFS);
601                 }
602                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
603         } else {
604                 m_new = m;
605                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
606                 m_new->m_data = m_new->m_ext.ext_buf;
607         }
608
609         m_adj(m_new, ETHER_ALIGN);
610         c->cue_mbuf = m_new;
611
612         return(0);
613 }
614
615 Static int
616 cue_rx_list_init(struct cue_softc *sc)
617 {
618         struct cue_cdata        *cd;
619         struct cue_chain        *c;
620         int                     i;
621
622         cd = &sc->cue_cdata;
623         for (i = 0; i < CUE_RX_LIST_CNT; i++) {
624                 c = &cd->cue_rx_chain[i];
625                 c->cue_sc = sc;
626                 c->cue_idx = i;
627                 if (cue_newbuf(sc, c, NULL) == ENOBUFS)
628                         return(ENOBUFS);
629                 if (c->cue_xfer == NULL) {
630                         c->cue_xfer = usbd_alloc_xfer(sc->cue_udev);
631                         if (c->cue_xfer == NULL)
632                                 return(ENOBUFS);
633                 }
634         }
635
636         return(0);
637 }
638
639 Static int
640 cue_tx_list_init(struct cue_softc *sc)
641 {
642         struct cue_cdata        *cd;
643         struct cue_chain        *c;
644         int                     i;
645
646         cd = &sc->cue_cdata;
647         for (i = 0; i < CUE_TX_LIST_CNT; i++) {
648                 c = &cd->cue_tx_chain[i];
649                 c->cue_sc = sc;
650                 c->cue_idx = i;
651                 c->cue_mbuf = NULL;
652                 if (c->cue_xfer == NULL) {
653                         c->cue_xfer = usbd_alloc_xfer(sc->cue_udev);
654                         if (c->cue_xfer == NULL)
655                                 return(ENOBUFS);
656                 }
657                 c->cue_buf = malloc(CUE_BUFSZ, M_USBDEV, M_NOWAIT);
658                 if (c->cue_buf == NULL)
659                         return(ENOBUFS);
660         }
661
662         return(0);
663 }
664
665 Static void
666 cue_rxstart(struct ifnet *ifp)
667 {
668         struct cue_softc        *sc;
669         struct cue_chain        *c;
670
671         sc = ifp->if_softc;
672         CUE_LOCK(sc);
673         c = &sc->cue_cdata.cue_rx_chain[sc->cue_cdata.cue_rx_prod];
674
675         if (cue_newbuf(sc, c, NULL) == ENOBUFS) {
676                 ifp->if_ierrors++;
677                 CUE_UNLOCK(sc);
678                 return;
679         }
680
681         /* Setup new transfer. */
682         usbd_setup_xfer(c->cue_xfer, sc->cue_ep[CUE_ENDPT_RX],
683             c, mtod(c->cue_mbuf, char *), CUE_BUFSZ, USBD_SHORT_XFER_OK,
684             USBD_NO_TIMEOUT, cue_rxeof);
685         usbd_transfer(c->cue_xfer);
686         CUE_UNLOCK(sc);
687
688         return;
689 }
690
691 /*
692  * A frame has been uploaded: pass the resulting mbuf chain up to
693  * the higher level protocols.
694  */
695 Static void
696 cue_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
697 {
698         struct cue_softc        *sc;
699         struct cue_chain        *c;
700         struct mbuf             *m;
701         struct ifnet            *ifp;
702         int                     total_len = 0;
703         u_int16_t               len;
704
705         c = priv;
706         sc = c->cue_sc;
707         CUE_LOCK(sc);
708         ifp = &sc->arpcom.ac_if;
709
710         if (!(ifp->if_flags & IFF_RUNNING)) {
711                 CUE_UNLOCK(sc);
712                 return;
713         }
714
715         if (status != USBD_NORMAL_COMPLETION) {
716                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
717                         CUE_UNLOCK(sc);
718                         return;
719                 }
720                 if (usbd_ratecheck(&sc->cue_rx_notice))
721                         printf("cue%d: usb error on rx: %s\n", sc->cue_unit,
722                             usbd_errstr(status));
723                 if (status == USBD_STALLED)
724                         usbd_clear_endpoint_stall(sc->cue_ep[CUE_ENDPT_RX]);
725                 goto done;
726         }
727
728         usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
729
730         m = c->cue_mbuf;
731         len = *mtod(m, u_int16_t *);
732
733         /* No errors; receive the packet. */
734         total_len = len;
735
736         if (len < sizeof(struct ether_header)) {
737                 ifp->if_ierrors++;
738                 goto done;
739         }
740
741         ifp->if_ipackets++;
742         m_adj(m, sizeof(u_int16_t));
743         m->m_pkthdr.rcvif = (struct ifnet *)&cue_qdat;
744         m->m_pkthdr.len = m->m_len = total_len;
745
746         /* Put the packet on the special USB input queue. */
747         usb_ether_input(m);
748         CUE_UNLOCK(sc);
749
750         return;
751 done:
752         /* Setup new transfer. */
753         usbd_setup_xfer(c->cue_xfer, sc->cue_ep[CUE_ENDPT_RX],
754             c, mtod(c->cue_mbuf, char *), CUE_BUFSZ, USBD_SHORT_XFER_OK,
755             USBD_NO_TIMEOUT, cue_rxeof);
756         usbd_transfer(c->cue_xfer);
757         CUE_UNLOCK(sc);
758
759         return;
760 }
761
762 /*
763  * A frame was downloaded to the chip. It's safe for us to clean up
764  * the list buffers.
765  */
766
767 Static void
768 cue_txeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
769 {
770         struct cue_softc        *sc;
771         struct cue_chain        *c;
772         struct ifnet            *ifp;
773         usbd_status             err;
774
775         c = priv;
776         sc = c->cue_sc;
777         CUE_LOCK(sc);
778         ifp = &sc->arpcom.ac_if;
779
780         if (status != USBD_NORMAL_COMPLETION) {
781                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
782                         CUE_UNLOCK(sc);
783                         return;
784                 }
785                 printf("cue%d: usb error on tx: %s\n", sc->cue_unit,
786                     usbd_errstr(status));
787                 if (status == USBD_STALLED)
788                         usbd_clear_endpoint_stall(sc->cue_ep[CUE_ENDPT_TX]);
789                 CUE_UNLOCK(sc);
790                 return;
791         }
792
793         ifp->if_timer = 0;
794         ifp->if_flags &= ~IFF_OACTIVE;
795         usbd_get_xfer_status(c->cue_xfer, NULL, NULL, NULL, &err);
796
797         if (c->cue_mbuf != NULL) {
798                 c->cue_mbuf->m_pkthdr.rcvif = ifp;
799                 usb_tx_done(c->cue_mbuf);
800                 c->cue_mbuf = NULL;
801         }
802
803         if (err)
804                 ifp->if_oerrors++;
805         else
806                 ifp->if_opackets++;
807
808         CUE_UNLOCK(sc);
809
810         return;
811 }
812
813 Static void
814 cue_tick(void *xsc)
815 {
816         struct cue_softc        *sc;
817         struct ifnet            *ifp;
818
819         sc = xsc;
820
821         if (sc == NULL)
822                 return;
823
824         CUE_LOCK(sc);
825
826         ifp = &sc->arpcom.ac_if;
827
828         ifp->if_collisions += cue_csr_read_2(sc, CUE_TX_SINGLECOLL);
829         ifp->if_collisions += cue_csr_read_2(sc, CUE_TX_MULTICOLL);
830         ifp->if_collisions += cue_csr_read_2(sc, CUE_TX_EXCESSCOLL);
831
832         if (cue_csr_read_2(sc, CUE_RX_FRAMEERR))
833                 ifp->if_ierrors++;
834
835         sc->cue_stat_ch = timeout(cue_tick, sc, hz);
836
837         CUE_UNLOCK(sc);
838
839         return;
840 }
841
842 Static int
843 cue_encap(struct cue_softc *sc, struct mbuf *m, int idx)
844 {
845         int                     total_len;
846         struct cue_chain        *c;
847         usbd_status             err;
848
849         c = &sc->cue_cdata.cue_tx_chain[idx];
850
851         /*
852          * Copy the mbuf data into a contiguous buffer, leaving two
853          * bytes at the beginning to hold the frame length.
854          */
855         m_copydata(m, 0, m->m_pkthdr.len, c->cue_buf + 2);
856         c->cue_mbuf = m;
857
858         total_len = m->m_pkthdr.len + 2;
859
860         /* The first two bytes are the frame length */
861         c->cue_buf[0] = (u_int8_t)m->m_pkthdr.len;
862         c->cue_buf[1] = (u_int8_t)(m->m_pkthdr.len >> 8);
863
864         usbd_setup_xfer(c->cue_xfer, sc->cue_ep[CUE_ENDPT_TX],
865             c, c->cue_buf, total_len, 0, 10000, cue_txeof);
866
867         /* Transmit */
868         err = usbd_transfer(c->cue_xfer);
869         if (err != USBD_IN_PROGRESS) {
870                 cue_stop(sc);
871                 return(EIO);
872         }
873
874         sc->cue_cdata.cue_tx_cnt++;
875
876         return(0);
877 }
878
879 Static void
880 cue_start(struct ifnet *ifp)
881 {
882         struct cue_softc        *sc;
883         struct mbuf             *m_head = NULL;
884
885         sc = ifp->if_softc;
886         CUE_LOCK(sc);
887
888         if (ifp->if_flags & IFF_OACTIVE) {
889                 CUE_UNLOCK(sc);
890                 return;
891         }
892
893         IF_DEQUEUE(&ifp->if_snd, m_head);
894         if (m_head == NULL) {
895                 CUE_UNLOCK(sc);
896                 return;
897         }
898
899         if (cue_encap(sc, m_head, 0)) {
900                 IF_PREPEND(&ifp->if_snd, m_head);
901                 ifp->if_flags |= IFF_OACTIVE;
902                 CUE_UNLOCK(sc);
903                 return;
904         }
905
906         /*
907          * If there's a BPF listener, bounce a copy of this frame
908          * to him.
909          */
910         BPF_MTAP(ifp, m_head);
911
912         ifp->if_flags |= IFF_OACTIVE;
913
914         /*
915          * Set a timeout in case the chip goes out to lunch.
916          */
917         ifp->if_timer = 5;
918         CUE_UNLOCK(sc);
919
920         return;
921 }
922
923 Static void
924 cue_init(void *xsc)
925 {
926         struct cue_softc        *sc = xsc;
927         struct ifnet            *ifp = &sc->arpcom.ac_if;
928         struct cue_chain        *c;
929         usbd_status             err;
930         int                     i;
931
932         if (ifp->if_flags & IFF_RUNNING)
933                 return;
934
935         CUE_LOCK(sc);
936
937         /*
938          * Cancel pending I/O and free all RX/TX buffers.
939          */
940 #ifdef foo
941         cue_reset(sc);
942 #endif
943
944         /* Set MAC address */
945         for (i = 0; i < ETHER_ADDR_LEN; i++)
946                 cue_csr_write_1(sc, CUE_PAR0 - i, sc->arpcom.ac_enaddr[i]);
947
948         /* Enable RX logic. */
949         cue_csr_write_1(sc, CUE_ETHCTL, CUE_ETHCTL_RX_ON|CUE_ETHCTL_MCAST_ON);
950
951          /* If we want promiscuous mode, set the allframes bit. */
952         if (ifp->if_flags & IFF_PROMISC) {
953                 CUE_SETBIT(sc, CUE_ETHCTL, CUE_ETHCTL_PROMISC);
954         } else {
955                 CUE_CLRBIT(sc, CUE_ETHCTL, CUE_ETHCTL_PROMISC);
956         }
957
958         /* Init TX ring. */
959         if (cue_tx_list_init(sc) == ENOBUFS) {
960                 printf("cue%d: tx list init failed\n", sc->cue_unit);
961                 CUE_UNLOCK(sc);
962                 return;
963         }
964
965         /* Init RX ring. */
966         if (cue_rx_list_init(sc) == ENOBUFS) {
967                 printf("cue%d: rx list init failed\n", sc->cue_unit);
968                 CUE_UNLOCK(sc);
969                 return;
970         }
971
972         /* Load the multicast filter. */
973         cue_setmulti(sc);
974
975         /*
976          * Set the number of RX and TX buffers that we want
977          * to reserve inside the ASIC.
978          */
979         cue_csr_write_1(sc, CUE_RX_BUFPKTS, CUE_RX_FRAMES);
980         cue_csr_write_1(sc, CUE_TX_BUFPKTS, CUE_TX_FRAMES);
981
982         /* Set advanced operation modes. */
983         cue_csr_write_1(sc, CUE_ADVANCED_OPMODES,
984             CUE_AOP_EMBED_RXLEN|0x01); /* 1 wait state */
985
986         /* Program the LED operation. */
987         cue_csr_write_1(sc, CUE_LEDCTL, CUE_LEDCTL_FOLLOW_LINK);
988
989         /* Open RX and TX pipes. */
990         err = usbd_open_pipe(sc->cue_iface, sc->cue_ed[CUE_ENDPT_RX],
991             USBD_EXCLUSIVE_USE, &sc->cue_ep[CUE_ENDPT_RX]);
992         if (err) {
993                 printf("cue%d: open rx pipe failed: %s\n",
994                     sc->cue_unit, usbd_errstr(err));
995                 CUE_UNLOCK(sc);
996                 return;
997         }
998         err = usbd_open_pipe(sc->cue_iface, sc->cue_ed[CUE_ENDPT_TX],
999             USBD_EXCLUSIVE_USE, &sc->cue_ep[CUE_ENDPT_TX]);
1000         if (err) {
1001                 printf("cue%d: open tx pipe failed: %s\n",
1002                     sc->cue_unit, usbd_errstr(err));
1003                 CUE_UNLOCK(sc);
1004                 return;
1005         }
1006
1007         /* Start up the receive pipe. */
1008         for (i = 0; i < CUE_RX_LIST_CNT; i++) {
1009                 c = &sc->cue_cdata.cue_rx_chain[i];
1010                 usbd_setup_xfer(c->cue_xfer, sc->cue_ep[CUE_ENDPT_RX],
1011                     c, mtod(c->cue_mbuf, char *), CUE_BUFSZ,
1012                     USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, cue_rxeof);
1013                 usbd_transfer(c->cue_xfer);
1014         }
1015
1016         ifp->if_flags |= IFF_RUNNING;
1017         ifp->if_flags &= ~IFF_OACTIVE;
1018
1019         CUE_UNLOCK(sc);
1020
1021         sc->cue_stat_ch = timeout(cue_tick, sc, hz);
1022
1023         return;
1024 }
1025
1026 Static int
1027 cue_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
1028 {
1029         struct cue_softc        *sc = ifp->if_softc;
1030         int                     error = 0;
1031
1032         CUE_LOCK(sc);
1033
1034         switch(command) {
1035         case SIOCSIFFLAGS:
1036                 if (ifp->if_flags & IFF_UP) {
1037                         if (ifp->if_flags & IFF_RUNNING &&
1038                             ifp->if_flags & IFF_PROMISC &&
1039                             !(sc->cue_if_flags & IFF_PROMISC)) {
1040                                 CUE_SETBIT(sc, CUE_ETHCTL, CUE_ETHCTL_PROMISC);
1041                                 cue_setmulti(sc);
1042                         } else if (ifp->if_flags & IFF_RUNNING &&
1043                             !(ifp->if_flags & IFF_PROMISC) &&
1044                             sc->cue_if_flags & IFF_PROMISC) {
1045                                 CUE_CLRBIT(sc, CUE_ETHCTL, CUE_ETHCTL_PROMISC);
1046                                 cue_setmulti(sc);
1047                         } else if (!(ifp->if_flags & IFF_RUNNING))
1048                                 cue_init(sc);
1049                 } else {
1050                         if (ifp->if_flags & IFF_RUNNING)
1051                                 cue_stop(sc);
1052                 }
1053                 sc->cue_if_flags = ifp->if_flags;
1054                 error = 0;
1055                 break;
1056         case SIOCADDMULTI:
1057         case SIOCDELMULTI:
1058                 cue_setmulti(sc);
1059                 error = 0;
1060                 break;
1061         default:
1062                 error = ether_ioctl(ifp, command, data);
1063                 break;
1064         }
1065
1066         CUE_UNLOCK(sc);
1067
1068         return(error);
1069 }
1070
1071 Static void
1072 cue_watchdog(struct ifnet *ifp)
1073 {
1074         struct cue_softc        *sc;
1075         struct cue_chain        *c;
1076         usbd_status             stat;
1077
1078         sc = ifp->if_softc;
1079         CUE_LOCK(sc);
1080
1081         ifp->if_oerrors++;
1082         printf("cue%d: watchdog timeout\n", sc->cue_unit);
1083
1084         c = &sc->cue_cdata.cue_tx_chain[0];
1085         usbd_get_xfer_status(c->cue_xfer, NULL, NULL, NULL, &stat);
1086         cue_txeof(c->cue_xfer, c, stat);
1087
1088         if (ifp->if_snd.ifq_head != NULL)
1089                 cue_start(ifp);
1090         CUE_UNLOCK(sc);
1091
1092         return;
1093 }
1094
1095 /*
1096  * Stop the adapter and free any mbufs allocated to the
1097  * RX and TX lists.
1098  */
1099 Static void
1100 cue_stop(struct cue_softc *sc)
1101 {
1102         usbd_status             err;
1103         struct ifnet            *ifp;
1104         int                     i;
1105
1106         CUE_LOCK(sc);
1107
1108         ifp = &sc->arpcom.ac_if;
1109         ifp->if_timer = 0;
1110
1111         cue_csr_write_1(sc, CUE_ETHCTL, 0);
1112         cue_reset(sc);
1113         untimeout(cue_tick, sc, sc->cue_stat_ch);
1114
1115         /* Stop transfers. */
1116         if (sc->cue_ep[CUE_ENDPT_RX] != NULL) {
1117                 err = usbd_abort_pipe(sc->cue_ep[CUE_ENDPT_RX]);
1118                 if (err) {
1119                         printf("cue%d: abort rx pipe failed: %s\n",
1120                         sc->cue_unit, usbd_errstr(err));
1121                 }
1122                 err = usbd_close_pipe(sc->cue_ep[CUE_ENDPT_RX]);
1123                 if (err) {
1124                         printf("cue%d: close rx pipe failed: %s\n",
1125                         sc->cue_unit, usbd_errstr(err));
1126                 }
1127                 sc->cue_ep[CUE_ENDPT_RX] = NULL;
1128         }
1129
1130         if (sc->cue_ep[CUE_ENDPT_TX] != NULL) {
1131                 err = usbd_abort_pipe(sc->cue_ep[CUE_ENDPT_TX]);
1132                 if (err) {
1133                         printf("cue%d: abort tx pipe failed: %s\n",
1134                         sc->cue_unit, usbd_errstr(err));
1135                 }
1136                 err = usbd_close_pipe(sc->cue_ep[CUE_ENDPT_TX]);
1137                 if (err) {
1138                         printf("cue%d: close tx pipe failed: %s\n",
1139                             sc->cue_unit, usbd_errstr(err));
1140                 }
1141                 sc->cue_ep[CUE_ENDPT_TX] = NULL;
1142         }
1143
1144         if (sc->cue_ep[CUE_ENDPT_INTR] != NULL) {
1145                 err = usbd_abort_pipe(sc->cue_ep[CUE_ENDPT_INTR]);
1146                 if (err) {
1147                         printf("cue%d: abort intr pipe failed: %s\n",
1148                         sc->cue_unit, usbd_errstr(err));
1149                 }
1150                 err = usbd_close_pipe(sc->cue_ep[CUE_ENDPT_INTR]);
1151                 if (err) {
1152                         printf("cue%d: close intr pipe failed: %s\n",
1153                             sc->cue_unit, usbd_errstr(err));
1154                 }
1155                 sc->cue_ep[CUE_ENDPT_INTR] = NULL;
1156         }
1157
1158         /* Free RX resources. */
1159         for (i = 0; i < CUE_RX_LIST_CNT; i++) {
1160                 if (sc->cue_cdata.cue_rx_chain[i].cue_buf != NULL) {
1161                         free(sc->cue_cdata.cue_rx_chain[i].cue_buf, M_USBDEV);
1162                         sc->cue_cdata.cue_rx_chain[i].cue_buf = NULL;
1163                 }
1164                 if (sc->cue_cdata.cue_rx_chain[i].cue_mbuf != NULL) {
1165                         m_freem(sc->cue_cdata.cue_rx_chain[i].cue_mbuf);
1166                         sc->cue_cdata.cue_rx_chain[i].cue_mbuf = NULL;
1167                 }
1168                 if (sc->cue_cdata.cue_rx_chain[i].cue_xfer != NULL) {
1169                         usbd_free_xfer(sc->cue_cdata.cue_rx_chain[i].cue_xfer);
1170                         sc->cue_cdata.cue_rx_chain[i].cue_xfer = NULL;
1171                 }
1172         }
1173
1174         /* Free TX resources. */
1175         for (i = 0; i < CUE_TX_LIST_CNT; i++) {
1176                 if (sc->cue_cdata.cue_tx_chain[i].cue_buf != NULL) {
1177                         free(sc->cue_cdata.cue_tx_chain[i].cue_buf, M_USBDEV);
1178                         sc->cue_cdata.cue_tx_chain[i].cue_buf = NULL;
1179                 }
1180                 if (sc->cue_cdata.cue_tx_chain[i].cue_mbuf != NULL) {
1181                         m_freem(sc->cue_cdata.cue_tx_chain[i].cue_mbuf);
1182                         sc->cue_cdata.cue_tx_chain[i].cue_mbuf = NULL;
1183                 }
1184                 if (sc->cue_cdata.cue_tx_chain[i].cue_xfer != NULL) {
1185                         usbd_free_xfer(sc->cue_cdata.cue_tx_chain[i].cue_xfer);
1186                         sc->cue_cdata.cue_tx_chain[i].cue_xfer = NULL;
1187                 }
1188         }
1189
1190         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1191         CUE_UNLOCK(sc);
1192
1193         return;
1194 }
1195
1196 /*
1197  * Stop all chip I/O so that the kernel's probe routines don't
1198  * get confused by errant DMAs when rebooting.
1199  */
1200 Static void
1201 cue_shutdown(device_ptr_t dev)
1202 {
1203         struct cue_softc        *sc;
1204
1205         sc = device_get_softc(dev);
1206
1207         CUE_LOCK(sc);
1208         cue_reset(sc);
1209         cue_stop(sc);
1210         CUE_UNLOCK(sc);
1211
1212         return;
1213 }