The old USB ethernet code utilized a netisr to hand packets over
[dragonfly.git] / sys / dev / netif / aue / if_aue.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_aue.c,v 1.78 2003/12/17 14:23:07 sanpei Exp $
33  * $DragonFly: src/sys/dev/netif/aue/if_aue.c,v 1.17 2005/02/16 22:50:28 joerg Exp $
34  *
35  * $FreeBSD: src/sys/dev/usb/if_aue.c,v 1.19.2.18 2003/06/14 15:56:48 trhodes Exp $
36  */
37
38 /*
39  * ADMtek AN986 Pegasus and AN8511 Pegasus II USB to ethernet driver.
40  * Datasheet is available from http://www.admtek.com.tw.
41  *
42  * Written by Bill Paul <wpaul@ee.columbia.edu>
43  * Electrical Engineering Department
44  * Columbia University, New York City
45  */
46
47 /*
48  * The Pegasus chip uses four USB "endpoints" to provide 10/100 ethernet
49  * support: the control endpoint for reading/writing registers, burst
50  * read endpoint for packet reception, burst write for packet transmission
51  * and one for "interrupts." The chip uses the same RX filter scheme
52  * as the other ADMtek ethernet parts: one perfect filter entry for the
53  * the station address and a 64-bit multicast hash table. The chip supports
54  * both MII and HomePNA attachments.
55  *
56  * Since the maximum data transfer speed of USB is supposed to be 12Mbps,
57  * you're never really going to get 100Mbps speeds from this device. I
58  * think the idea is to allow the device to connect to 10 or 100Mbps
59  * networks, not necessarily to provide 100Mbps performance. Also, since
60  * the controller uses an external PHY chip, it's possible that board
61  * designers might simply choose a 10Mbps PHY.
62  *
63  * Registers are accessed using usbd_do_request(). Packet transfers are
64  * done using usbd_transfer() and friends.
65  */
66
67 #include <sys/param.h>
68 #include <sys/systm.h>
69 #include <sys/sockio.h>
70 #include <sys/mbuf.h>
71 #include <sys/malloc.h>
72 #include <sys/kernel.h>
73 #include <sys/socket.h>
74
75 #include <net/if.h>
76 #include <net/ifq_var.h>
77 #include <net/if_arp.h>
78 #include <net/ethernet.h>
79 #include <net/if_dl.h>
80 #include <net/if_media.h>
81
82 #include <net/bpf.h>
83
84 #include <sys/bus.h>
85 #include <machine/bus.h>
86 #if defined(DragonFly) || __FreeBSD_version < 500000
87 #include <machine/clock.h>
88 #endif
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 #include "if_auereg.h"
101
102 MODULE_DEPEND(aue, usb, 1, 1, 1);
103 MODULE_DEPEND(aue, miibus, 1, 1, 1);
104
105 /* "controller miibus0" required.  See GENERIC if you get errors here. */
106 #include "miibus_if.h"
107
108 struct aue_type {
109         struct usb_devno        aue_dev;
110         u_int16_t               aue_flags;
111 #define LSYS  0x0001          /* use Linksys reset */
112 #define PNA   0x0002          /* has Home PNA */
113 #define PII   0x0004          /* Pegasus II chip */
114 };
115
116 Static const struct aue_type aue_devs[] = {
117  {{ USB_VENDOR_3COM,            USB_PRODUCT_3COM_3C460B},         PII },
118  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX1},          PNA|PII },
119  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX2},          PII },
120  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_UFE1000},      LSYS },
121  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX4},          PNA },
122  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX5},          PNA },
123  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX6},          PII },
124  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX7},          PII },
125  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX8},          PII },
126  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX9},          PNA },
127  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX10},         0 },
128  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_DSB650TX_PNA}, 0 },
129  {{ USB_VENDOR_ACCTON,          USB_PRODUCT_ACCTON_USB320_EC},    0 },
130  {{ USB_VENDOR_ACCTON,          USB_PRODUCT_ACCTON_SS1001},       PII },
131  {{ USB_VENDOR_ADMTEK,          USB_PRODUCT_ADMTEK_PEGASUS},      PNA },
132  {{ USB_VENDOR_ADMTEK,          USB_PRODUCT_ADMTEK_PEGASUSII},    PII },
133  {{ USB_VENDOR_BELKIN,          USB_PRODUCT_BELKIN_USB2LAN},      PII },
134  {{ USB_VENDOR_BILLIONTON,      USB_PRODUCT_BILLIONTON_USB100},   0 },
135  {{ USB_VENDOR_BILLIONTON,      USB_PRODUCT_BILLIONTON_USBLP100}, PNA },
136  {{ USB_VENDOR_BILLIONTON,      USB_PRODUCT_BILLIONTON_USBEL100}, 0 },
137  {{ USB_VENDOR_BILLIONTON,      USB_PRODUCT_BILLIONTON_USBE100},  PII },
138  {{ USB_VENDOR_COREGA,          USB_PRODUCT_COREGA_FETHER_USB_TX}, 0 },
139  {{ USB_VENDOR_COREGA,          USB_PRODUCT_COREGA_FETHER_USB_TXS},PII },
140  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX4},     LSYS|PII },
141  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX1},     LSYS },
142  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX},      LSYS },
143  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX_PNA},  PNA },
144  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX3},     LSYS|PII },
145  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX2},     LSYS|PII },
146  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650},        LSYS },
147  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBTX0},     0 },
148  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBTX1},     LSYS },
149  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBTX2},     0 },
150  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBTX3},     LSYS },
151  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBLTX},     PII },
152  {{ USB_VENDOR_ELSA,            USB_PRODUCT_ELSA_USB2ETHERNET},   0 },
153  {{ USB_VENDOR_HAWKING,         USB_PRODUCT_HAWKING_UF100},       PII },
154  {{ USB_VENDOR_HP,              USB_PRODUCT_HP_HN210E},           PII },
155  {{ USB_VENDOR_IODATA,          USB_PRODUCT_IODATA_USBETTX},      0 },
156  {{ USB_VENDOR_IODATA,          USB_PRODUCT_IODATA_USBETTXS},     PII },
157  {{ USB_VENDOR_KINGSTON,        USB_PRODUCT_KINGSTON_KNU101TX},   0 },
158  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB10TX1},    LSYS|PII },
159  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB10T},      LSYS },
160  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB100TX},    LSYS },
161  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB100H1},    LSYS|PNA },
162  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB10TA},     LSYS },
163  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB10TX2},    LSYS|PII },
164  {{ USB_VENDOR_MICROSOFT,       USB_PRODUCT_MICROSOFT_MN110},     PII },
165  {{ USB_VENDOR_MELCO,           USB_PRODUCT_MELCO_LUATX1},        0 },
166  {{ USB_VENDOR_MELCO,           USB_PRODUCT_MELCO_LUATX5},        0 },
167  {{ USB_VENDOR_MELCO,           USB_PRODUCT_MELCO_LUA2TX5},       PII },
168  {{ USB_VENDOR_SIEMENS,         USB_PRODUCT_SIEMENS_SPEEDSTREAM}, PII },
169  {{ USB_VENDOR_SMARTBRIDGES,    USB_PRODUCT_SMARTBRIDGES_SMARTNIC},PII },
170  {{ USB_VENDOR_SMC,             USB_PRODUCT_SMC_2202USB},         0 },
171  {{ USB_VENDOR_SMC,             USB_PRODUCT_SMC_2206USB},         PII },
172  {{ USB_VENDOR_SOHOWARE,        USB_PRODUCT_SOHOWARE_NUB100},     0 },
173 };
174 #define aue_lookup(v, p) ((const struct aue_type *)usb_lookup(aue_devs, v, p))
175
176 Static int aue_match(device_ptr_t);
177 Static int aue_attach(device_ptr_t);
178 Static int aue_detach(device_ptr_t);
179
180 Static void aue_reset_pegasus_II(struct aue_softc *sc);
181 Static int aue_tx_list_init(struct aue_softc *);
182 Static int aue_rx_list_init(struct aue_softc *);
183 Static int aue_newbuf(struct aue_softc *, struct aue_chain *, struct mbuf *);
184 Static int aue_encap(struct aue_softc *, struct mbuf *, int);
185 #ifdef AUE_INTR_PIPE
186 Static void aue_intr(usbd_xfer_handle, usbd_private_handle, usbd_status);
187 #endif
188 Static void aue_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
189 Static void aue_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
190 Static void aue_tick(void *);
191 Static void aue_rxstart(struct ifnet *);
192 Static void aue_start(struct ifnet *);
193 Static int aue_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
194 Static void aue_init(void *);
195 Static void aue_stop(struct aue_softc *);
196 Static void aue_watchdog(struct ifnet *);
197 Static void aue_shutdown(device_ptr_t);
198 Static int aue_ifmedia_upd(struct ifnet *);
199 Static void aue_ifmedia_sts(struct ifnet *, struct ifmediareq *);
200
201 Static void aue_eeprom_getword(struct aue_softc *, int, u_int16_t *);
202 Static void aue_read_eeprom(struct aue_softc *, caddr_t, int, int, int);
203 Static int aue_miibus_readreg(device_ptr_t, int, int);
204 Static int aue_miibus_writereg(device_ptr_t, int, int, int);
205 Static void aue_miibus_statchg(device_ptr_t);
206
207 Static void aue_setmulti(struct aue_softc *);
208 Static uint32_t aue_mchash(const uint8_t *);
209 Static void aue_reset(struct aue_softc *);
210
211 Static int aue_csr_read_1(struct aue_softc *, int);
212 Static int aue_csr_write_1(struct aue_softc *, int, int);
213 Static int aue_csr_read_2(struct aue_softc *, int);
214 Static int aue_csr_write_2(struct aue_softc *, int, int);
215
216 Static device_method_t aue_methods[] = {
217         /* Device interface */
218         DEVMETHOD(device_probe,         aue_match),
219         DEVMETHOD(device_attach,        aue_attach),
220         DEVMETHOD(device_detach,        aue_detach),
221         DEVMETHOD(device_shutdown,      aue_shutdown),
222
223         /* bus interface */
224         DEVMETHOD(bus_print_child,      bus_generic_print_child),
225         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
226
227         /* MII interface */
228         DEVMETHOD(miibus_readreg,       aue_miibus_readreg),
229         DEVMETHOD(miibus_writereg,      aue_miibus_writereg),
230         DEVMETHOD(miibus_statchg,       aue_miibus_statchg),
231
232         { 0, 0 }
233 };
234
235 Static driver_t aue_driver = {
236         "aue",
237         aue_methods,
238         sizeof(struct aue_softc)
239 };
240
241 Static devclass_t aue_devclass;
242
243 DECLARE_DUMMY_MODULE(if_aue);
244 DRIVER_MODULE(aue, uhub, aue_driver, aue_devclass, usbd_driver_load, 0);
245 DRIVER_MODULE(miibus, aue, miibus_driver, miibus_devclass, 0, 0);
246
247 #define AUE_SETBIT(sc, reg, x)                          \
248         aue_csr_write_1(sc, reg, aue_csr_read_1(sc, reg) | (x))
249
250 #define AUE_CLRBIT(sc, reg, x)                          \
251         aue_csr_write_1(sc, reg, aue_csr_read_1(sc, reg) & ~(x))
252
253 Static int
254 aue_csr_read_1(struct aue_softc *sc, int reg)
255 {
256         usb_device_request_t    req;
257         usbd_status             err;
258         u_int8_t                val = 0;
259
260         if (sc->aue_dying)
261                 return(0);
262
263         AUE_LOCK(sc);
264
265         req.bmRequestType = UT_READ_VENDOR_DEVICE;
266         req.bRequest = AUE_UR_READREG;
267         USETW(req.wValue, 0);
268         USETW(req.wIndex, reg);
269         USETW(req.wLength, 1);
270
271         err = usbd_do_request(sc->aue_udev, &req, &val);
272
273         AUE_UNLOCK(sc);
274
275         if (err) {
276                 return (0);
277         }
278
279         return (val);
280 }
281
282 Static int
283 aue_csr_read_2(struct aue_softc *sc, int reg)
284 {
285         usb_device_request_t    req;
286         usbd_status             err;
287         u_int16_t               val = 0;
288
289         if (sc->aue_dying)
290                 return (0);
291
292         AUE_LOCK(sc);
293
294         req.bmRequestType = UT_READ_VENDOR_DEVICE;
295         req.bRequest = AUE_UR_READREG;
296         USETW(req.wValue, 0);
297         USETW(req.wIndex, reg);
298         USETW(req.wLength, 2);
299
300         err = usbd_do_request(sc->aue_udev, &req, &val);
301
302         AUE_UNLOCK(sc);
303
304         if (err) {
305                 return (0);
306         }
307
308         return (val);
309 }
310
311 Static int
312 aue_csr_write_1(struct aue_softc *sc, int reg, int val)
313 {
314         usb_device_request_t    req;
315         usbd_status             err;
316
317         if (sc->aue_dying)
318                 return (0);
319
320         AUE_LOCK(sc);
321
322         req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
323         req.bRequest = AUE_UR_WRITEREG;
324         USETW(req.wValue, val);
325         USETW(req.wIndex, reg);
326         USETW(req.wLength, 1);
327
328         err = usbd_do_request(sc->aue_udev, &req, &val);
329
330         AUE_UNLOCK(sc);
331
332         if (err) {
333                 return (-1);
334         }
335
336         return (0);
337 }
338
339 Static int
340 aue_csr_write_2(struct aue_softc *sc, int reg, int val)
341 {
342         usb_device_request_t    req;
343         usbd_status             err;
344
345         if (sc->aue_dying)
346                 return (0);
347
348         AUE_LOCK(sc);
349
350         req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
351         req.bRequest = AUE_UR_WRITEREG;
352         USETW(req.wValue, val);
353         USETW(req.wIndex, reg);
354         USETW(req.wLength, 2);
355
356         err = usbd_do_request(sc->aue_udev, &req, &val);
357
358         AUE_UNLOCK(sc);
359
360         if (err) {
361                 return (-1);
362         }
363
364         return (0);
365 }
366
367 /*
368  * Read a word of data stored in the EEPROM at address 'addr.'
369  */
370 Static void
371 aue_eeprom_getword(struct aue_softc *sc, int addr, u_int16_t *dest)
372 {
373         int             i;
374         u_int16_t       word = 0;
375
376         aue_csr_write_1(sc, AUE_EE_REG, addr);
377         aue_csr_write_1(sc, AUE_EE_CTL, AUE_EECTL_READ);
378
379         for (i = 0; i < AUE_TIMEOUT; i++) {
380                 if (aue_csr_read_1(sc, AUE_EE_CTL) & AUE_EECTL_DONE)
381                         break;
382         }
383
384         if (i == AUE_TIMEOUT) {
385                 printf("aue%d: EEPROM read timed out\n",
386                     sc->aue_unit);
387         }
388
389         word = aue_csr_read_2(sc, AUE_EE_DATA);
390         *dest = word;
391
392         return;
393 }
394
395 /*
396  * Read a sequence of words from the EEPROM.
397  */
398 Static void
399 aue_read_eeprom(struct aue_softc *sc, caddr_t dest, int off, int cnt, int swap)
400 {
401         int                     i;
402         u_int16_t               word = 0, *ptr;
403
404         for (i = 0; i < cnt; i++) {
405                 aue_eeprom_getword(sc, off + i, &word);
406                 ptr = (u_int16_t *)(dest + (i * 2));
407                 if (swap)
408                         *ptr = ntohs(word);
409                 else
410                         *ptr = word;
411         }
412
413         return;
414 }
415
416 Static int
417 aue_miibus_readreg(device_ptr_t dev, int phy, int reg)
418 {
419         struct aue_softc        *sc = USBGETSOFTC(dev);
420         int                     i;
421         u_int16_t               val = 0;
422
423         /*
424          * The Am79C901 HomePNA PHY actually contains
425          * two transceivers: a 1Mbps HomePNA PHY and a
426          * 10Mbps full/half duplex ethernet PHY with
427          * NWAY autoneg. However in the ADMtek adapter,
428          * only the 1Mbps PHY is actually connected to
429          * anything, so we ignore the 10Mbps one. It
430          * happens to be configured for MII address 3,
431          * so we filter that out.
432          */
433         if (sc->aue_vendor == USB_VENDOR_ADMTEK &&
434             sc->aue_product == USB_PRODUCT_ADMTEK_PEGASUS) {
435                 if (phy == 3)
436                         return (0);
437 #ifdef notdef
438                 if (phy != 1)
439                         return (0);
440 #endif
441         }
442
443         aue_csr_write_1(sc, AUE_PHY_ADDR, phy);
444         aue_csr_write_1(sc, AUE_PHY_CTL, reg | AUE_PHYCTL_READ);
445
446         for (i = 0; i < AUE_TIMEOUT; i++) {
447                 if (aue_csr_read_1(sc, AUE_PHY_CTL) & AUE_PHYCTL_DONE)
448                         break;
449         }
450
451         if (i == AUE_TIMEOUT) {
452                 printf("aue%d: MII read timed out\n", sc->aue_unit);
453         }
454
455         val = aue_csr_read_2(sc, AUE_PHY_DATA);
456
457         return (val);
458 }
459
460 Static int
461 aue_miibus_writereg(device_ptr_t dev, int phy, int reg, int data)
462 {
463         struct aue_softc        *sc = USBGETSOFTC(dev);
464         int                     i;
465
466         if (phy == 3)
467                 return (0);
468
469         aue_csr_write_2(sc, AUE_PHY_DATA, data);
470         aue_csr_write_1(sc, AUE_PHY_ADDR, phy);
471         aue_csr_write_1(sc, AUE_PHY_CTL, reg | AUE_PHYCTL_WRITE);
472
473         for (i = 0; i < AUE_TIMEOUT; i++) {
474                 if (aue_csr_read_1(sc, AUE_PHY_CTL) & AUE_PHYCTL_DONE)
475                         break;
476         }
477
478         if (i == AUE_TIMEOUT) {
479                 printf("aue%d: MII read timed out\n",
480                     sc->aue_unit);
481         }
482
483         return(0);
484 }
485
486 Static void
487 aue_miibus_statchg(device_ptr_t dev)
488 {
489         struct aue_softc        *sc = USBGETSOFTC(dev);
490         struct mii_data         *mii = GET_MII(sc);
491
492         AUE_CLRBIT(sc, AUE_CTL0, AUE_CTL0_RX_ENB | AUE_CTL0_TX_ENB);
493         if (IFM_SUBTYPE(mii->mii_media_active) == IFM_100_TX) {
494                 AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_SPEEDSEL);
495         } else {
496                 AUE_CLRBIT(sc, AUE_CTL1, AUE_CTL1_SPEEDSEL);
497         }
498
499         if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX)
500                 AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_DUPLEX);
501         else
502                 AUE_CLRBIT(sc, AUE_CTL1, AUE_CTL1_DUPLEX);
503
504         AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_RX_ENB | AUE_CTL0_TX_ENB);
505
506         /*
507          * Set the LED modes on the LinkSys adapter.
508          * This turns on the 'dual link LED' bin in the auxmode
509          * register of the Broadcom PHY.
510          */
511         if (sc->aue_flags & LSYS) {
512                 u_int16_t auxmode;
513                 auxmode = aue_miibus_readreg(dev, 0, 0x1b);
514                 aue_miibus_writereg(dev, 0, 0x1b, auxmode | 0x04);
515         }
516
517         return;
518 }
519
520 #define AUE_POLY        0xEDB88320
521 #define AUE_BITS        6
522
523 Static u_int32_t
524 aue_mchash(const uint8_t *addr)
525 {
526         uint32_t crc;
527         int idx, bit;
528         uint8_t data;
529
530         /* Compute CRC for the address value. */
531         crc = 0xFFFFFFFF; /* initial value */
532
533         for (idx = 0; idx < 6; idx++) {
534                 for (data = *addr++, bit = 0; bit < 8; bit++, data >>= 1)
535                         crc = (crc >> 1) ^ (((crc ^ data) & 1) ? AUE_POLY : 0);
536         }
537
538         return (crc & ((1 << AUE_BITS) - 1));
539 }
540
541 Static void
542 aue_setmulti(struct aue_softc *sc)
543 {
544         struct ifnet            *ifp;
545         struct ifmultiaddr      *ifma;
546         u_int32_t               h = 0, i;
547
548         ifp = &sc->arpcom.ac_if;
549
550         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
551                 AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_ALLMULTI);
552                 return;
553         }
554
555         AUE_CLRBIT(sc, AUE_CTL0, AUE_CTL0_ALLMULTI);
556
557         /* first, zot all the existing hash bits */
558         for (i = 0; i < 8; i++)
559                 aue_csr_write_1(sc, AUE_MAR0 + i, 0);
560
561         /* now program new ones */
562 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
563         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
564 #else
565         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
566 #endif
567         {
568                 if (ifma->ifma_addr->sa_family != AF_LINK)
569                         continue;
570                 h = aue_mchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
571                 AUE_SETBIT(sc, AUE_MAR + (h >> 3), 1 << (h & 0x7));
572         }
573
574         return;
575 }
576
577 Static void
578 aue_reset_pegasus_II(struct aue_softc *sc)
579 {
580         /* Magic constants taken from Linux driver. */
581         aue_csr_write_1(sc, AUE_REG_1D, 0);
582         aue_csr_write_1(sc, AUE_REG_7B, 2);
583 #if 0
584         if ((sc->aue_flags & HAS_HOME_PNA) && mii_mode)
585                 aue_csr_write_1(sc, AUE_REG_81, 6);
586         else
587 #endif
588                 aue_csr_write_1(sc, AUE_REG_81, 2);
589 }
590
591 Static void
592 aue_reset(struct aue_softc *sc)
593 {
594         int             i;
595
596         AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_RESETMAC);
597
598         for (i = 0; i < AUE_TIMEOUT; i++) {
599                 if (!(aue_csr_read_1(sc, AUE_CTL1) & AUE_CTL1_RESETMAC))
600                         break;
601         }
602
603         if (i == AUE_TIMEOUT)
604                 printf("aue%d: reset failed\n", sc->aue_unit);
605
606         /*
607          * The PHY(s) attached to the Pegasus chip may be held
608          * in reset until we flip on the GPIO outputs. Make sure
609          * to set the GPIO pins high so that the PHY(s) will
610          * be enabled.
611          *
612          * Note: We force all of the GPIO pins low first, *then*
613          * enable the ones we want.
614          */
615         aue_csr_write_1(sc, AUE_GPIO0, AUE_GPIO_OUT0|AUE_GPIO_SEL0);
616         aue_csr_write_1(sc, AUE_GPIO0, AUE_GPIO_OUT0|AUE_GPIO_SEL0|AUE_GPIO_SEL1);
617
618         if (sc->aue_flags & LSYS) {
619                 /* Grrr. LinkSys has to be different from everyone else. */
620                 aue_csr_write_1(sc, AUE_GPIO0,
621                     AUE_GPIO_SEL0 | AUE_GPIO_SEL1);
622                 aue_csr_write_1(sc, AUE_GPIO0,
623                     AUE_GPIO_SEL0 | AUE_GPIO_SEL1 | AUE_GPIO_OUT0);
624         }
625
626         if (sc->aue_flags & PII)
627                 aue_reset_pegasus_II(sc);
628
629         /* Wait a little while for the chip to get its brains in order. */
630         DELAY(10000);
631
632         return;
633 }
634
635 /*
636  * Probe for a Pegasus chip.
637  */
638 USB_MATCH(aue)
639 {
640         USB_MATCH_START(aue, uaa);
641
642         if (uaa->iface != NULL)
643                 return (UMATCH_NONE);
644
645         return (aue_lookup(uaa->vendor, uaa->product) != NULL ?
646                 UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
647 }
648
649 /*
650  * Attach the interface. Allocate softc structures, do ifmedia
651  * setup and ethernet/BPF attach.
652  */
653 USB_ATTACH(aue)
654 {
655         USB_ATTACH_START(aue, sc, uaa);
656         char                    devinfo[1024];
657         u_char                  eaddr[ETHER_ADDR_LEN];
658         struct ifnet            *ifp;
659         usbd_interface_handle   iface;
660         usbd_status             err;
661         usb_interface_descriptor_t      *id;
662         usb_endpoint_descriptor_t       *ed;
663         int                     i;
664
665         bzero(sc, sizeof(struct aue_softc));
666
667         usbd_devinfo(uaa->device, 0, devinfo);
668
669         sc->aue_udev = uaa->device;
670         sc->aue_unit = device_get_unit(self);
671         callout_init(&sc->aue_stat_timer);
672
673         if (usbd_set_config_no(sc->aue_udev, AUE_CONFIG_NO, 0)) {
674                 printf("aue%d: getting interface handle failed\n",
675                     sc->aue_unit);
676                 USB_ATTACH_ERROR_RETURN;
677         }
678
679         err = usbd_device2interface_handle(uaa->device, AUE_IFACE_IDX, &iface);
680         if (err) {
681                 printf("aue%d: getting interface handle failed\n",
682                     sc->aue_unit);
683                 USB_ATTACH_ERROR_RETURN;
684         }
685
686         sc->aue_iface = iface;
687         sc->aue_flags = aue_lookup(uaa->vendor, uaa->product)->aue_flags;
688
689         sc->aue_product = uaa->product;
690         sc->aue_vendor = uaa->vendor;
691
692         id = usbd_get_interface_descriptor(sc->aue_iface);
693
694         usbd_devinfo(uaa->device, 0, devinfo);
695         device_set_desc_copy(self, devinfo);
696         printf("%s: %s\n", USBDEVNAME(self), devinfo);
697
698         /* Find endpoints. */
699         for (i = 0; i < id->bNumEndpoints; i++) {
700                 ed = usbd_interface2endpoint_descriptor(iface, i);
701                 if (ed == NULL) {
702                         printf("aue%d: couldn't get ep %d\n",
703                             sc->aue_unit, i);
704                         USB_ATTACH_ERROR_RETURN;
705                 }
706                 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
707                     UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
708                         sc->aue_ed[AUE_ENDPT_RX] = ed->bEndpointAddress;
709                 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
710                            UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
711                         sc->aue_ed[AUE_ENDPT_TX] = ed->bEndpointAddress;
712                 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
713                            UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
714                         sc->aue_ed[AUE_ENDPT_INTR] = ed->bEndpointAddress;
715                 }
716         }
717
718 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
719         mtx_init(&sc->aue_mtx, device_get_nameunit(self), MTX_NETWORK_LOCK,
720             MTX_DEF | MTX_RECURSE);
721 #endif
722         AUE_LOCK(sc);
723
724         /* Reset the adapter. */
725         aue_reset(sc);
726
727         /*
728          * Get station address from the EEPROM.
729          */
730         aue_read_eeprom(sc, (caddr_t)&eaddr, 0, 3, 0);
731
732         ifp = &sc->arpcom.ac_if;
733         ifp->if_softc = sc;
734         if_initname(ifp, "aue", sc->aue_unit);
735         ifp->if_mtu = ETHERMTU;
736         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
737         ifp->if_ioctl = aue_ioctl;
738         ifp->if_start = aue_start;
739         ifp->if_watchdog = aue_watchdog;
740         ifp->if_init = aue_init;
741         ifp->if_baudrate = 10000000;
742         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
743         ifq_set_ready(&ifp->if_snd);
744
745         /*
746          * Do MII setup.
747          * NOTE: Doing this causes child devices to be attached to us,
748          * which we would normally disconnect at in the detach routine
749          * using device_delete_child(). However the USB code is set up
750          * such that when this driver is removed, all children devices
751          * are removed as well. In effect, the USB code ends up detaching
752          * all of our children for us, so we don't have to do is ourselves
753          * in aue_detach(). It's important to point this out since if
754          * we *do* try to detach the child devices ourselves, we will
755          * end up getting the children deleted twice, which will crash
756          * the system.
757          */
758         if (mii_phy_probe(self, &sc->aue_miibus,
759             aue_ifmedia_upd, aue_ifmedia_sts)) {
760                 printf("aue%d: MII without any PHY!\n", sc->aue_unit);
761                 AUE_UNLOCK(sc);
762 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
763                 mtx_destroy(&sc->aue_mtx);
764 #endif
765                 USB_ATTACH_ERROR_RETURN;
766         }
767
768         /*
769          * Call MI attach routine.
770          */
771         ether_ifattach(ifp, eaddr);
772         usb_register_netisr();
773         sc->aue_dying = 0;
774
775         AUE_UNLOCK(sc);
776         USB_ATTACH_SUCCESS_RETURN;
777 }
778
779 Static int
780 aue_detach(device_ptr_t dev)
781 {
782         struct aue_softc        *sc;
783         struct ifnet            *ifp;
784
785         sc = device_get_softc(dev);
786         AUE_LOCK(sc);
787         ifp = &sc->arpcom.ac_if;
788
789         sc->aue_dying = 1;
790         callout_stop(&sc->aue_stat_timer);
791         ether_ifdetach(ifp);
792
793         if (sc->aue_ep[AUE_ENDPT_TX] != NULL)
794                 usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_TX]);
795         if (sc->aue_ep[AUE_ENDPT_RX] != NULL)
796                 usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_RX]);
797 #ifdef AUE_INTR_PIPE
798         if (sc->aue_ep[AUE_ENDPT_INTR] != NULL)
799                 usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_INTR]);
800 #endif
801
802         AUE_UNLOCK(sc);
803 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
804         mtx_destroy(&sc->aue_mtx);
805 #endif
806
807         return (0);
808 }
809
810 /*
811  * Initialize an RX descriptor and attach an MBUF cluster.
812  */
813 Static int
814 aue_newbuf(struct aue_softc *sc, struct aue_chain *c, struct mbuf *m)
815 {
816         struct mbuf             *m_new = NULL;
817
818         if (m == NULL) {
819                 MGETHDR(m_new, MB_DONTWAIT, MT_DATA);
820                 if (m_new == NULL) {
821                         printf("aue%d: no memory for rx list "
822                             "-- packet dropped!\n", sc->aue_unit);
823                         return (ENOBUFS);
824                 }
825
826                 MCLGET(m_new, MB_DONTWAIT);
827                 if (!(m_new->m_flags & M_EXT)) {
828                         printf("aue%d: no memory for rx list "
829                             "-- packet dropped!\n", sc->aue_unit);
830                         m_freem(m_new);
831                         return (ENOBUFS);
832                 }
833                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
834         } else {
835                 m_new = m;
836                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
837                 m_new->m_data = m_new->m_ext.ext_buf;
838         }
839
840         m_adj(m_new, ETHER_ALIGN);
841         c->aue_mbuf = m_new;
842
843         return (0);
844 }
845
846 Static int
847 aue_rx_list_init(struct aue_softc *sc)
848 {
849         struct aue_cdata        *cd;
850         struct aue_chain        *c;
851         int                     i;
852
853         cd = &sc->aue_cdata;
854         for (i = 0; i < AUE_RX_LIST_CNT; i++) {
855                 c = &cd->aue_rx_chain[i];
856                 c->aue_sc = sc;
857                 c->aue_idx = i;
858                 if (aue_newbuf(sc, c, NULL) == ENOBUFS)
859                         return (ENOBUFS);
860                 if (c->aue_xfer == NULL) {
861                         c->aue_xfer = usbd_alloc_xfer(sc->aue_udev);
862                         if (c->aue_xfer == NULL)
863                                 return (ENOBUFS);
864                 }
865         }
866
867         return (0);
868 }
869
870 Static int
871 aue_tx_list_init(struct aue_softc *sc)
872 {
873         struct aue_cdata        *cd;
874         struct aue_chain        *c;
875         int                     i;
876
877         cd = &sc->aue_cdata;
878         for (i = 0; i < AUE_TX_LIST_CNT; i++) {
879                 c = &cd->aue_tx_chain[i];
880                 c->aue_sc = sc;
881                 c->aue_idx = i;
882                 c->aue_mbuf = NULL;
883                 if (c->aue_xfer == NULL) {
884                         c->aue_xfer = usbd_alloc_xfer(sc->aue_udev);
885                         if (c->aue_xfer == NULL)
886                                 return (ENOBUFS);
887                 }
888                 c->aue_buf = malloc(AUE_BUFSZ, M_USBDEV, M_WAITOK);
889                 if (c->aue_buf == NULL)
890                         return (ENOBUFS);
891         }
892
893         return (0);
894 }
895
896 #ifdef AUE_INTR_PIPE
897 Static void
898 aue_intr(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
899 {
900         struct aue_softc        *sc = priv;
901         struct ifnet            *ifp;
902         struct aue_intrpkt      *p;
903
904         AUE_LOCK(sc);
905         ifp = &sc->arpcom.ac_if;
906
907         if (!(ifp->if_flags & IFF_RUNNING)) {
908                 AUE_UNLOCK(sc);
909                 return;
910         }
911
912         if (status != USBD_NORMAL_COMPLETION) {
913                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
914                         AUE_UNLOCK(sc);
915                         return;
916                 }
917                 printf("aue%d: usb error on intr: %s\n", sc->aue_unit,
918                     usbd_errstr(status));
919                 if (status == USBD_STALLED)
920                         usbd_clear_endpoint_stall(sc->aue_ep[AUE_ENDPT_RX]);
921                 AUE_UNLOCK(sc);
922                 return;
923         }
924
925         usbd_get_xfer_status(xfer, NULL, (void **)&p, NULL, NULL);
926
927         if (p->aue_txstat0)
928                 ifp->if_oerrors++;
929
930         if (p->aue_txstat0 & (AUE_TXSTAT0_LATECOLL & AUE_TXSTAT0_EXCESSCOLL))
931                 ifp->if_collisions++;
932
933         AUE_UNLOCK(sc);
934         return;
935 }
936 #endif
937
938 Static void
939 aue_rxstart(struct ifnet *ifp)
940 {
941         struct aue_softc        *sc;
942         struct aue_chain        *c;
943
944         sc = ifp->if_softc;
945         AUE_LOCK(sc);
946         c = &sc->aue_cdata.aue_rx_chain[sc->aue_cdata.aue_rx_prod];
947
948         if (aue_newbuf(sc, c, NULL) == ENOBUFS) {
949                 ifp->if_ierrors++;
950                 AUE_UNLOCK(sc);
951                 return;
952         }
953
954         /* Setup new transfer. */
955         usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_RX],
956             c, mtod(c->aue_mbuf, char *), AUE_BUFSZ, USBD_SHORT_XFER_OK,
957             USBD_NO_TIMEOUT, aue_rxeof);
958         usbd_transfer(c->aue_xfer);
959
960         AUE_UNLOCK(sc);
961         return;
962 }
963
964 /*
965  * A frame has been uploaded: pass the resulting mbuf chain up to
966  * the higher level protocols.
967  */
968 Static void
969 aue_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
970 {
971         struct aue_chain        *c = priv;
972         struct aue_softc        *sc = c->aue_sc;
973         struct mbuf             *m;
974         struct ifnet            *ifp;
975         int                     total_len = 0;
976         struct aue_rxpkt        r;
977
978         if (sc->aue_dying)
979                 return;
980         AUE_LOCK(sc);
981         ifp = &sc->arpcom.ac_if;
982
983         if (!(ifp->if_flags & IFF_RUNNING)) {
984                 AUE_UNLOCK(sc);
985                 return;
986         }
987
988         if (status != USBD_NORMAL_COMPLETION) {
989                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
990                         AUE_UNLOCK(sc);
991                         return;
992                 }
993                 if (usbd_ratecheck(&sc->aue_rx_notice))
994                         printf("aue%d: usb error on rx: %s\n", sc->aue_unit,
995                             usbd_errstr(status));
996                 if (status == USBD_STALLED)
997                         usbd_clear_endpoint_stall(sc->aue_ep[AUE_ENDPT_RX]);
998                 goto done;
999         }
1000
1001         usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
1002
1003         if (total_len <= 4 + ETHER_CRC_LEN) {
1004                 ifp->if_ierrors++;
1005                 goto done;
1006         }
1007
1008         m = c->aue_mbuf;
1009         bcopy(mtod(m, char *) + total_len - 4, (char *)&r, sizeof(r));
1010
1011         /* Turn off all the non-error bits in the rx status word. */
1012         r.aue_rxstat &= AUE_RXSTAT_MASK;
1013
1014         if (r.aue_rxstat) {
1015                 ifp->if_ierrors++;
1016                 goto done;
1017         }
1018
1019         /* No errors; receive the packet. */
1020         total_len -= (4 + ETHER_CRC_LEN);
1021
1022         ifp->if_ipackets++;
1023         m->m_pkthdr.rcvif = ifp;
1024         m->m_pkthdr.len = m->m_len = total_len;
1025
1026         /* Put the packet on the special USB input queue. */
1027         usb_ether_input(m);
1028         aue_start(ifp);
1029         AUE_UNLOCK(sc);
1030         return;
1031 done:
1032
1033         /* Setup new transfer. */
1034         usbd_setup_xfer(xfer, sc->aue_ep[AUE_ENDPT_RX],
1035             c, mtod(c->aue_mbuf, char *), AUE_BUFSZ, USBD_SHORT_XFER_OK,
1036             USBD_NO_TIMEOUT, aue_rxeof);
1037         usbd_transfer(xfer);
1038
1039         AUE_UNLOCK(sc);
1040         return;
1041 }
1042
1043 /*
1044  * A frame was downloaded to the chip. It's safe for us to clean up
1045  * the list buffers.
1046  */
1047
1048 Static void
1049 aue_txeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
1050 {
1051         struct aue_chain        *c = priv;
1052         struct aue_softc        *sc = c->aue_sc;
1053         struct ifnet            *ifp;
1054         usbd_status             err;
1055
1056         AUE_LOCK(sc);
1057         ifp = &sc->arpcom.ac_if;
1058
1059         if (status != USBD_NORMAL_COMPLETION) {
1060                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
1061                         AUE_UNLOCK(sc);
1062                         return;
1063                 }
1064                 printf("aue%d: usb error on tx: %s\n", sc->aue_unit,
1065                     usbd_errstr(status));
1066                 if (status == USBD_STALLED)
1067                         usbd_clear_endpoint_stall(sc->aue_ep[AUE_ENDPT_TX]);
1068                 AUE_UNLOCK(sc);
1069                 return;
1070         }
1071
1072         ifp->if_timer = 0;
1073         ifp->if_flags &= ~IFF_OACTIVE;
1074         usbd_get_xfer_status(c->aue_xfer, NULL, NULL, NULL, &err);
1075
1076         if (c->aue_mbuf != NULL) {
1077                 m_free(c->aue_mbuf);
1078                 c->aue_mbuf = NULL;
1079         }
1080
1081         if (err)
1082                 ifp->if_oerrors++;
1083         else
1084                 ifp->if_opackets++;
1085
1086         if (!ifq_is_empty(&ifp->if_snd))
1087                 (*ifp->if_start)(ifp);
1088
1089         AUE_UNLOCK(sc);
1090
1091         return;
1092 }
1093
1094 Static void
1095 aue_tick(void *xsc)
1096 {
1097         struct aue_softc        *sc = xsc;
1098         struct ifnet            *ifp;
1099         struct mii_data         *mii;
1100
1101         if (sc == NULL)
1102                 return;
1103
1104         AUE_LOCK(sc);
1105
1106         ifp = &sc->arpcom.ac_if;
1107         mii = GET_MII(sc);
1108         if (mii == NULL) {
1109                 AUE_UNLOCK(sc);
1110                 return;
1111         }
1112
1113         mii_tick(mii);
1114         if (!sc->aue_link && mii->mii_media_status & IFM_ACTIVE &&
1115             IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
1116                 sc->aue_link++;
1117                 if (!ifq_is_empty(&ifp->if_snd))
1118                         aue_start(ifp);
1119         }
1120
1121         callout_reset(&sc->aue_stat_timer, hz, aue_tick, sc);
1122
1123         AUE_UNLOCK(sc);
1124
1125         return;
1126 }
1127
1128 Static int
1129 aue_encap(struct aue_softc *sc, struct mbuf *m, int idx)
1130 {
1131         int                     total_len;
1132         struct aue_chain        *c;
1133         usbd_status             err;
1134
1135         c = &sc->aue_cdata.aue_tx_chain[idx];
1136
1137         /*
1138          * Copy the mbuf data into a contiguous buffer, leaving two
1139          * bytes at the beginning to hold the frame length.
1140          */
1141         m_copydata(m, 0, m->m_pkthdr.len, c->aue_buf + 2);
1142         c->aue_mbuf = m;
1143
1144         total_len = m->m_pkthdr.len + 2;
1145
1146         /*
1147          * The ADMtek documentation says that the packet length is
1148          * supposed to be specified in the first two bytes of the
1149          * transfer, however it actually seems to ignore this info
1150          * and base the frame size on the bulk transfer length.
1151          */
1152         c->aue_buf[0] = (u_int8_t)m->m_pkthdr.len;
1153         c->aue_buf[1] = (u_int8_t)(m->m_pkthdr.len >> 8);
1154
1155         usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_TX],
1156             c, c->aue_buf, total_len, USBD_FORCE_SHORT_XFER,
1157             10000, aue_txeof);
1158
1159         /* Transmit */
1160         err = usbd_transfer(c->aue_xfer);
1161         if (err != USBD_IN_PROGRESS) {
1162                 aue_stop(sc);
1163                 return (EIO);
1164         }
1165
1166         sc->aue_cdata.aue_tx_cnt++;
1167
1168         return (0);
1169 }
1170
1171 Static void
1172 aue_start(struct ifnet *ifp)
1173 {
1174         struct aue_softc        *sc = ifp->if_softc;
1175         struct mbuf             *m_head = NULL;
1176
1177         AUE_LOCK(sc);
1178
1179         if (!sc->aue_link) {
1180                 AUE_UNLOCK(sc);
1181                 return;
1182         }
1183
1184         if (ifp->if_flags & IFF_OACTIVE) {
1185                 AUE_UNLOCK(sc);
1186                 return;
1187         }
1188
1189         m_head = ifq_poll(&ifp->if_snd);
1190         if (m_head == NULL) {
1191                 AUE_UNLOCK(sc);
1192                 return;
1193         }
1194
1195         if (aue_encap(sc, m_head, 0)) {
1196                 ifp->if_flags |= IFF_OACTIVE;
1197                 AUE_UNLOCK(sc);
1198                 return;
1199         }
1200         m_head = ifq_dequeue(&ifp->if_snd);
1201
1202         /*
1203          * If there's a BPF listener, bounce a copy of this frame
1204          * to him.
1205          */
1206         BPF_MTAP(ifp, m_head);
1207
1208         ifp->if_flags |= IFF_OACTIVE;
1209
1210         /*
1211          * Set a timeout in case the chip goes out to lunch.
1212          */
1213         ifp->if_timer = 5;
1214         AUE_UNLOCK(sc);
1215
1216         return;
1217 }
1218
1219 Static void
1220 aue_init(void *xsc)
1221 {
1222         struct aue_softc        *sc = xsc;
1223         struct ifnet            *ifp = &sc->arpcom.ac_if;
1224         struct mii_data         *mii = GET_MII(sc);
1225         struct aue_chain        *c;
1226         usbd_status             err;
1227         int                     i;
1228
1229         AUE_LOCK(sc);
1230
1231         if (ifp->if_flags & IFF_RUNNING) {
1232                 AUE_UNLOCK(sc);
1233                 return;
1234         }
1235
1236         /*
1237          * Cancel pending I/O and free all RX/TX buffers.
1238          */
1239         aue_reset(sc);
1240
1241         /* Set MAC address */
1242         for (i = 0; i < ETHER_ADDR_LEN; i++)
1243                 aue_csr_write_1(sc, AUE_PAR0 + i, sc->arpcom.ac_enaddr[i]);
1244
1245          /* If we want promiscuous mode, set the allframes bit. */
1246         if (ifp->if_flags & IFF_PROMISC)
1247                 AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
1248         else
1249                 AUE_CLRBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
1250
1251         /* Init TX ring. */
1252         if (aue_tx_list_init(sc) == ENOBUFS) {
1253                 printf("aue%d: tx list init failed\n", sc->aue_unit);
1254                 AUE_UNLOCK(sc);
1255                 return;
1256         }
1257
1258         /* Init RX ring. */
1259         if (aue_rx_list_init(sc) == ENOBUFS) {
1260                 printf("aue%d: rx list init failed\n", sc->aue_unit);
1261                 AUE_UNLOCK(sc);
1262                 return;
1263         }
1264
1265 #ifdef AUE_INTR_PIPE
1266         sc->aue_cdata.aue_ibuf = malloc(AUE_INTR_PKTLEN, M_USBDEV, M_WAITOK);
1267 #endif
1268
1269         /* Load the multicast filter. */
1270         aue_setmulti(sc);
1271
1272         /* Enable RX and TX */
1273         aue_csr_write_1(sc, AUE_CTL0, AUE_CTL0_RXSTAT_APPEND | AUE_CTL0_RX_ENB);
1274         AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_TX_ENB);
1275         AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_EP3_CLR);
1276
1277         mii_mediachg(mii);
1278
1279         /* Open RX and TX pipes. */
1280         err = usbd_open_pipe(sc->aue_iface, sc->aue_ed[AUE_ENDPT_RX],
1281             USBD_EXCLUSIVE_USE, &sc->aue_ep[AUE_ENDPT_RX]);
1282         if (err) {
1283                 printf("aue%d: open rx pipe failed: %s\n",
1284                     sc->aue_unit, usbd_errstr(err));
1285                 AUE_UNLOCK(sc);
1286                 return;
1287         }
1288         err = usbd_open_pipe(sc->aue_iface, sc->aue_ed[AUE_ENDPT_TX],
1289             USBD_EXCLUSIVE_USE, &sc->aue_ep[AUE_ENDPT_TX]);
1290         if (err) {
1291                 printf("aue%d: open tx pipe failed: %s\n",
1292                     sc->aue_unit, usbd_errstr(err));
1293                 AUE_UNLOCK(sc);
1294                 return;
1295         }
1296
1297 #ifdef AUE_INTR_PIPE
1298         err = usbd_open_pipe_intr(sc->aue_iface, sc->aue_ed[AUE_ENDPT_INTR],
1299             USBD_SHORT_XFER_OK, &sc->aue_ep[AUE_ENDPT_INTR], sc,
1300             sc->aue_cdata.aue_ibuf, AUE_INTR_PKTLEN, aue_intr,
1301             AUE_INTR_INTERVAL);
1302         if (err) {
1303                 printf("aue%d: open intr pipe failed: %s\n",
1304                     sc->aue_unit, usbd_errstr(err));
1305                 AUE_UNLOCK(sc);
1306                 return;
1307         }
1308 #endif
1309
1310         /* Start up the receive pipe. */
1311         for (i = 0; i < AUE_RX_LIST_CNT; i++) {
1312                 c = &sc->aue_cdata.aue_rx_chain[i];
1313                 usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_RX],
1314                     c, mtod(c->aue_mbuf, char *), AUE_BUFSZ,
1315                 USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, aue_rxeof);
1316                 usbd_transfer(c->aue_xfer);
1317         }
1318
1319         ifp->if_flags |= IFF_RUNNING;
1320         ifp->if_flags &= ~IFF_OACTIVE;
1321
1322         callout_reset(&sc->aue_stat_timer, hz, aue_tick, sc);
1323
1324         AUE_UNLOCK(sc);
1325
1326         return;
1327 }
1328
1329 /*
1330  * Set media options.
1331  */
1332 Static int
1333 aue_ifmedia_upd(struct ifnet *ifp)
1334 {
1335         struct aue_softc        *sc = ifp->if_softc;
1336         struct mii_data         *mii = GET_MII(sc);
1337
1338         sc->aue_link = 0;
1339         if (mii->mii_instance) {
1340                 struct mii_softc        *miisc;
1341                 LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
1342                          mii_phy_reset(miisc);
1343         }
1344         mii_mediachg(mii);
1345
1346         return (0);
1347 }
1348
1349 /*
1350  * Report current media status.
1351  */
1352 Static void
1353 aue_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
1354 {
1355         struct aue_softc        *sc = ifp->if_softc;
1356         struct mii_data         *mii = GET_MII(sc);
1357
1358         mii_pollstat(mii);
1359         ifmr->ifm_active = mii->mii_media_active;
1360         ifmr->ifm_status = mii->mii_media_status;
1361
1362         return;
1363 }
1364
1365 Static int
1366 aue_ioctl(struct ifnet *ifp, u_long command, caddr_t data, struct ucred *cr)
1367 {
1368         struct aue_softc        *sc = ifp->if_softc;
1369         struct ifreq            *ifr = (struct ifreq *)data;
1370         struct mii_data         *mii;
1371         int                     error = 0;
1372
1373         AUE_LOCK(sc);
1374
1375         switch(command) {
1376         case SIOCSIFFLAGS:
1377                 if (ifp->if_flags & IFF_UP) {
1378                         if (ifp->if_flags & IFF_RUNNING &&
1379                             ifp->if_flags & IFF_PROMISC &&
1380                             !(sc->aue_if_flags & IFF_PROMISC)) {
1381                                 AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
1382                         } else if (ifp->if_flags & IFF_RUNNING &&
1383                             !(ifp->if_flags & IFF_PROMISC) &&
1384                             sc->aue_if_flags & IFF_PROMISC) {
1385                                 AUE_CLRBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
1386                         } else if (!(ifp->if_flags & IFF_RUNNING))
1387                                 aue_init(sc);
1388                 } else {
1389                         if (ifp->if_flags & IFF_RUNNING)
1390                                 aue_stop(sc);
1391                 }
1392                 sc->aue_if_flags = ifp->if_flags;
1393                 error = 0;
1394                 break;
1395         case SIOCADDMULTI:
1396         case SIOCDELMULTI:
1397                 aue_setmulti(sc);
1398                 error = 0;
1399                 break;
1400         case SIOCGIFMEDIA:
1401         case SIOCSIFMEDIA:
1402                 mii = GET_MII(sc);
1403                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1404                 break;
1405         default:
1406                 error = ether_ioctl(ifp, command, data);
1407                 break;
1408         }
1409
1410         AUE_UNLOCK(sc);
1411
1412         return (error);
1413 }
1414
1415 Static void
1416 aue_watchdog(struct ifnet *ifp)
1417 {
1418         struct aue_softc        *sc = ifp->if_softc;
1419         struct aue_chain        *c;
1420         usbd_status             stat;
1421
1422         AUE_LOCK(sc);
1423
1424         ifp->if_oerrors++;
1425         printf("aue%d: watchdog timeout\n", sc->aue_unit);
1426
1427         c = &sc->aue_cdata.aue_tx_chain[0];
1428         usbd_get_xfer_status(c->aue_xfer, NULL, NULL, NULL, &stat);
1429         aue_txeof(c->aue_xfer, c, stat);
1430
1431         if (!ifq_is_empty(&ifp->if_snd))
1432                 aue_start(ifp);
1433         AUE_UNLOCK(sc);
1434         return;
1435 }
1436
1437 /*
1438  * Stop the adapter and free any mbufs allocated to the
1439  * RX and TX lists.
1440  */
1441 Static void
1442 aue_stop(struct aue_softc *sc)
1443 {
1444         usbd_status             err;
1445         struct ifnet            *ifp;
1446         int                     i;
1447
1448         AUE_LOCK(sc);
1449         ifp = &sc->arpcom.ac_if;
1450         ifp->if_timer = 0;
1451
1452         aue_csr_write_1(sc, AUE_CTL0, 0);
1453         aue_csr_write_1(sc, AUE_CTL1, 0);
1454         aue_reset(sc);
1455         callout_stop(&sc->aue_stat_timer);
1456
1457         /* Stop transfers. */
1458         if (sc->aue_ep[AUE_ENDPT_RX] != NULL) {
1459                 err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_RX]);
1460                 if (err) {
1461                         printf("aue%d: abort rx pipe failed: %s\n",
1462                         sc->aue_unit, usbd_errstr(err));
1463                 }
1464                 err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_RX]);
1465                 if (err) {
1466                         printf("aue%d: close rx pipe failed: %s\n",
1467                         sc->aue_unit, usbd_errstr(err));
1468                 }
1469                 sc->aue_ep[AUE_ENDPT_RX] = NULL;
1470         }
1471
1472         if (sc->aue_ep[AUE_ENDPT_TX] != NULL) {
1473                 err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_TX]);
1474                 if (err) {
1475                         printf("aue%d: abort tx pipe failed: %s\n",
1476                         sc->aue_unit, usbd_errstr(err));
1477                 }
1478                 err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_TX]);
1479                 if (err) {
1480                         printf("aue%d: close tx pipe failed: %s\n",
1481                             sc->aue_unit, usbd_errstr(err));
1482                 }
1483                 sc->aue_ep[AUE_ENDPT_TX] = NULL;
1484         }
1485
1486 #ifdef AUE_INTR_PIPE
1487         if (sc->aue_ep[AUE_ENDPT_INTR] != NULL) {
1488                 err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_INTR]);
1489                 if (err) {
1490                         printf("aue%d: abort intr pipe failed: %s\n",
1491                         sc->aue_unit, usbd_errstr(err));
1492                 }
1493                 err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_INTR]);
1494                 if (err) {
1495                         printf("aue%d: close intr pipe failed: %s\n",
1496                             sc->aue_unit, usbd_errstr(err));
1497                 }
1498                 sc->aue_ep[AUE_ENDPT_INTR] = NULL;
1499         }
1500 #endif
1501
1502         /* Free RX resources. */
1503         for (i = 0; i < AUE_RX_LIST_CNT; i++) {
1504                 if (sc->aue_cdata.aue_rx_chain[i].aue_buf != NULL) {
1505                         free(sc->aue_cdata.aue_rx_chain[i].aue_buf, M_USBDEV);
1506                         sc->aue_cdata.aue_rx_chain[i].aue_buf = NULL;
1507                 }
1508                 if (sc->aue_cdata.aue_rx_chain[i].aue_mbuf != NULL) {
1509                         m_freem(sc->aue_cdata.aue_rx_chain[i].aue_mbuf);
1510                         sc->aue_cdata.aue_rx_chain[i].aue_mbuf = NULL;
1511                 }
1512                 if (sc->aue_cdata.aue_rx_chain[i].aue_xfer != NULL) {
1513                         usbd_free_xfer(sc->aue_cdata.aue_rx_chain[i].aue_xfer);
1514                         sc->aue_cdata.aue_rx_chain[i].aue_xfer = NULL;
1515                 }
1516         }
1517
1518         /* Free TX resources. */
1519         for (i = 0; i < AUE_TX_LIST_CNT; i++) {
1520                 if (sc->aue_cdata.aue_tx_chain[i].aue_buf != NULL) {
1521                         free(sc->aue_cdata.aue_tx_chain[i].aue_buf, M_USBDEV);
1522                         sc->aue_cdata.aue_tx_chain[i].aue_buf = NULL;
1523                 }
1524                 if (sc->aue_cdata.aue_tx_chain[i].aue_mbuf != NULL) {
1525                         m_freem(sc->aue_cdata.aue_tx_chain[i].aue_mbuf);
1526                         sc->aue_cdata.aue_tx_chain[i].aue_mbuf = NULL;
1527                 }
1528                 if (sc->aue_cdata.aue_tx_chain[i].aue_xfer != NULL) {
1529                         usbd_free_xfer(sc->aue_cdata.aue_tx_chain[i].aue_xfer);
1530                         sc->aue_cdata.aue_tx_chain[i].aue_xfer = NULL;
1531                 }
1532         }
1533
1534 #ifdef AUE_INTR_PIPE
1535         free(sc->aue_cdata.aue_ibuf, M_USBDEV);
1536         sc->aue_cdata.aue_ibuf = NULL;
1537 #endif
1538
1539         sc->aue_link = 0;
1540
1541         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1542         AUE_UNLOCK(sc);
1543
1544         return;
1545 }
1546
1547 /*
1548  * Stop all chip I/O so that the kernel's probe routines don't
1549  * get confused by errant DMAs when rebooting.
1550  */
1551 Static void
1552 aue_shutdown(device_ptr_t dev)
1553 {
1554         struct aue_softc        *sc;
1555
1556         sc = device_get_softc(dev);
1557         sc->aue_dying++;
1558         AUE_LOCK(sc);
1559         aue_reset(sc);
1560         aue_stop(sc);
1561         AUE_UNLOCK(sc);
1562
1563         return;
1564 }