Merge from vendor branch HEIMDAL:
[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.19 2005/02/28 19:53:31 joerg Exp $
34  */
35
36 /*
37  * ADMtek AN986 Pegasus and AN8511 Pegasus II USB to ethernet driver.
38  * Datasheet is available from http://www.admtek.com.tw.
39  *
40  * Written by Bill Paul <wpaul@ee.columbia.edu>
41  * Electrical Engineering Department
42  * Columbia University, New York City
43  */
44
45 /*
46  * The Pegasus chip uses four USB "endpoints" to provide 10/100 ethernet
47  * support: the control endpoint for reading/writing registers, burst
48  * read endpoint for packet reception, burst write for packet transmission
49  * and one for "interrupts." The chip uses the same RX filter scheme
50  * as the other ADMtek ethernet parts: one perfect filter entry for the
51  * the station address and a 64-bit multicast hash table. The chip supports
52  * both MII and HomePNA attachments.
53  *
54  * Since the maximum data transfer speed of USB is supposed to be 12Mbps,
55  * you're never really going to get 100Mbps speeds from this device. I
56  * think the idea is to allow the device to connect to 10 or 100Mbps
57  * networks, not necessarily to provide 100Mbps performance. Also, since
58  * the controller uses an external PHY chip, it's possible that board
59  * designers might simply choose a 10Mbps PHY.
60  *
61  * Registers are accessed using usbd_do_request(). Packet transfers are
62  * done using usbd_transfer() and friends.
63  */
64
65 #include <sys/param.h>
66 #include <sys/systm.h>
67 #include <sys/sockio.h>
68 #include <sys/mbuf.h>
69 #include <sys/malloc.h>
70 #include <sys/kernel.h>
71 #include <sys/socket.h>
72
73 #include <net/if.h>
74 #include <net/ifq_var.h>
75 #include <net/if_arp.h>
76 #include <net/ethernet.h>
77 #include <net/if_dl.h>
78 #include <net/if_media.h>
79
80 #include <net/bpf.h>
81
82 #include <sys/bus.h>
83 #include <machine/bus.h>
84 #if defined(DragonFly) || __FreeBSD_version < 500000
85 #include <machine/clock.h>
86 #endif
87
88 #include <bus/usb/usb.h>
89 #include <bus/usb/usbdi.h>
90 #include <bus/usb/usbdi_util.h>
91 #include <bus/usb/usbdivar.h>
92 #include <bus/usb/usbdevs.h>
93 #include <bus/usb/usb_ethersubr.h>
94
95 #include "../mii_layer/mii.h"
96 #include "../mii_layer/miivar.h"
97
98 #include "if_auereg.h"
99
100 MODULE_DEPEND(aue, usb, 1, 1, 1);
101 MODULE_DEPEND(aue, miibus, 1, 1, 1);
102
103 /* "controller miibus0" required.  See GENERIC if you get errors here. */
104 #include "miibus_if.h"
105
106 struct aue_type {
107         struct usb_devno        aue_dev;
108         u_int16_t               aue_flags;
109 #define LSYS  0x0001          /* use Linksys reset */
110 #define PNA   0x0002          /* has Home PNA */
111 #define PII   0x0004          /* Pegasus II chip */
112 };
113
114 Static const struct aue_type aue_devs[] = {
115  {{ USB_VENDOR_3COM,            USB_PRODUCT_3COM_3C460B},         PII },
116  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX1},          PNA|PII },
117  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX2},          PII },
118  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_UFE1000},      LSYS },
119  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX4},          PNA },
120  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX5},          PNA },
121  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX6},          PII },
122  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX7},          PII },
123  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX8},          PII },
124  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX9},          PNA },
125  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_XX10},         0 },
126  {{ USB_VENDOR_ABOCOM,          USB_PRODUCT_ABOCOM_DSB650TX_PNA}, 0 },
127  {{ USB_VENDOR_ACCTON,          USB_PRODUCT_ACCTON_USB320_EC},    0 },
128  {{ USB_VENDOR_ACCTON,          USB_PRODUCT_ACCTON_SS1001},       PII },
129  {{ USB_VENDOR_ADMTEK,          USB_PRODUCT_ADMTEK_PEGASUS},      PNA },
130  {{ USB_VENDOR_ADMTEK,          USB_PRODUCT_ADMTEK_PEGASUSII},    PII },
131  {{ USB_VENDOR_BELKIN,          USB_PRODUCT_BELKIN_USB2LAN},      PII },
132  {{ USB_VENDOR_BILLIONTON,      USB_PRODUCT_BILLIONTON_USB100},   0 },
133  {{ USB_VENDOR_BILLIONTON,      USB_PRODUCT_BILLIONTON_USBLP100}, PNA },
134  {{ USB_VENDOR_BILLIONTON,      USB_PRODUCT_BILLIONTON_USBEL100}, 0 },
135  {{ USB_VENDOR_BILLIONTON,      USB_PRODUCT_BILLIONTON_USBE100},  PII },
136  {{ USB_VENDOR_COREGA,          USB_PRODUCT_COREGA_FETHER_USB_TX}, 0 },
137  {{ USB_VENDOR_COREGA,          USB_PRODUCT_COREGA_FETHER_USB_TXS},PII },
138  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX4},     LSYS|PII },
139  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX1},     LSYS },
140  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX},      LSYS },
141  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX_PNA},  PNA },
142  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX3},     LSYS|PII },
143  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650TX2},     LSYS|PII },
144  {{ USB_VENDOR_DLINK,           USB_PRODUCT_DLINK_DSB650},        LSYS },
145  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBTX0},     0 },
146  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBTX1},     LSYS },
147  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBTX2},     0 },
148  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBTX3},     LSYS },
149  {{ USB_VENDOR_ELECOM,          USB_PRODUCT_ELECOM_LDUSBLTX},     PII },
150  {{ USB_VENDOR_ELSA,            USB_PRODUCT_ELSA_USB2ETHERNET},   0 },
151  {{ USB_VENDOR_HAWKING,         USB_PRODUCT_HAWKING_UF100},       PII },
152  {{ USB_VENDOR_HP,              USB_PRODUCT_HP_HN210E},           PII },
153  {{ USB_VENDOR_IODATA,          USB_PRODUCT_IODATA_USBETTX},      0 },
154  {{ USB_VENDOR_IODATA,          USB_PRODUCT_IODATA_USBETTXS},     PII },
155  {{ USB_VENDOR_KINGSTON,        USB_PRODUCT_KINGSTON_KNU101TX},   0 },
156  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB10TX1},    LSYS|PII },
157  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB10T},      LSYS },
158  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB100TX},    LSYS },
159  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB100H1},    LSYS|PNA },
160  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB10TA},     LSYS },
161  {{ USB_VENDOR_LINKSYS,         USB_PRODUCT_LINKSYS_USB10TX2},    LSYS|PII },
162  {{ USB_VENDOR_MICROSOFT,       USB_PRODUCT_MICROSOFT_MN110},     PII },
163  {{ USB_VENDOR_MELCO,           USB_PRODUCT_MELCO_LUATX1},        0 },
164  {{ USB_VENDOR_MELCO,           USB_PRODUCT_MELCO_LUATX5},        0 },
165  {{ USB_VENDOR_MELCO,           USB_PRODUCT_MELCO_LUA2TX5},       PII },
166  {{ USB_VENDOR_SIEMENS,         USB_PRODUCT_SIEMENS_SPEEDSTREAM}, PII },
167  {{ USB_VENDOR_SMARTBRIDGES,    USB_PRODUCT_SMARTBRIDGES_SMARTNIC},PII },
168  {{ USB_VENDOR_SMC,             USB_PRODUCT_SMC_2202USB},         0 },
169  {{ USB_VENDOR_SMC,             USB_PRODUCT_SMC_2206USB},         PII },
170  {{ USB_VENDOR_SOHOWARE,        USB_PRODUCT_SOHOWARE_NUB100},     0 },
171 };
172 #define aue_lookup(v, p) ((const struct aue_type *)usb_lookup(aue_devs, v, p))
173
174 Static int aue_match(device_ptr_t);
175 Static int aue_attach(device_ptr_t);
176 Static int aue_detach(device_ptr_t);
177
178 Static void aue_reset_pegasus_II(struct aue_softc *sc);
179 Static int aue_tx_list_init(struct aue_softc *);
180 Static int aue_rx_list_init(struct aue_softc *);
181 Static int aue_newbuf(struct aue_softc *, struct aue_chain *, struct mbuf *);
182 Static int aue_encap(struct aue_softc *, struct mbuf *, int);
183 #ifdef AUE_INTR_PIPE
184 Static void aue_intr(usbd_xfer_handle, usbd_private_handle, usbd_status);
185 #endif
186 Static void aue_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
187 Static void aue_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
188 Static void aue_tick(void *);
189 Static void aue_rxstart(struct ifnet *);
190 Static void aue_start(struct ifnet *);
191 Static int aue_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
192 Static void aue_init(void *);
193 Static void aue_stop(struct aue_softc *);
194 Static void aue_watchdog(struct ifnet *);
195 Static void aue_shutdown(device_ptr_t);
196 Static int aue_ifmedia_upd(struct ifnet *);
197 Static void aue_ifmedia_sts(struct ifnet *, struct ifmediareq *);
198
199 Static void aue_eeprom_getword(struct aue_softc *, int, u_int16_t *);
200 Static void aue_read_eeprom(struct aue_softc *, caddr_t, int, int, int);
201 Static int aue_miibus_readreg(device_ptr_t, int, int);
202 Static int aue_miibus_writereg(device_ptr_t, int, int, int);
203 Static void aue_miibus_statchg(device_ptr_t);
204
205 Static void aue_setmulti(struct aue_softc *);
206 Static uint32_t aue_mchash(const uint8_t *);
207 Static void aue_reset(struct aue_softc *);
208
209 Static int aue_csr_read_1(struct aue_softc *, int);
210 Static int aue_csr_write_1(struct aue_softc *, int, int);
211 Static int aue_csr_read_2(struct aue_softc *, int);
212 Static int aue_csr_write_2(struct aue_softc *, int, int);
213
214 Static device_method_t aue_methods[] = {
215         /* Device interface */
216         DEVMETHOD(device_probe,         aue_match),
217         DEVMETHOD(device_attach,        aue_attach),
218         DEVMETHOD(device_detach,        aue_detach),
219         DEVMETHOD(device_shutdown,      aue_shutdown),
220
221         /* bus interface */
222         DEVMETHOD(bus_print_child,      bus_generic_print_child),
223         DEVMETHOD(bus_driver_added,     bus_generic_driver_added),
224
225         /* MII interface */
226         DEVMETHOD(miibus_readreg,       aue_miibus_readreg),
227         DEVMETHOD(miibus_writereg,      aue_miibus_writereg),
228         DEVMETHOD(miibus_statchg,       aue_miibus_statchg),
229
230         { 0, 0 }
231 };
232
233 Static driver_t aue_driver = {
234         "aue",
235         aue_methods,
236         sizeof(struct aue_softc)
237 };
238
239 Static devclass_t aue_devclass;
240
241 DECLARE_DUMMY_MODULE(if_aue);
242 DRIVER_MODULE(aue, uhub, aue_driver, aue_devclass, usbd_driver_load, 0);
243 DRIVER_MODULE(miibus, aue, miibus_driver, miibus_devclass, 0, 0);
244
245 #define AUE_SETBIT(sc, reg, x)                          \
246         aue_csr_write_1(sc, reg, aue_csr_read_1(sc, reg) | (x))
247
248 #define AUE_CLRBIT(sc, reg, x)                          \
249         aue_csr_write_1(sc, reg, aue_csr_read_1(sc, reg) & ~(x))
250
251 Static int
252 aue_csr_read_1(struct aue_softc *sc, int reg)
253 {
254         usb_device_request_t    req;
255         usbd_status             err;
256         u_int8_t                val = 0;
257
258         if (sc->aue_dying)
259                 return(0);
260
261         AUE_LOCK(sc);
262
263         req.bmRequestType = UT_READ_VENDOR_DEVICE;
264         req.bRequest = AUE_UR_READREG;
265         USETW(req.wValue, 0);
266         USETW(req.wIndex, reg);
267         USETW(req.wLength, 1);
268
269         err = usbd_do_request(sc->aue_udev, &req, &val);
270
271         AUE_UNLOCK(sc);
272
273         if (err) {
274                 return (0);
275         }
276
277         return (val);
278 }
279
280 Static int
281 aue_csr_read_2(struct aue_softc *sc, int reg)
282 {
283         usb_device_request_t    req;
284         usbd_status             err;
285         u_int16_t               val = 0;
286
287         if (sc->aue_dying)
288                 return (0);
289
290         AUE_LOCK(sc);
291
292         req.bmRequestType = UT_READ_VENDOR_DEVICE;
293         req.bRequest = AUE_UR_READREG;
294         USETW(req.wValue, 0);
295         USETW(req.wIndex, reg);
296         USETW(req.wLength, 2);
297
298         err = usbd_do_request(sc->aue_udev, &req, &val);
299
300         AUE_UNLOCK(sc);
301
302         if (err) {
303                 return (0);
304         }
305
306         return (val);
307 }
308
309 Static int
310 aue_csr_write_1(struct aue_softc *sc, int reg, int val)
311 {
312         usb_device_request_t    req;
313         usbd_status             err;
314
315         if (sc->aue_dying)
316                 return (0);
317
318         AUE_LOCK(sc);
319
320         req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
321         req.bRequest = AUE_UR_WRITEREG;
322         USETW(req.wValue, val);
323         USETW(req.wIndex, reg);
324         USETW(req.wLength, 1);
325
326         err = usbd_do_request(sc->aue_udev, &req, &val);
327
328         AUE_UNLOCK(sc);
329
330         if (err) {
331                 return (-1);
332         }
333
334         return (0);
335 }
336
337 Static int
338 aue_csr_write_2(struct aue_softc *sc, int reg, int val)
339 {
340         usb_device_request_t    req;
341         usbd_status             err;
342
343         if (sc->aue_dying)
344                 return (0);
345
346         AUE_LOCK(sc);
347
348         req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
349         req.bRequest = AUE_UR_WRITEREG;
350         USETW(req.wValue, val);
351         USETW(req.wIndex, reg);
352         USETW(req.wLength, 2);
353
354         err = usbd_do_request(sc->aue_udev, &req, &val);
355
356         AUE_UNLOCK(sc);
357
358         if (err) {
359                 return (-1);
360         }
361
362         return (0);
363 }
364
365 /*
366  * Read a word of data stored in the EEPROM at address 'addr.'
367  */
368 Static void
369 aue_eeprom_getword(struct aue_softc *sc, int addr, u_int16_t *dest)
370 {
371         int             i;
372         u_int16_t       word = 0;
373
374         aue_csr_write_1(sc, AUE_EE_REG, addr);
375         aue_csr_write_1(sc, AUE_EE_CTL, AUE_EECTL_READ);
376
377         for (i = 0; i < AUE_TIMEOUT; i++) {
378                 if (aue_csr_read_1(sc, AUE_EE_CTL) & AUE_EECTL_DONE)
379                         break;
380         }
381
382         if (i == AUE_TIMEOUT) {
383                 printf("aue%d: EEPROM read timed out\n",
384                     sc->aue_unit);
385         }
386
387         word = aue_csr_read_2(sc, AUE_EE_DATA);
388         *dest = word;
389
390         return;
391 }
392
393 /*
394  * Read a sequence of words from the EEPROM.
395  */
396 Static void
397 aue_read_eeprom(struct aue_softc *sc, caddr_t dest, int off, int cnt, int swap)
398 {
399         int                     i;
400         u_int16_t               word = 0, *ptr;
401
402         for (i = 0; i < cnt; i++) {
403                 aue_eeprom_getword(sc, off + i, &word);
404                 ptr = (u_int16_t *)(dest + (i * 2));
405                 if (swap)
406                         *ptr = ntohs(word);
407                 else
408                         *ptr = word;
409         }
410
411         return;
412 }
413
414 Static int
415 aue_miibus_readreg(device_ptr_t dev, int phy, int reg)
416 {
417         struct aue_softc        *sc = USBGETSOFTC(dev);
418         int                     i;
419         u_int16_t               val = 0;
420
421         /*
422          * The Am79C901 HomePNA PHY actually contains
423          * two transceivers: a 1Mbps HomePNA PHY and a
424          * 10Mbps full/half duplex ethernet PHY with
425          * NWAY autoneg. However in the ADMtek adapter,
426          * only the 1Mbps PHY is actually connected to
427          * anything, so we ignore the 10Mbps one. It
428          * happens to be configured for MII address 3,
429          * so we filter that out.
430          */
431         if (sc->aue_vendor == USB_VENDOR_ADMTEK &&
432             sc->aue_product == USB_PRODUCT_ADMTEK_PEGASUS) {
433                 if (phy == 3)
434                         return (0);
435 #ifdef notdef
436                 if (phy != 1)
437                         return (0);
438 #endif
439         }
440
441         aue_csr_write_1(sc, AUE_PHY_ADDR, phy);
442         aue_csr_write_1(sc, AUE_PHY_CTL, reg | AUE_PHYCTL_READ);
443
444         for (i = 0; i < AUE_TIMEOUT; i++) {
445                 if (aue_csr_read_1(sc, AUE_PHY_CTL) & AUE_PHYCTL_DONE)
446                         break;
447         }
448
449         if (i == AUE_TIMEOUT) {
450                 printf("aue%d: MII read timed out\n", sc->aue_unit);
451         }
452
453         val = aue_csr_read_2(sc, AUE_PHY_DATA);
454
455         return (val);
456 }
457
458 Static int
459 aue_miibus_writereg(device_ptr_t dev, int phy, int reg, int data)
460 {
461         struct aue_softc        *sc = USBGETSOFTC(dev);
462         int                     i;
463
464         if (phy == 3)
465                 return (0);
466
467         aue_csr_write_2(sc, AUE_PHY_DATA, data);
468         aue_csr_write_1(sc, AUE_PHY_ADDR, phy);
469         aue_csr_write_1(sc, AUE_PHY_CTL, reg | AUE_PHYCTL_WRITE);
470
471         for (i = 0; i < AUE_TIMEOUT; i++) {
472                 if (aue_csr_read_1(sc, AUE_PHY_CTL) & AUE_PHYCTL_DONE)
473                         break;
474         }
475
476         if (i == AUE_TIMEOUT) {
477                 printf("aue%d: MII read timed out\n",
478                     sc->aue_unit);
479         }
480
481         return(0);
482 }
483
484 Static void
485 aue_miibus_statchg(device_ptr_t dev)
486 {
487         struct aue_softc        *sc = USBGETSOFTC(dev);
488         struct mii_data         *mii = GET_MII(sc);
489
490         AUE_CLRBIT(sc, AUE_CTL0, AUE_CTL0_RX_ENB | AUE_CTL0_TX_ENB);
491         if (IFM_SUBTYPE(mii->mii_media_active) == IFM_100_TX) {
492                 AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_SPEEDSEL);
493         } else {
494                 AUE_CLRBIT(sc, AUE_CTL1, AUE_CTL1_SPEEDSEL);
495         }
496
497         if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX)
498                 AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_DUPLEX);
499         else
500                 AUE_CLRBIT(sc, AUE_CTL1, AUE_CTL1_DUPLEX);
501
502         AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_RX_ENB | AUE_CTL0_TX_ENB);
503
504         /*
505          * Set the LED modes on the LinkSys adapter.
506          * This turns on the 'dual link LED' bin in the auxmode
507          * register of the Broadcom PHY.
508          */
509         if (sc->aue_flags & LSYS) {
510                 u_int16_t auxmode;
511                 auxmode = aue_miibus_readreg(dev, 0, 0x1b);
512                 aue_miibus_writereg(dev, 0, 0x1b, auxmode | 0x04);
513         }
514
515         return;
516 }
517
518 #define AUE_POLY        0xEDB88320
519 #define AUE_BITS        6
520
521 Static u_int32_t
522 aue_mchash(const uint8_t *addr)
523 {
524         uint32_t crc;
525         int idx, bit;
526         uint8_t data;
527
528         /* Compute CRC for the address value. */
529         crc = 0xFFFFFFFF; /* initial value */
530
531         for (idx = 0; idx < 6; idx++) {
532                 for (data = *addr++, bit = 0; bit < 8; bit++, data >>= 1)
533                         crc = (crc >> 1) ^ (((crc ^ data) & 1) ? AUE_POLY : 0);
534         }
535
536         return (crc & ((1 << AUE_BITS) - 1));
537 }
538
539 Static void
540 aue_setmulti(struct aue_softc *sc)
541 {
542         struct ifnet            *ifp;
543         struct ifmultiaddr      *ifma;
544         u_int32_t               h = 0, i;
545
546         ifp = &sc->arpcom.ac_if;
547
548         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
549                 AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_ALLMULTI);
550                 return;
551         }
552
553         AUE_CLRBIT(sc, AUE_CTL0, AUE_CTL0_ALLMULTI);
554
555         /* first, zot all the existing hash bits */
556         for (i = 0; i < 8; i++)
557                 aue_csr_write_1(sc, AUE_MAR0 + i, 0);
558
559         /* now program new ones */
560 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
561         TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
562 #else
563         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
564 #endif
565         {
566                 if (ifma->ifma_addr->sa_family != AF_LINK)
567                         continue;
568                 h = aue_mchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
569                 AUE_SETBIT(sc, AUE_MAR + (h >> 3), 1 << (h & 0x7));
570         }
571
572         return;
573 }
574
575 Static void
576 aue_reset_pegasus_II(struct aue_softc *sc)
577 {
578         /* Magic constants taken from Linux driver. */
579         aue_csr_write_1(sc, AUE_REG_1D, 0);
580         aue_csr_write_1(sc, AUE_REG_7B, 2);
581 #if 0
582         if ((sc->aue_flags & HAS_HOME_PNA) && mii_mode)
583                 aue_csr_write_1(sc, AUE_REG_81, 6);
584         else
585 #endif
586                 aue_csr_write_1(sc, AUE_REG_81, 2);
587 }
588
589 Static void
590 aue_reset(struct aue_softc *sc)
591 {
592         int             i;
593
594         AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_RESETMAC);
595
596         for (i = 0; i < AUE_TIMEOUT; i++) {
597                 if (!(aue_csr_read_1(sc, AUE_CTL1) & AUE_CTL1_RESETMAC))
598                         break;
599         }
600
601         if (i == AUE_TIMEOUT)
602                 printf("aue%d: reset failed\n", sc->aue_unit);
603
604         /*
605          * The PHY(s) attached to the Pegasus chip may be held
606          * in reset until we flip on the GPIO outputs. Make sure
607          * to set the GPIO pins high so that the PHY(s) will
608          * be enabled.
609          *
610          * Note: We force all of the GPIO pins low first, *then*
611          * enable the ones we want.
612          */
613         aue_csr_write_1(sc, AUE_GPIO0, AUE_GPIO_OUT0|AUE_GPIO_SEL0);
614         aue_csr_write_1(sc, AUE_GPIO0, AUE_GPIO_OUT0|AUE_GPIO_SEL0|AUE_GPIO_SEL1);
615
616         if (sc->aue_flags & LSYS) {
617                 /* Grrr. LinkSys has to be different from everyone else. */
618                 aue_csr_write_1(sc, AUE_GPIO0,
619                     AUE_GPIO_SEL0 | AUE_GPIO_SEL1);
620                 aue_csr_write_1(sc, AUE_GPIO0,
621                     AUE_GPIO_SEL0 | AUE_GPIO_SEL1 | AUE_GPIO_OUT0);
622         }
623
624         if (sc->aue_flags & PII)
625                 aue_reset_pegasus_II(sc);
626
627         /* Wait a little while for the chip to get its brains in order. */
628         DELAY(10000);
629
630         return;
631 }
632
633 /*
634  * Probe for a Pegasus chip.
635  */
636 USB_MATCH(aue)
637 {
638         USB_MATCH_START(aue, uaa);
639
640         if (uaa->iface != NULL)
641                 return (UMATCH_NONE);
642
643         return (aue_lookup(uaa->vendor, uaa->product) != NULL ?
644                 UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
645 }
646
647 /*
648  * Attach the interface. Allocate softc structures, do ifmedia
649  * setup and ethernet/BPF attach.
650  */
651 USB_ATTACH(aue)
652 {
653         USB_ATTACH_START(aue, sc, uaa);
654         char                    devinfo[1024];
655         u_char                  eaddr[ETHER_ADDR_LEN];
656         struct ifnet            *ifp;
657         usbd_interface_handle   iface;
658         usbd_status             err;
659         usb_interface_descriptor_t      *id;
660         usb_endpoint_descriptor_t       *ed;
661         int                     i;
662
663         bzero(sc, sizeof(struct aue_softc));
664
665         usbd_devinfo(uaa->device, 0, devinfo);
666
667         sc->aue_udev = uaa->device;
668         sc->aue_unit = device_get_unit(self);
669         callout_init(&sc->aue_stat_timer);
670
671         if (usbd_set_config_no(sc->aue_udev, AUE_CONFIG_NO, 0)) {
672                 printf("aue%d: getting interface handle failed\n",
673                     sc->aue_unit);
674                 USB_ATTACH_ERROR_RETURN;
675         }
676
677         err = usbd_device2interface_handle(uaa->device, AUE_IFACE_IDX, &iface);
678         if (err) {
679                 printf("aue%d: getting interface handle failed\n",
680                     sc->aue_unit);
681                 USB_ATTACH_ERROR_RETURN;
682         }
683
684         sc->aue_iface = iface;
685         sc->aue_flags = aue_lookup(uaa->vendor, uaa->product)->aue_flags;
686
687         sc->aue_product = uaa->product;
688         sc->aue_vendor = uaa->vendor;
689
690         id = usbd_get_interface_descriptor(sc->aue_iface);
691
692         usbd_devinfo(uaa->device, 0, devinfo);
693         device_set_desc_copy(self, devinfo);
694         printf("%s: %s\n", USBDEVNAME(self), devinfo);
695
696         /* Find endpoints. */
697         for (i = 0; i < id->bNumEndpoints; i++) {
698                 ed = usbd_interface2endpoint_descriptor(iface, i);
699                 if (ed == NULL) {
700                         printf("aue%d: couldn't get ep %d\n",
701                             sc->aue_unit, i);
702                         USB_ATTACH_ERROR_RETURN;
703                 }
704                 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
705                     UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
706                         sc->aue_ed[AUE_ENDPT_RX] = ed->bEndpointAddress;
707                 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
708                            UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
709                         sc->aue_ed[AUE_ENDPT_TX] = ed->bEndpointAddress;
710                 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
711                            UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
712                         sc->aue_ed[AUE_ENDPT_INTR] = ed->bEndpointAddress;
713                 }
714         }
715
716 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
717         mtx_init(&sc->aue_mtx, device_get_nameunit(self), MTX_NETWORK_LOCK,
718             MTX_DEF | MTX_RECURSE);
719 #endif
720         AUE_LOCK(sc);
721
722         /* Reset the adapter. */
723         aue_reset(sc);
724
725         /*
726          * Get station address from the EEPROM.
727          */
728         aue_read_eeprom(sc, (caddr_t)&eaddr, 0, 3, 0);
729
730         ifp = &sc->arpcom.ac_if;
731         ifp->if_softc = sc;
732         if_initname(ifp, "aue", sc->aue_unit);
733         ifp->if_mtu = ETHERMTU;
734         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
735         ifp->if_ioctl = aue_ioctl;
736         ifp->if_start = aue_start;
737         ifp->if_watchdog = aue_watchdog;
738         ifp->if_init = aue_init;
739         ifp->if_baudrate = 10000000;
740         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
741         ifq_set_ready(&ifp->if_snd);
742
743         /*
744          * Do MII setup.
745          * NOTE: Doing this causes child devices to be attached to us,
746          * which we would normally disconnect at in the detach routine
747          * using device_delete_child(). However the USB code is set up
748          * such that when this driver is removed, all children devices
749          * are removed as well. In effect, the USB code ends up detaching
750          * all of our children for us, so we don't have to do is ourselves
751          * in aue_detach(). It's important to point this out since if
752          * we *do* try to detach the child devices ourselves, we will
753          * end up getting the children deleted twice, which will crash
754          * the system.
755          */
756         if (mii_phy_probe(self, &sc->aue_miibus,
757             aue_ifmedia_upd, aue_ifmedia_sts)) {
758                 printf("aue%d: MII without any PHY!\n", sc->aue_unit);
759                 AUE_UNLOCK(sc);
760 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
761                 mtx_destroy(&sc->aue_mtx);
762 #endif
763                 USB_ATTACH_ERROR_RETURN;
764         }
765
766         /*
767          * Call MI attach routine.
768          */
769         ether_ifattach(ifp, eaddr);
770         usb_register_netisr();
771         sc->aue_dying = 0;
772
773         AUE_UNLOCK(sc);
774         USB_ATTACH_SUCCESS_RETURN;
775 }
776
777 Static int
778 aue_detach(device_ptr_t dev)
779 {
780         struct aue_softc        *sc;
781         struct ifnet            *ifp;
782
783         sc = device_get_softc(dev);
784         AUE_LOCK(sc);
785         ifp = &sc->arpcom.ac_if;
786
787         sc->aue_dying = 1;
788         callout_stop(&sc->aue_stat_timer);
789         ether_ifdetach(ifp);
790
791         if (sc->aue_ep[AUE_ENDPT_TX] != NULL)
792                 usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_TX]);
793         if (sc->aue_ep[AUE_ENDPT_RX] != NULL)
794                 usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_RX]);
795 #ifdef AUE_INTR_PIPE
796         if (sc->aue_ep[AUE_ENDPT_INTR] != NULL)
797                 usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_INTR]);
798 #endif
799
800         AUE_UNLOCK(sc);
801 #if defined(__FreeBSD__) && __FreeBSD_version >= 500000
802         mtx_destroy(&sc->aue_mtx);
803 #endif
804
805         return (0);
806 }
807
808 /*
809  * Initialize an RX descriptor and attach an MBUF cluster.
810  */
811 Static int
812 aue_newbuf(struct aue_softc *sc, struct aue_chain *c, struct mbuf *m)
813 {
814         struct mbuf             *m_new = NULL;
815
816         if (m == NULL) {
817                 MGETHDR(m_new, MB_DONTWAIT, MT_DATA);
818                 if (m_new == NULL) {
819                         printf("aue%d: no memory for rx list "
820                             "-- packet dropped!\n", sc->aue_unit);
821                         return (ENOBUFS);
822                 }
823
824                 MCLGET(m_new, MB_DONTWAIT);
825                 if (!(m_new->m_flags & M_EXT)) {
826                         printf("aue%d: no memory for rx list "
827                             "-- packet dropped!\n", sc->aue_unit);
828                         m_freem(m_new);
829                         return (ENOBUFS);
830                 }
831                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
832         } else {
833                 m_new = m;
834                 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
835                 m_new->m_data = m_new->m_ext.ext_buf;
836         }
837
838         m_adj(m_new, ETHER_ALIGN);
839         c->aue_mbuf = m_new;
840
841         return (0);
842 }
843
844 Static int
845 aue_rx_list_init(struct aue_softc *sc)
846 {
847         struct aue_cdata        *cd;
848         struct aue_chain        *c;
849         int                     i;
850
851         cd = &sc->aue_cdata;
852         for (i = 0; i < AUE_RX_LIST_CNT; i++) {
853                 c = &cd->aue_rx_chain[i];
854                 c->aue_sc = sc;
855                 c->aue_idx = i;
856                 if (aue_newbuf(sc, c, NULL) == ENOBUFS)
857                         return (ENOBUFS);
858                 if (c->aue_xfer == NULL) {
859                         c->aue_xfer = usbd_alloc_xfer(sc->aue_udev);
860                         if (c->aue_xfer == NULL)
861                                 return (ENOBUFS);
862                 }
863         }
864
865         return (0);
866 }
867
868 Static int
869 aue_tx_list_init(struct aue_softc *sc)
870 {
871         struct aue_cdata        *cd;
872         struct aue_chain        *c;
873         int                     i;
874
875         cd = &sc->aue_cdata;
876         for (i = 0; i < AUE_TX_LIST_CNT; i++) {
877                 c = &cd->aue_tx_chain[i];
878                 c->aue_sc = sc;
879                 c->aue_idx = i;
880                 c->aue_mbuf = NULL;
881                 if (c->aue_xfer == NULL) {
882                         c->aue_xfer = usbd_alloc_xfer(sc->aue_udev);
883                         if (c->aue_xfer == NULL)
884                                 return (ENOBUFS);
885                 }
886                 c->aue_buf = malloc(AUE_BUFSZ, M_USBDEV, M_WAITOK);
887                 if (c->aue_buf == NULL)
888                         return (ENOBUFS);
889         }
890
891         return (0);
892 }
893
894 #ifdef AUE_INTR_PIPE
895 Static void
896 aue_intr(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
897 {
898         struct aue_softc        *sc = priv;
899         struct ifnet            *ifp;
900         struct aue_intrpkt      *p;
901
902         AUE_LOCK(sc);
903         ifp = &sc->arpcom.ac_if;
904
905         if (!(ifp->if_flags & IFF_RUNNING)) {
906                 AUE_UNLOCK(sc);
907                 return;
908         }
909
910         if (status != USBD_NORMAL_COMPLETION) {
911                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
912                         AUE_UNLOCK(sc);
913                         return;
914                 }
915                 printf("aue%d: usb error on intr: %s\n", sc->aue_unit,
916                     usbd_errstr(status));
917                 if (status == USBD_STALLED)
918                         usbd_clear_endpoint_stall(sc->aue_ep[AUE_ENDPT_RX]);
919                 AUE_UNLOCK(sc);
920                 return;
921         }
922
923         usbd_get_xfer_status(xfer, NULL, (void **)&p, NULL, NULL);
924
925         if (p->aue_txstat0)
926                 ifp->if_oerrors++;
927
928         if (p->aue_txstat0 & (AUE_TXSTAT0_LATECOLL & AUE_TXSTAT0_EXCESSCOLL))
929                 ifp->if_collisions++;
930
931         AUE_UNLOCK(sc);
932         return;
933 }
934 #endif
935
936 Static void
937 aue_rxstart(struct ifnet *ifp)
938 {
939         struct aue_softc        *sc;
940         struct aue_chain        *c;
941
942         sc = ifp->if_softc;
943         AUE_LOCK(sc);
944         c = &sc->aue_cdata.aue_rx_chain[sc->aue_cdata.aue_rx_prod];
945
946         if (aue_newbuf(sc, c, NULL) == ENOBUFS) {
947                 ifp->if_ierrors++;
948                 AUE_UNLOCK(sc);
949                 return;
950         }
951
952         /* Setup new transfer. */
953         usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_RX],
954             c, mtod(c->aue_mbuf, char *), AUE_BUFSZ, USBD_SHORT_XFER_OK,
955             USBD_NO_TIMEOUT, aue_rxeof);
956         usbd_transfer(c->aue_xfer);
957
958         AUE_UNLOCK(sc);
959         return;
960 }
961
962 /*
963  * A frame has been uploaded: pass the resulting mbuf chain up to
964  * the higher level protocols.
965  */
966 Static void
967 aue_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
968 {
969         struct aue_chain        *c = priv;
970         struct aue_softc        *sc = c->aue_sc;
971         struct mbuf             *m;
972         struct ifnet            *ifp;
973         int                     total_len = 0;
974         struct aue_rxpkt        r;
975
976         if (sc->aue_dying)
977                 return;
978         AUE_LOCK(sc);
979         ifp = &sc->arpcom.ac_if;
980
981         if (!(ifp->if_flags & IFF_RUNNING)) {
982                 AUE_UNLOCK(sc);
983                 return;
984         }
985
986         if (status != USBD_NORMAL_COMPLETION) {
987                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
988                         AUE_UNLOCK(sc);
989                         return;
990                 }
991                 if (usbd_ratecheck(&sc->aue_rx_notice))
992                         printf("aue%d: usb error on rx: %s\n", sc->aue_unit,
993                             usbd_errstr(status));
994                 if (status == USBD_STALLED)
995                         usbd_clear_endpoint_stall(sc->aue_ep[AUE_ENDPT_RX]);
996                 goto done;
997         }
998
999         usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
1000
1001         if (total_len <= 4 + ETHER_CRC_LEN) {
1002                 ifp->if_ierrors++;
1003                 goto done;
1004         }
1005
1006         m = c->aue_mbuf;
1007         bcopy(mtod(m, char *) + total_len - 4, (char *)&r, sizeof(r));
1008
1009         /* Turn off all the non-error bits in the rx status word. */
1010         r.aue_rxstat &= AUE_RXSTAT_MASK;
1011
1012         if (r.aue_rxstat) {
1013                 ifp->if_ierrors++;
1014                 goto done;
1015         }
1016
1017         /* No errors; receive the packet. */
1018         total_len -= (4 + ETHER_CRC_LEN);
1019
1020         ifp->if_ipackets++;
1021         m->m_pkthdr.rcvif = ifp;
1022         m->m_pkthdr.len = m->m_len = total_len;
1023
1024         /* Put the packet on the special USB input queue. */
1025         usb_ether_input(m);
1026         aue_rxstart(ifp);
1027         if (!ifq_is_empty(&ifp->if_snd))
1028                 (*ifp->if_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 }