]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/usb/net/if_axe.c
MFV r353561: 10343 ZoL: Prefix all refcount functions with zfs_
[FreeBSD/FreeBSD.git] / sys / dev / usb / net / if_axe.c
1 /*-
2  * SPDX-License-Identifier: BSD-4-Clause
3  *
4  * Copyright (c) 1997, 1998, 1999, 2000-2003
5  *      Bill Paul <wpaul@windriver.com>.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Bill Paul.
18  * 4. Neither the name of the author nor the names of any co-contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
26  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32  * THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37
38 /*
39  * ASIX Electronics AX88172/AX88178/AX88778 USB 2.0 ethernet driver.
40  * Used in the LinkSys USB200M and various other adapters.
41  *
42  * Manuals available from:
43  * http://www.asix.com.tw/datasheet/mac/Ax88172.PDF
44  * Note: you need the manual for the AX88170 chip (USB 1.x ethernet
45  * controller) to find the definitions for the RX control register.
46  * http://www.asix.com.tw/datasheet/mac/Ax88170.PDF
47  *
48  * Written by Bill Paul <wpaul@windriver.com>
49  * Senior Engineer
50  * Wind River Systems
51  */
52
53 /*
54  * The AX88172 provides USB ethernet supports at 10 and 100Mbps.
55  * It uses an external PHY (reference designs use a RealTek chip),
56  * and has a 64-bit multicast hash filter. There is some information
57  * missing from the manual which one needs to know in order to make
58  * the chip function:
59  *
60  * - You must set bit 7 in the RX control register, otherwise the
61  *   chip won't receive any packets.
62  * - You must initialize all 3 IPG registers, or you won't be able
63  *   to send any packets.
64  *
65  * Note that this device appears to only support loading the station
66  * address via autload from the EEPROM (i.e. there's no way to manaully
67  * set it).
68  *
69  * (Adam Weinberger wanted me to name this driver if_gir.c.)
70  */
71
72 /*
73  * Ax88178 and Ax88772 support backported from the OpenBSD driver.
74  * 2007/02/12, J.R. Oldroyd, fbsd@opal.com
75  *
76  * Manual here:
77  * http://www.asix.com.tw/FrootAttach/datasheet/AX88178_datasheet_Rev10.pdf
78  * http://www.asix.com.tw/FrootAttach/datasheet/AX88772_datasheet_Rev10.pdf
79  */
80
81 #include <sys/param.h>
82 #include <sys/systm.h>
83 #include <sys/bus.h>
84 #include <sys/condvar.h>
85 #include <sys/endian.h>
86 #include <sys/kernel.h>
87 #include <sys/lock.h>
88 #include <sys/malloc.h>
89 #include <sys/mbuf.h>
90 #include <sys/module.h>
91 #include <sys/mutex.h>
92 #include <sys/socket.h>
93 #include <sys/sockio.h>
94 #include <sys/sysctl.h>
95 #include <sys/sx.h>
96
97 #include <net/if.h>
98 #include <net/if_var.h>
99 #include <net/ethernet.h>
100 #include <net/if_types.h>
101 #include <net/if_media.h>
102 #include <net/if_vlan_var.h>
103
104 #include <dev/mii/mii.h>
105 #include <dev/mii/miivar.h>
106
107 #include <dev/usb/usb.h>
108 #include <dev/usb/usbdi.h>
109 #include <dev/usb/usbdi_util.h>
110 #include "usbdevs.h"
111
112 #define USB_DEBUG_VAR axe_debug
113 #include <dev/usb/usb_debug.h>
114 #include <dev/usb/usb_process.h>
115
116 #include <dev/usb/net/usb_ethernet.h>
117 #include <dev/usb/net/if_axereg.h>
118
119 #include "miibus_if.h"
120
121 /*
122  * AXE_178_MAX_FRAME_BURST
123  * max frame burst size for Ax88178 and Ax88772
124  *      0       2048 bytes
125  *      1       4096 bytes
126  *      2       8192 bytes
127  *      3       16384 bytes
128  * use the largest your system can handle without USB stalling.
129  *
130  * NB: 88772 parts appear to generate lots of input errors with
131  * a 2K rx buffer and 8K is only slightly faster than 4K on an
132  * EHCI port on a T42 so change at your own risk.
133  */
134 #define AXE_178_MAX_FRAME_BURST 1
135
136 #define AXE_CSUM_FEATURES       (CSUM_IP | CSUM_TCP | CSUM_UDP)
137
138 #ifdef USB_DEBUG
139 static int axe_debug = 0;
140
141 static SYSCTL_NODE(_hw_usb, OID_AUTO, axe, CTLFLAG_RW, 0, "USB axe");
142 SYSCTL_INT(_hw_usb_axe, OID_AUTO, debug, CTLFLAG_RWTUN, &axe_debug, 0,
143     "Debug level");
144 #endif
145
146 /*
147  * Various supported device vendors/products.
148  */
149 static const STRUCT_USB_HOST_ID axe_devs[] = {
150 #define AXE_DEV(v,p,i) { USB_VPI(USB_VENDOR_##v, USB_PRODUCT_##v##_##p, i) }
151         AXE_DEV(ABOCOM, UF200, 0),
152         AXE_DEV(ACERCM, EP1427X2, 0),
153         AXE_DEV(APPLE, ETHERNET, AXE_FLAG_772),
154         AXE_DEV(ASIX, AX88172, 0),
155         AXE_DEV(ASIX, AX88178, AXE_FLAG_178),
156         AXE_DEV(ASIX, AX88772, AXE_FLAG_772),
157         AXE_DEV(ASIX, AX88772A, AXE_FLAG_772A),
158         AXE_DEV(ASIX, AX88772B, AXE_FLAG_772B),
159         AXE_DEV(ASIX, AX88772B_1, AXE_FLAG_772B),
160         AXE_DEV(ATEN, UC210T, 0),
161         AXE_DEV(BELKIN, F5D5055, AXE_FLAG_178),
162         AXE_DEV(BILLIONTON, USB2AR, 0),
163         AXE_DEV(CISCOLINKSYS, USB200MV2, AXE_FLAG_772A),
164         AXE_DEV(COREGA, FETHER_USB2_TX, 0),
165         AXE_DEV(DLINK, DUBE100, 0),
166         AXE_DEV(DLINK, DUBE100B1, AXE_FLAG_772),
167         AXE_DEV(DLINK, DUBE100C1, AXE_FLAG_772B),
168         AXE_DEV(GOODWAY, GWUSB2E, 0),
169         AXE_DEV(IODATA, ETGUS2, AXE_FLAG_178),
170         AXE_DEV(JVC, MP_PRX1, 0),
171         AXE_DEV(LENOVO, ETHERNET, AXE_FLAG_772B),
172         AXE_DEV(LINKSYS2, USB200M, 0),
173         AXE_DEV(LINKSYS4, USB1000, AXE_FLAG_178),
174         AXE_DEV(LOGITEC, LAN_GTJU2A, AXE_FLAG_178),
175         AXE_DEV(MELCO, LUAU2KTX, 0),
176         AXE_DEV(MELCO, LUA3U2AGT, AXE_FLAG_178),
177         AXE_DEV(NETGEAR, FA120, 0),
178         AXE_DEV(OQO, ETHER01PLUS, AXE_FLAG_772),
179         AXE_DEV(PLANEX3, GU1000T, AXE_FLAG_178),
180         AXE_DEV(SITECOM, LN029, 0),
181         AXE_DEV(SITECOMEU, LN028, AXE_FLAG_178),
182         AXE_DEV(SITECOMEU, LN031, AXE_FLAG_178),
183         AXE_DEV(SYSTEMTALKS, SGCX2UL, 0),
184 #undef AXE_DEV
185 };
186
187 static device_probe_t axe_probe;
188 static device_attach_t axe_attach;
189 static device_detach_t axe_detach;
190
191 static usb_callback_t axe_bulk_read_callback;
192 static usb_callback_t axe_bulk_write_callback;
193
194 static miibus_readreg_t axe_miibus_readreg;
195 static miibus_writereg_t axe_miibus_writereg;
196 static miibus_statchg_t axe_miibus_statchg;
197
198 static uether_fn_t axe_attach_post;
199 static uether_fn_t axe_init;
200 static uether_fn_t axe_stop;
201 static uether_fn_t axe_start;
202 static uether_fn_t axe_tick;
203 static uether_fn_t axe_setmulti;
204 static uether_fn_t axe_setpromisc;
205
206 static int      axe_attach_post_sub(struct usb_ether *);
207 static int      axe_ifmedia_upd(struct ifnet *);
208 static void     axe_ifmedia_sts(struct ifnet *, struct ifmediareq *);
209 static int      axe_cmd(struct axe_softc *, int, int, int, void *);
210 static void     axe_ax88178_init(struct axe_softc *);
211 static void     axe_ax88772_init(struct axe_softc *);
212 static void     axe_ax88772_phywake(struct axe_softc *);
213 static void     axe_ax88772a_init(struct axe_softc *);
214 static void     axe_ax88772b_init(struct axe_softc *);
215 static int      axe_get_phyno(struct axe_softc *, int);
216 static int      axe_ioctl(struct ifnet *, u_long, caddr_t);
217 static int      axe_rx_frame(struct usb_ether *, struct usb_page_cache *, int);
218 static int      axe_rxeof(struct usb_ether *, struct usb_page_cache *,
219                     unsigned int offset, unsigned int, struct axe_csum_hdr *);
220 static void     axe_csum_cfg(struct usb_ether *);
221
222 static const struct usb_config axe_config[AXE_N_TRANSFER] = {
223
224         [AXE_BULK_DT_WR] = {
225                 .type = UE_BULK,
226                 .endpoint = UE_ADDR_ANY,
227                 .direction = UE_DIR_OUT,
228                 .frames = 16,
229                 .bufsize = 16 * MCLBYTES,
230                 .flags = {.pipe_bof = 1,.force_short_xfer = 1,},
231                 .callback = axe_bulk_write_callback,
232                 .timeout = 10000,       /* 10 seconds */
233         },
234
235         [AXE_BULK_DT_RD] = {
236                 .type = UE_BULK,
237                 .endpoint = UE_ADDR_ANY,
238                 .direction = UE_DIR_IN,
239                 .bufsize = 16384,       /* bytes */
240                 .flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
241                 .callback = axe_bulk_read_callback,
242                 .timeout = 0,   /* no timeout */
243         },
244 };
245
246 static const struct ax88772b_mfb ax88772b_mfb_table[] = {
247         { 0x8000, 0x8001, 2048 },
248         { 0x8100, 0x8147, 4096},
249         { 0x8200, 0x81EB, 6144},
250         { 0x8300, 0x83D7, 8192},
251         { 0x8400, 0x851E, 16384},
252         { 0x8500, 0x8666, 20480},
253         { 0x8600, 0x87AE, 24576},
254         { 0x8700, 0x8A3D, 32768}
255 };
256
257 static device_method_t axe_methods[] = {
258         /* Device interface */
259         DEVMETHOD(device_probe, axe_probe),
260         DEVMETHOD(device_attach, axe_attach),
261         DEVMETHOD(device_detach, axe_detach),
262
263         /* MII interface */
264         DEVMETHOD(miibus_readreg, axe_miibus_readreg),
265         DEVMETHOD(miibus_writereg, axe_miibus_writereg),
266         DEVMETHOD(miibus_statchg, axe_miibus_statchg),
267
268         DEVMETHOD_END
269 };
270
271 static driver_t axe_driver = {
272         .name = "axe",
273         .methods = axe_methods,
274         .size = sizeof(struct axe_softc),
275 };
276
277 static devclass_t axe_devclass;
278
279 DRIVER_MODULE(axe, uhub, axe_driver, axe_devclass, NULL, 0);
280 DRIVER_MODULE(miibus, axe, miibus_driver, miibus_devclass, 0, 0);
281 MODULE_DEPEND(axe, uether, 1, 1, 1);
282 MODULE_DEPEND(axe, usb, 1, 1, 1);
283 MODULE_DEPEND(axe, ether, 1, 1, 1);
284 MODULE_DEPEND(axe, miibus, 1, 1, 1);
285 MODULE_VERSION(axe, 1);
286 USB_PNP_HOST_INFO(axe_devs);
287
288 static const struct usb_ether_methods axe_ue_methods = {
289         .ue_attach_post = axe_attach_post,
290         .ue_attach_post_sub = axe_attach_post_sub,
291         .ue_start = axe_start,
292         .ue_init = axe_init,
293         .ue_stop = axe_stop,
294         .ue_tick = axe_tick,
295         .ue_setmulti = axe_setmulti,
296         .ue_setpromisc = axe_setpromisc,
297         .ue_mii_upd = axe_ifmedia_upd,
298         .ue_mii_sts = axe_ifmedia_sts,
299 };
300
301 static int
302 axe_cmd(struct axe_softc *sc, int cmd, int index, int val, void *buf)
303 {
304         struct usb_device_request req;
305         usb_error_t err;
306
307         AXE_LOCK_ASSERT(sc, MA_OWNED);
308
309         req.bmRequestType = (AXE_CMD_IS_WRITE(cmd) ?
310             UT_WRITE_VENDOR_DEVICE :
311             UT_READ_VENDOR_DEVICE);
312         req.bRequest = AXE_CMD_CMD(cmd);
313         USETW(req.wValue, val);
314         USETW(req.wIndex, index);
315         USETW(req.wLength, AXE_CMD_LEN(cmd));
316
317         err = uether_do_request(&sc->sc_ue, &req, buf, 1000);
318
319         return (err);
320 }
321
322 static int
323 axe_miibus_readreg(device_t dev, int phy, int reg)
324 {
325         struct axe_softc *sc = device_get_softc(dev);
326         uint16_t val;
327         int locked;
328
329         locked = mtx_owned(&sc->sc_mtx);
330         if (!locked)
331                 AXE_LOCK(sc);
332
333         axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL);
334         axe_cmd(sc, AXE_CMD_MII_READ_REG, reg, phy, &val);
335         axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL);
336
337         val = le16toh(val);
338         if (AXE_IS_772(sc) && reg == MII_BMSR) {
339                 /*
340                  * BMSR of AX88772 indicates that it supports extended
341                  * capability but the extended status register is
342                  * revered for embedded ethernet PHY. So clear the
343                  * extended capability bit of BMSR.
344                  */
345                 val &= ~BMSR_EXTCAP;
346         }
347
348         if (!locked)
349                 AXE_UNLOCK(sc);
350         return (val);
351 }
352
353 static int
354 axe_miibus_writereg(device_t dev, int phy, int reg, int val)
355 {
356         struct axe_softc *sc = device_get_softc(dev);
357         int locked;
358
359         val = htole32(val);
360         locked = mtx_owned(&sc->sc_mtx);
361         if (!locked)
362                 AXE_LOCK(sc);
363
364         axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL);
365         axe_cmd(sc, AXE_CMD_MII_WRITE_REG, reg, phy, &val);
366         axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL);
367
368         if (!locked)
369                 AXE_UNLOCK(sc);
370         return (0);
371 }
372
373 static void
374 axe_miibus_statchg(device_t dev)
375 {
376         struct axe_softc *sc = device_get_softc(dev);
377         struct mii_data *mii = GET_MII(sc);
378         struct ifnet *ifp;
379         uint16_t val;
380         int err, locked;
381
382         locked = mtx_owned(&sc->sc_mtx);
383         if (!locked)
384                 AXE_LOCK(sc);
385
386         ifp = uether_getifp(&sc->sc_ue);
387         if (mii == NULL || ifp == NULL ||
388             (ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
389                 goto done;
390
391         sc->sc_flags &= ~AXE_FLAG_LINK;
392         if ((mii->mii_media_status & (IFM_ACTIVE | IFM_AVALID)) ==
393             (IFM_ACTIVE | IFM_AVALID)) {
394                 switch (IFM_SUBTYPE(mii->mii_media_active)) {
395                 case IFM_10_T:
396                 case IFM_100_TX:
397                         sc->sc_flags |= AXE_FLAG_LINK;
398                         break;
399                 case IFM_1000_T:
400                         if ((sc->sc_flags & AXE_FLAG_178) == 0)
401                                 break;
402                         sc->sc_flags |= AXE_FLAG_LINK;
403                         break;
404                 default:
405                         break;
406                 }
407         }
408
409         /* Lost link, do nothing. */
410         if ((sc->sc_flags & AXE_FLAG_LINK) == 0)
411                 goto done;
412
413         val = 0;
414         if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0) {
415                 val |= AXE_MEDIA_FULL_DUPLEX;
416                 if (AXE_IS_178_FAMILY(sc)) {
417                         if ((IFM_OPTIONS(mii->mii_media_active) &
418                             IFM_ETH_TXPAUSE) != 0)
419                                 val |= AXE_178_MEDIA_TXFLOW_CONTROL_EN;
420                         if ((IFM_OPTIONS(mii->mii_media_active) &
421                             IFM_ETH_RXPAUSE) != 0)
422                                 val |= AXE_178_MEDIA_RXFLOW_CONTROL_EN;
423                 }
424         }
425         if (AXE_IS_178_FAMILY(sc)) {
426                 val |= AXE_178_MEDIA_RX_EN | AXE_178_MEDIA_MAGIC;
427                 if ((sc->sc_flags & AXE_FLAG_178) != 0)
428                         val |= AXE_178_MEDIA_ENCK;
429                 switch (IFM_SUBTYPE(mii->mii_media_active)) {
430                 case IFM_1000_T:
431                         val |= AXE_178_MEDIA_GMII | AXE_178_MEDIA_ENCK;
432                         break;
433                 case IFM_100_TX:
434                         val |= AXE_178_MEDIA_100TX;
435                         break;
436                 case IFM_10_T:
437                         /* doesn't need to be handled */
438                         break;
439                 }
440         }
441         err = axe_cmd(sc, AXE_CMD_WRITE_MEDIA, 0, val, NULL);
442         if (err)
443                 device_printf(dev, "media change failed, error %d\n", err);
444 done:
445         if (!locked)
446                 AXE_UNLOCK(sc);
447 }
448
449 /*
450  * Set media options.
451  */
452 static int
453 axe_ifmedia_upd(struct ifnet *ifp)
454 {
455         struct axe_softc *sc = ifp->if_softc;
456         struct mii_data *mii = GET_MII(sc);
457         struct mii_softc *miisc;
458         int error;
459
460         AXE_LOCK_ASSERT(sc, MA_OWNED);
461
462         LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
463                 PHY_RESET(miisc);
464         error = mii_mediachg(mii);
465         return (error);
466 }
467
468 /*
469  * Report current media status.
470  */
471 static void
472 axe_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
473 {
474         struct axe_softc *sc = ifp->if_softc;
475         struct mii_data *mii = GET_MII(sc);
476
477         AXE_LOCK(sc);
478         mii_pollstat(mii);
479         ifmr->ifm_active = mii->mii_media_active;
480         ifmr->ifm_status = mii->mii_media_status;
481         AXE_UNLOCK(sc);
482 }
483
484 static u_int
485 axe_hash_maddr(void *arg, struct sockaddr_dl *sdl, u_int cnt)
486 {
487         uint8_t *hashtbl = arg;
488         uint32_t h;
489
490         h = ether_crc32_be(LLADDR(sdl), ETHER_ADDR_LEN) >> 26;
491         hashtbl[h / 8] |= 1 << (h % 8);
492
493         return (1);
494 }
495
496 static void
497 axe_setmulti(struct usb_ether *ue)
498 {
499         struct axe_softc *sc = uether_getsc(ue);
500         struct ifnet *ifp = uether_getifp(ue);
501         uint16_t rxmode;
502         uint8_t hashtbl[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
503
504         AXE_LOCK_ASSERT(sc, MA_OWNED);
505
506         axe_cmd(sc, AXE_CMD_RXCTL_READ, 0, 0, &rxmode);
507         rxmode = le16toh(rxmode);
508
509         if (ifp->if_flags & (IFF_ALLMULTI | IFF_PROMISC)) {
510                 rxmode |= AXE_RXCMD_ALLMULTI;
511                 axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
512                 return;
513         }
514         rxmode &= ~AXE_RXCMD_ALLMULTI;
515
516         if_foreach_llmaddr(ifp, axe_hash_maddr, &hashtbl);
517
518         axe_cmd(sc, AXE_CMD_WRITE_MCAST, 0, 0, (void *)&hashtbl);
519         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
520 }
521
522 static int
523 axe_get_phyno(struct axe_softc *sc, int sel)
524 {
525         int phyno;
526
527         switch (AXE_PHY_TYPE(sc->sc_phyaddrs[sel])) {
528         case PHY_TYPE_100_HOME:
529         case PHY_TYPE_GIG:
530                 phyno = AXE_PHY_NO(sc->sc_phyaddrs[sel]);
531                 break;
532         case PHY_TYPE_SPECIAL:
533                 /* FALLTHROUGH */
534         case PHY_TYPE_RSVD:
535                 /* FALLTHROUGH */
536         case PHY_TYPE_NON_SUP:
537                 /* FALLTHROUGH */
538         default:
539                 phyno = -1;
540                 break;
541         }
542
543         return (phyno);
544 }
545
546 #define AXE_GPIO_WRITE(x, y)    do {                            \
547         axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, (x), NULL);          \
548         uether_pause(ue, (y));                                  \
549 } while (0)
550
551 static void
552 axe_ax88178_init(struct axe_softc *sc)
553 {
554         struct usb_ether *ue;
555         int gpio0, ledmode, phymode;
556         uint16_t eeprom, val;
557
558         ue = &sc->sc_ue;
559         axe_cmd(sc, AXE_CMD_SROM_WR_ENABLE, 0, 0, NULL);
560         /* XXX magic */
561         axe_cmd(sc, AXE_CMD_SROM_READ, 0, 0x0017, &eeprom);
562         eeprom = le16toh(eeprom);
563         axe_cmd(sc, AXE_CMD_SROM_WR_DISABLE, 0, 0, NULL);
564
565         /* if EEPROM is invalid we have to use to GPIO0 */
566         if (eeprom == 0xffff) {
567                 phymode = AXE_PHY_MODE_MARVELL;
568                 gpio0 = 1;
569                 ledmode = 0;
570         } else {
571                 phymode = eeprom & 0x7f;
572                 gpio0 = (eeprom & 0x80) ? 0 : 1;
573                 ledmode = eeprom >> 8;
574         }
575
576         if (bootverbose)
577                 device_printf(sc->sc_ue.ue_dev,
578                     "EEPROM data : 0x%04x, phymode : 0x%02x\n", eeprom,
579                     phymode);
580         /* Program GPIOs depending on PHY hardware. */
581         switch (phymode) {
582         case AXE_PHY_MODE_MARVELL:
583                 if (gpio0 == 1) {
584                         AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO0_EN,
585                             hz / 32);
586                         AXE_GPIO_WRITE(AXE_GPIO0_EN | AXE_GPIO2 | AXE_GPIO2_EN,
587                             hz / 32);
588                         AXE_GPIO_WRITE(AXE_GPIO0_EN | AXE_GPIO2_EN, hz / 4);
589                         AXE_GPIO_WRITE(AXE_GPIO0_EN | AXE_GPIO2 | AXE_GPIO2_EN,
590                             hz / 32);
591                 } else {
592                         AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO1 |
593                             AXE_GPIO1_EN, hz / 3);
594                         if (ledmode == 1) {
595                                 AXE_GPIO_WRITE(AXE_GPIO1_EN, hz / 3);
596                                 AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN,
597                                     hz / 3);
598                         } else {
599                                 AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN |
600                                     AXE_GPIO2 | AXE_GPIO2_EN, hz / 32);
601                                 AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN |
602                                     AXE_GPIO2_EN, hz / 4);
603                                 AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN |
604                                     AXE_GPIO2 | AXE_GPIO2_EN, hz / 32);
605                         }
606                 }
607                 break;
608         case AXE_PHY_MODE_CICADA:
609         case AXE_PHY_MODE_CICADA_V2:
610         case AXE_PHY_MODE_CICADA_V2_ASIX:
611                 if (gpio0 == 1)
612                         AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO0 |
613                             AXE_GPIO0_EN, hz / 32);
614                 else
615                         AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO1 |
616                             AXE_GPIO1_EN, hz / 32);
617                 break;
618         case AXE_PHY_MODE_AGERE:
619                 AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO1 |
620                     AXE_GPIO1_EN, hz / 32);
621                 AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN | AXE_GPIO2 |
622                     AXE_GPIO2_EN, hz / 32);
623                 AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN | AXE_GPIO2_EN, hz / 4);
624                 AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN | AXE_GPIO2 |
625                     AXE_GPIO2_EN, hz / 32);
626                 break;
627         case AXE_PHY_MODE_REALTEK_8211CL:
628         case AXE_PHY_MODE_REALTEK_8211BN:
629         case AXE_PHY_MODE_REALTEK_8251CL:
630                 val = gpio0 == 1 ? AXE_GPIO0 | AXE_GPIO0_EN :
631                     AXE_GPIO1 | AXE_GPIO1_EN;
632                 AXE_GPIO_WRITE(val, hz / 32);
633                 AXE_GPIO_WRITE(val | AXE_GPIO2 | AXE_GPIO2_EN, hz / 32);
634                 AXE_GPIO_WRITE(val | AXE_GPIO2_EN, hz / 4);
635                 AXE_GPIO_WRITE(val | AXE_GPIO2 | AXE_GPIO2_EN, hz / 32);
636                 if (phymode == AXE_PHY_MODE_REALTEK_8211CL) {
637                         axe_miibus_writereg(ue->ue_dev, sc->sc_phyno,
638                             0x1F, 0x0005);
639                         axe_miibus_writereg(ue->ue_dev, sc->sc_phyno,
640                             0x0C, 0x0000);
641                         val = axe_miibus_readreg(ue->ue_dev, sc->sc_phyno,
642                             0x0001);
643                         axe_miibus_writereg(ue->ue_dev, sc->sc_phyno,
644                             0x01, val | 0x0080);
645                         axe_miibus_writereg(ue->ue_dev, sc->sc_phyno,
646                             0x1F, 0x0000);
647                 }
648                 break;
649         default:
650                 /* Unknown PHY model or no need to program GPIOs. */
651                 break;
652         }
653
654         /* soft reset */
655         axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_CLEAR, NULL);
656         uether_pause(ue, hz / 4);
657
658         axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
659             AXE_SW_RESET_PRL | AXE_178_RESET_MAGIC, NULL);
660         uether_pause(ue, hz / 4);
661         /* Enable MII/GMII/RGMII interface to work with external PHY. */
662         axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, 0, NULL);
663         uether_pause(ue, hz / 4);
664
665         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
666 }
667
668 static void
669 axe_ax88772_init(struct axe_softc *sc)
670 {
671         axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x00b0, NULL);
672         uether_pause(&sc->sc_ue, hz / 16);
673
674         if (sc->sc_phyno == AXE_772_PHY_NO_EPHY) {
675                 /* ask for the embedded PHY */
676                 axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, 0x01, NULL);
677                 uether_pause(&sc->sc_ue, hz / 64);
678
679                 /* power down and reset state, pin reset state */
680                 axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
681                     AXE_SW_RESET_CLEAR, NULL);
682                 uether_pause(&sc->sc_ue, hz / 16);
683
684                 /* power down/reset state, pin operating state */
685                 axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
686                     AXE_SW_RESET_IPPD | AXE_SW_RESET_PRL, NULL);
687                 uether_pause(&sc->sc_ue, hz / 4);
688
689                 /* power up, reset */
690                 axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_PRL, NULL);
691
692                 /* power up, operating */
693                 axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
694                     AXE_SW_RESET_IPRL | AXE_SW_RESET_PRL, NULL);
695         } else {
696                 /* ask for external PHY */
697                 axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, 0x00, NULL);
698                 uether_pause(&sc->sc_ue, hz / 64);
699
700                 /* power down internal PHY */
701                 axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
702                     AXE_SW_RESET_IPPD | AXE_SW_RESET_PRL, NULL);
703         }
704
705         uether_pause(&sc->sc_ue, hz / 4);
706         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
707 }
708
709 static void
710 axe_ax88772_phywake(struct axe_softc *sc)
711 {
712         struct usb_ether *ue;
713
714         ue = &sc->sc_ue;
715         if (sc->sc_phyno == AXE_772_PHY_NO_EPHY) {
716                 /* Manually select internal(embedded) PHY - MAC mode. */
717                 axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, AXE_SW_PHY_SELECT_SS_ENB |
718                     AXE_SW_PHY_SELECT_EMBEDDED | AXE_SW_PHY_SELECT_SS_MII,
719                     NULL);
720                 uether_pause(&sc->sc_ue, hz / 32);
721         } else {
722                 /*
723                  * Manually select external PHY - MAC mode.
724                  * Reverse MII/RMII is for AX88772A PHY mode.
725                  */
726                 axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, AXE_SW_PHY_SELECT_SS_ENB |
727                     AXE_SW_PHY_SELECT_EXT | AXE_SW_PHY_SELECT_SS_MII, NULL);
728                 uether_pause(&sc->sc_ue, hz / 32);
729         }
730         /* Take PHY out of power down. */
731         axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_IPPD |
732             AXE_SW_RESET_IPRL, NULL);
733         uether_pause(&sc->sc_ue, hz / 4);
734         axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_IPRL, NULL);
735         uether_pause(&sc->sc_ue, hz);
736         axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_CLEAR, NULL);
737         uether_pause(&sc->sc_ue, hz / 32);
738         axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_IPRL, NULL);
739         uether_pause(&sc->sc_ue, hz / 32);
740 }
741
742 static void
743 axe_ax88772a_init(struct axe_softc *sc)
744 {
745         struct usb_ether *ue;
746
747         ue = &sc->sc_ue;
748         /* Reload EEPROM. */
749         AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM, hz / 32);
750         axe_ax88772_phywake(sc);
751         /* Stop MAC. */
752         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
753 }
754
755 static void
756 axe_ax88772b_init(struct axe_softc *sc)
757 {
758         struct usb_ether *ue;
759         uint16_t eeprom;
760         uint8_t *eaddr;
761         int i;
762
763         ue = &sc->sc_ue;
764         /* Reload EEPROM. */
765         AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM, hz / 32);
766         /*
767          * Save PHY power saving configuration(high byte) and
768          * clear EEPROM checksum value(low byte).
769          */
770         axe_cmd(sc, AXE_CMD_SROM_READ, 0, AXE_EEPROM_772B_PHY_PWRCFG, &eeprom);
771         sc->sc_pwrcfg = le16toh(eeprom) & 0xFF00;
772
773         /*
774          * Auto-loaded default station address from internal ROM is
775          * 00:00:00:00:00:00 such that an explicit access to EEPROM
776          * is required to get real station address.
777          */
778         eaddr = ue->ue_eaddr;
779         for (i = 0; i < ETHER_ADDR_LEN / 2; i++) {
780                 axe_cmd(sc, AXE_CMD_SROM_READ, 0, AXE_EEPROM_772B_NODE_ID + i,
781                     &eeprom);
782                 eeprom = le16toh(eeprom);
783                 *eaddr++ = (uint8_t)(eeprom & 0xFF);
784                 *eaddr++ = (uint8_t)((eeprom >> 8) & 0xFF);
785         }
786         /* Wakeup PHY. */
787         axe_ax88772_phywake(sc);
788         /* Stop MAC. */
789         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
790 }
791
792 #undef  AXE_GPIO_WRITE
793
794 static void
795 axe_reset(struct axe_softc *sc)
796 {
797         struct usb_config_descriptor *cd;
798         usb_error_t err;
799
800         cd = usbd_get_config_descriptor(sc->sc_ue.ue_udev);
801
802         err = usbd_req_set_config(sc->sc_ue.ue_udev, &sc->sc_mtx,
803             cd->bConfigurationValue);
804         if (err)
805                 DPRINTF("reset failed (ignored)\n");
806
807         /* Wait a little while for the chip to get its brains in order. */
808         uether_pause(&sc->sc_ue, hz / 100);
809
810         /* Reinitialize controller to achieve full reset. */
811         if (sc->sc_flags & AXE_FLAG_178)
812                 axe_ax88178_init(sc);
813         else if (sc->sc_flags & AXE_FLAG_772)
814                 axe_ax88772_init(sc);
815         else if (sc->sc_flags & AXE_FLAG_772A)
816                 axe_ax88772a_init(sc);
817         else if (sc->sc_flags & AXE_FLAG_772B)
818                 axe_ax88772b_init(sc);
819 }
820
821 static void
822 axe_attach_post(struct usb_ether *ue)
823 {
824         struct axe_softc *sc = uether_getsc(ue);
825
826         /*
827          * Load PHY indexes first. Needed by axe_xxx_init().
828          */
829         axe_cmd(sc, AXE_CMD_READ_PHYID, 0, 0, sc->sc_phyaddrs);
830         if (bootverbose)
831                 device_printf(sc->sc_ue.ue_dev, "PHYADDR 0x%02x:0x%02x\n",
832                     sc->sc_phyaddrs[0], sc->sc_phyaddrs[1]);
833         sc->sc_phyno = axe_get_phyno(sc, AXE_PHY_SEL_PRI);
834         if (sc->sc_phyno == -1)
835                 sc->sc_phyno = axe_get_phyno(sc, AXE_PHY_SEL_SEC);
836         if (sc->sc_phyno == -1) {
837                 device_printf(sc->sc_ue.ue_dev,
838                     "no valid PHY address found, assuming PHY address 0\n");
839                 sc->sc_phyno = 0;
840         }
841
842         /* Initialize controller and get station address. */
843         if (sc->sc_flags & AXE_FLAG_178) {
844                 axe_ax88178_init(sc);
845                 axe_cmd(sc, AXE_178_CMD_READ_NODEID, 0, 0, ue->ue_eaddr);
846         } else if (sc->sc_flags & AXE_FLAG_772) {
847                 axe_ax88772_init(sc);
848                 axe_cmd(sc, AXE_178_CMD_READ_NODEID, 0, 0, ue->ue_eaddr);
849         } else if (sc->sc_flags & AXE_FLAG_772A) {
850                 axe_ax88772a_init(sc);
851                 axe_cmd(sc, AXE_178_CMD_READ_NODEID, 0, 0, ue->ue_eaddr);
852         } else if (sc->sc_flags & AXE_FLAG_772B) {
853                 axe_ax88772b_init(sc);
854         } else
855                 axe_cmd(sc, AXE_172_CMD_READ_NODEID, 0, 0, ue->ue_eaddr);
856
857         /*
858          * Fetch IPG values.
859          */
860         if (sc->sc_flags & (AXE_FLAG_772A | AXE_FLAG_772B)) {
861                 /* Set IPG values. */
862                 sc->sc_ipgs[0] = 0x15;
863                 sc->sc_ipgs[1] = 0x16;
864                 sc->sc_ipgs[2] = 0x1A;
865         } else
866                 axe_cmd(sc, AXE_CMD_READ_IPG012, 0, 0, sc->sc_ipgs);
867 }
868
869 static int
870 axe_attach_post_sub(struct usb_ether *ue)
871 {
872         struct axe_softc *sc;
873         struct ifnet *ifp;
874         u_int adv_pause;
875         int error;
876
877         sc = uether_getsc(ue);
878         ifp = ue->ue_ifp;
879         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
880         ifp->if_start = uether_start;
881         ifp->if_ioctl = axe_ioctl;
882         ifp->if_init = uether_init;
883         IFQ_SET_MAXLEN(&ifp->if_snd, ifqmaxlen);
884         ifp->if_snd.ifq_drv_maxlen = ifqmaxlen;
885         IFQ_SET_READY(&ifp->if_snd);
886
887         if (AXE_IS_178_FAMILY(sc))
888                 ifp->if_capabilities |= IFCAP_VLAN_MTU;
889         if (sc->sc_flags & AXE_FLAG_772B) {
890                 ifp->if_capabilities |= IFCAP_TXCSUM | IFCAP_RXCSUM;
891                 ifp->if_hwassist = AXE_CSUM_FEATURES;
892                 /*
893                  * Checksum offloading of AX88772B also works with VLAN
894                  * tagged frames but there is no way to take advantage
895                  * of the feature because vlan(4) assumes
896                  * IFCAP_VLAN_HWTAGGING is prerequisite condition to
897                  * support checksum offloading with VLAN. VLAN hardware
898                  * tagging support of AX88772B is very limited so it's
899                  * not possible to announce IFCAP_VLAN_HWTAGGING.
900                  */
901         }
902         ifp->if_capenable = ifp->if_capabilities;
903         if (sc->sc_flags & (AXE_FLAG_772A | AXE_FLAG_772B | AXE_FLAG_178))
904                 adv_pause = MIIF_DOPAUSE;
905         else
906                 adv_pause = 0;
907         mtx_lock(&Giant);
908         error = mii_attach(ue->ue_dev, &ue->ue_miibus, ifp,
909             uether_ifmedia_upd, ue->ue_methods->ue_mii_sts,
910             BMSR_DEFCAPMASK, sc->sc_phyno, MII_OFFSET_ANY, adv_pause);
911         mtx_unlock(&Giant);
912
913         return (error);
914 }
915
916 /*
917  * Probe for a AX88172 chip.
918  */
919 static int
920 axe_probe(device_t dev)
921 {
922         struct usb_attach_arg *uaa = device_get_ivars(dev);
923
924         if (uaa->usb_mode != USB_MODE_HOST)
925                 return (ENXIO);
926         if (uaa->info.bConfigIndex != AXE_CONFIG_IDX)
927                 return (ENXIO);
928         if (uaa->info.bIfaceIndex != AXE_IFACE_IDX)
929                 return (ENXIO);
930
931         return (usbd_lookup_id_by_uaa(axe_devs, sizeof(axe_devs), uaa));
932 }
933
934 /*
935  * Attach the interface. Allocate softc structures, do ifmedia
936  * setup and ethernet/BPF attach.
937  */
938 static int
939 axe_attach(device_t dev)
940 {
941         struct usb_attach_arg *uaa = device_get_ivars(dev);
942         struct axe_softc *sc = device_get_softc(dev);
943         struct usb_ether *ue = &sc->sc_ue;
944         uint8_t iface_index;
945         int error;
946
947         sc->sc_flags = USB_GET_DRIVER_INFO(uaa);
948
949         device_set_usb_desc(dev);
950
951         mtx_init(&sc->sc_mtx, device_get_nameunit(dev), NULL, MTX_DEF);
952
953         iface_index = AXE_IFACE_IDX;
954         error = usbd_transfer_setup(uaa->device, &iface_index, sc->sc_xfer,
955             axe_config, AXE_N_TRANSFER, sc, &sc->sc_mtx);
956         if (error) {
957                 device_printf(dev, "allocating USB transfers failed\n");
958                 goto detach;
959         }
960
961         ue->ue_sc = sc;
962         ue->ue_dev = dev;
963         ue->ue_udev = uaa->device;
964         ue->ue_mtx = &sc->sc_mtx;
965         ue->ue_methods = &axe_ue_methods;
966
967         error = uether_ifattach(ue);
968         if (error) {
969                 device_printf(dev, "could not attach interface\n");
970                 goto detach;
971         }
972         return (0);                     /* success */
973
974 detach:
975         axe_detach(dev);
976         return (ENXIO);                 /* failure */
977 }
978
979 static int
980 axe_detach(device_t dev)
981 {
982         struct axe_softc *sc = device_get_softc(dev);
983         struct usb_ether *ue = &sc->sc_ue;
984
985         usbd_transfer_unsetup(sc->sc_xfer, AXE_N_TRANSFER);
986         uether_ifdetach(ue);
987         mtx_destroy(&sc->sc_mtx);
988
989         return (0);
990 }
991
992 #if (AXE_BULK_BUF_SIZE >= 0x10000)
993 #error "Please update axe_bulk_read_callback()!"
994 #endif
995
996 static void
997 axe_bulk_read_callback(struct usb_xfer *xfer, usb_error_t error)
998 {
999         struct axe_softc *sc = usbd_xfer_softc(xfer);
1000         struct usb_ether *ue = &sc->sc_ue;
1001         struct usb_page_cache *pc;
1002         int actlen;
1003
1004         usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1005
1006         switch (USB_GET_STATE(xfer)) {
1007         case USB_ST_TRANSFERRED:
1008                 pc = usbd_xfer_get_frame(xfer, 0);
1009                 axe_rx_frame(ue, pc, actlen);
1010
1011                 /* FALLTHROUGH */
1012         case USB_ST_SETUP:
1013 tr_setup:
1014                 usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer));
1015                 usbd_transfer_submit(xfer);
1016                 uether_rxflush(ue);
1017                 return;
1018
1019         default:                        /* Error */
1020                 DPRINTF("bulk read error, %s\n", usbd_errstr(error));
1021
1022                 if (error != USB_ERR_CANCELLED) {
1023                         /* try to clear stall first */
1024                         usbd_xfer_set_stall(xfer);
1025                         goto tr_setup;
1026                 }
1027                 return;
1028
1029         }
1030 }
1031
1032 static int
1033 axe_rx_frame(struct usb_ether *ue, struct usb_page_cache *pc, int actlen)
1034 {
1035         struct axe_softc *sc;
1036         struct axe_sframe_hdr hdr;
1037         struct axe_csum_hdr csum_hdr;
1038         int error, len, pos;
1039
1040         sc = uether_getsc(ue);
1041         pos = 0;
1042         len = 0;
1043         error = 0;
1044         if ((sc->sc_flags & AXE_FLAG_STD_FRAME) != 0) {
1045                 while (pos < actlen) {
1046                         if ((int)(pos + sizeof(hdr)) > actlen) {
1047                                 /* too little data */
1048                                 error = EINVAL;
1049                                 break;
1050                         }
1051                         usbd_copy_out(pc, pos, &hdr, sizeof(hdr));
1052
1053                         if ((hdr.len ^ hdr.ilen) != sc->sc_lenmask) {
1054                                 /* we lost sync */
1055                                 error = EINVAL;
1056                                 break;
1057                         }
1058                         pos += sizeof(hdr);
1059                         len = le16toh(hdr.len);
1060                         if (pos + len > actlen) {
1061                                 /* invalid length */
1062                                 error = EINVAL;
1063                                 break;
1064                         }
1065                         axe_rxeof(ue, pc, pos, len, NULL);
1066                         pos += len + (len % 2);
1067                 }
1068         } else if ((sc->sc_flags & AXE_FLAG_CSUM_FRAME) != 0) {
1069                 while (pos < actlen) {
1070                         if ((int)(pos + sizeof(csum_hdr)) > actlen) {
1071                                 /* too little data */
1072                                 error = EINVAL;
1073                                 break;
1074                         }
1075                         usbd_copy_out(pc, pos, &csum_hdr, sizeof(csum_hdr));
1076
1077                         csum_hdr.len = le16toh(csum_hdr.len);
1078                         csum_hdr.ilen = le16toh(csum_hdr.ilen);
1079                         csum_hdr.cstatus = le16toh(csum_hdr.cstatus);
1080                         if ((AXE_CSUM_RXBYTES(csum_hdr.len) ^
1081                             AXE_CSUM_RXBYTES(csum_hdr.ilen)) !=
1082                             sc->sc_lenmask) {
1083                                 /* we lost sync */
1084                                 error = EINVAL;
1085                                 break;
1086                         }
1087                         /*
1088                          * Get total transferred frame length including
1089                          * checksum header.  The length should be multiple
1090                          * of 4.
1091                          */
1092                         len = sizeof(csum_hdr) + AXE_CSUM_RXBYTES(csum_hdr.len);
1093                         len = (len + 3) & ~3;
1094                         if (pos + len > actlen) {
1095                                 /* invalid length */
1096                                 error = EINVAL;
1097                                 break;
1098                         }
1099                         axe_rxeof(ue, pc, pos + sizeof(csum_hdr),
1100                             AXE_CSUM_RXBYTES(csum_hdr.len), &csum_hdr);
1101                         pos += len;
1102                 }
1103         } else
1104                 axe_rxeof(ue, pc, 0, actlen, NULL);
1105
1106         if (error != 0)
1107                 if_inc_counter(ue->ue_ifp, IFCOUNTER_IERRORS, 1);
1108         return (error);
1109 }
1110
1111 static int
1112 axe_rxeof(struct usb_ether *ue, struct usb_page_cache *pc, unsigned int offset,
1113     unsigned int len, struct axe_csum_hdr *csum_hdr)
1114 {
1115         struct ifnet *ifp = ue->ue_ifp;
1116         struct mbuf *m;
1117
1118         if (len < ETHER_HDR_LEN || len > MCLBYTES - ETHER_ALIGN) {
1119                 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
1120                 return (EINVAL);
1121         }
1122
1123         m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
1124         if (m == NULL) {
1125                 if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1);
1126                 return (ENOMEM);
1127         }
1128         m->m_len = m->m_pkthdr.len = MCLBYTES;
1129         m_adj(m, ETHER_ALIGN);
1130
1131         usbd_copy_out(pc, offset, mtod(m, uint8_t *), len);
1132
1133         if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
1134         m->m_pkthdr.rcvif = ifp;
1135         m->m_pkthdr.len = m->m_len = len;
1136
1137         if (csum_hdr != NULL && csum_hdr->cstatus & AXE_CSUM_HDR_L3_TYPE_IPV4) {
1138                 if ((csum_hdr->cstatus & (AXE_CSUM_HDR_L4_CSUM_ERR |
1139                     AXE_CSUM_HDR_L3_CSUM_ERR)) == 0) {
1140                         m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED |
1141                             CSUM_IP_VALID;
1142                         if ((csum_hdr->cstatus & AXE_CSUM_HDR_L4_TYPE_MASK) ==
1143                             AXE_CSUM_HDR_L4_TYPE_TCP ||
1144                             (csum_hdr->cstatus & AXE_CSUM_HDR_L4_TYPE_MASK) ==
1145                             AXE_CSUM_HDR_L4_TYPE_UDP) {
1146                                 m->m_pkthdr.csum_flags |=
1147                                     CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
1148                                 m->m_pkthdr.csum_data = 0xffff;
1149                         }
1150                 }
1151         }
1152
1153         (void)mbufq_enqueue(&ue->ue_rxq, m);
1154         return (0);
1155 }
1156
1157 #if ((AXE_BULK_BUF_SIZE >= 0x10000) || (AXE_BULK_BUF_SIZE < (MCLBYTES+4)))
1158 #error "Please update axe_bulk_write_callback()!"
1159 #endif
1160
1161 static void
1162 axe_bulk_write_callback(struct usb_xfer *xfer, usb_error_t error)
1163 {
1164         struct axe_softc *sc = usbd_xfer_softc(xfer);
1165         struct axe_sframe_hdr hdr;
1166         struct ifnet *ifp = uether_getifp(&sc->sc_ue);
1167         struct usb_page_cache *pc;
1168         struct mbuf *m;
1169         int nframes, pos;
1170
1171         switch (USB_GET_STATE(xfer)) {
1172         case USB_ST_TRANSFERRED:
1173                 DPRINTFN(11, "transfer complete\n");
1174                 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1175                 /* FALLTHROUGH */
1176         case USB_ST_SETUP:
1177 tr_setup:
1178                 if ((sc->sc_flags & AXE_FLAG_LINK) == 0 ||
1179                     (ifp->if_drv_flags & IFF_DRV_OACTIVE) != 0) {
1180                         /*
1181                          * Don't send anything if there is no link or
1182                          * controller is busy.
1183                          */
1184                         return;
1185                 }
1186
1187                 for (nframes = 0; nframes < 16 &&
1188                     !IFQ_DRV_IS_EMPTY(&ifp->if_snd); nframes++) {
1189                         IFQ_DRV_DEQUEUE(&ifp->if_snd, m);
1190                         if (m == NULL)
1191                                 break;
1192                         usbd_xfer_set_frame_offset(xfer, nframes * MCLBYTES,
1193                             nframes);
1194                         pos = 0;
1195                         pc = usbd_xfer_get_frame(xfer, nframes);
1196                         if (AXE_IS_178_FAMILY(sc)) {
1197                                 hdr.len = htole16(m->m_pkthdr.len);
1198                                 hdr.ilen = ~hdr.len;
1199                                 /*
1200                                  * If upper stack computed checksum, driver
1201                                  * should tell controller not to insert
1202                                  * computed checksum for checksum offloading
1203                                  * enabled controller.
1204                                  */
1205                                 if (ifp->if_capabilities & IFCAP_TXCSUM) {
1206                                         if ((m->m_pkthdr.csum_flags &
1207                                             AXE_CSUM_FEATURES) != 0)
1208                                                 hdr.len |= htole16(
1209                                                     AXE_TX_CSUM_PSEUDO_HDR);
1210                                         else
1211                                                 hdr.len |= htole16(
1212                                                     AXE_TX_CSUM_DIS);
1213                                 }
1214                                 usbd_copy_in(pc, pos, &hdr, sizeof(hdr));
1215                                 pos += sizeof(hdr);
1216                                 usbd_m_copy_in(pc, pos, m, 0, m->m_pkthdr.len);
1217                                 pos += m->m_pkthdr.len;
1218                                 if ((pos % 512) == 0) {
1219                                         hdr.len = 0;
1220                                         hdr.ilen = 0xffff;
1221                                         usbd_copy_in(pc, pos, &hdr,
1222                                             sizeof(hdr));
1223                                         pos += sizeof(hdr);
1224                                 }
1225                         } else {
1226                                 usbd_m_copy_in(pc, pos, m, 0, m->m_pkthdr.len);
1227                                 pos += m->m_pkthdr.len;
1228                         }
1229
1230                         /*
1231                          * XXX
1232                          * Update TX packet counter here. This is not
1233                          * correct way but it seems that there is no way
1234                          * to know how many packets are sent at the end
1235                          * of transfer because controller combines
1236                          * multiple writes into single one if there is
1237                          * room in TX buffer of controller.
1238                          */
1239                         if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
1240
1241                         /*
1242                          * if there's a BPF listener, bounce a copy
1243                          * of this frame to him:
1244                          */
1245                         BPF_MTAP(ifp, m);
1246
1247                         m_freem(m);
1248
1249                         /* Set frame length. */
1250                         usbd_xfer_set_frame_len(xfer, nframes, pos);
1251                 }
1252                 if (nframes != 0) {
1253                         usbd_xfer_set_frames(xfer, nframes);
1254                         usbd_transfer_submit(xfer);
1255                         ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1256                 }
1257                 return;
1258                 /* NOTREACHED */
1259         default:                        /* Error */
1260                 DPRINTFN(11, "transfer error, %s\n",
1261                     usbd_errstr(error));
1262
1263                 if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
1264                 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1265
1266                 if (error != USB_ERR_CANCELLED) {
1267                         /* try to clear stall first */
1268                         usbd_xfer_set_stall(xfer);
1269                         goto tr_setup;
1270                 }
1271                 return;
1272
1273         }
1274 }
1275
1276 static void
1277 axe_tick(struct usb_ether *ue)
1278 {
1279         struct axe_softc *sc = uether_getsc(ue);
1280         struct mii_data *mii = GET_MII(sc);
1281
1282         AXE_LOCK_ASSERT(sc, MA_OWNED);
1283
1284         mii_tick(mii);
1285         if ((sc->sc_flags & AXE_FLAG_LINK) == 0) {
1286                 axe_miibus_statchg(ue->ue_dev);
1287                 if ((sc->sc_flags & AXE_FLAG_LINK) != 0)
1288                         axe_start(ue);
1289         }
1290 }
1291
1292 static void
1293 axe_start(struct usb_ether *ue)
1294 {
1295         struct axe_softc *sc = uether_getsc(ue);
1296
1297         /*
1298          * start the USB transfers, if not already started:
1299          */
1300         usbd_transfer_start(sc->sc_xfer[AXE_BULK_DT_RD]);
1301         usbd_transfer_start(sc->sc_xfer[AXE_BULK_DT_WR]);
1302 }
1303
1304 static void
1305 axe_csum_cfg(struct usb_ether *ue)
1306 {
1307         struct axe_softc *sc;
1308         struct ifnet *ifp;
1309         uint16_t csum1, csum2;
1310
1311         sc = uether_getsc(ue);
1312         AXE_LOCK_ASSERT(sc, MA_OWNED);
1313
1314         if ((sc->sc_flags & AXE_FLAG_772B) != 0) {
1315                 ifp = uether_getifp(ue);
1316                 csum1 = 0;
1317                 csum2 = 0;
1318                 if ((ifp->if_capenable & IFCAP_TXCSUM) != 0)
1319                         csum1 |= AXE_TXCSUM_IP | AXE_TXCSUM_TCP |
1320                             AXE_TXCSUM_UDP;
1321                 axe_cmd(sc, AXE_772B_CMD_WRITE_TXCSUM, csum2, csum1, NULL);
1322                 csum1 = 0;
1323                 csum2 = 0;
1324                 if ((ifp->if_capenable & IFCAP_RXCSUM) != 0)
1325                         csum1 |= AXE_RXCSUM_IP | AXE_RXCSUM_IPVE |
1326                             AXE_RXCSUM_TCP | AXE_RXCSUM_UDP | AXE_RXCSUM_ICMP |
1327                             AXE_RXCSUM_IGMP;
1328                 axe_cmd(sc, AXE_772B_CMD_WRITE_RXCSUM, csum2, csum1, NULL);
1329         }
1330 }
1331
1332 static void
1333 axe_init(struct usb_ether *ue)
1334 {
1335         struct axe_softc *sc = uether_getsc(ue);
1336         struct ifnet *ifp = uether_getifp(ue);
1337         uint16_t rxmode;
1338
1339         AXE_LOCK_ASSERT(sc, MA_OWNED);
1340
1341         if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0)
1342                 return;
1343
1344         /* Cancel pending I/O */
1345         axe_stop(ue);
1346
1347         axe_reset(sc);
1348
1349         /* Set MAC address and transmitter IPG values. */
1350         if (AXE_IS_178_FAMILY(sc)) {
1351                 axe_cmd(sc, AXE_178_CMD_WRITE_NODEID, 0, 0, IF_LLADDR(ifp));
1352                 axe_cmd(sc, AXE_178_CMD_WRITE_IPG012, sc->sc_ipgs[2],
1353                     (sc->sc_ipgs[1] << 8) | (sc->sc_ipgs[0]), NULL);
1354         } else {
1355                 axe_cmd(sc, AXE_172_CMD_WRITE_NODEID, 0, 0, IF_LLADDR(ifp));
1356                 axe_cmd(sc, AXE_172_CMD_WRITE_IPG0, 0, sc->sc_ipgs[0], NULL);
1357                 axe_cmd(sc, AXE_172_CMD_WRITE_IPG1, 0, sc->sc_ipgs[1], NULL);
1358                 axe_cmd(sc, AXE_172_CMD_WRITE_IPG2, 0, sc->sc_ipgs[2], NULL);
1359         }
1360
1361         if (AXE_IS_178_FAMILY(sc)) {
1362                 sc->sc_flags &= ~(AXE_FLAG_STD_FRAME | AXE_FLAG_CSUM_FRAME);
1363                 if ((sc->sc_flags & AXE_FLAG_772B) != 0 &&
1364                     (ifp->if_capenable & IFCAP_RXCSUM) != 0) {
1365                         sc->sc_lenmask = AXE_CSUM_HDR_LEN_MASK;
1366                         sc->sc_flags |= AXE_FLAG_CSUM_FRAME;
1367                 } else {
1368                         sc->sc_lenmask = AXE_HDR_LEN_MASK;
1369                         sc->sc_flags |= AXE_FLAG_STD_FRAME;
1370                 }
1371         }
1372
1373         /* Configure TX/RX checksum offloading. */
1374         axe_csum_cfg(ue);
1375
1376         if (sc->sc_flags & AXE_FLAG_772B) {
1377                 /* AX88772B uses different maximum frame burst configuration. */
1378                 axe_cmd(sc, AXE_772B_CMD_RXCTL_WRITE_CFG,
1379                     ax88772b_mfb_table[AX88772B_MFB_16K].threshold,
1380                     ax88772b_mfb_table[AX88772B_MFB_16K].byte_cnt, NULL);
1381         }
1382
1383         /* Enable receiver, set RX mode. */
1384         rxmode = (AXE_RXCMD_MULTICAST | AXE_RXCMD_ENABLE);
1385         if (AXE_IS_178_FAMILY(sc)) {
1386                 if (sc->sc_flags & AXE_FLAG_772B) {
1387                         /*
1388                          * Select RX header format type 1.  Aligning IP
1389                          * header on 4 byte boundary is not needed when
1390                          * checksum offloading feature is not used
1391                          * because we always copy the received frame in
1392                          * RX handler.  When RX checksum offloading is
1393                          * active, aligning IP header is required to
1394                          * reflect actual frame length including RX
1395                          * header size.
1396                          */
1397                         rxmode |= AXE_772B_RXCMD_HDR_TYPE_1;
1398                         if ((ifp->if_capenable & IFCAP_RXCSUM) != 0)
1399                                 rxmode |= AXE_772B_RXCMD_IPHDR_ALIGN;
1400                 } else {
1401                         /*
1402                          * Default Rx buffer size is too small to get
1403                          * maximum performance.
1404                          */
1405                         rxmode |= AXE_178_RXCMD_MFB_16384;
1406                 }
1407         } else {
1408                 rxmode |= AXE_172_RXCMD_UNICAST;
1409         }
1410
1411         /* If we want promiscuous mode, set the allframes bit. */
1412         if (ifp->if_flags & IFF_PROMISC)
1413                 rxmode |= AXE_RXCMD_PROMISC;
1414
1415         if (ifp->if_flags & IFF_BROADCAST)
1416                 rxmode |= AXE_RXCMD_BROADCAST;
1417
1418         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
1419
1420         /* Load the multicast filter. */
1421         axe_setmulti(ue);
1422
1423         usbd_xfer_set_stall(sc->sc_xfer[AXE_BULK_DT_WR]);
1424
1425         ifp->if_drv_flags |= IFF_DRV_RUNNING;
1426         /* Switch to selected media. */
1427         axe_ifmedia_upd(ifp);
1428 }
1429
1430 static void
1431 axe_setpromisc(struct usb_ether *ue)
1432 {
1433         struct axe_softc *sc = uether_getsc(ue);
1434         struct ifnet *ifp = uether_getifp(ue);
1435         uint16_t rxmode;
1436
1437         axe_cmd(sc, AXE_CMD_RXCTL_READ, 0, 0, &rxmode);
1438
1439         rxmode = le16toh(rxmode);
1440
1441         if (ifp->if_flags & IFF_PROMISC) {
1442                 rxmode |= AXE_RXCMD_PROMISC;
1443         } else {
1444                 rxmode &= ~AXE_RXCMD_PROMISC;
1445         }
1446
1447         axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
1448
1449         axe_setmulti(ue);
1450 }
1451
1452 static void
1453 axe_stop(struct usb_ether *ue)
1454 {
1455         struct axe_softc *sc = uether_getsc(ue);
1456         struct ifnet *ifp = uether_getifp(ue);
1457
1458         AXE_LOCK_ASSERT(sc, MA_OWNED);
1459
1460         ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
1461         sc->sc_flags &= ~AXE_FLAG_LINK;
1462
1463         /*
1464          * stop all the transfers, if not already stopped:
1465          */
1466         usbd_transfer_stop(sc->sc_xfer[AXE_BULK_DT_WR]);
1467         usbd_transfer_stop(sc->sc_xfer[AXE_BULK_DT_RD]);
1468 }
1469
1470 static int
1471 axe_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
1472 {
1473         struct usb_ether *ue = ifp->if_softc;
1474         struct axe_softc *sc;
1475         struct ifreq *ifr;
1476         int error, mask, reinit;
1477
1478         sc = uether_getsc(ue);
1479         ifr = (struct ifreq *)data;
1480         error = 0;
1481         reinit = 0;
1482         if (cmd == SIOCSIFCAP) {
1483                 AXE_LOCK(sc);
1484                 mask = ifr->ifr_reqcap ^ ifp->if_capenable;
1485                 if ((mask & IFCAP_TXCSUM) != 0 &&
1486                     (ifp->if_capabilities & IFCAP_TXCSUM) != 0) {
1487                         ifp->if_capenable ^= IFCAP_TXCSUM;
1488                         if ((ifp->if_capenable & IFCAP_TXCSUM) != 0)
1489                                 ifp->if_hwassist |= AXE_CSUM_FEATURES;
1490                         else
1491                                 ifp->if_hwassist &= ~AXE_CSUM_FEATURES;
1492                         reinit++;
1493                 }
1494                 if ((mask & IFCAP_RXCSUM) != 0 &&
1495                     (ifp->if_capabilities & IFCAP_RXCSUM) != 0) {
1496                         ifp->if_capenable ^= IFCAP_RXCSUM;
1497                         reinit++;
1498                 }
1499                 if (reinit > 0 && ifp->if_drv_flags & IFF_DRV_RUNNING)
1500                         ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
1501                 else
1502                         reinit = 0;
1503                 AXE_UNLOCK(sc);
1504                 if (reinit > 0)
1505                         uether_init(ue);
1506         } else
1507                 error = uether_ioctl(ifp, cmd, data);
1508
1509         return (error);
1510 }