Home | History | Annotate | Line # | Download | only in usb
if_aue.c revision 1.121
      1 /*	$NetBSD: if_aue.c,v 1.121 2010/11/03 22:28:31 dyoung Exp $	*/
      2 /*
      3  * Copyright (c) 1997, 1998, 1999, 2000
      4  *	Bill Paul <wpaul (at) ee.columbia.edu>.  All rights reserved.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 1. Redistributions of source code must retain the above copyright
     10  *    notice, this list of conditions and the following disclaimer.
     11  * 2. Redistributions in binary form must reproduce the above copyright
     12  *    notice, this list of conditions and the following disclaimer in the
     13  *    documentation and/or other materials provided with the distribution.
     14  * 3. All advertising materials mentioning features or use of this software
     15  *    must display the following acknowledgement:
     16  *	This product includes software developed by Bill Paul.
     17  * 4. Neither the name of the author nor the names of any co-contributors
     18  *    may be used to endorse or promote products derived from this software
     19  *    without specific prior written permission.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
     22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
     25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     31  * THE POSSIBILITY OF SUCH DAMAGE.
     32  *
     33  * $FreeBSD: src/sys/dev/usb/if_aue.c,v 1.11 2000/01/14 01:36:14 wpaul 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 (at) 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 /*
     66  * Ported to NetBSD and somewhat rewritten by Lennart Augustsson.
     67  */
     68 
     69 /*
     70  * TODO:
     71  * better error messages from rxstat
     72  * split out if_auevar.h
     73  * add thread to avoid register reads from interrupt context
     74  * more error checks
     75  * investigate short rx problem
     76  * proper cleanup on errors
     77  */
     78 
     79 #include <sys/cdefs.h>
     80 __KERNEL_RCSID(0, "$NetBSD: if_aue.c,v 1.121 2010/11/03 22:28:31 dyoung Exp $");
     81 
     82 #include "opt_inet.h"
     83 #include "rnd.h"
     84 
     85 #include <sys/param.h>
     86 #include <sys/systm.h>
     87 #include <sys/sockio.h>
     88 #include <sys/mutex.h>
     89 #include <sys/mbuf.h>
     90 #include <sys/malloc.h>
     91 #include <sys/kernel.h>
     92 #include <sys/socket.h>
     93 #include <sys/device.h>
     94 #if NRND > 0
     95 #include <sys/rnd.h>
     96 #endif
     97 
     98 #include <net/if.h>
     99 #include <net/if_arp.h>
    100 #include <net/if_dl.h>
    101 #include <net/if_media.h>
    102 
    103 #include <net/bpf.h>
    104 
    105 #include <net/if_ether.h>
    106 #ifdef INET
    107 #include <netinet/in.h>
    108 #include <netinet/if_inarp.h>
    109 #endif
    110 
    111 
    112 
    113 #include <dev/mii/mii.h>
    114 #include <dev/mii/miivar.h>
    115 
    116 #include <dev/usb/usb.h>
    117 #include <dev/usb/usbdi.h>
    118 #include <dev/usb/usbdi_util.h>
    119 #include <dev/usb/usbdevs.h>
    120 
    121 #include <sys/condvar.h>
    122 #include <sys/kthread.h>
    123 
    124 #include <dev/usb/if_auereg.h>
    125 
    126 #ifdef AUE_DEBUG
    127 #define DPRINTF(x)	if (auedebug) printf x
    128 #define DPRINTFN(n,x)	if (auedebug >= (n)) printf x
    129 int	auedebug = 0;
    130 #else
    131 #define DPRINTF(x)
    132 #define DPRINTFN(n,x)
    133 #endif
    134 
    135 /*
    136  * Various supported device vendors/products.
    137  */
    138 struct aue_type {
    139 	struct usb_devno	aue_dev;
    140 	u_int16_t		aue_flags;
    141 #define LSYS	0x0001		/* use Linksys reset */
    142 #define PNA	0x0002		/* has Home PNA */
    143 #define PII	0x0004		/* Pegasus II chip */
    144 };
    145 
    146 Static const struct aue_type aue_devs[] = {
    147  {{ USB_VENDOR_3COM,		USB_PRODUCT_3COM_3C460B},	  PII },
    148  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX1},	  PNA|PII },
    149  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX2},	  PII },
    150  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_UFE1000},	  LSYS },
    151  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX4},	  PNA },
    152  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX5},	  PNA },
    153  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX6},	  PII },
    154  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX7},	  PII },
    155  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX8},	  PII },
    156  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX9},	  PNA },
    157  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_XX10},	  0 },
    158  {{ USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_DSB650TX_PNA}, 0 },
    159  {{ USB_VENDOR_ACCTON,		USB_PRODUCT_ACCTON_USB320_EC},	  0 },
    160  {{ USB_VENDOR_ACCTON,		USB_PRODUCT_ACCTON_SS1001},	  PII },
    161  {{ USB_VENDOR_ADMTEK,		USB_PRODUCT_ADMTEK_PEGASUS},	  PNA },
    162  {{ USB_VENDOR_ADMTEK,		USB_PRODUCT_ADMTEK_PEGASUSII},	  PII },
    163  {{ USB_VENDOR_ADMTEK,		USB_PRODUCT_ADMTEK_PEGASUSII_2},  PII },
    164  {{ USB_VENDOR_ADMTEK,		USB_PRODUCT_ADMTEK_PEGASUSII_3},  PII },
    165  {{ USB_VENDOR_AEI,		USB_PRODUCT_AEI_USBTOLAN},	  PII },
    166  {{ USB_VENDOR_BELKIN,		USB_PRODUCT_BELKIN_USB2LAN},	  PII },
    167  {{ USB_VENDOR_BILLIONTON,	USB_PRODUCT_BILLIONTON_USB100},	  0 },
    168  {{ USB_VENDOR_BILLIONTON,	USB_PRODUCT_BILLIONTON_USBLP100}, PNA },
    169  {{ USB_VENDOR_BILLIONTON,	USB_PRODUCT_BILLIONTON_USBEL100}, 0 },
    170  {{ USB_VENDOR_BILLIONTON,	USB_PRODUCT_BILLIONTON_USBE100},  PII },
    171  {{ USB_VENDOR_COMPAQ,		USB_PRODUCT_COMPAQ_HNE200},       PII },
    172  {{ USB_VENDOR_COREGA,		USB_PRODUCT_COREGA_FETHER_USB_TX}, 0 },
    173  {{ USB_VENDOR_COREGA,		USB_PRODUCT_COREGA_FETHER_USB_TXS},PII },
    174  {{ USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DSB650TX4},	  LSYS|PII },
    175  {{ USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DSB650TX1},	  LSYS },
    176  {{ USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DSB650TX},	  LSYS },
    177  {{ USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DSB650TX_PNA},  PNA },
    178  {{ USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DSB650TX3},	  LSYS|PII },
    179  {{ USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DSB650TX2},	  LSYS|PII },
    180  {{ USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DSB650},	  0 },
    181  {{ USB_VENDOR_ELECOM,		USB_PRODUCT_ELECOM_LDUSBTX0},	  0 },
    182  {{ USB_VENDOR_ELECOM,		USB_PRODUCT_ELECOM_LDUSBTX1},	  LSYS },
    183  {{ USB_VENDOR_ELECOM,		USB_PRODUCT_ELECOM_LDUSBTX2},	  0 },
    184  {{ USB_VENDOR_ELECOM,		USB_PRODUCT_ELECOM_LDUSBTX3},	  LSYS },
    185  {{ USB_VENDOR_ELECOM,		USB_PRODUCT_ELECOM_LDUSBLTX},	  PII },
    186  {{ USB_VENDOR_ELSA,		USB_PRODUCT_ELSA_USB2ETHERNET},	  0 },
    187  {{ USB_VENDOR_HAWKING,		USB_PRODUCT_HAWKING_UF100},	  PII },
    188  {{ USB_VENDOR_HP,		USB_PRODUCT_HP_HN210E},		  PII },
    189  {{ USB_VENDOR_IODATA,		USB_PRODUCT_IODATA_USBETTX},	  0 },
    190  {{ USB_VENDOR_IODATA,		USB_PRODUCT_IODATA_USBETTXS},	  PII },
    191  {{ USB_VENDOR_IODATA,		USB_PRODUCT_IODATA_ETXUS2},	  PII },
    192  {{ USB_VENDOR_KINGSTON,	USB_PRODUCT_KINGSTON_KNU101TX},   0 },
    193  {{ USB_VENDOR_LINKSYS,		USB_PRODUCT_LINKSYS_USB10TX1},	  LSYS|PII },
    194  {{ USB_VENDOR_LINKSYS,		USB_PRODUCT_LINKSYS_USB10T},	  LSYS },
    195  {{ USB_VENDOR_LINKSYS,		USB_PRODUCT_LINKSYS_USB100TX},	  LSYS },
    196  {{ USB_VENDOR_LINKSYS,		USB_PRODUCT_LINKSYS_USB100H1},	  LSYS|PNA },
    197  {{ USB_VENDOR_LINKSYS,		USB_PRODUCT_LINKSYS_USB10TA},	  LSYS },
    198  {{ USB_VENDOR_LINKSYS,		USB_PRODUCT_LINKSYS_USB10TX2},	  LSYS|PII },
    199  {{ USB_VENDOR_MELCO, 		USB_PRODUCT_MELCO_LUATX1}, 	  0 },
    200  {{ USB_VENDOR_MELCO, 		USB_PRODUCT_MELCO_LUATX5}, 	  0 },
    201  {{ USB_VENDOR_MELCO, 		USB_PRODUCT_MELCO_LUA2TX5}, 	  PII },
    202  {{ USB_VENDOR_MICROSOFT,	USB_PRODUCT_MICROSOFT_MN110},	  PII },
    203  {{ USB_VENDOR_NETGEAR,         USB_PRODUCT_NETGEAR_FA101},       PII },
    204  {{ USB_VENDOR_SIEMENS,		USB_PRODUCT_SIEMENS_SPEEDSTREAM}, PII },
    205  {{ USB_VENDOR_SMARTBRIDGES,	USB_PRODUCT_SMARTBRIDGES_SMARTNIC},PII },
    206  {{ USB_VENDOR_SMC,		USB_PRODUCT_SMC_2202USB},	  0 },
    207  {{ USB_VENDOR_SMC,		USB_PRODUCT_SMC_2206USB},	  PII },
    208  {{ USB_VENDOR_SOHOWARE,	USB_PRODUCT_SOHOWARE_NUB100},	  0 },
    209 };
    210 #define aue_lookup(v, p) ((const struct aue_type *)usb_lookup(aue_devs, v, p))
    211 
    212 int aue_match(device_t, cfdata_t, void *);
    213 void aue_attach(device_t, device_t, void *);
    214 int aue_detach(device_t, int);
    215 int aue_activate(device_t, enum devact);
    216 extern struct cfdriver aue_cd;
    217 CFATTACH_DECL_NEW(aue, sizeof(struct aue_softc), aue_match, aue_attach,
    218     aue_detach, aue_activate);
    219 
    220 Static void aue_multithread(void *);
    221 
    222 Static void aue_reset_pegasus_II(struct aue_softc *sc);
    223 Static int aue_tx_list_init(struct aue_softc *);
    224 Static int aue_rx_list_init(struct aue_softc *);
    225 Static int aue_newbuf(struct aue_softc *, struct aue_chain *, struct mbuf *);
    226 Static int aue_send(struct aue_softc *, struct mbuf *, int);
    227 Static void aue_intr(usbd_xfer_handle, usbd_private_handle, usbd_status);
    228 Static void aue_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
    229 Static void aue_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
    230 Static void aue_tick(void *);
    231 Static void aue_tick_task(void *);
    232 Static void aue_start(struct ifnet *);
    233 Static int aue_ioctl(struct ifnet *, u_long, void *);
    234 Static void aue_init(void *);
    235 Static void aue_stop(struct aue_softc *);
    236 Static void aue_watchdog(struct ifnet *);
    237 Static int aue_openpipes(struct aue_softc *);
    238 Static int aue_ifmedia_upd(struct ifnet *);
    239 
    240 Static int aue_eeprom_getword(struct aue_softc *, int);
    241 Static void aue_read_mac(struct aue_softc *, u_char *);
    242 Static int aue_miibus_readreg(device_t, int, int);
    243 Static void aue_miibus_writereg(device_t, int, int, int);
    244 Static void aue_miibus_statchg(device_t);
    245 
    246 Static void aue_lock_mii(struct aue_softc *);
    247 Static void aue_unlock_mii(struct aue_softc *);
    248 
    249 Static void aue_setmulti(struct aue_softc *);
    250 Static u_int32_t aue_crc(void *);
    251 Static void aue_reset(struct aue_softc *);
    252 
    253 Static int aue_csr_read_1(struct aue_softc *, int);
    254 Static int aue_csr_write_1(struct aue_softc *, int, int);
    255 Static int aue_csr_read_2(struct aue_softc *, int);
    256 Static int aue_csr_write_2(struct aue_softc *, int, int);
    257 
    258 #define AUE_SETBIT(sc, reg, x)				\
    259 	aue_csr_write_1(sc, reg, aue_csr_read_1(sc, reg) | (x))
    260 
    261 #define AUE_CLRBIT(sc, reg, x)				\
    262 	aue_csr_write_1(sc, reg, aue_csr_read_1(sc, reg) & ~(x))
    263 
    264 Static int
    265 aue_csr_read_1(struct aue_softc *sc, int reg)
    266 {
    267 	usb_device_request_t	req;
    268 	usbd_status		err;
    269 	uByte			val = 0;
    270 
    271 	if (sc->aue_dying)
    272 		return (0);
    273 
    274 	req.bmRequestType = UT_READ_VENDOR_DEVICE;
    275 	req.bRequest = AUE_UR_READREG;
    276 	USETW(req.wValue, 0);
    277 	USETW(req.wIndex, reg);
    278 	USETW(req.wLength, 1);
    279 
    280 	err = usbd_do_request(sc->aue_udev, &req, &val);
    281 
    282 	if (err) {
    283 		DPRINTF(("%s: aue_csr_read_1: reg=0x%x err=%s\n",
    284 		    device_xname(sc->aue_dev), reg, usbd_errstr(err)));
    285 		return (0);
    286 	}
    287 
    288 	return (val);
    289 }
    290 
    291 Static int
    292 aue_csr_read_2(struct aue_softc *sc, int reg)
    293 {
    294 	usb_device_request_t	req;
    295 	usbd_status		err;
    296 	uWord			val;
    297 
    298 	if (sc->aue_dying)
    299 		return (0);
    300 
    301 	req.bmRequestType = UT_READ_VENDOR_DEVICE;
    302 	req.bRequest = AUE_UR_READREG;
    303 	USETW(req.wValue, 0);
    304 	USETW(req.wIndex, reg);
    305 	USETW(req.wLength, 2);
    306 
    307 	err = usbd_do_request(sc->aue_udev, &req, &val);
    308 
    309 	if (err) {
    310 		DPRINTF(("%s: aue_csr_read_2: reg=0x%x err=%s\n",
    311 		    device_xname(sc->aue_dev), reg, usbd_errstr(err)));
    312 		return (0);
    313 	}
    314 
    315 	return (UGETW(val));
    316 }
    317 
    318 Static int
    319 aue_csr_write_1(struct aue_softc *sc, int reg, int aval)
    320 {
    321 	usb_device_request_t	req;
    322 	usbd_status		err;
    323 	uByte			val;
    324 
    325 	if (sc->aue_dying)
    326 		return (0);
    327 
    328 	val = aval;
    329 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    330 	req.bRequest = AUE_UR_WRITEREG;
    331 	USETW(req.wValue, val);
    332 	USETW(req.wIndex, reg);
    333 	USETW(req.wLength, 1);
    334 
    335 	err = usbd_do_request(sc->aue_udev, &req, &val);
    336 
    337 	if (err) {
    338 		DPRINTF(("%s: aue_csr_write_1: reg=0x%x err=%s\n",
    339 		    device_xname(sc->aue_dev), reg, usbd_errstr(err)));
    340 		return (-1);
    341 	}
    342 
    343 	return (0);
    344 }
    345 
    346 Static int
    347 aue_csr_write_2(struct aue_softc *sc, int reg, int aval)
    348 {
    349 	usb_device_request_t	req;
    350 	usbd_status		err;
    351 	uWord			val;
    352 
    353 	if (sc->aue_dying)
    354 		return (0);
    355 
    356 	USETW(val, aval);
    357 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    358 	req.bRequest = AUE_UR_WRITEREG;
    359 	USETW(req.wValue, aval);
    360 	USETW(req.wIndex, reg);
    361 	USETW(req.wLength, 2);
    362 
    363 	err = usbd_do_request(sc->aue_udev, &req, &val);
    364 
    365 	if (err) {
    366 		DPRINTF(("%s: aue_csr_write_2: reg=0x%x err=%s\n",
    367 		    device_xname(sc->aue_dev), reg, usbd_errstr(err)));
    368 		return (-1);
    369 	}
    370 
    371 	return (0);
    372 }
    373 
    374 /*
    375  * Read a word of data stored in the EEPROM at address 'addr.'
    376  */
    377 Static int
    378 aue_eeprom_getword(struct aue_softc *sc, int addr)
    379 {
    380 	int		i;
    381 
    382 	aue_csr_write_1(sc, AUE_EE_REG, addr);
    383 	aue_csr_write_1(sc, AUE_EE_CTL, AUE_EECTL_READ);
    384 
    385 	for (i = 0; i < AUE_TIMEOUT; i++) {
    386 		if (aue_csr_read_1(sc, AUE_EE_CTL) & AUE_EECTL_DONE)
    387 			break;
    388 	}
    389 
    390 	if (i == AUE_TIMEOUT) {
    391 		printf("%s: EEPROM read timed out\n",
    392 		    device_xname(sc->aue_dev));
    393 	}
    394 
    395 	return (aue_csr_read_2(sc, AUE_EE_DATA));
    396 }
    397 
    398 /*
    399  * Read the MAC from the EEPROM.  It's at offset 0.
    400  */
    401 Static void
    402 aue_read_mac(struct aue_softc *sc, u_char *dest)
    403 {
    404 	int			i;
    405 	int			off = 0;
    406 	int			word;
    407 
    408 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
    409 
    410 	for (i = 0; i < 3; i++) {
    411 		word = aue_eeprom_getword(sc, off + i);
    412 		dest[2 * i] = (u_char)word;
    413 		dest[2 * i + 1] = (u_char)(word >> 8);
    414 	}
    415 }
    416 
    417 /* Get exclusive access to the MII registers */
    418 Static void
    419 aue_lock_mii(struct aue_softc *sc)
    420 {
    421 	sc->aue_refcnt++;
    422 	mutex_enter(&sc->aue_mii_lock);
    423 }
    424 
    425 Static void
    426 aue_unlock_mii(struct aue_softc *sc)
    427 {
    428 	mutex_exit(&sc->aue_mii_lock);
    429 	if (--sc->aue_refcnt < 0)
    430 		usb_detach_wakeup((sc->aue_dev));
    431 }
    432 
    433 Static int
    434 aue_miibus_readreg(device_t dev, int phy, int reg)
    435 {
    436 	struct aue_softc *sc = device_private(dev);
    437 	int			i;
    438 	u_int16_t		val;
    439 
    440 	if (sc->aue_dying) {
    441 #ifdef DIAGNOSTIC
    442 		printf("%s: dying\n", device_xname(sc->aue_dev));
    443 #endif
    444 		return 0;
    445 	}
    446 
    447 #if 0
    448 	/*
    449 	 * The Am79C901 HomePNA PHY actually contains
    450 	 * two transceivers: a 1Mbps HomePNA PHY and a
    451 	 * 10Mbps full/half duplex ethernet PHY with
    452 	 * NWAY autoneg. However in the ADMtek adapter,
    453 	 * only the 1Mbps PHY is actually connected to
    454 	 * anything, so we ignore the 10Mbps one. It
    455 	 * happens to be configured for MII address 3,
    456 	 * so we filter that out.
    457 	 */
    458 	if (sc->aue_vendor == USB_VENDOR_ADMTEK &&
    459 	    sc->aue_product == USB_PRODUCT_ADMTEK_PEGASUS) {
    460 		if (phy == 3)
    461 			return (0);
    462 	}
    463 #endif
    464 
    465 	aue_lock_mii(sc);
    466 	aue_csr_write_1(sc, AUE_PHY_ADDR, phy);
    467 	aue_csr_write_1(sc, AUE_PHY_CTL, reg | AUE_PHYCTL_READ);
    468 
    469 	for (i = 0; i < AUE_TIMEOUT; i++) {
    470 		if (aue_csr_read_1(sc, AUE_PHY_CTL) & AUE_PHYCTL_DONE)
    471 			break;
    472 	}
    473 
    474 	if (i == AUE_TIMEOUT) {
    475 		printf("%s: MII read timed out\n", device_xname(sc->aue_dev));
    476 	}
    477 
    478 	val = aue_csr_read_2(sc, AUE_PHY_DATA);
    479 
    480 	DPRINTFN(11,("%s: %s: phy=%d reg=%d => 0x%04x\n",
    481 	    device_xname(sc->aue_dev), __func__, phy, reg, val));
    482 
    483 	aue_unlock_mii(sc);
    484 	return (val);
    485 }
    486 
    487 Static void
    488 aue_miibus_writereg(device_t dev, int phy, int reg, int data)
    489 {
    490 	struct aue_softc *sc = device_private(dev);
    491 	int			i;
    492 
    493 #if 0
    494 	if (sc->aue_vendor == USB_VENDOR_ADMTEK &&
    495 	    sc->aue_product == USB_PRODUCT_ADMTEK_PEGASUS) {
    496 		if (phy == 3)
    497 			return;
    498 	}
    499 #endif
    500 
    501 	DPRINTFN(11,("%s: %s: phy=%d reg=%d data=0x%04x\n",
    502 	    device_xname(sc->aue_dev), __func__, phy, reg, data));
    503 
    504 	aue_lock_mii(sc);
    505 	aue_csr_write_2(sc, AUE_PHY_DATA, data);
    506 	aue_csr_write_1(sc, AUE_PHY_ADDR, phy);
    507 	aue_csr_write_1(sc, AUE_PHY_CTL, reg | AUE_PHYCTL_WRITE);
    508 
    509 	for (i = 0; i < AUE_TIMEOUT; i++) {
    510 		if (aue_csr_read_1(sc, AUE_PHY_CTL) & AUE_PHYCTL_DONE)
    511 			break;
    512 	}
    513 
    514 	if (i == AUE_TIMEOUT) {
    515 		printf("%s: MII read timed out\n", device_xname(sc->aue_dev));
    516 	}
    517 	aue_unlock_mii(sc);
    518 }
    519 
    520 Static void
    521 aue_miibus_statchg(device_t dev)
    522 {
    523 	struct aue_softc *sc = device_private(dev);
    524 	struct mii_data		*mii = GET_MII(sc);
    525 
    526 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
    527 
    528 	aue_lock_mii(sc);
    529 	AUE_CLRBIT(sc, AUE_CTL0, AUE_CTL0_RX_ENB | AUE_CTL0_TX_ENB);
    530 
    531 	if (IFM_SUBTYPE(mii->mii_media_active) == IFM_100_TX) {
    532 		AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_SPEEDSEL);
    533 	} else {
    534 		AUE_CLRBIT(sc, AUE_CTL1, AUE_CTL1_SPEEDSEL);
    535 	}
    536 
    537 	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX)
    538 		AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_DUPLEX);
    539 	else
    540 		AUE_CLRBIT(sc, AUE_CTL1, AUE_CTL1_DUPLEX);
    541 
    542 	AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_RX_ENB | AUE_CTL0_TX_ENB);
    543 	aue_unlock_mii(sc);
    544 
    545 	/*
    546 	 * Set the LED modes on the LinkSys adapter.
    547 	 * This turns on the 'dual link LED' bin in the auxmode
    548 	 * register of the Broadcom PHY.
    549 	 */
    550 	if (!sc->aue_dying && (sc->aue_flags & LSYS)) {
    551 		u_int16_t auxmode;
    552 		auxmode = aue_miibus_readreg(dev, 0, 0x1b);
    553 		aue_miibus_writereg(dev, 0, 0x1b, auxmode | 0x04);
    554 	}
    555 	DPRINTFN(5,("%s: %s: exit\n", device_xname(sc->aue_dev), __func__));
    556 }
    557 
    558 #define AUE_POLY	0xEDB88320
    559 #define AUE_BITS	6
    560 
    561 Static u_int32_t
    562 aue_crc(void *addrv)
    563 {
    564 	u_int32_t		idx, bit, data, crc;
    565 	char *addr = addrv;
    566 
    567 	/* Compute CRC for the address value. */
    568 	crc = 0xFFFFFFFF; /* initial value */
    569 
    570 	for (idx = 0; idx < 6; idx++) {
    571 		for (data = *addr++, bit = 0; bit < 8; bit++, data >>= 1)
    572 			crc = (crc >> 1) ^ (((crc ^ data) & 1) ? AUE_POLY : 0);
    573 	}
    574 
    575 	return (crc & ((1 << AUE_BITS) - 1));
    576 }
    577 
    578 Static void
    579 aue_setmulti(struct aue_softc *sc)
    580 {
    581 	struct ifnet		*ifp;
    582 	struct ether_multi	*enm;
    583 	struct ether_multistep	step;
    584 	u_int32_t		h = 0, i;
    585 
    586 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
    587 
    588 	ifp = GET_IFP(sc);
    589 
    590 	if (ifp->if_flags & IFF_PROMISC) {
    591 allmulti:
    592 		ifp->if_flags |= IFF_ALLMULTI;
    593 		AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_ALLMULTI);
    594 		return;
    595 	}
    596 
    597 	AUE_CLRBIT(sc, AUE_CTL0, AUE_CTL0_ALLMULTI);
    598 
    599 	/* first, zot all the existing hash bits */
    600 	for (i = 0; i < 8; i++)
    601 		aue_csr_write_1(sc, AUE_MAR0 + i, 0);
    602 
    603 	/* now program new ones */
    604 	ETHER_FIRST_MULTI(step, &sc->aue_ec, enm);
    605 	while (enm != NULL) {
    606 		if (memcmp(enm->enm_addrlo,
    607 		    enm->enm_addrhi, ETHER_ADDR_LEN) != 0)
    608 			goto allmulti;
    609 
    610 		h = aue_crc(enm->enm_addrlo);
    611 		AUE_SETBIT(sc, AUE_MAR + (h >> 3), 1 << (h & 0x7));
    612 		ETHER_NEXT_MULTI(step, enm);
    613 	}
    614 
    615 	ifp->if_flags &= ~IFF_ALLMULTI;
    616 }
    617 
    618 Static void
    619 aue_reset_pegasus_II(struct aue_softc *sc)
    620 {
    621 	/* Magic constants taken from Linux driver. */
    622 	aue_csr_write_1(sc, AUE_REG_1D, 0);
    623 	aue_csr_write_1(sc, AUE_REG_7B, 2);
    624 #if 0
    625 	if ((sc->aue_flags & HAS_HOME_PNA) && mii_mode)
    626 		aue_csr_write_1(sc, AUE_REG_81, 6);
    627 	else
    628 #endif
    629 		aue_csr_write_1(sc, AUE_REG_81, 2);
    630 }
    631 
    632 Static void
    633 aue_reset(struct aue_softc *sc)
    634 {
    635 	int		i;
    636 
    637 	DPRINTFN(2,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
    638 
    639 	AUE_SETBIT(sc, AUE_CTL1, AUE_CTL1_RESETMAC);
    640 
    641 	for (i = 0; i < AUE_TIMEOUT; i++) {
    642 		if (!(aue_csr_read_1(sc, AUE_CTL1) & AUE_CTL1_RESETMAC))
    643 			break;
    644 	}
    645 
    646 	if (i == AUE_TIMEOUT)
    647 		printf("%s: reset failed\n", device_xname(sc->aue_dev));
    648 
    649 #if 0
    650 	/* XXX what is mii_mode supposed to be */
    651 	if (sc->aue_mii_mode && (sc->aue_flags & PNA))
    652 		aue_csr_write_1(sc, AUE_GPIO1, 0x34);
    653 	else
    654 		aue_csr_write_1(sc, AUE_GPIO1, 0x26);
    655 #endif
    656 
    657 	/*
    658 	 * The PHY(s) attached to the Pegasus chip may be held
    659 	 * in reset until we flip on the GPIO outputs. Make sure
    660 	 * to set the GPIO pins high so that the PHY(s) will
    661 	 * be enabled.
    662 	 *
    663 	 * Note: We force all of the GPIO pins low first, *then*
    664 	 * enable the ones we want.
    665   	 */
    666 	if (sc->aue_flags & LSYS) {
    667 		/* Grrr. LinkSys has to be different from everyone else. */
    668 		aue_csr_write_1(sc, AUE_GPIO0,
    669 		    AUE_GPIO_SEL0 | AUE_GPIO_SEL1);
    670 	} else {
    671 		aue_csr_write_1(sc, AUE_GPIO0,
    672 		    AUE_GPIO_OUT0 | AUE_GPIO_SEL0);
    673 	}
    674   	aue_csr_write_1(sc, AUE_GPIO0,
    675 	    AUE_GPIO_OUT0 | AUE_GPIO_SEL0 | AUE_GPIO_SEL1);
    676 
    677 	if (sc->aue_flags & PII)
    678 		aue_reset_pegasus_II(sc);
    679 
    680 	/* Wait a little while for the chip to get its brains in order. */
    681 	delay(10000);		/* XXX */
    682 }
    683 
    684 /*
    685  * Probe for a Pegasus chip.
    686  */
    687 int
    688 aue_match(device_t parent, cfdata_t match, void *aux)
    689 {
    690 	struct usb_attach_arg *uaa = aux;
    691 
    692 	/*
    693 	 * Some manufacturers use the same vendor and product id for
    694 	 * different devices. We need to sanity check the DeviceClass
    695 	 * in this case
    696 	 * Currently known guilty products:
    697 	 * 0x050d/0x0121 Belkin Bluetooth and USB2LAN
    698 	 *
    699 	 * If this turns out to be more common, we could use a quirk
    700 	 * table.
    701 	 */
    702 	if (uaa->vendor == USB_VENDOR_BELKIN &&
    703 		uaa->product == USB_PRODUCT_BELKIN_USB2LAN) {
    704 		usb_device_descriptor_t *dd;
    705 
    706 		dd = usbd_get_device_descriptor(uaa->device);
    707 		if (dd != NULL &&
    708 			dd->bDeviceClass != UDCLASS_IN_INTERFACE)
    709 			return (UMATCH_NONE);
    710 	}
    711 
    712 	return (aue_lookup(uaa->vendor, uaa->product) != NULL ?
    713 		UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
    714 }
    715 
    716 /*
    717  * Attach the interface. Allocate softc structures, do ifmedia
    718  * setup and ethernet/BPF attach.
    719  */
    720 void
    721 aue_attach(device_t parent, device_t self, void *aux)
    722 {
    723 	struct aue_softc *sc = device_private(self);
    724 	struct usb_attach_arg *uaa = aux;
    725 	char			*devinfop;
    726 	int			s;
    727 	u_char			eaddr[ETHER_ADDR_LEN];
    728 	struct ifnet		*ifp;
    729 	struct mii_data		*mii;
    730 	usbd_device_handle	dev = uaa->device;
    731 	usbd_interface_handle	iface;
    732 	usbd_status		err;
    733 	usb_interface_descriptor_t	*id;
    734 	usb_endpoint_descriptor_t	*ed;
    735 	int			i;
    736 
    737 	DPRINTFN(5,(" : aue_attach: sc=%p", sc));
    738 
    739 	sc->aue_dev = self;
    740 
    741 	aprint_naive("\n");
    742 	aprint_normal("\n");
    743 
    744 	devinfop = usbd_devinfo_alloc(uaa->device, 0);
    745 	aprint_normal_dev(self, "%s\n", devinfop);
    746 	usbd_devinfo_free(devinfop);
    747 
    748 	err = usbd_set_config_no(dev, AUE_CONFIG_NO, 1);
    749 	if (err) {
    750 		aprint_error_dev(self, "setting config no failed\n");
    751 		return;
    752 	}
    753 
    754 	usb_init_task(&sc->aue_tick_task, aue_tick_task, sc);
    755 	usb_init_task(&sc->aue_stop_task, (void (*)(void *))aue_stop, sc);
    756 	mutex_init(&sc->aue_mii_lock, MUTEX_DEFAULT, IPL_NONE);
    757 
    758 	err = usbd_device2interface_handle(dev, AUE_IFACE_IDX, &iface);
    759 	if (err) {
    760 		aprint_error_dev(self, "getting interface handle failed\n");
    761 		return;
    762 	}
    763 	sc->aue_closing = 0;
    764 
    765 	mutex_init(&sc->aue_mcmtx, MUTEX_DRIVER, IPL_NET);
    766 	cv_init(&sc->aue_domc, "auemc");
    767 	cv_init(&sc->aue_closemc, "auemccl");
    768 
    769 	err = kthread_create(PRI_NONE, 0, NULL,
    770 		aue_multithread, sc, &sc->aue_thread,
    771 		"%s-mc", device_xname(sc->aue_dev));
    772 
    773 	if (err) {
    774 		aprint_error_dev(self,
    775 		    "creating multicast configuration thread\n");
    776 		return;
    777 	}
    778 	sc->aue_flags = aue_lookup(uaa->vendor, uaa->product)->aue_flags;
    779 
    780 	sc->aue_udev = dev;
    781 	sc->aue_iface = iface;
    782 	sc->aue_product = uaa->product;
    783 	sc->aue_vendor = uaa->vendor;
    784 
    785 	id = usbd_get_interface_descriptor(iface);
    786 
    787 	/* Find endpoints. */
    788 	for (i = 0; i < id->bNumEndpoints; i++) {
    789 		ed = usbd_interface2endpoint_descriptor(iface, i);
    790 		if (ed == NULL) {
    791 			aprint_error_dev(self,
    792 			    "couldn't get endpoint descriptor %d\n", i);
    793 			return;
    794 		}
    795 		if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    796 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    797 			sc->aue_ed[AUE_ENDPT_RX] = ed->bEndpointAddress;
    798 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    799 			   UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    800 			sc->aue_ed[AUE_ENDPT_TX] = ed->bEndpointAddress;
    801 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    802 			   UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
    803 			sc->aue_ed[AUE_ENDPT_INTR] = ed->bEndpointAddress;
    804 		}
    805 	}
    806 
    807 	if (sc->aue_ed[AUE_ENDPT_RX] == 0 || sc->aue_ed[AUE_ENDPT_TX] == 0 ||
    808 	    sc->aue_ed[AUE_ENDPT_INTR] == 0) {
    809 		aprint_error_dev(self, "missing endpoint\n");
    810 		return;
    811 	}
    812 
    813 
    814 	s = splnet();
    815 
    816 	/* Reset the adapter. */
    817 	aue_reset(sc);
    818 
    819 	/*
    820 	 * Get station address from the EEPROM.
    821 	 */
    822 	aue_read_mac(sc, eaddr);
    823 
    824 	/*
    825 	 * A Pegasus chip was detected. Inform the world.
    826 	 */
    827 	ifp = GET_IFP(sc);
    828 	aprint_normal_dev(self, "Ethernet address %s\n", ether_sprintf(eaddr));
    829 
    830 	/* Initialize interface info.*/
    831 	ifp->if_softc = sc;
    832 	ifp->if_mtu = ETHERMTU;
    833 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
    834 	ifp->if_ioctl = aue_ioctl;
    835 	ifp->if_start = aue_start;
    836 	ifp->if_watchdog = aue_watchdog;
    837 	strncpy(ifp->if_xname, device_xname(sc->aue_dev), IFNAMSIZ);
    838 
    839 	IFQ_SET_READY(&ifp->if_snd);
    840 
    841 	/* Initialize MII/media info. */
    842 	mii = &sc->aue_mii;
    843 	mii->mii_ifp = ifp;
    844 	mii->mii_readreg = aue_miibus_readreg;
    845 	mii->mii_writereg = aue_miibus_writereg;
    846 	mii->mii_statchg = aue_miibus_statchg;
    847 	mii->mii_flags = MIIF_AUTOTSLEEP;
    848 	sc->aue_ec.ec_mii = mii;
    849 	ifmedia_init(&mii->mii_media, 0, aue_ifmedia_upd, ether_mediastatus);
    850 	mii_attach(self, mii, 0xffffffff, MII_PHY_ANY, MII_OFFSET_ANY, 0);
    851 	if (LIST_FIRST(&mii->mii_phys) == NULL) {
    852 		ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
    853 		ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
    854 	} else
    855 		ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
    856 
    857 	/* Attach the interface. */
    858 	if_attach(ifp);
    859 	ether_ifattach(ifp, eaddr);
    860 #if NRND > 0
    861 	rnd_attach_source(&sc->rnd_source, device_xname(sc->aue_dev),
    862 	    RND_TYPE_NET, 0);
    863 #endif
    864 
    865 	callout_init(&(sc->aue_stat_ch), 0);
    866 
    867 	sc->aue_attached = 1;
    868 	splx(s);
    869 
    870 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->aue_udev, sc->aue_dev);
    871 
    872 	return;
    873 }
    874 
    875 int
    876 aue_detach(device_t self, int flags)
    877 {
    878 	struct aue_softc *sc = device_private(self);
    879 	struct ifnet		*ifp = GET_IFP(sc);
    880 	int			s;
    881 
    882 	DPRINTFN(2,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
    883 
    884 	if (!sc->aue_attached) {
    885 		/* Detached before attached finished, so just bail out. */
    886 		return (0);
    887 	}
    888 
    889 	callout_stop(&sc->aue_stat_ch);
    890 	/*
    891 	 * Remove any pending tasks.  They cannot be executing because they run
    892 	 * in the same thread as detach.
    893 	 */
    894 	usb_rem_task(sc->aue_udev, &sc->aue_tick_task);
    895 	usb_rem_task(sc->aue_udev, &sc->aue_stop_task);
    896 
    897 	sc->aue_closing = 1;
    898 	cv_signal(&sc->aue_domc);
    899 
    900 	mutex_enter(&sc->aue_mcmtx);
    901 	cv_wait(&sc->aue_closemc,&sc->aue_mcmtx);
    902 	mutex_exit(&sc->aue_mcmtx);
    903 
    904 	mutex_destroy(&sc->aue_mcmtx);
    905 	cv_destroy(&sc->aue_domc);
    906 	cv_destroy(&sc->aue_closemc);
    907 
    908 	s = splusb();
    909 
    910 	if (ifp->if_flags & IFF_RUNNING)
    911 		aue_stop(sc);
    912 
    913 #if NRND > 0
    914 	rnd_detach_source(&sc->rnd_source);
    915 #endif
    916 	mii_detach(&sc->aue_mii, MII_PHY_ANY, MII_OFFSET_ANY);
    917 	ifmedia_delete_instance(&sc->aue_mii.mii_media, IFM_INST_ANY);
    918 	ether_ifdetach(ifp);
    919 
    920 	if_detach(ifp);
    921 
    922 #ifdef DIAGNOSTIC
    923 	if (sc->aue_ep[AUE_ENDPT_TX] != NULL ||
    924 	    sc->aue_ep[AUE_ENDPT_RX] != NULL ||
    925 	    sc->aue_ep[AUE_ENDPT_INTR] != NULL)
    926 		aprint_error_dev(self, "detach has active endpoints\n");
    927 #endif
    928 
    929 	sc->aue_attached = 0;
    930 
    931 	if (--sc->aue_refcnt >= 0) {
    932 		/* Wait for processes to go away. */
    933 		usb_detach_wait((sc->aue_dev));
    934 	}
    935 	splx(s);
    936 
    937 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->aue_udev, sc->aue_dev);
    938 
    939 	mutex_destroy(&sc->aue_mii_lock);
    940 #if 0
    941 	mutex_destroy(&sc->wkmtx);
    942 #endif
    943 	return (0);
    944 }
    945 
    946 int
    947 aue_activate(device_t self, enum devact act)
    948 {
    949 	struct aue_softc *sc = device_private(self);
    950 
    951 	DPRINTFN(2,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
    952 
    953 	switch (act) {
    954 	case DVACT_DEACTIVATE:
    955 		if_deactivate(&sc->aue_ec.ec_if);
    956 		sc->aue_dying = 1;
    957 		return 0;
    958 	default:
    959 		return EOPNOTSUPP;
    960 	}
    961 }
    962 
    963 /*
    964  * Initialize an RX descriptor and attach an MBUF cluster.
    965  */
    966 Static int
    967 aue_newbuf(struct aue_softc *sc, struct aue_chain *c, struct mbuf *m)
    968 {
    969 	struct mbuf		*m_new = NULL;
    970 
    971 	DPRINTFN(10,("%s: %s: enter\n", device_xname(sc->aue_dev),__func__));
    972 
    973 	if (m == NULL) {
    974 		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
    975 		if (m_new == NULL) {
    976 			aprint_error_dev(sc->aue_dev, "no memory for rx list "
    977 			    "-- packet dropped!\n");
    978 			return (ENOBUFS);
    979 		}
    980 
    981 		MCLGET(m_new, M_DONTWAIT);
    982 		if (!(m_new->m_flags & M_EXT)) {
    983 			aprint_error_dev(sc->aue_dev, "no memory for rx "
    984 			    "list -- packet dropped!\n");
    985 			m_freem(m_new);
    986 			return (ENOBUFS);
    987 		}
    988 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
    989 	} else {
    990 		m_new = m;
    991 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
    992 		m_new->m_data = m_new->m_ext.ext_buf;
    993 	}
    994 
    995 	m_adj(m_new, ETHER_ALIGN);
    996 	c->aue_mbuf = m_new;
    997 
    998 	return (0);
    999 }
   1000 
   1001 Static int
   1002 aue_rx_list_init(struct aue_softc *sc)
   1003 {
   1004 	struct aue_cdata	*cd;
   1005 	struct aue_chain	*c;
   1006 	int			i;
   1007 
   1008 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
   1009 
   1010 	cd = &sc->aue_cdata;
   1011 	for (i = 0; i < AUE_RX_LIST_CNT; i++) {
   1012 		c = &cd->aue_rx_chain[i];
   1013 		c->aue_sc = sc;
   1014 		c->aue_idx = i;
   1015 		if (aue_newbuf(sc, c, NULL) == ENOBUFS)
   1016 			return (ENOBUFS);
   1017 		if (c->aue_xfer == NULL) {
   1018 			c->aue_xfer = usbd_alloc_xfer(sc->aue_udev);
   1019 			if (c->aue_xfer == NULL)
   1020 				return (ENOBUFS);
   1021 			c->aue_buf = usbd_alloc_buffer(c->aue_xfer, AUE_BUFSZ);
   1022 			if (c->aue_buf == NULL)
   1023 				return (ENOBUFS); /* XXX free xfer */
   1024 		}
   1025 	}
   1026 
   1027 	return (0);
   1028 }
   1029 
   1030 Static int
   1031 aue_tx_list_init(struct aue_softc *sc)
   1032 {
   1033 	struct aue_cdata	*cd;
   1034 	struct aue_chain	*c;
   1035 	int			i;
   1036 
   1037 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
   1038 
   1039 	cd = &sc->aue_cdata;
   1040 	for (i = 0; i < AUE_TX_LIST_CNT; i++) {
   1041 		c = &cd->aue_tx_chain[i];
   1042 		c->aue_sc = sc;
   1043 		c->aue_idx = i;
   1044 		c->aue_mbuf = NULL;
   1045 		if (c->aue_xfer == NULL) {
   1046 			c->aue_xfer = usbd_alloc_xfer(sc->aue_udev);
   1047 			if (c->aue_xfer == NULL)
   1048 				return (ENOBUFS);
   1049 			c->aue_buf = usbd_alloc_buffer(c->aue_xfer, AUE_BUFSZ);
   1050 			if (c->aue_buf == NULL)
   1051 				return (ENOBUFS);
   1052 		}
   1053 	}
   1054 
   1055 	return (0);
   1056 }
   1057 
   1058 Static void
   1059 aue_intr(usbd_xfer_handle xfer, usbd_private_handle priv,
   1060     usbd_status status)
   1061 {
   1062 	struct aue_softc	*sc = priv;
   1063 	struct ifnet		*ifp = GET_IFP(sc);
   1064 	struct aue_intrpkt	*p = &sc->aue_cdata.aue_ibuf;
   1065 
   1066 	DPRINTFN(15,("%s: %s: enter\n", device_xname(sc->aue_dev),__func__));
   1067 
   1068 	if (sc->aue_dying)
   1069 		return;
   1070 
   1071 	if (!(ifp->if_flags & IFF_RUNNING))
   1072 		return;
   1073 
   1074 	if (status != USBD_NORMAL_COMPLETION) {
   1075 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
   1076 			return;
   1077 		}
   1078 		sc->aue_intr_errs++;
   1079 		if (usbd_ratecheck(&sc->aue_rx_notice)) {
   1080 			aprint_error_dev(sc->aue_dev,
   1081 			    "%u usb errors on intr: %s\n", sc->aue_intr_errs,
   1082 			    usbd_errstr(status));
   1083 			sc->aue_intr_errs = 0;
   1084 		}
   1085 		if (status == USBD_STALLED)
   1086 			usbd_clear_endpoint_stall_async(sc->aue_ep[AUE_ENDPT_RX]);
   1087 		return;
   1088 	}
   1089 
   1090 	if (p->aue_txstat0)
   1091 		ifp->if_oerrors++;
   1092 
   1093 	if (p->aue_txstat0 & (AUE_TXSTAT0_LATECOLL | AUE_TXSTAT0_EXCESSCOLL))
   1094 		ifp->if_collisions++;
   1095 }
   1096 
   1097 /*
   1098  * A frame has been uploaded: pass the resulting mbuf chain up to
   1099  * the higher level protocols.
   1100  */
   1101 Static void
   1102 aue_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
   1103 {
   1104 	struct aue_chain	*c = priv;
   1105 	struct aue_softc	*sc = c->aue_sc;
   1106 	struct ifnet		*ifp = GET_IFP(sc);
   1107 	struct mbuf		*m;
   1108 	u_int32_t		total_len;
   1109 	struct aue_rxpkt	r;
   1110 	int			s;
   1111 
   1112 	DPRINTFN(10,("%s: %s: enter\n", device_xname(sc->aue_dev),__func__));
   1113 
   1114 	if (sc->aue_dying)
   1115 		return;
   1116 
   1117 	if (!(ifp->if_flags & IFF_RUNNING))
   1118 		return;
   1119 
   1120 	if (status != USBD_NORMAL_COMPLETION) {
   1121 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
   1122 			return;
   1123 		sc->aue_rx_errs++;
   1124 		if (usbd_ratecheck(&sc->aue_rx_notice)) {
   1125 			aprint_error_dev(sc->aue_dev,
   1126 			    "%u usb errors on rx: %s\n", sc->aue_rx_errs,
   1127 			    usbd_errstr(status));
   1128 			sc->aue_rx_errs = 0;
   1129 		}
   1130 		if (status == USBD_STALLED)
   1131 			usbd_clear_endpoint_stall_async(sc->aue_ep[AUE_ENDPT_RX]);
   1132 		goto done;
   1133 	}
   1134 
   1135 	usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
   1136 
   1137 	memcpy(mtod(c->aue_mbuf, char *), c->aue_buf, total_len);
   1138 
   1139 	if (total_len <= 4 + ETHER_CRC_LEN) {
   1140 		ifp->if_ierrors++;
   1141 		goto done;
   1142 	}
   1143 
   1144 	memcpy(&r, c->aue_buf + total_len - 4, sizeof(r));
   1145 
   1146 	/* Turn off all the non-error bits in the rx status word. */
   1147 	r.aue_rxstat &= AUE_RXSTAT_MASK;
   1148 	if (r.aue_rxstat) {
   1149 		ifp->if_ierrors++;
   1150 		goto done;
   1151 	}
   1152 
   1153 	/* No errors; receive the packet. */
   1154 	m = c->aue_mbuf;
   1155 	total_len -= ETHER_CRC_LEN + 4;
   1156 	m->m_pkthdr.len = m->m_len = total_len;
   1157 	ifp->if_ipackets++;
   1158 
   1159 	m->m_pkthdr.rcvif = ifp;
   1160 
   1161 	s = splnet();
   1162 
   1163 	/* XXX ugly */
   1164 	if (aue_newbuf(sc, c, NULL) == ENOBUFS) {
   1165 		ifp->if_ierrors++;
   1166 		goto done1;
   1167 	}
   1168 
   1169 	/*
   1170 	 * Handle BPF listeners. Let the BPF user see the packet, but
   1171 	 * don't pass it up to the ether_input() layer unless it's
   1172 	 * a broadcast packet, multicast packet, matches our ethernet
   1173 	 * address or the interface is in promiscuous mode.
   1174 	 */
   1175 	bpf_mtap(ifp, m);
   1176 
   1177 	DPRINTFN(10,("%s: %s: deliver %d\n", device_xname(sc->aue_dev),
   1178 		    __func__, m->m_len));
   1179 	(*(ifp)->if_input)((ifp), (m));
   1180  done1:
   1181 	splx(s);
   1182 
   1183  done:
   1184 
   1185 	/* Setup new transfer. */
   1186 	usbd_setup_xfer(xfer, sc->aue_ep[AUE_ENDPT_RX],
   1187 	    c, c->aue_buf, AUE_BUFSZ,
   1188 	    USBD_SHORT_XFER_OK | USBD_NO_COPY,
   1189 	    USBD_NO_TIMEOUT, aue_rxeof);
   1190 	usbd_transfer(xfer);
   1191 
   1192 	DPRINTFN(10,("%s: %s: start rx\n", device_xname(sc->aue_dev),
   1193 		    __func__));
   1194 }
   1195 
   1196 /*
   1197  * A frame was downloaded to the chip. It's safe for us to clean up
   1198  * the list buffers.
   1199  */
   1200 
   1201 Static void
   1202 aue_txeof(usbd_xfer_handle xfer, usbd_private_handle priv,
   1203     usbd_status status)
   1204 {
   1205 	struct aue_chain	*c = priv;
   1206 	struct aue_softc	*sc = c->aue_sc;
   1207 	struct ifnet		*ifp = GET_IFP(sc);
   1208 	int			s;
   1209 
   1210 	if (sc->aue_dying)
   1211 		return;
   1212 
   1213 	s = splnet();
   1214 
   1215 	DPRINTFN(10,("%s: %s: enter status=%d\n", device_xname(sc->aue_dev),
   1216 		    __func__, status));
   1217 
   1218 	ifp->if_timer = 0;
   1219 	ifp->if_flags &= ~IFF_OACTIVE;
   1220 
   1221 	if (status != USBD_NORMAL_COMPLETION) {
   1222 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
   1223 			splx(s);
   1224 			return;
   1225 		}
   1226 		ifp->if_oerrors++;
   1227 		aprint_error_dev(sc->aue_dev, "usb error on tx: %s\n",
   1228 		    usbd_errstr(status));
   1229 		if (status == USBD_STALLED)
   1230 			usbd_clear_endpoint_stall_async(sc->aue_ep[AUE_ENDPT_TX]);
   1231 		splx(s);
   1232 		return;
   1233 	}
   1234 
   1235 	ifp->if_opackets++;
   1236 
   1237 	m_freem(c->aue_mbuf);
   1238 	c->aue_mbuf = NULL;
   1239 
   1240 	if (IFQ_IS_EMPTY(&ifp->if_snd) == 0)
   1241 		aue_start(ifp);
   1242 
   1243 	splx(s);
   1244 }
   1245 
   1246 Static void
   1247 aue_tick(void *xsc)
   1248 {
   1249 	struct aue_softc	*sc = xsc;
   1250 
   1251 	DPRINTFN(15,("%s: %s: enter\n", device_xname(sc->aue_dev),__func__));
   1252 
   1253 	if (sc == NULL)
   1254 		return;
   1255 
   1256 	if (sc->aue_dying)
   1257 		return;
   1258 
   1259 	/* Perform periodic stuff in process context. */
   1260 	usb_add_task(sc->aue_udev, &sc->aue_tick_task, USB_TASKQ_DRIVER);
   1261 }
   1262 
   1263 Static void
   1264 aue_tick_task(void *xsc)
   1265 {
   1266 	struct aue_softc	*sc = xsc;
   1267 	struct ifnet		*ifp;
   1268 	struct mii_data		*mii;
   1269 	int			s;
   1270 
   1271 	DPRINTFN(15,("%s: %s: enter\n", device_xname(sc->aue_dev),__func__));
   1272 
   1273 	if (sc->aue_dying)
   1274 		return;
   1275 
   1276 	ifp = GET_IFP(sc);
   1277 	mii = GET_MII(sc);
   1278 	if (mii == NULL)
   1279 		return;
   1280 
   1281 	s = splnet();
   1282 
   1283 	mii_tick(mii);
   1284 	if (!sc->aue_link) {
   1285 		mii_pollstat(mii); /* XXX FreeBSD has removed this call */
   1286 		if (mii->mii_media_status & IFM_ACTIVE &&
   1287 		    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
   1288 			DPRINTFN(2,("%s: %s: got link\n",
   1289 			    device_xname(sc->aue_dev), __func__));
   1290 			sc->aue_link++;
   1291 			if (IFQ_IS_EMPTY(&ifp->if_snd) == 0)
   1292 				aue_start(ifp);
   1293 		}
   1294 	}
   1295 
   1296 	callout_reset(&(sc->aue_stat_ch), (hz), (aue_tick), (sc));
   1297 
   1298 	splx(s);
   1299 }
   1300 
   1301 Static int
   1302 aue_send(struct aue_softc *sc, struct mbuf *m, int idx)
   1303 {
   1304 	int			total_len;
   1305 	struct aue_chain	*c;
   1306 	usbd_status		err;
   1307 
   1308 	DPRINTFN(10,("%s: %s: enter\n", device_xname(sc->aue_dev),__func__));
   1309 
   1310 	c = &sc->aue_cdata.aue_tx_chain[idx];
   1311 
   1312 	/*
   1313 	 * Copy the mbuf data into a contiguous buffer, leaving two
   1314 	 * bytes at the beginning to hold the frame length.
   1315 	 */
   1316 	m_copydata(m, 0, m->m_pkthdr.len, c->aue_buf + 2);
   1317 	c->aue_mbuf = m;
   1318 
   1319 	/*
   1320 	 * The ADMtek documentation says that the packet length is
   1321 	 * supposed to be specified in the first two bytes of the
   1322 	 * transfer, however it actually seems to ignore this info
   1323 	 * and base the frame size on the bulk transfer length.
   1324 	 */
   1325 	c->aue_buf[0] = (u_int8_t)m->m_pkthdr.len;
   1326 	c->aue_buf[1] = (u_int8_t)(m->m_pkthdr.len >> 8);
   1327 	total_len = m->m_pkthdr.len + 2;
   1328 
   1329 	usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_TX],
   1330 	    c, c->aue_buf, total_len, USBD_FORCE_SHORT_XFER | USBD_NO_COPY,
   1331 	    AUE_TX_TIMEOUT, aue_txeof);
   1332 
   1333 	/* Transmit */
   1334 	err = usbd_transfer(c->aue_xfer);
   1335 	if (err != USBD_IN_PROGRESS) {
   1336 		aprint_error_dev(sc->aue_dev, "aue_send error=%s\n",
   1337 		       usbd_errstr(err));
   1338 		/* Stop the interface from process context. */
   1339 		usb_add_task(sc->aue_udev, &sc->aue_stop_task,
   1340 		    USB_TASKQ_DRIVER);
   1341 		return (EIO);
   1342 	}
   1343 	DPRINTFN(5,("%s: %s: send %d bytes\n", device_xname(sc->aue_dev),
   1344 		    __func__, total_len));
   1345 
   1346 	sc->aue_cdata.aue_tx_cnt++;
   1347 
   1348 	return (0);
   1349 }
   1350 
   1351 Static void
   1352 aue_start(struct ifnet *ifp)
   1353 {
   1354 	struct aue_softc	*sc = ifp->if_softc;
   1355 	struct mbuf		*m_head = NULL;
   1356 
   1357 	DPRINTFN(5,("%s: %s: enter, link=%d\n", device_xname(sc->aue_dev),
   1358 		    __func__, sc->aue_link));
   1359 
   1360 	if (sc->aue_dying)
   1361 		return;
   1362 
   1363 	if (!sc->aue_link)
   1364 		return;
   1365 
   1366 	if (ifp->if_flags & IFF_OACTIVE)
   1367 		return;
   1368 
   1369 	IFQ_POLL(&ifp->if_snd, m_head);
   1370 	if (m_head == NULL)
   1371 		return;
   1372 
   1373 	if (aue_send(sc, m_head, 0)) {
   1374 		ifp->if_flags |= IFF_OACTIVE;
   1375 		return;
   1376 	}
   1377 
   1378 	IFQ_DEQUEUE(&ifp->if_snd, m_head);
   1379 
   1380 	/*
   1381 	 * If there's a BPF listener, bounce a copy of this frame
   1382 	 * to him.
   1383 	 */
   1384 	bpf_mtap(ifp, m_head);
   1385 
   1386 	ifp->if_flags |= IFF_OACTIVE;
   1387 
   1388 	/*
   1389 	 * Set a timeout in case the chip goes out to lunch.
   1390 	 */
   1391 	ifp->if_timer = 5;
   1392 }
   1393 
   1394 Static void
   1395 aue_init(void *xsc)
   1396 {
   1397 	struct aue_softc	*sc = xsc;
   1398 	struct ifnet		*ifp = GET_IFP(sc);
   1399 	struct mii_data		*mii = GET_MII(sc);
   1400 	int			i, s;
   1401 	const u_char		*eaddr;
   1402 
   1403 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
   1404 
   1405 	if (sc->aue_dying)
   1406 		return;
   1407 
   1408 	if (ifp->if_flags & IFF_RUNNING)
   1409 		return;
   1410 
   1411 	s = splnet();
   1412 
   1413 	/*
   1414 	 * Cancel pending I/O and free all RX/TX buffers.
   1415 	 */
   1416 	aue_reset(sc);
   1417 
   1418 	eaddr = CLLADDR(ifp->if_sadl);
   1419 	for (i = 0; i < ETHER_ADDR_LEN; i++)
   1420 		aue_csr_write_1(sc, AUE_PAR0 + i, eaddr[i]);
   1421 
   1422 	 /* If we want promiscuous mode, set the allframes bit. */
   1423 	if (ifp->if_flags & IFF_PROMISC)
   1424 		AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
   1425 	else
   1426 		AUE_CLRBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
   1427 
   1428 	/* Init TX ring. */
   1429 	if (aue_tx_list_init(sc) == ENOBUFS) {
   1430 		aprint_error_dev(sc->aue_dev, "tx list init failed\n");
   1431 		splx(s);
   1432 		return;
   1433 	}
   1434 
   1435 	/* Init RX ring. */
   1436 	if (aue_rx_list_init(sc) == ENOBUFS) {
   1437 		aprint_error_dev(sc->aue_dev, "rx list init failed\n");
   1438 		splx(s);
   1439 		return;
   1440 	}
   1441 
   1442 	/* Load the multicast filter. */
   1443 	aue_setmulti(sc);
   1444 
   1445 	/* Enable RX and TX */
   1446 	aue_csr_write_1(sc, AUE_CTL0, AUE_CTL0_RXSTAT_APPEND | AUE_CTL0_RX_ENB);
   1447 	AUE_SETBIT(sc, AUE_CTL0, AUE_CTL0_TX_ENB);
   1448 	AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_EP3_CLR);
   1449 
   1450 	mii_mediachg(mii);
   1451 
   1452 	if (sc->aue_ep[AUE_ENDPT_RX] == NULL) {
   1453 		if (aue_openpipes(sc)) {
   1454 			splx(s);
   1455 			return;
   1456 		}
   1457 	}
   1458 
   1459 	ifp->if_flags |= IFF_RUNNING;
   1460 	ifp->if_flags &= ~IFF_OACTIVE;
   1461 
   1462 	splx(s);
   1463 
   1464 	callout_reset(&(sc->aue_stat_ch), (hz), (aue_tick), (sc));
   1465 }
   1466 
   1467 Static int
   1468 aue_openpipes(struct aue_softc *sc)
   1469 {
   1470 	struct aue_chain	*c;
   1471 	usbd_status		err;
   1472 	int i;
   1473 
   1474 	/* Open RX and TX pipes. */
   1475 	err = usbd_open_pipe(sc->aue_iface, sc->aue_ed[AUE_ENDPT_RX],
   1476 	    USBD_EXCLUSIVE_USE, &sc->aue_ep[AUE_ENDPT_RX]);
   1477 	if (err) {
   1478 		aprint_error_dev(sc->aue_dev, "open rx pipe failed: %s\n",
   1479 		    usbd_errstr(err));
   1480 		return (EIO);
   1481 	}
   1482 	err = usbd_open_pipe(sc->aue_iface, sc->aue_ed[AUE_ENDPT_TX],
   1483 	    USBD_EXCLUSIVE_USE, &sc->aue_ep[AUE_ENDPT_TX]);
   1484 	if (err) {
   1485 		aprint_error_dev(sc->aue_dev, "open tx pipe failed: %s\n",
   1486 		    usbd_errstr(err));
   1487 		return (EIO);
   1488 	}
   1489 	err = usbd_open_pipe_intr(sc->aue_iface, sc->aue_ed[AUE_ENDPT_INTR],
   1490 	    USBD_EXCLUSIVE_USE, &sc->aue_ep[AUE_ENDPT_INTR], sc,
   1491 	    &sc->aue_cdata.aue_ibuf, AUE_INTR_PKTLEN, aue_intr,
   1492 	    AUE_INTR_INTERVAL);
   1493 	if (err) {
   1494 		aprint_error_dev(sc->aue_dev, "open intr pipe failed: %s\n",
   1495 		    usbd_errstr(err));
   1496 		return (EIO);
   1497 	}
   1498 
   1499 	/* Start up the receive pipe. */
   1500 	for (i = 0; i < AUE_RX_LIST_CNT; i++) {
   1501 		c = &sc->aue_cdata.aue_rx_chain[i];
   1502 		usbd_setup_xfer(c->aue_xfer, sc->aue_ep[AUE_ENDPT_RX],
   1503 		    c, c->aue_buf, AUE_BUFSZ,
   1504 		    USBD_SHORT_XFER_OK | USBD_NO_COPY, USBD_NO_TIMEOUT,
   1505 		    aue_rxeof);
   1506 		(void)usbd_transfer(c->aue_xfer); /* XXX */
   1507 		DPRINTFN(5,("%s: %s: start read\n", device_xname(sc->aue_dev),
   1508 			    __func__));
   1509 
   1510 	}
   1511 	return (0);
   1512 }
   1513 
   1514 /*
   1515  * Set media options.
   1516  */
   1517 Static int
   1518 aue_ifmedia_upd(struct ifnet *ifp)
   1519 {
   1520 	struct aue_softc	*sc = ifp->if_softc;
   1521 	struct mii_data		*mii = GET_MII(sc);
   1522 	int rc;
   1523 
   1524 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
   1525 
   1526 	if (sc->aue_dying)
   1527 		return (0);
   1528 
   1529 	sc->aue_link = 0;
   1530 
   1531 	if ((rc = mii_mediachg(mii)) == ENXIO)
   1532 		return 0;
   1533 	return rc;
   1534 }
   1535 
   1536 Static int
   1537 aue_ioctl(struct ifnet *ifp, u_long command, void *data)
   1538 {
   1539 	struct aue_softc	*sc = ifp->if_softc;
   1540 	struct ifaddr 		*ifa = (struct ifaddr *)data;
   1541 	struct ifreq		*ifr = (struct ifreq *)data;
   1542 	int			s, error = 0;
   1543 
   1544 	if (sc->aue_dying)
   1545 		return (EIO);
   1546 
   1547 	s = splnet();
   1548 
   1549 	switch(command) {
   1550 	case SIOCINITIFADDR:
   1551 		ifp->if_flags |= IFF_UP;
   1552 		aue_init(sc);
   1553 
   1554 		switch (ifa->ifa_addr->sa_family) {
   1555 #ifdef INET
   1556 		case AF_INET:
   1557 			arp_ifinit(ifp, ifa);
   1558 			break;
   1559 #endif /* INET */
   1560 		}
   1561 		break;
   1562 
   1563 	case SIOCSIFMTU:
   1564 		if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > ETHERMTU)
   1565 			error = EINVAL;
   1566 		else if ((error = ifioctl_common(ifp, command, data)) == ENETRESET)
   1567 			error = 0;
   1568 		break;
   1569 
   1570 	case SIOCSIFFLAGS:
   1571 		if ((error = ifioctl_common(ifp, command, data)) != 0)
   1572 			break;
   1573 		if (ifp->if_flags & IFF_UP) {
   1574 			if (ifp->if_flags & IFF_RUNNING &&
   1575 			    ifp->if_flags & IFF_PROMISC &&
   1576 			    !(sc->aue_if_flags & IFF_PROMISC)) {
   1577 				AUE_SETBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
   1578 			} else if (ifp->if_flags & IFF_RUNNING &&
   1579 			    !(ifp->if_flags & IFF_PROMISC) &&
   1580 			    sc->aue_if_flags & IFF_PROMISC) {
   1581 				AUE_CLRBIT(sc, AUE_CTL2, AUE_CTL2_RX_PROMISC);
   1582 			} else if (!(ifp->if_flags & IFF_RUNNING))
   1583 				aue_init(sc);
   1584 		} else {
   1585 			if (ifp->if_flags & IFF_RUNNING)
   1586 				aue_stop(sc);
   1587 		}
   1588 		sc->aue_if_flags = ifp->if_flags;
   1589 		error = 0;
   1590 		break;
   1591 	case SIOCADDMULTI:
   1592 	case SIOCDELMULTI:
   1593 	case SIOCGIFMEDIA:
   1594 	case SIOCSIFMEDIA:
   1595 		if ((error = ether_ioctl(ifp, command, data)) == ENETRESET) {
   1596 			if (ifp->if_flags & IFF_RUNNING) {
   1597 				cv_signal(&sc->aue_domc);
   1598 			}
   1599 			error = 0;
   1600 		}
   1601 		break;
   1602 	default:
   1603 		error = ether_ioctl(ifp, command, data);
   1604 		break;
   1605 	}
   1606 
   1607 	splx(s);
   1608 
   1609 	return (error);
   1610 }
   1611 
   1612 Static void
   1613 aue_watchdog(struct ifnet *ifp)
   1614 {
   1615 	struct aue_softc	*sc = ifp->if_softc;
   1616 	struct aue_chain	*c;
   1617 	usbd_status		stat;
   1618 	int			s;
   1619 
   1620 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
   1621 
   1622 	ifp->if_oerrors++;
   1623 	aprint_error_dev(sc->aue_dev, "watchdog timeout\n");
   1624 
   1625 	s = splusb();
   1626 	c = &sc->aue_cdata.aue_tx_chain[0];
   1627 	usbd_get_xfer_status(c->aue_xfer, NULL, NULL, NULL, &stat);
   1628 	aue_txeof(c->aue_xfer, c, stat);
   1629 
   1630 	if (IFQ_IS_EMPTY(&ifp->if_snd) == 0)
   1631 		aue_start(ifp);
   1632 	splx(s);
   1633 }
   1634 
   1635 /*
   1636  * Stop the adapter and free any mbufs allocated to the
   1637  * RX and TX lists.
   1638  */
   1639 Static void
   1640 aue_stop(struct aue_softc *sc)
   1641 {
   1642 	usbd_status		err;
   1643 	struct ifnet		*ifp;
   1644 	int			i;
   1645 
   1646 	DPRINTFN(5,("%s: %s: enter\n", device_xname(sc->aue_dev), __func__));
   1647 
   1648 	ifp = GET_IFP(sc);
   1649 	ifp->if_timer = 0;
   1650 
   1651 	aue_csr_write_1(sc, AUE_CTL0, 0);
   1652 	aue_csr_write_1(sc, AUE_CTL1, 0);
   1653 	aue_reset(sc);
   1654 	callout_stop(&sc->aue_stat_ch);
   1655 
   1656 	/* Stop transfers. */
   1657 	if (sc->aue_ep[AUE_ENDPT_RX] != NULL) {
   1658 		err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_RX]);
   1659 		if (err) {
   1660 			printf("%s: abort rx pipe failed: %s\n",
   1661 			    device_xname(sc->aue_dev), usbd_errstr(err));
   1662 		}
   1663 		err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_RX]);
   1664 		if (err) {
   1665 			printf("%s: close rx pipe failed: %s\n",
   1666 			    device_xname(sc->aue_dev), usbd_errstr(err));
   1667 		}
   1668 		sc->aue_ep[AUE_ENDPT_RX] = NULL;
   1669 	}
   1670 
   1671 	if (sc->aue_ep[AUE_ENDPT_TX] != NULL) {
   1672 		err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_TX]);
   1673 		if (err) {
   1674 			printf("%s: abort tx pipe failed: %s\n",
   1675 			    device_xname(sc->aue_dev), usbd_errstr(err));
   1676 		}
   1677 		err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_TX]);
   1678 		if (err) {
   1679 			printf("%s: close tx pipe failed: %s\n",
   1680 			    device_xname(sc->aue_dev), usbd_errstr(err));
   1681 		}
   1682 		sc->aue_ep[AUE_ENDPT_TX] = NULL;
   1683 	}
   1684 
   1685 	if (sc->aue_ep[AUE_ENDPT_INTR] != NULL) {
   1686 		err = usbd_abort_pipe(sc->aue_ep[AUE_ENDPT_INTR]);
   1687 		if (err) {
   1688 			printf("%s: abort intr pipe failed: %s\n",
   1689 			    device_xname(sc->aue_dev), usbd_errstr(err));
   1690 		}
   1691 		err = usbd_close_pipe(sc->aue_ep[AUE_ENDPT_INTR]);
   1692 		if (err) {
   1693 			printf("%s: close intr pipe failed: %s\n",
   1694 			    device_xname(sc->aue_dev), usbd_errstr(err));
   1695 		}
   1696 		sc->aue_ep[AUE_ENDPT_INTR] = NULL;
   1697 	}
   1698 
   1699 	/* Free RX resources. */
   1700 	for (i = 0; i < AUE_RX_LIST_CNT; i++) {
   1701 		if (sc->aue_cdata.aue_rx_chain[i].aue_mbuf != NULL) {
   1702 			m_freem(sc->aue_cdata.aue_rx_chain[i].aue_mbuf);
   1703 			sc->aue_cdata.aue_rx_chain[i].aue_mbuf = NULL;
   1704 		}
   1705 		if (sc->aue_cdata.aue_rx_chain[i].aue_xfer != NULL) {
   1706 			usbd_free_xfer(sc->aue_cdata.aue_rx_chain[i].aue_xfer);
   1707 			sc->aue_cdata.aue_rx_chain[i].aue_xfer = NULL;
   1708 		}
   1709 	}
   1710 
   1711 	/* Free TX resources. */
   1712 	for (i = 0; i < AUE_TX_LIST_CNT; i++) {
   1713 		if (sc->aue_cdata.aue_tx_chain[i].aue_mbuf != NULL) {
   1714 			m_freem(sc->aue_cdata.aue_tx_chain[i].aue_mbuf);
   1715 			sc->aue_cdata.aue_tx_chain[i].aue_mbuf = NULL;
   1716 		}
   1717 		if (sc->aue_cdata.aue_tx_chain[i].aue_xfer != NULL) {
   1718 			usbd_free_xfer(sc->aue_cdata.aue_tx_chain[i].aue_xfer);
   1719 			sc->aue_cdata.aue_tx_chain[i].aue_xfer = NULL;
   1720 		}
   1721 	}
   1722 
   1723 	sc->aue_link = 0;
   1724 
   1725 	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
   1726 }
   1727 
   1728 Static void
   1729 aue_multithread(void *arg)
   1730 {
   1731 	struct aue_softc *sc;
   1732 	int s;
   1733 
   1734 	sc = (struct aue_softc *)arg;
   1735 
   1736 	while (1) {
   1737 		mutex_enter(&sc->aue_mcmtx);
   1738 		cv_wait(&sc->aue_domc,&sc->aue_mcmtx);
   1739 		mutex_exit(&sc->aue_mcmtx);
   1740 
   1741 		if (sc->aue_closing)
   1742 			break;
   1743 
   1744 		s = splnet();
   1745 		aue_init(sc);
   1746 		/* XXX called by aue_init, but rc ifconfig hangs without it: */
   1747 		aue_setmulti(sc);
   1748 		splx(s);
   1749 	}
   1750 
   1751 	cv_signal(&sc->aue_closemc);
   1752 
   1753 	kthread_exit(0);
   1754 }
   1755