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