bac1641ea6c3ea1fc48d2f2f2aa1e2b01bcfc4e0
[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.36 2007/11/06 07:37:00 hasso 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                 if (c->aue_buf == NULL)
827                         return (ENOBUFS);
828         }
829
830         return (0);
831 }
832
833 #ifdef AUE_INTR_PIPE
834 static void
835 aue_intr(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
836 {
837         struct aue_softc        *sc = priv;
838         struct ifnet            *ifp;
839         struct aue_intrpkt      *p;
840
841         AUE_LOCK(sc);
842         ifp = &sc->arpcom.ac_if;
843
844         if (!(ifp->if_flags & IFF_RUNNING)) {
845                 AUE_UNLOCK(sc);
846                 return;
847         }
848
849         if (status != USBD_NORMAL_COMPLETION) {
850                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
851                         AUE_UNLOCK(sc);
852                         return;
853                 }
854                 if_printf(ifp, "usb error on intr: %s\n", usbd_errstr(status));
855                 if (status == USBD_STALLED)
856                         usbd_clear_endpoint_stall(sc->aue_ep[AUE_ENDPT_RX]);
857                 AUE_UNLOCK(sc);
858                 return;
859         }
860
861         usbd_get_xfer_status(xfer, NULL, (void **)&p, NULL, NULL);
862
863         if (p->aue_txstat0)
864                 ifp->if_oerrors++;
865
866         if (p->aue_txstat0 & (AUE_TXSTAT0_LATECOLL & AUE_TXSTAT0_EXCESSCOLL))
867                 ifp->if_collisions++;
868
869         AUE_UNLOCK(sc);
870         return;
871 }
872 #endif
873
874 static void
875 aue_rxstart(struct ifnet *ifp)
876 {
877         struct aue_softc        *sc;
878         struct aue_chain        *c;
879
880         sc = ifp->if_softc;
881         AUE_LOCK(sc);
882         c = &sc->aue_cdata.aue_rx_chain[sc->aue_cdata.aue_rx_prod];
883
884         if (aue_newbuf(sc, c, NULL) == ENOBUFS) {
885                 ifp->if_ierrors++;
886                 AUE_UNLOCK(sc);
887                 return;
888         }
889
890         /* Setup new transfer. */
891         usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_RX],
892             c, mtod(c->aue_mbuf, char *), AUE_BUFSZ, USBD_SHORT_XFER_OK,
893             USBD_NO_TIMEOUT, aue_rxeof);
894         usbd_transfer(c->aue_xfer);
895
896         AUE_UNLOCK(sc);
897         return;
898 }
899
900 /*
901  * A frame has been uploaded: pass the resulting mbuf chain up to
902  * the higher level protocols.
903  */
904 static void
905 aue_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
906 {
907         struct aue_chain        *c = priv;
908         struct aue_softc        *sc = c->aue_sc;
909         struct mbuf             *m;
910         struct ifnet            *ifp;
911         int                     total_len = 0;
912         struct aue_rxpkt        r;
913
914         if (sc->aue_dying)
915                 return;
916         AUE_LOCK(sc);
917         ifp = &sc->arpcom.ac_if;
918
919         if (!(ifp->if_flags & IFF_RUNNING)) {
920                 AUE_UNLOCK(sc);
921                 return;
922         }
923
924         if (status != USBD_NORMAL_COMPLETION) {
925                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
926                         AUE_UNLOCK(sc);
927                         return;
928                 }
929                 if (usbd_ratecheck(&sc->aue_rx_notice)) {
930                         if_printf(ifp, "usb error on rx: %s\n",
931                             usbd_errstr(status));
932                 }
933                 if (status == USBD_STALLED)
934                         usbd_clear_endpoint_stall(sc->aue_ep[AUE_ENDPT_RX]);
935                 goto done;
936         }
937
938         usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
939
940         if (total_len <= 4 + ETHER_CRC_LEN) {
941                 ifp->if_ierrors++;
942                 goto done;
943         }
944
945         m = c->aue_mbuf;
946         bcopy(mtod(m, char *) + total_len - 4, (char *)&r, sizeof(r));
947
948         /* Turn off all the non-error bits in the rx status word. */
949         r.aue_rxstat &= AUE_RXSTAT_MASK;
950
951         if (r.aue_rxstat) {
952                 ifp->if_ierrors++;
953                 goto done;
954         }
955
956         /* No errors; receive the packet. */
957         total_len -= (4 + ETHER_CRC_LEN);
958
959         ifp->if_ipackets++;
960         m->m_pkthdr.rcvif = ifp;
961         m->m_pkthdr.len = m->m_len = total_len;
962
963         /* Put the packet on the special USB input queue. */
964         usb_ether_input(m);
965         aue_rxstart(ifp);
966         if (!ifq_is_empty(&ifp->if_snd))
967                 (*ifp->if_start)(ifp);
968         AUE_UNLOCK(sc);
969         return;
970 done:
971
972         /* Setup new transfer. */
973         usbd_setup_xfer(xfer, sc->aue_ep[AUE_ENDPT_RX],
974             c, mtod(c->aue_mbuf, char *), AUE_BUFSZ, USBD_SHORT_XFER_OK,
975             USBD_NO_TIMEOUT, aue_rxeof);
976         usbd_transfer(xfer);
977
978         AUE_UNLOCK(sc);
979         return;
980 }
981
982 /*
983  * A frame was downloaded to the chip. It's safe for us to clean up
984  * the list buffers.
985  */
986
987 static void
988 aue_txeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
989 {
990         struct aue_chain        *c = priv;
991         struct aue_softc        *sc = c->aue_sc;
992         struct ifnet            *ifp;
993         usbd_status             err;
994
995         AUE_LOCK(sc);
996         ifp = &sc->arpcom.ac_if;
997
998         if (status != USBD_NORMAL_COMPLETION) {
999                 if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
1000                         AUE_UNLOCK(sc);
1001                         return;
1002                 }
1003                 if_printf(ifp, "usb error on tx: %s\n", usbd_errstr(status));
1004                 if (status == USBD_STALLED)
1005                         usbd_clear_endpoint_stall(sc->aue_ep[AUE_ENDPT_TX]);
1006                 AUE_UNLOCK(sc);
1007                 return;
1008         }
1009
1010         ifp->if_timer = 0;
1011         ifp->if_flags &= ~IFF_OACTIVE;
1012         usbd_get_xfer_status(c->aue_xfer, NULL, NULL, NULL, &err);
1013
1014         if (c->aue_mbuf != NULL) {
1015                 m_free(c->aue_mbuf);
1016                 c->aue_mbuf = NULL;
1017         }
1018
1019         if (err)
1020                 ifp->if_oerrors++;
1021         else
1022                 ifp->if_opackets++;
1023
1024         if (!ifq_is_empty(&ifp->if_snd))
1025                 (*ifp->if_start)(ifp);
1026
1027         AUE_UNLOCK(sc);
1028
1029         return;
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         AUE_LOCK(sc);
1043
1044         ifp = &sc->arpcom.ac_if;
1045         mii = GET_MII(sc);
1046         if (mii == NULL) {
1047                 AUE_UNLOCK(sc);
1048                 return;
1049         }
1050
1051         mii_tick(mii);
1052         if (!sc->aue_link && mii->mii_media_status & IFM_ACTIVE &&
1053             IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
1054                 sc->aue_link++;
1055                 if (!ifq_is_empty(&ifp->if_snd))
1056                         aue_start(ifp);
1057         }
1058
1059         callout_reset(&sc->aue_stat_timer, hz, aue_tick, sc);
1060
1061         AUE_UNLOCK(sc);
1062
1063         return;
1064 }
1065
1066 static int
1067 aue_encap(struct aue_softc *sc, struct mbuf *m, int idx)
1068 {
1069         int                     total_len;
1070         struct aue_chain        *c;
1071         usbd_status             err;
1072
1073         c = &sc->aue_cdata.aue_tx_chain[idx];
1074
1075         /*
1076          * Copy the mbuf data into a contiguous buffer, leaving two
1077          * bytes at the beginning to hold the frame length.
1078          */
1079         m_copydata(m, 0, m->m_pkthdr.len, c->aue_buf + 2);
1080         c->aue_mbuf = m;
1081
1082         total_len = m->m_pkthdr.len + 2;
1083
1084         /*
1085          * The ADMtek documentation says that the packet length is
1086          * supposed to be specified in the first two bytes of the
1087          * transfer, however it actually seems to ignore this info
1088          * and base the frame size on the bulk transfer length.
1089          */
1090         c->aue_buf[0] = (u_int8_t)m->m_pkthdr.len;
1091         c->aue_buf[1] = (u_int8_t)(m->m_pkthdr.len >> 8);
1092
1093         usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_TX],
1094             c, c->aue_buf, total_len, USBD_FORCE_SHORT_XFER,
1095             10000, aue_txeof);
1096
1097         /* Transmit */
1098         err = usbd_transfer(c->aue_xfer);
1099         if (err != USBD_IN_PROGRESS) {
1100                 aue_stop(sc);
1101                 return (EIO);
1102         }
1103
1104         sc->aue_cdata.aue_tx_cnt++;
1105
1106         return (0);
1107 }
1108
1109 static void
1110 aue_start(struct ifnet *ifp)
1111 {
1112         struct aue_softc        *sc = ifp->if_softc;
1113         struct mbuf             *m_head = NULL;
1114
1115         AUE_LOCK(sc);
1116
1117         if (!sc->aue_link) {
1118                 AUE_UNLOCK(sc);
1119                 return;
1120         }
1121
1122         if (ifp->if_flags & IFF_OACTIVE) {
1123                 AUE_UNLOCK(sc);
1124                 return;
1125         }
1126
1127         m_head = ifq_poll(&ifp->if_snd);
1128         if (m_head == NULL) {
1129                 AUE_UNLOCK(sc);
1130                 return;
1131         }
1132
1133         if (aue_encap(sc, m_head, 0)) {
1134                 ifp->if_flags |= IFF_OACTIVE;
1135                 AUE_UNLOCK(sc);
1136                 return;
1137         }
1138         ifq_dequeue(&ifp->if_snd, m_head);
1139
1140         /*
1141          * If there's a BPF listener, bounce a copy of this frame
1142          * to him.
1143          */
1144         BPF_MTAP(ifp, m_head);
1145
1146         ifp->if_flags |= IFF_OACTIVE;
1147
1148         /*
1149          * Set a timeout in case the chip goes out to lunch.
1150          */
1151         ifp->if_timer = 5;
1152         AUE_UNLOCK(sc);
1153
1154         return;
1155 }
1156
1157 static void
1158 aue_init(void *xsc)
1159 {
1160         struct aue_softc        *sc = xsc;
1161         struct ifnet            *ifp = &sc->arpcom.ac_if;
1162         struct mii_data         *mii = GET_MII(sc);
1163         struct aue_chain        *c;
1164         usbd_status             err;
1165         int                     i;
1166
1167         AUE_LOCK(sc);
1168
1169         if (ifp->if_flags & IFF_RUNNING) {
1170                 AUE_UNLOCK(sc);
1171                 return;
1172         }
1173
1174         /*
1175          * Cancel pending I/O and free all RX/TX buffers.
1176          */
1177         aue_reset(sc);
1178
1179         /* Set MAC address */
1180         for (i = 0; i < ETHER_ADDR_LEN; i++)
1181                 aue_csr_write_1(sc, AUE_PAR0 + i, sc->arpcom.ac_enaddr[i]);
1182
1183          /* If we want promiscuous mode, set the allframes bit. */
1184         if (ifp->if_flags & IFF_PROMISC)
1185                 AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
1186         else
1187                 AUE_CLRBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
1188
1189         /* Init TX ring. */
1190         if (aue_tx_list_init(sc) == ENOBUFS) {
1191                 if_printf(&sc->arpcom.ac_if, "tx list init failed\n");
1192                 AUE_UNLOCK(sc);
1193                 return;
1194         }
1195
1196         /* Init RX ring. */
1197         if (aue_rx_list_init(sc) == ENOBUFS) {
1198                 if_printf(&sc->arpcom.ac_if, "rx list init failed\n");
1199                 AUE_UNLOCK(sc);
1200                 return;
1201         }
1202
1203 #ifdef AUE_INTR_PIPE
1204         sc->aue_cdata.aue_ibuf = kmalloc(AUE_INTR_PKTLEN, M_USBDEV, M_WAITOK);
1205 #endif
1206
1207         /* Load the multicast filter. */
1208         aue_setmulti(sc);
1209
1210         /* Enable RX and TX */
1211         aue_csr_write_1(sc, AUE_CTL0, AUE_CTL0_RXSTAT_APPEND | AUE_CTL0_RX_ENB);
1212         AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_TX_ENB);
1213         AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_EP3_CLR);
1214
1215         mii_mediachg(mii);
1216
1217         /* Open RX and TX pipes. */
1218         err = usbd_open_pipe(sc->aue_iface, sc->aue_ed[AUE_ENDPT_RX],
1219             USBD_EXCLUSIVE_USE, &sc->aue_ep[AUE_ENDPT_RX]);
1220         if (err) {
1221                 if_printf(&sc->arpcom.ac_if, "open rx pipe failed: %s\n",
1222                     usbd_errstr(err));
1223                 AUE_UNLOCK(sc);
1224                 return;
1225         }
1226         err = usbd_open_pipe(sc->aue_iface, sc->aue_ed[AUE_ENDPT_TX],
1227             USBD_EXCLUSIVE_USE, &sc->aue_ep[AUE_ENDPT_TX]);
1228         if (err) {
1229                 if_printf(&sc->arpcom.ac_if, "open tx pipe failed: %s\n",
1230                     usbd_errstr(err));
1231                 AUE_UNLOCK(sc);
1232                 return;
1233         }
1234
1235 #ifdef AUE_INTR_PIPE
1236         err = usbd_open_pipe_intr(sc->aue_iface, sc->aue_ed[AUE_ENDPT_INTR],
1237             USBD_SHORT_XFER_OK, &sc->aue_ep[AUE_ENDPT_INTR], sc,
1238             sc->aue_cdata.aue_ibuf, AUE_INTR_PKTLEN, aue_intr,
1239             AUE_INTR_INTERVAL);
1240         if (err) {
1241                 if_printf(&sc->arpcom.ac_if, "open intr pipe failed: %s\n",
1242                     usbd_errstr(err));
1243                 AUE_UNLOCK(sc);
1244                 return;
1245         }
1246 #endif
1247
1248         /* Start up the receive pipe. */
1249         for (i = 0; i < AUE_RX_LIST_CNT; i++) {
1250                 c = &sc->aue_cdata.aue_rx_chain[i];
1251                 usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_RX],
1252                     c, mtod(c->aue_mbuf, char *), AUE_BUFSZ,
1253                 USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, aue_rxeof);
1254                 usbd_transfer(c->aue_xfer);
1255         }
1256
1257         ifp->if_flags |= IFF_RUNNING;
1258         ifp->if_flags &= ~IFF_OACTIVE;
1259
1260         callout_reset(&sc->aue_stat_timer, hz, aue_tick, sc);
1261
1262         AUE_UNLOCK(sc);
1263
1264         return;
1265 }
1266
1267 /*
1268  * Set media options.
1269  */
1270 static int
1271 aue_ifmedia_upd(struct ifnet *ifp)
1272 {
1273         struct aue_softc        *sc = ifp->if_softc;
1274         struct mii_data         *mii = GET_MII(sc);
1275
1276         sc->aue_link = 0;
1277         if (mii->mii_instance) {
1278                 struct mii_softc        *miisc;
1279                 LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
1280                          mii_phy_reset(miisc);
1281         }
1282         mii_mediachg(mii);
1283
1284         return (0);
1285 }
1286
1287 /*
1288  * Report current media status.
1289  */
1290 static void
1291 aue_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
1292 {
1293         struct aue_softc        *sc = ifp->if_softc;
1294         struct mii_data         *mii = GET_MII(sc);
1295
1296         mii_pollstat(mii);
1297         ifmr->ifm_active = mii->mii_media_active;
1298         ifmr->ifm_status = mii->mii_media_status;
1299
1300         return;
1301 }
1302
1303 static int
1304 aue_ioctl(struct ifnet *ifp, u_long command, caddr_t data, struct ucred *cr)
1305 {
1306         struct aue_softc        *sc = ifp->if_softc;
1307         struct ifreq            *ifr = (struct ifreq *)data;
1308         struct mii_data         *mii;
1309         int                     error = 0;
1310
1311         AUE_LOCK(sc);
1312
1313         switch(command) {
1314         case SIOCSIFFLAGS:
1315                 if (ifp->if_flags & IFF_UP) {
1316                         if (ifp->if_flags & IFF_RUNNING &&
1317                             ifp->if_flags & IFF_PROMISC &&
1318                             !(sc->aue_if_flags & IFF_PROMISC)) {
1319                                 AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
1320                         } else if (ifp->if_flags & IFF_RUNNING &&
1321                             !(ifp->if_flags & IFF_PROMISC) &&
1322                             sc->aue_if_flags & IFF_PROMISC) {
1323                                 AUE_CLRBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
1324                         } else if (!(ifp->if_flags & IFF_RUNNING))
1325                                 aue_init(sc);
1326                 } else {
1327                         if (ifp->if_flags & IFF_RUNNING)
1328                                 aue_stop(sc);
1329                 }
1330                 sc->aue_if_flags = ifp->if_flags;
1331                 error = 0;
1332                 break;
1333         case SIOCADDMULTI:
1334         case SIOCDELMULTI:
1335                 aue_setmulti(sc);
1336                 error = 0;
1337                 break;
1338         case SIOCGIFMEDIA:
1339         case SIOCSIFMEDIA:
1340                 mii = GET_MII(sc);
1341                 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1342                 break;
1343         default:
1344                 error = ether_ioctl(ifp, command, data);
1345                 break;
1346         }
1347
1348         AUE_UNLOCK(sc);
1349
1350         return (error);
1351 }
1352
1353 static void
1354 aue_watchdog(struct ifnet *ifp)
1355 {
1356         struct aue_softc        *sc = ifp->if_softc;
1357         struct aue_chain        *c;
1358         usbd_status             stat;
1359
1360         AUE_LOCK(sc);
1361
1362         ifp->if_oerrors++;
1363         if_printf(ifp, "watchdog timeout\n");
1364
1365         c = &sc->aue_cdata.aue_tx_chain[0];
1366         usbd_get_xfer_status(c->aue_xfer, NULL, NULL, NULL, &stat);
1367         aue_txeof(c->aue_xfer, c, stat);
1368
1369         if (!ifq_is_empty(&ifp->if_snd))
1370                 aue_start(ifp);
1371         AUE_UNLOCK(sc);
1372         return;
1373 }
1374
1375 /*
1376  * Stop the adapter and free any mbufs allocated to the
1377  * RX and TX lists.
1378  */
1379 static void
1380 aue_stop(struct aue_softc *sc)
1381 {
1382         usbd_status             err;
1383         struct ifnet            *ifp;
1384         int                     i;
1385
1386         AUE_LOCK(sc);
1387         ifp = &sc->arpcom.ac_if;
1388         ifp->if_timer = 0;
1389
1390         aue_csr_write_1(sc, AUE_CTL0, 0);
1391         aue_csr_write_1(sc, AUE_CTL1, 0);
1392         aue_reset(sc);
1393         callout_stop(&sc->aue_stat_timer);
1394
1395         /* Stop transfers. */
1396         if (sc->aue_ep[AUE_ENDPT_RX] != NULL) {
1397                 err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_RX]);
1398                 if (err) {
1399                         if_printf(ifp, "abort rx pipe failed: %s\n",
1400                             usbd_errstr(err));
1401                 }
1402                 err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_RX]);
1403                 if (err) {
1404                         if_printf(ifp, "close rx pipe failed: %s\n",
1405                             usbd_errstr(err));
1406                 }
1407                 sc->aue_ep[AUE_ENDPT_RX] = NULL;
1408         }
1409
1410         if (sc->aue_ep[AUE_ENDPT_TX] != NULL) {
1411                 err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_TX]);
1412                 if (err) {
1413                         if_printf(ifp, "abort tx pipe failed: %s\n",
1414                             usbd_errstr(err));
1415                 }
1416                 err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_TX]);
1417                 if (err) {
1418                         if_printf(ifp, "close tx pipe failed: %s\n",
1419                             usbd_errstr(err));
1420                 }
1421                 sc->aue_ep[AUE_ENDPT_TX] = NULL;
1422         }
1423
1424 #ifdef AUE_INTR_PIPE
1425         if (sc->aue_ep[AUE_ENDPT_INTR] != NULL) {
1426                 err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_INTR]);
1427                 if (err) {
1428                         if_printf(ifp, "abort intr pipe failed: %s\n",
1429                             usbd_errstr(err));
1430                 }
1431                 err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_INTR]);
1432                 if (err) {
1433                         if_printf(ifp, "close intr pipe failed: %s\n",
1434                             usbd_errstr(err));
1435                 }
1436                 sc->aue_ep[AUE_ENDPT_INTR] = NULL;
1437         }
1438 #endif
1439
1440         /* Free RX resources. */
1441         for (i = 0; i < AUE_RX_LIST_CNT; i++) {
1442                 if (sc->aue_cdata.aue_rx_chain[i].aue_buf != NULL) {
1443                         kfree(sc->aue_cdata.aue_rx_chain[i].aue_buf, M_USBDEV);
1444                         sc->aue_cdata.aue_rx_chain[i].aue_buf = NULL;
1445                 }
1446                 if (sc->aue_cdata.aue_rx_chain[i].aue_mbuf != NULL) {
1447                         m_freem(sc->aue_cdata.aue_rx_chain[i].aue_mbuf);
1448                         sc->aue_cdata.aue_rx_chain[i].aue_mbuf = NULL;
1449                 }
1450                 if (sc->aue_cdata.aue_rx_chain[i].aue_xfer != NULL) {
1451                         usbd_free_xfer(sc->aue_cdata.aue_rx_chain[i].aue_xfer);
1452                         sc->aue_cdata.aue_rx_chain[i].aue_xfer = NULL;
1453                 }
1454         }
1455
1456         /* Free TX resources. */
1457         for (i = 0; i < AUE_TX_LIST_CNT; i++) {
1458                 if (sc->aue_cdata.aue_tx_chain[i].aue_buf != NULL) {
1459                         kfree(sc->aue_cdata.aue_tx_chain[i].aue_buf, M_USBDEV);
1460                         sc->aue_cdata.aue_tx_chain[i].aue_buf = NULL;
1461                 }
1462                 if (sc->aue_cdata.aue_tx_chain[i].aue_mbuf != NULL) {
1463                         m_freem(sc->aue_cdata.aue_tx_chain[i].aue_mbuf);
1464                         sc->aue_cdata.aue_tx_chain[i].aue_mbuf = NULL;
1465                 }
1466                 if (sc->aue_cdata.aue_tx_chain[i].aue_xfer != NULL) {
1467                         usbd_free_xfer(sc->aue_cdata.aue_tx_chain[i].aue_xfer);
1468                         sc->aue_cdata.aue_tx_chain[i].aue_xfer = NULL;
1469                 }
1470         }
1471
1472 #ifdef AUE_INTR_PIPE
1473         if (sc->aue_cdata.aue_ibuf != NULL) {
1474                 kfree(sc->aue_cdata.aue_ibuf, M_USBDEV);
1475                 sc->aue_cdata.aue_ibuf = NULL;
1476         }
1477 #endif
1478
1479         sc->aue_link = 0;
1480
1481         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1482         AUE_UNLOCK(sc);
1483
1484         return;
1485 }
1486
1487 /*
1488  * Stop all chip I/O so that the kernel's probe routines don't
1489  * get confused by errant DMAs when rebooting.
1490  */
1491 static void
1492 aue_shutdown(device_t dev)
1493 {
1494         struct aue_softc        *sc;
1495
1496         sc = device_get_softc(dev);
1497         sc->aue_dying++;
1498         AUE_LOCK(sc);
1499         aue_reset(sc);
1500         aue_stop(sc);
1501         AUE_UNLOCK(sc);
1502
1503         return;
1504 }