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