Merge from vendor branch BIND:
[dragonfly.git] / sys / dev / netif / axe / if_axe.c
1 /*
2  * Copyright (c) 1997, 1998, 1999, 2000-2003
3  *      Bill Paul <wpaul@windriver.com>.  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_axe.c,v 1.10 2003/12/08 07:54:14 obrien Exp $
33  * $DragonFly: src/sys/dev/netif/axe/if_axe.c,v 1.11 2005/06/13 20:51:17 joerg Exp $
34  */
35 /*
36  * ASIX Electronics AX88172 USB 2.0 ethernet driver. Used in the
37  * LinkSys USB200M and various other adapters.
38  *
39  * Manuals available from:
40  * http://www.asix.com.tw/datasheet/mac/Ax88172.PDF
41  * Note: you need the manual for the AX88170 chip (USB 1.x ethernet
42  * controller) to find the definitions for the RX control register.
43  * http://www.asix.com.tw/datasheet/mac/Ax88170.PDF
44  *
45  * Written by Bill Paul <wpaul@windriver.com>
46  * Senior Engineer
47  * Wind River Systems
48  */
49
50 /*
51  * The AX88172 provides USB ethernet supports at 10 and 100Mbps.
52  * It uses an external PHY (reference designs use a RealTek chip),
53  * and has a 64-bit multicast hash filter. There is some information
54  * missing from the manual which one needs to know in order to make
55  * the chip function:
56  *
57  * - You must set bit 7 in the RX control register, otherwise the
58  *   chip won't receive any packets.
59  * - You must initialize all 3 IPG registers, or you won't be able
60  *   to send any packets.
61  *
62  * Note that this device appears to only support loading the station
63  * address via autload from the EEPROM (i.e. there's no way to manaully
64  * set it).
65  *
66  * (Adam Weinberger wanted me to name this driver if_gir.c.)
67  */
68
69 #include <sys/param.h>
70 #include <sys/systm.h>
71 #include <sys/sockio.h>
72 #include <sys/mbuf.h>
73 #include <sys/malloc.h>
74 #include <sys/kernel.h>
75 #include <sys/socket.h>
76 #include <sys/thread2.h>
77
78 #include <net/if.h>
79 #include <net/ifq_var.h>
80 #include <net/if_arp.h>
81 #include <net/ethernet.h>
82 #include <net/if_dl.h>
83 #include <net/if_media.h>
84
85 #include <net/bpf.h>
86
87 #include <sys/bus.h>
88 #include <machine/bus.h>
89
90 #include <bus/usb/usb.h>
91 #include <bus/usb/usbdi.h>
92 #include <bus/usb/usbdi_util.h>
93 #include <bus/usb/usbdivar.h>
94 #include <bus/usb/usbdevs.h>
95 #include <bus/usb/usb_ethersubr.h>
96
97 #include "../mii_layer//mii.h"
98 #include "../mii_layer/miivar.h"
99
100 /* "controller miibus0" required.  See GENERIC if you get errors here. */
101 #include "miibus_if.h"
102
103 #include "if_axereg.h"
104
105 /*
106  * Various supported device vendors/products.
107  */
108 Static struct axe_type axe_devs[] = {
109         { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88172 },
110         { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DUBE100 },
111         { USB_VENDOR_LINKSYS2, USB_PRODUCT_LINKSYS2_USB200M },
112         { USB_VENDOR_NETGEAR, USB_PRODUCT_NETGEAR_FA120 },
113         { 0, 0 }
114 };
115
116 Static int axe_match(device_ptr_t);
117 Static int axe_attach(device_ptr_t);
118 Static int axe_detach(device_ptr_t);
119
120 Static int axe_tx_list_init(struct axe_softc *);
121 Static int axe_rx_list_init(struct axe_softc *);
122 Static int axe_newbuf(struct axe_softc *, struct axe_chain *, struct mbuf *);
123 Static int axe_encap(struct axe_softc *, struct mbuf *, int);
124 Static void axe_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
125 Static void axe_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
126 Static void axe_tick(void *);
127 Static void axe_rxstart(struct ifnet *);
128 Static void axe_start(struct ifnet *);
129 Static int axe_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
130 Static void axe_init(void *);
131 Static void axe_stop(struct axe_softc *);
132 Static void axe_watchdog(struct ifnet *);
133 Static void axe_shutdown(device_ptr_t);
134 Static int axe_miibus_readreg(device_ptr_t, int, int);
135 Static int axe_miibus_writereg(device_ptr_t, int, int, int);
136 Static void axe_miibus_statchg(device_ptr_t);
137 Static int axe_cmd(struct axe_softc *, int, int, int, void *);
138 Static int axe_ifmedia_upd(struct ifnet *);
139 Static void axe_ifmedia_sts(struct ifnet *, struct ifmediareq *);
140
141 Static void axe_setmulti(struct axe_softc *);
142 Static uint32_t axe_mchash(const uint8_t *);
143
144 Static device_method_t axe_methods[] = {
145         /* Device interface */
146         DEVMETHOD(device_probe,         axe_match),
147         DEVMETHOD(device_attach,        axe_attach),
148         DEVMETHOD(device_detach,        axe_detach),
149         DEVMETHOD(device_shutdown,      axe_shutdown),
150
151         /* bus interface */
152         DEVMETHOD(bus_print_child,      bus_generic_print_child),
153         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
154
155         /* MII interface */
156         DEVMETHOD(miibus_readreg,       axe_miibus_readreg),
157         DEVMETHOD(miibus_writereg,      axe_miibus_writereg),
158         DEVMETHOD(miibus_statchg,       axe_miibus_statchg),
159
160         { 0, 0 }
161 };
162
163 Static driver_t axe_driver = {
164         "axe",
165         axe_methods,
166         sizeof(struct axe_softc)
167 };
168
169 Static devclass_t axe_devclass;
170
171 DRIVER_MODULE(axe, uhub, axe_driver, axe_devclass, usbd_driver_load, 0);
172 DRIVER_MODULE(miibus, axe, miibus_driver, miibus_devclass, 0, 0);
173 MODULE_DEPEND(axe, usb, 1, 1, 1);
174 MODULE_DEPEND(axe, miibus, 1, 1, 1);
175
176 Static int
177 axe_cmd(struct axe_softc *sc, int cmd, int index, int val, void *buf)
178 {
179         usb_device_request_t    req;
180         usbd_status             err;
181
182         if (sc->axe_dying)
183                 return(0);
184
185         if (AXE_CMD_DIR(cmd))
186                 req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
187         else
188                 req.bmRequestType = UT_READ_VENDOR_DEVICE;
189         req.bRequest = AXE_CMD_CMD(cmd);
190         USETW(req.wValue, val);
191         USETW(req.wIndex, index);
192         USETW(req.wLength, AXE_CMD_LEN(cmd));
193
194         err = usbd_do_request(sc->axe_udev, &req, buf);
195
196         if (err)
197                 return(-1);
198
199         return(0);
200 }
201
202 Static int
203 axe_miibus_readreg(device_ptr_t dev, int phy, int reg)
204 {
205         struct axe_softc        *sc = USBGETSOFTC(dev);
206         usbd_status             err;
207         u_int16_t               val;
208
209         crit_enter();
210
211         if (sc->axe_dying) {
212                 crit_exit();
213                 return(0);
214         }
215
216 #ifdef notdef
217         /*
218          * The chip tells us the MII address of any supported
219          * PHYs attached to the chip, so only read from those.
220          */
221
222         if (sc->axe_phyaddrs[0] != AXE_NOPHY && phy != sc->axe_phyaddrs[0]) {
223                 crit_exit();
224                 return (0);
225         }
226
227         if (sc->axe_phyaddrs[1] != AXE_NOPHY && phy != sc->axe_phyaddrs[1]) {
228                 crit_Exit();
229                 return (0);
230         }
231 #endif
232         if (sc->axe_phyaddrs[0] != 0xFF && sc->axe_phyaddrs[0] != phy) {
233                 crit_exit();
234                 return (0);
235         }
236
237         axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL);
238         err = axe_cmd(sc, AXE_CMD_MII_READ_REG, reg, phy, (void *)&val);
239         axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL);
240
241         crit_exit();
242
243         if (err) {
244                 if_printf(&sc->arpcom.ac_if, "read PHY failed\n");
245                 return(-1);
246         }
247
248         if (val)
249                 sc->axe_phyaddrs[0] = phy;
250
251         return (val);
252 }
253
254 Static int
255 axe_miibus_writereg(device_ptr_t dev, int phy, int reg, int val)
256 {
257         struct axe_softc        *sc = USBGETSOFTC(dev);
258         usbd_status             err;
259
260         crit_enter();
261
262         if (sc->axe_dying) {
263                 crit_exit();
264                 return(0);
265         }
266
267         axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL);
268         err = axe_cmd(sc, AXE_CMD_MII_WRITE_REG, reg, phy, (void *)&val);
269         axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL);
270
271         crit_exit();
272
273         if (err) {
274                 if_printf(&sc->arpcom.ac_if, "write PHY failed\n");
275                 return(-1);
276         }
277
278         return (0);
279 }
280
281 Static void
282 axe_miibus_statchg(device_ptr_t dev)
283 {
284 #ifdef notdef
285         struct axe_softc        *sc = USBGETSOFTC(dev);
286         struct mii_data         *mii = GET_MII(sc);
287 #endif
288         /* doesn't seem to be necessary */
289
290         return;
291 }
292
293 /*
294  * Set media options.
295  */
296 Static int
297 axe_ifmedia_upd(struct ifnet *ifp)
298 {
299         struct axe_softc        *sc = ifp->if_softc;
300         struct mii_data         *mii = GET_MII(sc);
301
302         sc->axe_link = 0;
303         if (mii->mii_instance) {
304                 struct mii_softc        *miisc;
305                 LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
306                          mii_phy_reset(miisc);
307         }
308         mii_mediachg(mii);
309
310         return (0);
311 }
312
313 /*
314  * Report current media status.
315  */
316 Static void
317 axe_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
318 {
319         struct axe_softc        *sc = ifp->if_softc;
320         struct mii_data         *mii = GET_MII(sc);
321
322         mii_pollstat(mii);
323         ifmr->ifm_active = mii->mii_media_active;
324         ifmr->ifm_status = mii->mii_media_status;
325
326         return;
327 }
328
329 Static uint32_t
330 axe_mchash(const uint8_t *addr)
331 {
332         uint32_t crc, carry;
333         int idx, bit;
334         uint8_t data;
335
336         /* Compute CRC for the address value. */
337         crc = 0xFFFFFFFF; /* initial value */
338
339         for (idx = 0; idx < 6; idx++) {
340                 for (data = *addr++, bit = 0; bit < 8; bit++, data >>= 1) {
341                         carry = ((crc & 0x80000000) ? 1 : 0) ^ (data & 0x01);
342                         crc <<= 1;
343                         if (carry)
344                                 crc = (crc ^ 0x04c11db6) | carry;
345                 }
346         }
347
348         /* return the filter bit position */
349         return((crc >> 26) & 0x0000003F);
350 }
351
352 Static void
353 axe_setmulti(struct axe_softc *sc)
354 {
355         struct ifnet *ifp = &sc->arpcom.ac_if;
356         struct ifmultiaddr      *ifma;
357         u_int32_t               h = 0;
358         u_int16_t               rxmode;
359         u_int8_t                hashtbl[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
360
361         crit_enter();
362
363         axe_cmd(sc, AXE_CMD_RXCTL_READ, 0, 0, (void *)&rxmode);
364
365         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
366                 rxmode |= AXE_RXCMD_ALLMULTI;
367                 axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
368                 crit_exit();
369                 return;
370         } else
371                 rxmode &= ~AXE_RXCMD_ALLMULTI;
372
373         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
374                 if (ifma->ifma_addr->sa_family != AF_LINK)
375                         continue;
376                 h = axe_mchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
377                 hashtbl[h / 8] |= 1 << (h % 8);
378         }
379
380         axe_cmd(sc, AXE_CMD_WRITE_MCAST, 0, 0, (void *)&hashtbl);
381         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
382
383         crit_exit();
384 }
385
386 Static void
387 axe_reset(struct axe_softc *sc)
388 {
389         if (sc->axe_dying)
390                 return;
391
392         if (usbd_set_config_no(sc->axe_udev, AXE_CONFIG_NO, 1) ||
393             usbd_device2interface_handle(sc->axe_udev, AXE_IFACE_IDX,
394             &sc->axe_iface)) {
395                 if_printf(&sc->arpcom.ac_if,
396                           "getting interface handle failed\n");
397         }
398
399         /* Wait a little while for the chip to get its brains in order. */
400         DELAY(1000);
401         return;
402 }
403
404 /*
405  * Probe for a AX88172 chip.
406  */
407 USB_MATCH(axe)
408 {
409         USB_MATCH_START(axe, uaa);
410         struct axe_type                 *t;
411
412         if (!uaa->iface)
413                 return(UMATCH_NONE);
414
415         t = axe_devs;
416         while(t->axe_vid) {
417                 if (uaa->vendor == t->axe_vid &&
418                     uaa->product == t->axe_did) {
419                         return(UMATCH_VENDOR_PRODUCT);
420                 }
421                 t++;
422         }
423
424         return(UMATCH_NONE);
425 }
426
427 /*
428  * Attach the interface. Allocate softc structures, do ifmedia
429  * setup and ethernet/BPF attach.
430  */
431 USB_ATTACH(axe)
432 {
433         USB_ATTACH_START(axe, sc, uaa);
434         char                    devinfo[1024];
435         u_char                  eaddr[ETHER_ADDR_LEN];
436         struct ifnet            *ifp;
437         usb_interface_descriptor_t      *id;
438         usb_endpoint_descriptor_t       *ed;
439         int                     i;
440
441         bzero(sc, sizeof(struct axe_softc));
442         sc->axe_udev = uaa->device;
443         callout_init(&sc->axe_stat_timer);
444
445         if (usbd_set_config_no(sc->axe_udev, AXE_CONFIG_NO, 1)) {
446                 device_printf(self, "setting config no %d failed\n",
447                     AXE_CONFIG_NO);
448                 USB_ATTACH_ERROR_RETURN;
449         }
450
451         if (usbd_device2interface_handle(uaa->device,
452             AXE_IFACE_IDX, &sc->axe_iface)) {
453                 device_printf(self, "getting interface handle failed\n");
454                 USB_ATTACH_ERROR_RETURN;
455         }
456
457         id = usbd_get_interface_descriptor(sc->axe_iface);
458
459         usbd_devinfo(uaa->device, 0, devinfo);
460         device_set_desc_copy(self, devinfo);
461         device_printf(self, "%s\n", devinfo);
462
463         /* Find endpoints. */
464         for (i = 0; i < id->bNumEndpoints; i++) {
465                 ed = usbd_interface2endpoint_descriptor(sc->axe_iface, i);
466                 if (!ed) {
467                         device_printf(self, "couldn't get ep %d\n", i);
468                         USB_ATTACH_ERROR_RETURN;
469                 }
470                 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
471                     UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
472                         sc->axe_ed[AXE_ENDPT_RX] = ed->bEndpointAddress;
473                 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
474                            UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
475                         sc->axe_ed[AXE_ENDPT_TX] = ed->bEndpointAddress;
476                 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
477                            UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
478                         sc->axe_ed[AXE_ENDPT_INTR] = ed->bEndpointAddress;
479                 }
480         }
481
482         /*
483          * Get station address.
484          */
485         axe_cmd(sc, AXE_CMD_READ_NODEID, 0, 0, &eaddr);
486
487         /*
488          * Load IPG values and PHY indexes.
489          */
490         axe_cmd(sc, AXE_CMD_READ_IPG012, 0, 0, (void *)&sc->axe_ipgs);
491         axe_cmd(sc, AXE_CMD_READ_PHYID, 0, 0, (void *)&sc->axe_phyaddrs);
492
493         /*
494          * Work around broken adapters that appear to lie about
495          * their PHY addresses.
496          */
497         sc->axe_phyaddrs[0] = sc->axe_phyaddrs[1] = 0xFF;
498
499         ifp = &sc->arpcom.ac_if;
500         ifp->if_softc = sc;
501         if_initname(ifp, device_get_name(self), device_get_unit(self));
502         ifp->if_mtu = ETHERMTU;
503         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
504         ifp->if_ioctl = axe_ioctl;
505         ifp->if_start = axe_start;
506         ifp->if_watchdog = axe_watchdog;
507         ifp->if_init = axe_init;
508         ifp->if_baudrate = 10000000;
509         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
510         ifq_set_ready(&ifp->if_snd);
511
512         if (mii_phy_probe(self, &sc->axe_miibus,
513             axe_ifmedia_upd, axe_ifmedia_sts)) {
514                 device_printf(self, "MII without any PHY!\n");
515                 USB_ATTACH_ERROR_RETURN;
516         }
517
518         /*
519          * Call MI attach routine.
520          */
521
522         ether_ifattach(ifp, eaddr);
523
524         sc->axe_dying = 0;
525
526         usb_register_netisr();
527
528         USB_ATTACH_SUCCESS_RETURN;
529 }
530
531 Static int
532 axe_detach(device_ptr_t dev)
533 {
534         struct axe_softc *sc = device_get_softc(dev);
535         struct ifnet *ifp = &sc->arpcom.ac_if;
536
537         crit_enter();
538
539         sc->axe_dying = 1;
540         callout_stop(&sc->axe_stat_timer);
541         ether_ifdetach(ifp);
542
543         if (sc->axe_ep[AXE_ENDPT_TX] != NULL)
544                 usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_TX]);
545         if (sc->axe_ep[AXE_ENDPT_RX] != NULL)
546                 usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_RX]);
547         if (sc->axe_ep[AXE_ENDPT_INTR] != NULL)
548                 usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_INTR]);
549
550         crit_exit();
551
552         return(0);
553 }
554
555 /*
556  * Initialize an RX descriptor and attach an MBUF cluster.
557  */
558 Static int
559 axe_newbuf(struct axe_softc *sc, struct axe_chain *c, struct mbuf *m)
560 {
561         struct mbuf             *m_new = NULL;
562
563         if (m == NULL) {
564                 m_new = m_getcl(MB_DONTWAIT, MT_DATA, M_PKTHDR);
565                 if (m_new == NULL) {
566                         if_printf(&sc->arpcom.ac_if, "no memory for rx list "
567                             "-- packet dropped!\n");
568                         return(ENOBUFS);
569                 }
570                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
571         } else {
572                 m_new = m;
573                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
574                 m_new->m_data = m_new->m_ext.ext_buf;
575         }
576
577         m_adj(m_new, ETHER_ALIGN);
578         c->axe_mbuf = m_new;
579
580         return(0);
581 }
582
583 Static int
584 axe_rx_list_init(struct axe_softc *sc)
585 {
586         struct axe_cdata        *cd;
587         struct axe_chain        *c;
588         int                     i;
589
590         cd = &sc->axe_cdata;
591         for (i = 0; i < AXE_RX_LIST_CNT; i++) {
592                 c = &cd->axe_rx_chain[i];
593                 c->axe_sc = sc;
594                 c->axe_idx = i;
595                 if (axe_newbuf(sc, c, NULL) == ENOBUFS)
596                         return(ENOBUFS);
597                 if (c->axe_xfer == NULL) {
598                         c->axe_xfer = usbd_alloc_xfer(sc->axe_udev);
599                         if (c->axe_xfer == NULL)
600                                 return(ENOBUFS);
601                 }
602         }
603
604         return(0);
605 }
606
607 Static int
608 axe_tx_list_init(struct axe_softc *sc)
609 {
610         struct axe_cdata        *cd;
611         struct axe_chain        *c;
612         int                     i;
613
614         cd = &sc->axe_cdata;
615         for (i = 0; i < AXE_TX_LIST_CNT; i++) {
616                 c = &cd->axe_tx_chain[i];
617                 c->axe_sc = sc;
618                 c->axe_idx = i;
619                 c->axe_mbuf = NULL;
620                 if (c->axe_xfer == NULL) {
621                         c->axe_xfer = usbd_alloc_xfer(sc->axe_udev);
622                         if (c->axe_xfer == NULL)
623                                 return(ENOBUFS);
624                 }
625                 c->axe_buf = malloc(AXE_BUFSZ, M_USBDEV, M_WAITOK);
626                 if (c->axe_buf == NULL)
627                         return(ENOBUFS);
628         }
629
630         return(0);
631 }
632
633 Static void
634 axe_rxstart(struct ifnet *ifp)
635 {
636         struct axe_softc *sc = ifp->if_softc;
637         struct axe_chain *c;
638
639         crit_enter();
640         c = &sc->axe_cdata.axe_rx_chain[sc->axe_cdata.axe_rx_prod];
641
642         if (axe_newbuf(sc, c, NULL) == ENOBUFS) {
643                 ifp->if_ierrors++;
644                 crit_exit();
645                 return;
646         }
647
648         /* Setup new transfer. */
649         usbd_setup_xfer(c->axe_xfer, sc->axe_ep[AXE_ENDPT_RX],
650             c, mtod(c->axe_mbuf, char *), AXE_BUFSZ, USBD_SHORT_XFER_OK,
651             USBD_NO_TIMEOUT, axe_rxeof);
652         usbd_transfer(c->axe_xfer);
653
654         crit_exit();
655 }
656
657 /*
658  * A frame has been uploaded: pass the resulting mbuf chain up to
659  * the higher level protocols.
660  */
661 Static void
662 axe_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
663 {
664         struct axe_chain *c = priv;
665         struct axe_softc *sc = c->axe_sc;
666         struct ifnet *ifp = &sc->arpcom.ac_if;
667         struct mbuf *m;
668         int total_len = 0;
669
670         crit_enter();
671
672         if (!(ifp->if_flags & IFF_RUNNING)) {
673                 crit_exit();
674                 return;
675         }
676
677         if (status != USBD_NORMAL_COMPLETION) {
678                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
679                         crit_exit();
680                         return;
681                 }
682                 if (usbd_ratecheck(&sc->axe_rx_notice)) {
683                         if_printf(ifp, "usb error on rx: %s\n",
684                             usbd_errstr(status));
685                 }
686                 if (status == USBD_STALLED)
687                         usbd_clear_endpoint_stall(sc->axe_ep[AXE_ENDPT_RX]);
688                 goto done;
689         }
690
691         usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
692
693         m = c->axe_mbuf;
694
695         if (total_len < sizeof(struct ether_header)) {
696                 ifp->if_ierrors++;
697                 goto done;
698         }
699
700         ifp->if_ipackets++;
701         m->m_pkthdr.rcvif = ifp;
702         m->m_pkthdr.len = m->m_len = total_len;
703
704         /* Put the packet on the special USB input queue. */
705         usb_ether_input(m);
706         axe_rxstart(ifp);
707
708         crit_exit();
709         return;
710 done:
711         /* Setup new transfer. */
712         usbd_setup_xfer(c->axe_xfer, sc->axe_ep[AXE_ENDPT_RX],
713             c, mtod(c->axe_mbuf, char *), AXE_BUFSZ, USBD_SHORT_XFER_OK,
714             USBD_NO_TIMEOUT, axe_rxeof);
715         usbd_transfer(c->axe_xfer);
716
717         crit_exit();
718 }
719
720 /*
721  * A frame was downloaded to the chip. It's safe for us to clean up
722  * the list buffers.
723  */
724
725 Static void
726 axe_txeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
727 {
728         struct axe_chain *c = priv;
729         struct axe_softc *sc = c->axe_sc;
730         struct ifnet *ifp = &sc->arpcom.ac_if;
731         usbd_status err;
732
733         crit_enter();
734
735         if (status != USBD_NORMAL_COMPLETION) {
736                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
737                         crit_exit();
738                         return;
739                 }
740                 if_printf(ifp, "usb error on tx: %s\n", usbd_errstr(status));
741                 if (status == USBD_STALLED)
742                         usbd_clear_endpoint_stall(sc->axe_ep[AXE_ENDPT_TX]);
743                 crit_exit();
744                 return;
745         }
746
747         ifp->if_timer = 0;
748         ifp->if_flags &= ~IFF_OACTIVE;
749         usbd_get_xfer_status(c->axe_xfer, NULL, NULL, NULL, &err);
750
751         if (c->axe_mbuf != NULL) {
752                 m_freem(c->axe_mbuf);
753                 c->axe_mbuf = NULL;
754         }
755
756         if (err)
757                 ifp->if_oerrors++;
758         else
759                 ifp->if_opackets++;
760
761         if (!ifq_is_empty(&ifp->if_snd))
762                 (*ifp->if_start)(ifp);
763
764         crit_exit();
765 }
766
767 Static void
768 axe_tick(void *xsc)
769 {
770         struct axe_softc *sc = xsc;
771         struct ifnet *ifp = &sc->arpcom.ac_if;
772         struct mii_data         *mii;
773
774         mii = GET_MII(sc);
775         if (mii == NULL)
776                 return;
777
778         crit_enter();
779
780         mii_tick(mii);
781         if (!sc->axe_link && mii->mii_media_status & IFM_ACTIVE &&
782             IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
783                 sc->axe_link++;
784                 if (!ifq_is_empty(&ifp->if_snd))
785                         axe_start(ifp);
786         }
787
788         callout_reset(&sc->axe_stat_timer, hz, axe_tick, sc);
789
790         crit_exit();
791 }
792
793 Static int
794 axe_encap(struct axe_softc *sc, struct mbuf *m, int idx)
795 {
796         struct axe_chain        *c;
797         usbd_status             err;
798
799         c = &sc->axe_cdata.axe_tx_chain[idx];
800
801         /*
802          * Copy the mbuf data into a contiguous buffer, leaving two
803          * bytes at the beginning to hold the frame length.
804          */
805         m_copydata(m, 0, m->m_pkthdr.len, c->axe_buf);
806         c->axe_mbuf = m;
807
808         usbd_setup_xfer(c->axe_xfer, sc->axe_ep[AXE_ENDPT_TX],
809             c, c->axe_buf, m->m_pkthdr.len, 0, 10000, axe_txeof);
810
811         /* Transmit */
812         err = usbd_transfer(c->axe_xfer);
813         if (err != USBD_IN_PROGRESS) {
814                 axe_stop(sc);
815                 return(EIO);
816         }
817
818         sc->axe_cdata.axe_tx_cnt++;
819
820         return(0);
821 }
822
823 Static void
824 axe_start(struct ifnet *ifp)
825 {
826         struct axe_softc *sc = ifp->if_softc;
827         struct mbuf *m_head = NULL;
828
829         crit_enter();
830
831         if (!sc->axe_link) {
832                 crit_exit();
833                 return;
834         }
835
836         if (ifp->if_flags & IFF_OACTIVE) {
837                 crit_exit();
838                 return;
839         }
840
841         m_head = ifq_poll(&ifp->if_snd);
842         if (m_head == NULL) {
843                 crit_exit();
844                 return;
845         }
846
847         if (axe_encap(sc, m_head, 0)) {
848                 ifp->if_flags |= IFF_OACTIVE;
849                 crit_exit();
850                 return;
851         }
852         m_head = ifq_dequeue(&ifp->if_snd);
853
854         /*
855          * If there's a BPF listener, bounce a copy of this frame
856          * to him.
857          */
858         BPF_MTAP(ifp, m_head);
859
860         ifp->if_flags |= IFF_OACTIVE;
861
862         /*
863          * Set a timeout in case the chip goes out to lunch.
864          */
865         ifp->if_timer = 5;
866
867         crit_exit();
868 }
869
870 Static void
871 axe_init(void *xsc)
872 {
873         struct axe_softc        *sc = xsc;
874         struct ifnet            *ifp = &sc->arpcom.ac_if;
875         struct axe_chain        *c;
876         usbd_status             err;
877         int i, rxmode;
878
879         crit_enter();
880
881         if (ifp->if_flags & IFF_RUNNING) {
882                 crit_exit();
883                 return;
884         }
885
886         /*
887          * Cancel pending I/O and free all RX/TX buffers.
888          */
889
890         axe_reset(sc);
891
892 #ifdef notdef
893         /* Set MAC address */
894         axe_mac(sc, sc->arpcom.ac_enaddr, 1);
895 #endif
896
897         /* Enable RX logic. */
898
899         /* Init TX ring. */
900         if (axe_tx_list_init(sc) == ENOBUFS) {
901                 crit_exit();
902                 if_printf(ifp, "tx list init failed\n");
903                 return;
904         }
905
906         /* Init RX ring. */
907         if (axe_rx_list_init(sc) == ENOBUFS) {
908                 crit_exit();
909                 if_printf(ifp, "rx list init failed\n");
910                 return;
911         }
912
913         /* Set transmitter IPG values */
914         axe_cmd(sc, AXE_CMD_WRITE_IPG0, 0, sc->axe_ipgs[0], NULL);
915         axe_cmd(sc, AXE_CMD_WRITE_IPG1, 0, sc->axe_ipgs[1], NULL);
916         axe_cmd(sc, AXE_CMD_WRITE_IPG2, 0, sc->axe_ipgs[2], NULL);
917
918         /* Enable receiver, set RX mode */
919         rxmode = AXE_RXCMD_UNICAST|AXE_RXCMD_MULTICAST|AXE_RXCMD_ENABLE;
920
921         /* If we want promiscuous mode, set the allframes bit. */
922         if (ifp->if_flags & IFF_PROMISC)
923                 rxmode |= AXE_RXCMD_PROMISC;
924
925         if (ifp->if_flags & IFF_BROADCAST)
926                 rxmode |= AXE_RXCMD_BROADCAST;
927
928         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
929
930         /* Load the multicast filter. */
931         axe_setmulti(sc);
932
933         /* Open RX and TX pipes. */
934         err = usbd_open_pipe(sc->axe_iface, sc->axe_ed[AXE_ENDPT_RX],
935             USBD_EXCLUSIVE_USE, &sc->axe_ep[AXE_ENDPT_RX]);
936         if (err) {
937                 crit_exit();
938                 if_printf(ifp, "open rx pipe failed: %s\n", usbd_errstr(err));
939                 return;
940         }
941
942         err = usbd_open_pipe(sc->axe_iface, sc->axe_ed[AXE_ENDPT_TX],
943             USBD_EXCLUSIVE_USE, &sc->axe_ep[AXE_ENDPT_TX]);
944         if (err) {
945                 crit_exit();
946                 if_printf(ifp, "open tx pipe failed: %s\n", usbd_errstr(err));
947                 return;
948         }
949
950         /* Start up the receive pipe. */
951         for (i = 0; i < AXE_RX_LIST_CNT; i++) {
952                 c = &sc->axe_cdata.axe_rx_chain[i];
953                 usbd_setup_xfer(c->axe_xfer, sc->axe_ep[AXE_ENDPT_RX],
954                     c, mtod(c->axe_mbuf, char *), AXE_BUFSZ,
955                     USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, axe_rxeof);
956                 usbd_transfer(c->axe_xfer);
957         }
958
959         ifp->if_flags |= IFF_RUNNING;
960         ifp->if_flags &= ~IFF_OACTIVE;
961
962         callout_reset(&sc->axe_stat_timer, hz, axe_tick, sc);
963
964         crit_exit();
965 }
966
967 Static int
968 axe_ioctl(struct ifnet *ifp, u_long command, caddr_t data, struct ucred *cr)
969 {
970         struct axe_softc        *sc = ifp->if_softc;
971         struct ifreq            *ifr = (struct ifreq *)data;
972         struct mii_data         *mii;
973         u_int16_t               rxmode;
974         int error = 0;
975
976         crit_enter();
977
978         switch(command) {
979         case SIOCSIFFLAGS:
980                 if (ifp->if_flags & IFF_UP) {
981                         if (ifp->if_flags & IFF_RUNNING &&
982                             ifp->if_flags & IFF_PROMISC &&
983                             !(sc->axe_if_flags & IFF_PROMISC)) {
984                                 axe_cmd(sc, AXE_CMD_RXCTL_READ,
985                                         0, 0, (void *)&rxmode);
986                                 rxmode |= AXE_RXCMD_PROMISC;
987                                 axe_cmd(sc, AXE_CMD_RXCTL_WRITE,
988                                         0, rxmode, NULL);
989                                 axe_setmulti(sc);
990                         } else if (ifp->if_flags & IFF_RUNNING &&
991                             !(ifp->if_flags & IFF_PROMISC) &&
992                             sc->axe_if_flags & IFF_PROMISC) {
993                                 axe_cmd(sc, AXE_CMD_RXCTL_READ,
994                                         0, 0, (void *)&rxmode);
995                                 rxmode &= ~AXE_RXCMD_PROMISC;
996                                 axe_cmd(sc, AXE_CMD_RXCTL_WRITE,
997                                         0, rxmode, NULL);
998                                 axe_setmulti(sc);
999                         } else if (!(ifp->if_flags & IFF_RUNNING))
1000                                 axe_init(sc);
1001                 } else {
1002                         if (ifp->if_flags & IFF_RUNNING)
1003                                 axe_stop(sc);
1004                 }
1005                 sc->axe_if_flags = ifp->if_flags;
1006                 error = 0;
1007                 break;
1008         case SIOCADDMULTI:
1009         case SIOCDELMULTI:
1010                 axe_setmulti(sc);
1011                 error = 0;
1012                 break;
1013         case SIOCGIFMEDIA:
1014         case SIOCSIFMEDIA:
1015                 mii = GET_MII(sc);
1016                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1017                 break;
1018
1019         default:
1020                 error = ether_ioctl(ifp, command, data);
1021                 break;
1022         }
1023
1024         crit_exit();
1025
1026         return(error);
1027 }
1028
1029 Static void
1030 axe_watchdog(struct ifnet *ifp)
1031 {
1032         struct axe_softc *sc = ifp->if_softc;
1033         struct axe_chain *c;
1034         usbd_status stat;
1035
1036         crit_enter();
1037
1038         ifp->if_oerrors++;
1039         if_printf(ifp, "watchdog timeout\n");
1040
1041         c = &sc->axe_cdata.axe_tx_chain[0];
1042         usbd_get_xfer_status(c->axe_xfer, NULL, NULL, NULL, &stat);
1043         axe_txeof(c->axe_xfer, c, stat);
1044
1045         if (!ifq_is_empty(&ifp->if_snd))
1046                 axe_start(ifp);
1047
1048         crit_exit();
1049 }
1050
1051 /*
1052  * Stop the adapter and free any mbufs allocated to the
1053  * RX and TX lists.
1054  */
1055 Static void
1056 axe_stop(struct axe_softc *sc)
1057 {
1058         usbd_status             err;
1059         struct ifnet            *ifp;
1060         int i;
1061
1062         crit_enter();
1063
1064         axe_reset(sc);
1065
1066         ifp = &sc->arpcom.ac_if;
1067         ifp->if_timer = 0;
1068
1069         callout_stop(&sc->axe_stat_timer);
1070
1071         /* Stop transfers. */
1072         if (sc->axe_ep[AXE_ENDPT_RX] != NULL) {
1073                 err = usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_RX]);
1074                 if (err) {
1075                         if_printf(ifp, "abort rx pipe failed: %s\n",
1076                             usbd_errstr(err));
1077                 }
1078                 err = usbd_close_pipe(sc->axe_ep[AXE_ENDPT_RX]);
1079                 if (err) {
1080                         if_printf(ifp, "close rx pipe failed: %s\n",
1081                             usbd_errstr(err));
1082                 }
1083                 sc->axe_ep[AXE_ENDPT_RX] = NULL;
1084         }
1085
1086         if (sc->axe_ep[AXE_ENDPT_TX] != NULL) {
1087                 err = usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_TX]);
1088                 if (err) {
1089                         if_printf(ifp, "abort tx pipe failed: %s\n",
1090                             usbd_errstr(err));
1091                 }
1092                 err = usbd_close_pipe(sc->axe_ep[AXE_ENDPT_TX]);
1093                 if (err) {
1094                         if_printf(ifp, "close tx pipe failed: %s\n",
1095                             usbd_errstr(err));
1096                 }
1097                 sc->axe_ep[AXE_ENDPT_TX] = NULL;
1098         }
1099
1100         if (sc->axe_ep[AXE_ENDPT_INTR] != NULL) {
1101                 err = usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_INTR]);
1102                 if (err) {
1103                         if_printf(ifp, "abort intr pipe failed: %s\n",
1104                             usbd_errstr(err));
1105                 }
1106                 err = usbd_close_pipe(sc->axe_ep[AXE_ENDPT_INTR]);
1107                 if (err) {
1108                         if_printf(ifp, "close intr pipe failed: %s\n",
1109                             usbd_errstr(err));
1110                 }
1111                 sc->axe_ep[AXE_ENDPT_INTR] = NULL;
1112         }
1113
1114         /* Free RX resources. */
1115         for (i = 0; i < AXE_RX_LIST_CNT; i++) {
1116                 if (sc->axe_cdata.axe_rx_chain[i].axe_buf != NULL) {
1117                         free(sc->axe_cdata.axe_rx_chain[i].axe_buf, M_USBDEV);
1118                         sc->axe_cdata.axe_rx_chain[i].axe_buf = NULL;
1119                 }
1120                 if (sc->axe_cdata.axe_rx_chain[i].axe_mbuf != NULL) {
1121                         m_freem(sc->axe_cdata.axe_rx_chain[i].axe_mbuf);
1122                         sc->axe_cdata.axe_rx_chain[i].axe_mbuf = NULL;
1123                 }
1124                 if (sc->axe_cdata.axe_rx_chain[i].axe_xfer != NULL) {
1125                         usbd_free_xfer(sc->axe_cdata.axe_rx_chain[i].axe_xfer);
1126                         sc->axe_cdata.axe_rx_chain[i].axe_xfer = NULL;
1127                 }
1128         }
1129
1130         /* Free TX resources. */
1131         for (i = 0; i < AXE_TX_LIST_CNT; i++) {
1132                 if (sc->axe_cdata.axe_tx_chain[i].axe_buf != NULL) {
1133                         free(sc->axe_cdata.axe_tx_chain[i].axe_buf, M_USBDEV);
1134                         sc->axe_cdata.axe_tx_chain[i].axe_buf = NULL;
1135                 }
1136                 if (sc->axe_cdata.axe_tx_chain[i].axe_mbuf != NULL) {
1137                         m_freem(sc->axe_cdata.axe_tx_chain[i].axe_mbuf);
1138                         sc->axe_cdata.axe_tx_chain[i].axe_mbuf = NULL;
1139                 }
1140                 if (sc->axe_cdata.axe_tx_chain[i].axe_xfer != NULL) {
1141                         usbd_free_xfer(sc->axe_cdata.axe_tx_chain[i].axe_xfer);
1142                         sc->axe_cdata.axe_tx_chain[i].axe_xfer = NULL;
1143                 }
1144         }
1145
1146         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1147         sc->axe_link = 0;
1148
1149         crit_exit();
1150 }
1151
1152 /*
1153  * Stop all chip I/O so that the kernel's probe routines don't
1154  * get confused by errant DMAs when rebooting.
1155  */
1156 Static void
1157 axe_shutdown(device_ptr_t dev)
1158 {
1159         struct axe_softc        *sc;
1160
1161         sc = device_get_softc(dev);
1162
1163         axe_stop(sc);
1164 }