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