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