Home | History | Annotate | Line # | Download | only in usb
if_axe.c revision 1.134
      1  1.134  riastrad /*	$NetBSD: if_axe.c,v 1.134 2022/03/03 05:51:06 riastradh Exp $	*/
      2   1.76     skrll /*	$OpenBSD: if_axe.c,v 1.137 2016/04/13 11:03:37 mpi Exp $ */
      3   1.35  pgoyette 
      4   1.35  pgoyette /*
      5   1.35  pgoyette  * Copyright (c) 2005, 2006, 2007 Jonathan Gray <jsg (at) openbsd.org>
      6   1.35  pgoyette  *
      7   1.35  pgoyette  * Permission to use, copy, modify, and distribute this software for any
      8   1.35  pgoyette  * purpose with or without fee is hereby granted, provided that the above
      9   1.35  pgoyette  * copyright notice and this permission notice appear in all copies.
     10   1.35  pgoyette  *
     11   1.35  pgoyette  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     12   1.35  pgoyette  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     13   1.35  pgoyette  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     14   1.35  pgoyette  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     15   1.35  pgoyette  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     16   1.35  pgoyette  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     17   1.35  pgoyette  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     18   1.35  pgoyette  */
     19    1.1  augustss 
     20    1.1  augustss /*
     21    1.1  augustss  * Copyright (c) 1997, 1998, 1999, 2000-2003
     22    1.1  augustss  *	Bill Paul <wpaul (at) windriver.com>.  All rights reserved.
     23    1.1  augustss  *
     24    1.1  augustss  * Redistribution and use in source and binary forms, with or without
     25    1.1  augustss  * modification, are permitted provided that the following conditions
     26    1.1  augustss  * are met:
     27    1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     28    1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     29    1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     30    1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     31    1.1  augustss  *    documentation and/or other materials provided with the distribution.
     32    1.1  augustss  * 3. All advertising materials mentioning features or use of this software
     33    1.1  augustss  *    must display the following acknowledgement:
     34    1.1  augustss  *	This product includes software developed by Bill Paul.
     35    1.1  augustss  * 4. Neither the name of the author nor the names of any co-contributors
     36    1.1  augustss  *    may be used to endorse or promote products derived from this software
     37    1.1  augustss  *    without specific prior written permission.
     38    1.1  augustss  *
     39    1.1  augustss  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
     40    1.1  augustss  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     41    1.1  augustss  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     42    1.1  augustss  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
     43    1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     44    1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     45    1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     46    1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     47    1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     48    1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     49    1.1  augustss  * THE POSSIBILITY OF SUCH DAMAGE.
     50    1.1  augustss  */
     51    1.1  augustss 
     52    1.1  augustss /*
     53   1.76     skrll  * ASIX Electronics AX88172/AX88178/AX88778 USB 2.0 ethernet driver.
     54   1.76     skrll  * Used in the LinkSys USB200M and various other adapters.
     55    1.1  augustss  *
     56    1.1  augustss  * Written by Bill Paul <wpaul (at) windriver.com>
     57    1.1  augustss  * Senior Engineer
     58    1.1  augustss  * Wind River Systems
     59    1.1  augustss  */
     60    1.1  augustss 
     61    1.1  augustss /*
     62    1.1  augustss  * The AX88172 provides USB ethernet supports at 10 and 100Mbps.
     63    1.1  augustss  * It uses an external PHY (reference designs use a RealTek chip),
     64    1.1  augustss  * and has a 64-bit multicast hash filter. There is some information
     65    1.1  augustss  * missing from the manual which one needs to know in order to make
     66    1.1  augustss  * the chip function:
     67    1.1  augustss  *
     68    1.1  augustss  * - You must set bit 7 in the RX control register, otherwise the
     69    1.1  augustss  *   chip won't receive any packets.
     70    1.1  augustss  * - You must initialize all 3 IPG registers, or you won't be able
     71    1.1  augustss  *   to send any packets.
     72    1.1  augustss  *
     73    1.1  augustss  * Note that this device appears to only support loading the station
     74   1.76     skrll  * address via autoload from the EEPROM (i.e. there's no way to manually
     75    1.1  augustss  * set it).
     76    1.1  augustss  *
     77    1.1  augustss  * (Adam Weinberger wanted me to name this driver if_gir.c.)
     78    1.1  augustss  */
     79    1.1  augustss 
     80    1.1  augustss /*
     81   1.76     skrll  * Ax88178 and Ax88772 support backported from the OpenBSD driver.
     82   1.76     skrll  * 2007/02/12, J.R. Oldroyd, fbsd (at) opal.com
     83   1.76     skrll  *
     84   1.76     skrll  * Manual here:
     85   1.76     skrll  * http://www.asix.com.tw/FrootAttach/datasheet/AX88178_datasheet_Rev10.pdf
     86   1.76     skrll  * http://www.asix.com.tw/FrootAttach/datasheet/AX88772_datasheet_Rev10.pdf
     87    1.1  augustss  */
     88    1.1  augustss 
     89    1.1  augustss #include <sys/cdefs.h>
     90  1.134  riastrad __KERNEL_RCSID(0, "$NetBSD: if_axe.c,v 1.134 2022/03/03 05:51:06 riastradh Exp $");
     91    1.1  augustss 
     92   1.62  christos #ifdef _KERNEL_OPT
     93   1.75     skrll #include "opt_usb.h"
     94   1.81   msaitoh #include "opt_net_mpsafe.h"
     95    1.1  augustss #endif
     96    1.1  augustss 
     97    1.1  augustss #include <sys/param.h>
     98    1.1  augustss 
     99  1.104       mrg #include <dev/usb/usbnet.h>
    100   1.76     skrll #include <dev/usb/usbhist.h>
    101    1.1  augustss #include <dev/usb/if_axereg.h>
    102    1.1  augustss 
    103   1.99       mrg struct axe_type {
    104   1.99       mrg 	struct usb_devno	axe_dev;
    105   1.99       mrg 	uint16_t		axe_flags;
    106   1.99       mrg };
    107   1.99       mrg 
    108  1.104       mrg struct axe_softc {
    109  1.104       mrg 	struct usbnet		axe_un;
    110   1.99       mrg 
    111  1.108       mrg 	/* usbnet:un_flags values */
    112   1.99       mrg #define AX178		__BIT(0)	/* AX88178 */
    113   1.99       mrg #define AX772		__BIT(1)	/* AX88772 */
    114   1.99       mrg #define AX772A		__BIT(2)	/* AX88772A */
    115   1.99       mrg #define AX772B		__BIT(3)	/* AX88772B */
    116   1.99       mrg #define	AXSTD_FRAME	__BIT(12)
    117   1.99       mrg #define	AXCSUM_FRAME	__BIT(13)
    118   1.99       mrg 
    119   1.99       mrg 	uint8_t			axe_ipgs[3];
    120   1.99       mrg 	uint8_t 		axe_phyaddrs[2];
    121   1.99       mrg 	uint16_t		sc_pwrcfg;
    122   1.99       mrg 	uint16_t		sc_lenmask;
    123   1.99       mrg 
    124   1.99       mrg };
    125   1.99       mrg 
    126  1.129  nisimura #define AXE_IS_178_FAMILY(un)				\
    127  1.129  nisimura 	((un)->un_flags & (AX178 | AX772 | AX772A | AX772B))
    128   1.99       mrg 
    129  1.129  nisimura #define AXE_IS_772(un)					\
    130  1.108       mrg 	((un)->un_flags & (AX772 | AX772A | AX772B))
    131   1.99       mrg 
    132  1.129  nisimura #define AXE_IS_172(un) (AXE_IS_178_FAMILY(un) == 0)
    133  1.129  nisimura 
    134   1.99       mrg #define AX_RXCSUM					\
    135   1.99       mrg     (IFCAP_CSUM_IPv4_Rx | 				\
    136   1.99       mrg      IFCAP_CSUM_TCPv4_Rx | IFCAP_CSUM_UDPv4_Rx |	\
    137   1.99       mrg      IFCAP_CSUM_TCPv6_Rx | IFCAP_CSUM_UDPv6_Rx)
    138   1.99       mrg 
    139   1.99       mrg #define AX_TXCSUM					\
    140   1.99       mrg     (IFCAP_CSUM_IPv4_Tx | 				\
    141   1.99       mrg      IFCAP_CSUM_TCPv4_Tx | IFCAP_CSUM_UDPv4_Tx |	\
    142   1.99       mrg      IFCAP_CSUM_TCPv6_Tx | IFCAP_CSUM_UDPv6_Tx)
    143   1.99       mrg 
    144   1.76     skrll /*
    145   1.76     skrll  * AXE_178_MAX_FRAME_BURST
    146   1.76     skrll  * max frame burst size for Ax88178 and Ax88772
    147   1.76     skrll  *	0	2048 bytes
    148   1.76     skrll  *	1	4096 bytes
    149   1.76     skrll  *	2	8192 bytes
    150   1.76     skrll  *	3	16384 bytes
    151   1.76     skrll  * use the largest your system can handle without USB stalling.
    152   1.76     skrll  *
    153   1.76     skrll  * NB: 88772 parts appear to generate lots of input errors with
    154   1.76     skrll  * a 2K rx buffer and 8K is only slightly faster than 4K on an
    155   1.76     skrll  * EHCI port on a T42 so change at your own risk.
    156   1.76     skrll  */
    157   1.76     skrll #define AXE_178_MAX_FRAME_BURST	1
    158   1.76     skrll 
    159   1.76     skrll 
    160   1.76     skrll #ifdef USB_DEBUG
    161   1.76     skrll #ifndef AXE_DEBUG
    162   1.76     skrll #define axedebug 0
    163    1.1  augustss #else
    164  1.116       mrg static int axedebug = 0;
    165   1.76     skrll 
    166   1.76     skrll SYSCTL_SETUP(sysctl_hw_axe_setup, "sysctl hw.axe setup")
    167   1.76     skrll {
    168   1.76     skrll 	int err;
    169   1.76     skrll 	const struct sysctlnode *rnode;
    170   1.76     skrll 	const struct sysctlnode *cnode;
    171   1.76     skrll 
    172   1.76     skrll 	err = sysctl_createv(clog, 0, NULL, &rnode,
    173   1.76     skrll 	    CTLFLAG_PERMANENT, CTLTYPE_NODE, "axe",
    174   1.76     skrll 	    SYSCTL_DESCR("axe global controls"),
    175   1.76     skrll 	    NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL);
    176   1.76     skrll 
    177   1.76     skrll 	if (err)
    178   1.76     skrll 		goto fail;
    179   1.76     skrll 
    180   1.76     skrll 	/* control debugging printfs */
    181   1.76     skrll 	err = sysctl_createv(clog, 0, &rnode, &cnode,
    182   1.96   msaitoh 	    CTLFLAG_PERMANENT | CTLFLAG_READWRITE, CTLTYPE_INT,
    183   1.76     skrll 	    "debug", SYSCTL_DESCR("Enable debugging output"),
    184   1.76     skrll 	    NULL, 0, &axedebug, sizeof(axedebug), CTL_CREATE, CTL_EOL);
    185   1.76     skrll 	if (err)
    186   1.76     skrll 		goto fail;
    187   1.76     skrll 
    188   1.76     skrll 	return;
    189   1.76     skrll fail:
    190   1.76     skrll 	aprint_error("%s: sysctl_createv failed (err = %d)\n", __func__, err);
    191   1.76     skrll }
    192   1.76     skrll 
    193   1.76     skrll #endif /* AXE_DEBUG */
    194   1.76     skrll #endif /* USB_DEBUG */
    195   1.76     skrll 
    196   1.76     skrll #define DPRINTF(FMT,A,B,C,D)	USBHIST_LOGN(axedebug,1,FMT,A,B,C,D)
    197   1.76     skrll #define DPRINTFN(N,FMT,A,B,C,D)	USBHIST_LOGN(axedebug,N,FMT,A,B,C,D)
    198   1.76     skrll #define AXEHIST_FUNC()		USBHIST_FUNC()
    199   1.76     skrll #define AXEHIST_CALLED(name)	USBHIST_CALLED(axedebug)
    200    1.1  augustss 
    201    1.1  augustss /*
    202    1.1  augustss  * Various supported device vendors/products.
    203    1.1  augustss  */
    204   1.35  pgoyette static const struct axe_type axe_devs[] = {
    205  1.129  nisimura 	{ { USB_VENDOR_ABOCOM,		USB_PRODUCT_ABOCOM_UFE2000 }, 0 },
    206  1.129  nisimura 	{ { USB_VENDOR_ACERCM,		USB_PRODUCT_ACERCM_EP1427X2 }, 0 },
    207   1.35  pgoyette 	{ { USB_VENDOR_APPLE,		USB_PRODUCT_APPLE_ETHERNET }, AX772 },
    208  1.129  nisimura 	{ { USB_VENDOR_ASIX,		USB_PRODUCT_ASIX_AX88172 }, 0 },
    209  1.129  nisimura 	{ { USB_VENDOR_ASIX,		USB_PRODUCT_ASIX_AX88772 }, AX772 },
    210  1.129  nisimura 	{ { USB_VENDOR_ASIX,		USB_PRODUCT_ASIX_AX88772A }, AX772 },
    211  1.129  nisimura 	{ { USB_VENDOR_ASIX,		USB_PRODUCT_ASIX_AX88772B }, AX772B },
    212  1.129  nisimura 	{ { USB_VENDOR_ASIX,		USB_PRODUCT_ASIX_AX88772B_1 }, AX772B },
    213  1.129  nisimura 	{ { USB_VENDOR_ASIX,		USB_PRODUCT_ASIX_AX88178 }, AX178 },
    214  1.129  nisimura 	{ { USB_VENDOR_ATEN,		USB_PRODUCT_ATEN_UC210T }, 0 },
    215   1.35  pgoyette 	{ { USB_VENDOR_BELKIN,		USB_PRODUCT_BELKIN_F5D5055 }, AX178 },
    216  1.129  nisimura 	{ { USB_VENDOR_BILLIONTON,	USB_PRODUCT_BILLIONTON_USB2AR }, 0},
    217  1.129  nisimura 	{ { USB_VENDOR_CISCOLINKSYS,	USB_PRODUCT_CISCOLINKSYS_USB200MV2 }, AX772A },
    218  1.129  nisimura 	{ { USB_VENDOR_COREGA,		USB_PRODUCT_COREGA_FETHER_USB2_TX }, 0 },
    219  1.129  nisimura 	{ { USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DUBE100 }, 0 },
    220   1.35  pgoyette 	{ { USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DUBE100B1 }, AX772 },
    221   1.74     skrll 	{ { USB_VENDOR_DLINK2,		USB_PRODUCT_DLINK2_DUBE100B1 }, AX772 },
    222   1.76     skrll 	{ { USB_VENDOR_DLINK,		USB_PRODUCT_DLINK_DUBE100C1 }, AX772B },
    223  1.129  nisimura 	{ { USB_VENDOR_GOODWAY,		USB_PRODUCT_GOODWAY_GWUSB2E }, 0 },
    224   1.35  pgoyette 	{ { USB_VENDOR_IODATA,		USB_PRODUCT_IODATA_ETGUS2 }, AX178 },
    225  1.129  nisimura 	{ { USB_VENDOR_JVC,		USB_PRODUCT_JVC_MP_PRX1 }, 0 },
    226   1.76     skrll 	{ { USB_VENDOR_LENOVO,		USB_PRODUCT_LENOVO_ETHERNET }, AX772B },
    227  1.129  nisimura 	{ { USB_VENDOR_LINKSYS,		USB_PRODUCT_LINKSYS_HG20F9 }, AX772B },
    228  1.129  nisimura 	{ { USB_VENDOR_LINKSYS2,	USB_PRODUCT_LINKSYS2_USB200M }, 0 },
    229   1.35  pgoyette 	{ { USB_VENDOR_LINKSYS4,	USB_PRODUCT_LINKSYS4_USB1000 }, AX178 },
    230  1.129  nisimura 	{ { USB_VENDOR_LOGITEC,		USB_PRODUCT_LOGITEC_LAN_GTJU2 }, AX178 },
    231  1.129  nisimura 	{ { USB_VENDOR_MELCO,		USB_PRODUCT_MELCO_LUAU2GT }, AX178 },
    232  1.129  nisimura 	{ { USB_VENDOR_MELCO,		USB_PRODUCT_MELCO_LUAU2KTX }, 0 },
    233  1.129  nisimura 	{ { USB_VENDOR_MSI,		USB_PRODUCT_MSI_AX88772A }, AX772 },
    234  1.129  nisimura 	{ { USB_VENDOR_NETGEAR,		USB_PRODUCT_NETGEAR_FA120 }, 0 },
    235   1.35  pgoyette 	{ { USB_VENDOR_OQO,		USB_PRODUCT_OQO_ETHER01PLUS }, AX772 },
    236   1.35  pgoyette 	{ { USB_VENDOR_PLANEX3,		USB_PRODUCT_PLANEX3_GU1000T }, AX178 },
    237  1.129  nisimura 	{ { USB_VENDOR_SITECOM,		USB_PRODUCT_SITECOM_LN029 }, 0 },
    238   1.76     skrll 	{ { USB_VENDOR_SITECOMEU,	USB_PRODUCT_SITECOMEU_LN028 }, AX178 },
    239   1.76     skrll 	{ { USB_VENDOR_SITECOMEU,	USB_PRODUCT_SITECOMEU_LN031 }, AX178 },
    240  1.129  nisimura 	{ { USB_VENDOR_SYSTEMTALKS,	USB_PRODUCT_SYSTEMTALKS_SGCX2UL }, 0 },
    241    1.1  augustss };
    242    1.9  christos #define axe_lookup(v, p) ((const struct axe_type *)usb_lookup(axe_devs, v, p))
    243    1.1  augustss 
    244   1.76     skrll static const struct ax88772b_mfb ax88772b_mfb_table[] = {
    245   1.76     skrll 	{ 0x8000, 0x8001, 2048 },
    246   1.76     skrll 	{ 0x8100, 0x8147, 4096 },
    247   1.76     skrll 	{ 0x8200, 0x81EB, 6144 },
    248   1.76     skrll 	{ 0x8300, 0x83D7, 8192 },
    249   1.76     skrll 	{ 0x8400, 0x851E, 16384 },
    250   1.76     skrll 	{ 0x8500, 0x8666, 20480 },
    251   1.76     skrll 	{ 0x8600, 0x87AE, 24576 },
    252   1.76     skrll 	{ 0x8700, 0x8A3D, 32768 }
    253   1.76     skrll };
    254   1.76     skrll 
    255  1.121      maxv static int	axe_match(device_t, cfdata_t, void *);
    256  1.121      maxv static void	axe_attach(device_t, device_t, void *);
    257   1.35  pgoyette 
    258   1.35  pgoyette CFATTACH_DECL_NEW(axe, sizeof(struct axe_softc),
    259  1.104       mrg 	axe_match, axe_attach, usbnet_detach, usbnet_activate);
    260   1.35  pgoyette 
    261  1.130   thorpej static void	axe_uno_stop(struct ifnet *, int);
    262  1.134  riastrad static void	axe_uno_mcast(struct ifnet *);
    263  1.130   thorpej static int	axe_uno_init(struct ifnet *);
    264  1.130   thorpej static int	axe_uno_mii_read_reg(struct usbnet *, int, int, uint16_t *);
    265  1.130   thorpej static int	axe_uno_mii_write_reg(struct usbnet *, int, int, uint16_t);
    266  1.130   thorpej static void	axe_uno_mii_statchg(struct ifnet *);
    267  1.130   thorpej static void	axe_uno_rx_loop(struct usbnet *, struct usbnet_chain *,
    268  1.130   thorpej 				uint32_t);
    269  1.130   thorpej static unsigned axe_uno_tx_prepare(struct usbnet *, struct mbuf *,
    270  1.130   thorpej 				   struct usbnet_chain *);
    271   1.35  pgoyette 
    272   1.35  pgoyette static void	axe_ax88178_init(struct axe_softc *);
    273   1.35  pgoyette static void	axe_ax88772_init(struct axe_softc *);
    274   1.82     ozaki static void	axe_ax88772a_init(struct axe_softc *);
    275   1.82     ozaki static void	axe_ax88772b_init(struct axe_softc *);
    276    1.1  augustss 
    277  1.121      maxv static const struct usbnet_ops axe_ops = {
    278  1.130   thorpej 	.uno_stop = axe_uno_stop,
    279  1.134  riastrad 	.uno_mcast = axe_uno_mcast,
    280  1.130   thorpej 	.uno_read_reg = axe_uno_mii_read_reg,
    281  1.130   thorpej 	.uno_write_reg = axe_uno_mii_write_reg,
    282  1.130   thorpej 	.uno_statchg = axe_uno_mii_statchg,
    283  1.130   thorpej 	.uno_tx_prepare = axe_uno_tx_prepare,
    284  1.130   thorpej 	.uno_rx_loop = axe_uno_rx_loop,
    285  1.130   thorpej 	.uno_init = axe_uno_init,
    286  1.107       mrg };
    287  1.107       mrg 
    288  1.104       mrg static usbd_status
    289    1.1  augustss axe_cmd(struct axe_softc *sc, int cmd, int index, int val, void *buf)
    290    1.1  augustss {
    291   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    292  1.104       mrg 	struct usbnet * const un = &sc->axe_un;
    293   1.38   tsutsui 	usb_device_request_t req;
    294   1.38   tsutsui 	usbd_status err;
    295    1.1  augustss 
    296  1.130   thorpej 	usbnet_isowned_core(un);
    297   1.21        ad 
    298  1.107       mrg 	if (usbnet_isdying(un))
    299   1.86  christos 		return -1;
    300    1.1  augustss 
    301   1.83  pgoyette 	DPRINTFN(20, "cmd %#jx index %#jx val %#jx", cmd, index, val, 0);
    302   1.76     skrll 
    303    1.1  augustss 	if (AXE_CMD_DIR(cmd))
    304    1.1  augustss 		req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    305    1.1  augustss 	else
    306    1.1  augustss 		req.bmRequestType = UT_READ_VENDOR_DEVICE;
    307    1.1  augustss 	req.bRequest = AXE_CMD_CMD(cmd);
    308    1.1  augustss 	USETW(req.wValue, val);
    309    1.1  augustss 	USETW(req.wIndex, index);
    310    1.1  augustss 	USETW(req.wLength, AXE_CMD_LEN(cmd));
    311    1.1  augustss 
    312  1.104       mrg 	err = usbd_do_request(un->un_udev, &req, buf);
    313  1.104       mrg 	if (err)
    314  1.104       mrg 		DPRINTF("cmd %jd err %jd", cmd, err, 0, 0);
    315    1.1  augustss 
    316  1.104       mrg 	return err;
    317    1.1  augustss }
    318    1.1  augustss 
    319  1.118       mrg static int
    320  1.130   thorpej axe_uno_mii_read_reg(struct usbnet *un, int phy, int reg, uint16_t *val)
    321    1.1  augustss {
    322   1.77     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    323  1.104       mrg 	struct axe_softc * const sc = usbnet_softc(un);
    324   1.38   tsutsui 	usbd_status err;
    325   1.95   msaitoh 	uint16_t data;
    326    1.1  augustss 
    327  1.123       rin 	DPRINTFN(30, "phy %#jx reg %#jx\n", phy, reg, 0, 0);
    328   1.76     skrll 
    329  1.117       mrg 	if (un->un_phyno != phy)
    330  1.118       mrg 		return EINVAL;
    331  1.117       mrg 
    332   1.66       roy 	axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL);
    333   1.76     skrll 
    334   1.95   msaitoh 	err = axe_cmd(sc, AXE_CMD_MII_READ_REG, reg, phy, &data);
    335   1.66       roy 	axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL);
    336  1.100       mrg 
    337   1.66       roy 	if (err) {
    338  1.132  jakllsch 		device_printf(un->un_dev, "read PHY failed\n");
    339  1.118       mrg 		return EIO;
    340   1.66       roy 	}
    341   1.66       roy 
    342   1.95   msaitoh 	*val = le16toh(data);
    343  1.108       mrg 	if (AXE_IS_772(un) && reg == MII_BMSR) {
    344   1.66       roy 		/*
    345   1.76     skrll 		 * BMSR of AX88772 indicates that it supports extended
    346   1.66       roy 		 * capability but the extended status register is
    347   1.76     skrll 		 * reserved for embedded ethernet PHY. So clear the
    348   1.66       roy 		 * extended capability bit of BMSR.
    349   1.66       roy 		 */
    350   1.95   msaitoh 		*val &= ~BMSR_EXTCAP;
    351    1.1  augustss 	}
    352    1.1  augustss 
    353  1.123       rin 	DPRINTFN(30, "phy %#jx reg %#jx val %#jx", phy, reg, *val, 0);
    354   1.66       roy 
    355  1.118       mrg 	return 0;
    356    1.1  augustss }
    357    1.1  augustss 
    358  1.118       mrg static int
    359  1.130   thorpej axe_uno_mii_write_reg(struct usbnet *un, int phy, int reg, uint16_t val)
    360    1.1  augustss {
    361  1.104       mrg 	struct axe_softc * const sc = usbnet_softc(un);
    362   1.38   tsutsui 	usbd_status err;
    363  1.104       mrg 	uint16_t aval;
    364    1.1  augustss 
    365  1.117       mrg 	if (un->un_phyno != phy)
    366  1.118       mrg 		return EINVAL;
    367  1.117       mrg 
    368  1.104       mrg 	aval = htole16(val);
    369    1.1  augustss 
    370    1.1  augustss 	axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL);
    371  1.104       mrg 	err = axe_cmd(sc, AXE_CMD_MII_WRITE_REG, reg, phy, &aval);
    372    1.1  augustss 	axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL);
    373    1.1  augustss 
    374  1.118       mrg 	if (err)
    375  1.118       mrg 		return EIO;
    376  1.118       mrg 	return 0;
    377   1.66       roy }
    378   1.66       roy 
    379   1.66       roy static void
    380  1.130   thorpej axe_uno_mii_statchg(struct ifnet *ifp)
    381    1.1  augustss {
    382   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    383   1.76     skrll 
    384  1.104       mrg 	struct usbnet * const un = ifp->if_softc;
    385  1.104       mrg 	struct axe_softc * const sc = usbnet_softc(un);
    386  1.107       mrg 	struct mii_data *mii = usbnet_mii(un);
    387    1.5  augustss 	int val, err;
    388    1.5  augustss 
    389  1.107       mrg 	if (usbnet_isdying(un))
    390  1.100       mrg 		return;
    391  1.100       mrg 
    392   1.76     skrll 	val = 0;
    393  1.129  nisimura 	if (AXE_IS_172(un)) {
    394  1.129  nisimura 		if (mii->mii_media_active & IFM_FDX)
    395  1.129  nisimura 			val |= AXE_MEDIA_FULL_DUPLEX;
    396  1.129  nisimura 	} else {
    397  1.129  nisimura 		if (mii->mii_media_active & IFM_FDX) {
    398  1.129  nisimura 			val |= AXE_MEDIA_FULL_DUPLEX;
    399  1.127  nisimura 			if (mii->mii_media_active & IFM_ETH_TXPAUSE)
    400   1.76     skrll 				val |= AXE_178_MEDIA_TXFLOW_CONTROL_EN;
    401  1.127  nisimura 			if (mii->mii_media_active & IFM_ETH_RXPAUSE)
    402   1.76     skrll 				val |= AXE_178_MEDIA_RXFLOW_CONTROL_EN;
    403   1.76     skrll 		}
    404   1.76     skrll 		val |= AXE_178_MEDIA_RX_EN | AXE_178_MEDIA_MAGIC;
    405  1.108       mrg 		if (un->un_flags & AX178)
    406   1.66       roy 			val |= AXE_178_MEDIA_ENCK;
    407   1.35  pgoyette 		switch (IFM_SUBTYPE(mii->mii_media_active)) {
    408   1.38   tsutsui 		case IFM_1000_T:
    409   1.35  pgoyette 			val |= AXE_178_MEDIA_GMII | AXE_178_MEDIA_ENCK;
    410  1.109       mrg 			usbnet_set_link(un, true);
    411   1.35  pgoyette 			break;
    412   1.35  pgoyette 		case IFM_100_TX:
    413   1.35  pgoyette 			val |= AXE_178_MEDIA_100TX;
    414  1.109       mrg 			usbnet_set_link(un, true);
    415   1.35  pgoyette 			break;
    416   1.35  pgoyette 		case IFM_10_T:
    417  1.109       mrg 			usbnet_set_link(un, true);
    418   1.35  pgoyette 			break;
    419   1.35  pgoyette 		}
    420   1.35  pgoyette 	}
    421   1.35  pgoyette 
    422  1.123       rin 	DPRINTF("val=%#jx", val, 0, 0, 0);
    423    1.5  augustss 	err = axe_cmd(sc, AXE_CMD_WRITE_MEDIA, 0, val, NULL);
    424  1.104       mrg 	if (err)
    425  1.132  jakllsch 		device_printf(un->un_dev, "media change failed\n");
    426    1.1  augustss }
    427    1.1  augustss 
    428   1.35  pgoyette static void
    429  1.131  nisimura axe_rcvfilt_locked(struct usbnet *un)
    430    1.1  augustss {
    431   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    432  1.104       mrg 	struct axe_softc * const sc = usbnet_softc(un);
    433  1.104       mrg 	struct ifnet * const ifp = usbnet_ifp(un);
    434  1.104       mrg 	struct ethercom *ec = usbnet_ec(un);
    435   1.38   tsutsui 	struct ether_multi *enm;
    436   1.38   tsutsui 	struct ether_multistep step;
    437  1.131  nisimura 	uint16_t rxmode;
    438   1.38   tsutsui 	uint32_t h = 0;
    439  1.131  nisimura 	uint8_t mchash[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
    440    1.1  augustss 
    441  1.107       mrg 	if (usbnet_isdying(un))
    442    1.1  augustss 		return;
    443    1.1  augustss 
    444   1.86  christos 	if (axe_cmd(sc, AXE_CMD_RXCTL_READ, 0, 0, &rxmode)) {
    445  1.132  jakllsch 		device_printf(un->un_dev, "can't read rxmode");
    446   1.86  christos 		return;
    447   1.86  christos 	}
    448   1.10      tron 	rxmode = le16toh(rxmode);
    449    1.1  augustss 
    450   1.76     skrll 	rxmode &=
    451  1.124  nisimura 	    ~(AXE_RXCMD_ALLMULTI | AXE_RXCMD_PROMISC | AXE_RXCMD_MULTICAST);
    452   1.76     skrll 
    453  1.131  nisimura 	ETHER_LOCK(ec);
    454  1.124  nisimura 	if (ifp->if_flags & IFF_PROMISC) {
    455  1.131  nisimura 		ec->ec_flags |= ETHER_F_ALLMULTI;
    456  1.131  nisimura 		ETHER_UNLOCK(ec);
    457  1.131  nisimura 		/* run promisc. mode */
    458  1.131  nisimura 		rxmode |= AXE_RXCMD_ALLMULTI; /* ??? */
    459  1.131  nisimura 		rxmode |= AXE_RXCMD_PROMISC;
    460  1.131  nisimura 		goto update;
    461   1.35  pgoyette 	}
    462  1.131  nisimura 	ec->ec_flags &= ~ETHER_F_ALLMULTI;
    463   1.98   msaitoh 	ETHER_FIRST_MULTI(step, ec, enm);
    464    1.1  augustss 	while (enm != NULL) {
    465  1.131  nisimura 		if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
    466  1.131  nisimura 			ec->ec_flags |= ETHER_F_ALLMULTI;
    467   1.98   msaitoh 			ETHER_UNLOCK(ec);
    468  1.131  nisimura 			/* accept all mcast frames */
    469  1.131  nisimura 			rxmode |= AXE_RXCMD_ALLMULTI;
    470  1.131  nisimura 			goto update;
    471   1.98   msaitoh 		}
    472  1.131  nisimura 		h = ether_crc32_be(enm->enm_addrlo, ETHER_ADDR_LEN);
    473  1.131  nisimura 		mchash[h >> 29] |= 1U << ((h >> 26) & 7);
    474    1.1  augustss 		ETHER_NEXT_MULTI(step, enm);
    475    1.1  augustss 	}
    476   1.98   msaitoh 	ETHER_UNLOCK(ec);
    477  1.131  nisimura 	if (h != 0)
    478  1.131  nisimura 		rxmode |= AXE_RXCMD_MULTICAST;	/* activate mcast hash filter */
    479  1.131  nisimura 	axe_cmd(sc, AXE_CMD_WRITE_MCAST, 0, 0, mchash);
    480  1.131  nisimura  update:
    481   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
    482  1.100       mrg }
    483  1.100       mrg 
    484  1.100       mrg static void
    485  1.104       mrg axe_ax_init(struct usbnet *un)
    486   1.88  christos {
    487  1.104       mrg 	struct axe_softc * const sc = usbnet_softc(un);
    488  1.104       mrg 
    489   1.89  christos 	int cmd = AXE_178_CMD_READ_NODEID;
    490   1.89  christos 
    491  1.108       mrg 	if (un->un_flags & AX178) {
    492   1.88  christos 		axe_ax88178_init(sc);
    493  1.108       mrg 	} else if (un->un_flags & AX772) {
    494   1.88  christos 		axe_ax88772_init(sc);
    495  1.108       mrg 	} else if (un->un_flags & AX772A) {
    496   1.88  christos 		axe_ax88772a_init(sc);
    497  1.108       mrg 	} else if (un->un_flags & AX772B) {
    498   1.88  christos 		axe_ax88772b_init(sc);
    499   1.89  christos 		return;
    500   1.89  christos 	} else {
    501   1.89  christos 		cmd = AXE_172_CMD_READ_NODEID;
    502   1.89  christos 	}
    503   1.89  christos 
    504  1.104       mrg 	if (axe_cmd(sc, cmd, 0, 0, un->un_eaddr)) {
    505  1.104       mrg 		aprint_error_dev(un->un_dev,
    506   1.89  christos 		    "failed to read ethernet address\n");
    507   1.88  christos 	}
    508   1.88  christos }
    509   1.88  christos 
    510   1.76     skrll 
    511   1.35  pgoyette static void
    512  1.104       mrg axe_reset(struct usbnet *un)
    513    1.1  augustss {
    514   1.38   tsutsui 
    515  1.130   thorpej 	usbnet_isowned_core(un);
    516  1.104       mrg 
    517  1.107       mrg 	if (usbnet_isdying(un))
    518    1.1  augustss 		return;
    519   1.76     skrll 
    520   1.76     skrll 	/*
    521   1.76     skrll 	 * softnet_lock can be taken when NET_MPAFE is not defined when calling
    522  1.100       mrg 	 * if_addr_init -> if_init.  This doesn't mix well with the
    523   1.76     skrll 	 * usbd_delay_ms calls in the init routines as things like nd6_slowtimo
    524   1.76     skrll 	 * can fire during the wait and attempt to take softnet_lock and then
    525  1.104       mrg 	 * block the softclk thread meaning the wait never ends.
    526   1.76     skrll 	 */
    527   1.76     skrll #ifndef NET_MPSAFE
    528    1.1  augustss 	/* XXX What to reset? */
    529    1.1  augustss 
    530    1.1  augustss 	/* Wait a little while for the chip to get its brains in order. */
    531    1.1  augustss 	DELAY(1000);
    532   1.76     skrll #else
    533  1.104       mrg 	axe_ax_init(un);
    534   1.76     skrll #endif
    535    1.1  augustss }
    536    1.1  augustss 
    537   1.66       roy static int
    538   1.66       roy axe_get_phyno(struct axe_softc *sc, int sel)
    539   1.66       roy {
    540   1.66       roy 	int phyno;
    541   1.66       roy 
    542   1.66       roy 	switch (AXE_PHY_TYPE(sc->axe_phyaddrs[sel])) {
    543   1.66       roy 	case PHY_TYPE_100_HOME:
    544   1.66       roy 		/* FALLTHROUGH */
    545   1.66       roy 	case PHY_TYPE_GIG:
    546   1.66       roy 		phyno = AXE_PHY_NO(sc->axe_phyaddrs[sel]);
    547   1.66       roy 		break;
    548   1.66       roy 	case PHY_TYPE_SPECIAL:
    549   1.66       roy 		/* FALLTHROUGH */
    550   1.66       roy 	case PHY_TYPE_RSVD:
    551   1.66       roy 		/* FALLTHROUGH */
    552   1.66       roy 	case PHY_TYPE_NON_SUP:
    553   1.66       roy 		/* FALLTHROUGH */
    554   1.66       roy 	default:
    555   1.66       roy 		phyno = -1;
    556   1.66       roy 		break;
    557   1.66       roy 	}
    558   1.66       roy 
    559   1.66       roy 	return phyno;
    560   1.66       roy }
    561   1.66       roy 
    562   1.66       roy #define	AXE_GPIO_WRITE(x, y)	do {				\
    563   1.66       roy 	axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, (x), NULL);		\
    564  1.104       mrg 	usbd_delay_ms(sc->axe_un.un_udev, hztoms(y));		\
    565   1.66       roy } while (0)
    566   1.66       roy 
    567   1.35  pgoyette static void
    568   1.35  pgoyette axe_ax88178_init(struct axe_softc *sc)
    569   1.35  pgoyette {
    570   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    571  1.104       mrg 	struct usbnet * const un = &sc->axe_un;
    572   1.66       roy 	int gpio0, ledmode, phymode;
    573   1.66       roy 	uint16_t eeprom, val;
    574   1.35  pgoyette 
    575   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_SROM_WR_ENABLE, 0, 0, NULL);
    576   1.35  pgoyette 	/* XXX magic */
    577   1.86  christos 	if (axe_cmd(sc, AXE_CMD_SROM_READ, 0, 0x0017, &eeprom) != 0)
    578   1.86  christos 		eeprom = 0xffff;
    579   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_SROM_WR_DISABLE, 0, 0, NULL);
    580   1.35  pgoyette 
    581   1.35  pgoyette 	eeprom = le16toh(eeprom);
    582   1.35  pgoyette 
    583  1.123       rin 	DPRINTF("EEPROM is %#jx", eeprom, 0, 0, 0);
    584   1.35  pgoyette 
    585   1.35  pgoyette 	/* if EEPROM is invalid we have to use to GPIO0 */
    586   1.35  pgoyette 	if (eeprom == 0xffff) {
    587   1.66       roy 		phymode = AXE_PHY_MODE_MARVELL;
    588   1.35  pgoyette 		gpio0 = 1;
    589   1.66       roy 		ledmode = 0;
    590   1.35  pgoyette 	} else {
    591   1.66       roy 		phymode = eeprom & 0x7f;
    592   1.35  pgoyette 		gpio0 = (eeprom & 0x80) ? 0 : 1;
    593   1.66       roy 		ledmode = eeprom >> 8;
    594   1.35  pgoyette 	}
    595   1.35  pgoyette 
    596   1.83  pgoyette 	DPRINTF("use gpio0: %jd, phymode %jd", gpio0, phymode, 0, 0);
    597   1.35  pgoyette 
    598   1.66       roy 	/* Program GPIOs depending on PHY hardware. */
    599   1.66       roy 	switch (phymode) {
    600   1.66       roy 	case AXE_PHY_MODE_MARVELL:
    601   1.66       roy 		if (gpio0 == 1) {
    602   1.66       roy 			AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO0_EN,
    603   1.66       roy 			    hz / 32);
    604   1.66       roy 			AXE_GPIO_WRITE(AXE_GPIO0_EN | AXE_GPIO2 | AXE_GPIO2_EN,
    605   1.66       roy 			    hz / 32);
    606   1.66       roy 			AXE_GPIO_WRITE(AXE_GPIO0_EN | AXE_GPIO2_EN, hz / 4);
    607   1.66       roy 			AXE_GPIO_WRITE(AXE_GPIO0_EN | AXE_GPIO2 | AXE_GPIO2_EN,
    608   1.66       roy 			    hz / 32);
    609   1.66       roy 		} else {
    610   1.66       roy 			AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO1 |
    611   1.66       roy 			    AXE_GPIO1_EN, hz / 3);
    612   1.66       roy 			if (ledmode == 1) {
    613   1.66       roy 				AXE_GPIO_WRITE(AXE_GPIO1_EN, hz / 3);
    614   1.66       roy 				AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN,
    615   1.66       roy 				    hz / 3);
    616   1.66       roy 			} else {
    617   1.66       roy 				AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN |
    618   1.66       roy 				    AXE_GPIO2 | AXE_GPIO2_EN, hz / 32);
    619   1.66       roy 				AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN |
    620   1.66       roy 				    AXE_GPIO2_EN, hz / 4);
    621   1.66       roy 				AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN |
    622   1.66       roy 				    AXE_GPIO2 | AXE_GPIO2_EN, hz / 32);
    623   1.66       roy 			}
    624   1.66       roy 		}
    625   1.66       roy 		break;
    626   1.66       roy 	case AXE_PHY_MODE_CICADA:
    627   1.66       roy 	case AXE_PHY_MODE_CICADA_V2:
    628   1.66       roy 	case AXE_PHY_MODE_CICADA_V2_ASIX:
    629   1.66       roy 		if (gpio0 == 1)
    630   1.66       roy 			AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO0 |
    631   1.66       roy 			    AXE_GPIO0_EN, hz / 32);
    632   1.66       roy 		else
    633   1.66       roy 			AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO1 |
    634   1.66       roy 			    AXE_GPIO1_EN, hz / 32);
    635   1.66       roy 		break;
    636   1.66       roy 	case AXE_PHY_MODE_AGERE:
    637   1.66       roy 		AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM | AXE_GPIO1 |
    638   1.66       roy 		    AXE_GPIO1_EN, hz / 32);
    639   1.66       roy 		AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN | AXE_GPIO2 |
    640   1.66       roy 		    AXE_GPIO2_EN, hz / 32);
    641   1.66       roy 		AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN | AXE_GPIO2_EN, hz / 4);
    642   1.66       roy 		AXE_GPIO_WRITE(AXE_GPIO1 | AXE_GPIO1_EN | AXE_GPIO2 |
    643   1.66       roy 		    AXE_GPIO2_EN, hz / 32);
    644   1.66       roy 		break;
    645   1.66       roy 	case AXE_PHY_MODE_REALTEK_8211CL:
    646   1.66       roy 	case AXE_PHY_MODE_REALTEK_8211BN:
    647   1.66       roy 	case AXE_PHY_MODE_REALTEK_8251CL:
    648   1.66       roy 		val = gpio0 == 1 ? AXE_GPIO0 | AXE_GPIO0_EN :
    649   1.66       roy 		    AXE_GPIO1 | AXE_GPIO1_EN;
    650   1.66       roy 		AXE_GPIO_WRITE(val, hz / 32);
    651   1.66       roy 		AXE_GPIO_WRITE(val | AXE_GPIO2 | AXE_GPIO2_EN, hz / 32);
    652   1.66       roy 		AXE_GPIO_WRITE(val | AXE_GPIO2_EN, hz / 4);
    653   1.66       roy 		AXE_GPIO_WRITE(val | AXE_GPIO2 | AXE_GPIO2_EN, hz / 32);
    654   1.66       roy 		if (phymode == AXE_PHY_MODE_REALTEK_8211CL) {
    655  1.130   thorpej 			axe_uno_mii_write_reg(un, un->un_phyno, 0x1F, 0x0005);
    656  1.130   thorpej 			axe_uno_mii_write_reg(un, un->un_phyno, 0x0C, 0x0000);
    657  1.130   thorpej 			axe_uno_mii_read_reg(un, un->un_phyno, 0x0001, &val);
    658  1.130   thorpej 			axe_uno_mii_write_reg(un, un->un_phyno, 0x01, val | 0x0080);
    659  1.130   thorpej 			axe_uno_mii_write_reg(un, un->un_phyno, 0x1F, 0x0000);
    660   1.66       roy 		}
    661   1.66       roy 		break;
    662   1.66       roy 	default:
    663   1.66       roy 		/* Unknown PHY model or no need to program GPIOs. */
    664   1.66       roy 		break;
    665   1.35  pgoyette 	}
    666   1.35  pgoyette 
    667   1.35  pgoyette 	/* soft reset */
    668   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_CLEAR, NULL);
    669  1.104       mrg 	usbd_delay_ms(un->un_udev, 150);
    670   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
    671   1.35  pgoyette 	    AXE_SW_RESET_PRL | AXE_178_RESET_MAGIC, NULL);
    672  1.104       mrg 	usbd_delay_ms(un->un_udev, 150);
    673   1.76     skrll 	/* Enable MII/GMII/RGMII interface to work with external PHY. */
    674   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, 0, NULL);
    675  1.104       mrg 	usbd_delay_ms(un->un_udev, 10);
    676   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
    677   1.35  pgoyette }
    678   1.35  pgoyette 
    679   1.35  pgoyette static void
    680   1.35  pgoyette axe_ax88772_init(struct axe_softc *sc)
    681   1.35  pgoyette {
    682   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    683  1.104       mrg 	struct usbnet * const un = &sc->axe_un;
    684   1.35  pgoyette 
    685   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x00b0, NULL);
    686  1.104       mrg 	usbd_delay_ms(un->un_udev, 40);
    687   1.35  pgoyette 
    688  1.104       mrg 	if (un->un_phyno == AXE_772_PHY_NO_EPHY) {
    689   1.35  pgoyette 		/* ask for the embedded PHY */
    690   1.76     skrll 		axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0,
    691   1.76     skrll 		    AXE_SW_PHY_SELECT_EMBEDDED, NULL);
    692  1.104       mrg 		usbd_delay_ms(un->un_udev, 10);
    693   1.35  pgoyette 
    694   1.35  pgoyette 		/* power down and reset state, pin reset state */
    695   1.35  pgoyette 		axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_CLEAR, NULL);
    696  1.104       mrg 		usbd_delay_ms(un->un_udev, 60);
    697   1.35  pgoyette 
    698   1.35  pgoyette 		/* power down/reset state, pin operating state */
    699   1.35  pgoyette 		axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
    700   1.35  pgoyette 		    AXE_SW_RESET_IPPD | AXE_SW_RESET_PRL, NULL);
    701  1.104       mrg 		usbd_delay_ms(un->un_udev, 150);
    702   1.35  pgoyette 
    703   1.35  pgoyette 		/* power up, reset */
    704   1.35  pgoyette 		axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_PRL, NULL);
    705   1.35  pgoyette 
    706   1.35  pgoyette 		/* power up, operating */
    707   1.35  pgoyette 		axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
    708   1.35  pgoyette 		    AXE_SW_RESET_IPRL | AXE_SW_RESET_PRL, NULL);
    709   1.35  pgoyette 	} else {
    710   1.35  pgoyette 		/* ask for external PHY */
    711   1.76     skrll 		axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, AXE_SW_PHY_SELECT_EXT,
    712   1.76     skrll 		    NULL);
    713  1.104       mrg 		usbd_delay_ms(un->un_udev, 10);
    714   1.35  pgoyette 
    715   1.35  pgoyette 		/* power down internal PHY */
    716   1.35  pgoyette 		axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
    717   1.35  pgoyette 		    AXE_SW_RESET_IPPD | AXE_SW_RESET_PRL, NULL);
    718   1.35  pgoyette 	}
    719   1.35  pgoyette 
    720  1.104       mrg 	usbd_delay_ms(un->un_udev, 150);
    721   1.35  pgoyette 	axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
    722   1.35  pgoyette }
    723   1.35  pgoyette 
    724   1.76     skrll static void
    725   1.76     skrll axe_ax88772_phywake(struct axe_softc *sc)
    726   1.76     skrll {
    727   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    728  1.104       mrg 	struct usbnet * const un = &sc->axe_un;
    729   1.76     skrll 
    730  1.104       mrg 	if (un->un_phyno == AXE_772_PHY_NO_EPHY) {
    731   1.76     skrll 		/* Manually select internal(embedded) PHY - MAC mode. */
    732   1.76     skrll 		axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0,
    733   1.86  christos 		    AXE_SW_PHY_SELECT_EMBEDDED, NULL);
    734  1.104       mrg 		usbd_delay_ms(un->un_udev, hztoms(hz / 32));
    735   1.76     skrll 	} else {
    736   1.76     skrll 		/*
    737   1.76     skrll 		 * Manually select external PHY - MAC mode.
    738   1.76     skrll 		 * Reverse MII/RMII is for AX88772A PHY mode.
    739   1.76     skrll 		 */
    740   1.76     skrll 		axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, AXE_SW_PHY_SELECT_SS_ENB |
    741   1.76     skrll 		    AXE_SW_PHY_SELECT_EXT | AXE_SW_PHY_SELECT_SS_MII, NULL);
    742  1.104       mrg 		usbd_delay_ms(un->un_udev, hztoms(hz / 32));
    743   1.76     skrll 	}
    744   1.76     skrll 
    745   1.76     skrll 	axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_IPPD |
    746   1.76     skrll 	    AXE_SW_RESET_IPRL, NULL);
    747   1.76     skrll 
    748   1.76     skrll 	/* T1 = min 500ns everywhere */
    749  1.104       mrg 	usbd_delay_ms(un->un_udev, 150);
    750   1.76     skrll 
    751   1.76     skrll 	/* Take PHY out of power down. */
    752  1.104       mrg 	if (un->un_phyno == AXE_772_PHY_NO_EPHY) {
    753   1.76     skrll 		axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_IPRL, NULL);
    754   1.76     skrll 	} else {
    755   1.76     skrll 		axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_PRTE, NULL);
    756   1.76     skrll 	}
    757   1.76     skrll 
    758   1.76     skrll 	/* 772 T2 is 60ms. 772A T2 is 160ms, 772B T2 is 600ms */
    759  1.104       mrg 	usbd_delay_ms(un->un_udev, 600);
    760   1.76     skrll 
    761   1.76     skrll 	axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_CLEAR, NULL);
    762   1.76     skrll 
    763   1.76     skrll 	/* T3 = 500ns everywhere */
    764  1.104       mrg 	usbd_delay_ms(un->un_udev, hztoms(hz / 32));
    765   1.76     skrll 	axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_IPRL, NULL);
    766  1.104       mrg 	usbd_delay_ms(un->un_udev, hztoms(hz / 32));
    767   1.76     skrll }
    768   1.76     skrll 
    769   1.76     skrll static void
    770   1.76     skrll axe_ax88772a_init(struct axe_softc *sc)
    771   1.76     skrll {
    772   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    773   1.76     skrll 
    774   1.76     skrll 	/* Reload EEPROM. */
    775   1.76     skrll 	AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM, hz / 32);
    776   1.76     skrll 	axe_ax88772_phywake(sc);
    777   1.76     skrll 	/* Stop MAC. */
    778   1.76     skrll 	axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
    779   1.76     skrll }
    780   1.76     skrll 
    781   1.76     skrll static void
    782   1.76     skrll axe_ax88772b_init(struct axe_softc *sc)
    783   1.76     skrll {
    784   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    785  1.104       mrg 	struct usbnet * const un = &sc->axe_un;
    786   1.76     skrll 	uint16_t eeprom;
    787   1.76     skrll 	int i;
    788   1.76     skrll 
    789   1.76     skrll 	/* Reload EEPROM. */
    790   1.76     skrll 	AXE_GPIO_WRITE(AXE_GPIO_RELOAD_EEPROM , hz / 32);
    791   1.76     skrll 
    792   1.76     skrll 	/*
    793   1.76     skrll 	 * Save PHY power saving configuration(high byte) and
    794   1.76     skrll 	 * clear EEPROM checksum value(low byte).
    795   1.76     skrll 	 */
    796   1.86  christos 	if (axe_cmd(sc, AXE_CMD_SROM_READ, 0, AXE_EEPROM_772B_PHY_PWRCFG,
    797   1.86  christos 	    &eeprom)) {
    798  1.104       mrg 		aprint_error_dev(un->un_dev, "failed to read eeprom\n");
    799   1.86  christos 		return;
    800   1.86  christos 	}
    801   1.86  christos 
    802   1.76     skrll 	sc->sc_pwrcfg = le16toh(eeprom) & 0xFF00;
    803   1.76     skrll 
    804   1.76     skrll 	/*
    805   1.76     skrll 	 * Auto-loaded default station address from internal ROM is
    806   1.76     skrll 	 * 00:00:00:00:00:00 such that an explicit access to EEPROM
    807   1.76     skrll 	 * is required to get real station address.
    808   1.76     skrll 	 */
    809  1.104       mrg 	uint8_t *eaddr = un->un_eaddr;
    810   1.76     skrll 	for (i = 0; i < ETHER_ADDR_LEN / 2; i++) {
    811   1.86  christos 		if (axe_cmd(sc, AXE_CMD_SROM_READ, 0,
    812   1.86  christos 		    AXE_EEPROM_772B_NODE_ID + i, &eeprom)) {
    813  1.104       mrg 			aprint_error_dev(un->un_dev,
    814   1.86  christos 			    "failed to read eeprom\n");
    815   1.86  christos 		    eeprom = 0;
    816   1.86  christos 		}
    817   1.76     skrll 		eeprom = le16toh(eeprom);
    818   1.76     skrll 		*eaddr++ = (uint8_t)(eeprom & 0xFF);
    819   1.76     skrll 		*eaddr++ = (uint8_t)((eeprom >> 8) & 0xFF);
    820   1.76     skrll 	}
    821   1.76     skrll 	/* Wakeup PHY. */
    822   1.76     skrll 	axe_ax88772_phywake(sc);
    823   1.76     skrll 	/* Stop MAC. */
    824   1.76     skrll 	axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
    825   1.76     skrll }
    826   1.76     skrll 
    827   1.76     skrll #undef	AXE_GPIO_WRITE
    828   1.76     skrll 
    829    1.1  augustss /*
    830    1.1  augustss  * Probe for a AX88172 chip.
    831    1.1  augustss  */
    832  1.121      maxv static int
    833   1.27    dyoung axe_match(device_t parent, cfdata_t match, void *aux)
    834    1.1  augustss {
    835   1.27    dyoung 	struct usb_attach_arg *uaa = aux;
    836    1.1  augustss 
    837   1.71     skrll 	return axe_lookup(uaa->uaa_vendor, uaa->uaa_product) != NULL ?
    838   1.38   tsutsui 	    UMATCH_VENDOR_PRODUCT : UMATCH_NONE;
    839    1.1  augustss }
    840    1.1  augustss 
    841    1.1  augustss /*
    842    1.1  augustss  * Attach the interface. Allocate softc structures, do ifmedia
    843    1.1  augustss  * setup and ethernet/BPF attach.
    844    1.1  augustss  */
    845  1.121      maxv static void
    846   1.27    dyoung axe_attach(device_t parent, device_t self, void *aux)
    847    1.1  augustss {
    848   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
    849  1.119       mrg 	USBNET_MII_DECL_DEFAULT(unm);
    850   1.27    dyoung 	struct axe_softc *sc = device_private(self);
    851  1.104       mrg 	struct usbnet * const un = &sc->axe_un;
    852   1.27    dyoung 	struct usb_attach_arg *uaa = aux;
    853   1.71     skrll 	struct usbd_device *dev = uaa->uaa_device;
    854    1.1  augustss 	usbd_status err;
    855    1.1  augustss 	usb_interface_descriptor_t *id;
    856    1.1  augustss 	usb_endpoint_descriptor_t *ed;
    857    1.8  augustss 	char *devinfop;
    858  1.104       mrg 	unsigned bufsz;
    859  1.100       mrg 	int i;
    860    1.1  augustss 
    861  1.113       mrg 	KASSERT((void *)sc == un);
    862  1.104       mrg 
    863   1.28    dyoung 	aprint_naive("\n");
    864   1.28    dyoung 	aprint_normal("\n");
    865   1.29    plunky 	devinfop = usbd_devinfo_alloc(dev, 0);
    866   1.29    plunky 	aprint_normal_dev(self, "%s\n", devinfop);
    867   1.29    plunky 	usbd_devinfo_free(devinfop);
    868    1.1  augustss 
    869  1.104       mrg 	un->un_dev = self;
    870  1.104       mrg 	un->un_udev = dev;
    871  1.104       mrg 	un->un_sc = sc;
    872  1.107       mrg 	un->un_ops = &axe_ops;
    873  1.109       mrg 	un->un_rx_xfer_flags = USBD_SHORT_XFER_OK;
    874  1.109       mrg 	un->un_tx_xfer_flags = USBD_FORCE_SHORT_XFER;
    875  1.109       mrg 	un->un_rx_list_cnt = AXE_RX_LIST_CNT;
    876  1.109       mrg 	un->un_tx_list_cnt = AXE_TX_LIST_CNT;
    877  1.104       mrg 
    878    1.1  augustss 	err = usbd_set_config_no(dev, AXE_CONFIG_NO, 1);
    879    1.1  augustss 	if (err) {
    880   1.61     skrll 		aprint_error_dev(self, "failed to set configuration"
    881   1.61     skrll 		    ", err=%s\n", usbd_errstr(err));
    882   1.28    dyoung 		return;
    883    1.1  augustss 	}
    884    1.1  augustss 
    885  1.108       mrg 	un->un_flags = axe_lookup(uaa->uaa_vendor, uaa->uaa_product)->axe_flags;
    886   1.35  pgoyette 
    887  1.104       mrg 	err = usbd_device2interface_handle(dev, AXE_IFACE_IDX, &un->un_iface);
    888    1.1  augustss 	if (err) {
    889   1.25      cube 		aprint_error_dev(self, "getting interface handle failed\n");
    890   1.28    dyoung 		return;
    891    1.1  augustss 	}
    892    1.1  augustss 
    893  1.104       mrg 	id = usbd_get_interface_descriptor(un->un_iface);
    894    1.1  augustss 
    895   1.35  pgoyette 	/* decide on what our bufsize will be */
    896  1.129  nisimura 	if (AXE_IS_172(un))
    897  1.129  nisimura 		bufsz = AXE_172_BUFSZ;
    898  1.129  nisimura 	else
    899  1.104       mrg 		bufsz = (un->un_udev->ud_speed == USB_SPEED_HIGH) ?
    900   1.35  pgoyette 		    AXE_178_MAX_BUFSZ : AXE_178_MIN_BUFSZ;
    901  1.109       mrg 	un->un_rx_bufsz = un->un_tx_bufsz = bufsz;
    902  1.104       mrg 
    903  1.104       mrg 	un->un_ed[USBNET_ENDPT_RX] = 0;
    904  1.104       mrg 	un->un_ed[USBNET_ENDPT_TX] = 0;
    905  1.104       mrg 	un->un_ed[USBNET_ENDPT_INTR] = 0;
    906   1.76     skrll 
    907    1.1  augustss 	/* Find endpoints. */
    908    1.1  augustss 	for (i = 0; i < id->bNumEndpoints; i++) {
    909  1.104       mrg 		ed = usbd_interface2endpoint_descriptor(un->un_iface, i);
    910   1.38   tsutsui 		if (ed == NULL) {
    911   1.25      cube 			aprint_error_dev(self, "couldn't get ep %d\n", i);
    912   1.28    dyoung 			return;
    913    1.1  augustss 		}
    914   1.76     skrll 		const uint8_t xt = UE_GET_XFERTYPE(ed->bmAttributes);
    915   1.76     skrll 		const uint8_t dir = UE_GET_DIR(ed->bEndpointAddress);
    916   1.76     skrll 
    917   1.76     skrll 		if (dir == UE_DIR_IN && xt == UE_BULK &&
    918  1.104       mrg 		    un->un_ed[USBNET_ENDPT_RX] == 0) {
    919  1.104       mrg 			un->un_ed[USBNET_ENDPT_RX] = ed->bEndpointAddress;
    920   1.76     skrll 		} else if (dir == UE_DIR_OUT && xt == UE_BULK &&
    921  1.104       mrg 		    un->un_ed[USBNET_ENDPT_TX] == 0) {
    922  1.104       mrg 			un->un_ed[USBNET_ENDPT_TX] = ed->bEndpointAddress;
    923   1.76     skrll 		} else if (dir == UE_DIR_IN && xt == UE_INTERRUPT) {
    924  1.104       mrg 			un->un_ed[USBNET_ENDPT_INTR] = ed->bEndpointAddress;
    925    1.1  augustss 		}
    926    1.1  augustss 	}
    927    1.1  augustss 
    928  1.100       mrg 	/* Set these up now for axe_cmd().  */
    929  1.109       mrg 	usbnet_attach(un, "axedet");
    930    1.1  augustss 
    931   1.35  pgoyette 	/* We need the PHYID for init dance in some cases */
    932  1.130   thorpej 	usbnet_lock_core(un);
    933  1.130   thorpej 	usbnet_busy(un);
    934   1.86  christos 	if (axe_cmd(sc, AXE_CMD_READ_PHYID, 0, 0, &sc->axe_phyaddrs)) {
    935   1.86  christos 		aprint_error_dev(self, "failed to read phyaddrs\n");
    936  1.130   thorpej 		usbnet_unbusy(un);
    937  1.130   thorpej 		usbnet_unlock_core(un);
    938   1.86  christos 		return;
    939   1.86  christos 	}
    940   1.35  pgoyette 
    941   1.83  pgoyette 	DPRINTF(" phyaddrs[0]: %jx phyaddrs[1]: %jx",
    942   1.76     skrll 	    sc->axe_phyaddrs[0], sc->axe_phyaddrs[1], 0, 0);
    943  1.104       mrg 	un->un_phyno = axe_get_phyno(sc, AXE_PHY_SEL_PRI);
    944  1.104       mrg 	if (un->un_phyno == -1)
    945  1.104       mrg 		un->un_phyno = axe_get_phyno(sc, AXE_PHY_SEL_SEC);
    946  1.104       mrg 	if (un->un_phyno == -1) {
    947   1.76     skrll 		DPRINTF(" no valid PHY address found, assuming PHY address 0",
    948   1.76     skrll 		    0, 0, 0, 0);
    949  1.104       mrg 		un->un_phyno = 0;
    950   1.66       roy 	}
    951   1.35  pgoyette 
    952   1.76     skrll 	/* Initialize controller and get station address. */
    953   1.76     skrll 
    954  1.104       mrg 	axe_ax_init(un);
    955   1.86  christos 
    956    1.1  augustss 	/*
    957   1.76     skrll 	 * Fetch IPG values.
    958    1.1  augustss 	 */
    959  1.108       mrg 	if (un->un_flags & (AX772A | AX772B)) {
    960   1.76     skrll 		/* Set IPG values. */
    961   1.76     skrll 		sc->axe_ipgs[0] = AXE_IPG0_DEFAULT;
    962   1.76     skrll 		sc->axe_ipgs[1] = AXE_IPG1_DEFAULT;
    963   1.76     skrll 		sc->axe_ipgs[2] = AXE_IPG2_DEFAULT;
    964   1.86  christos 	} else {
    965   1.86  christos 		if (axe_cmd(sc, AXE_CMD_READ_IPG012, 0, 0, sc->axe_ipgs)) {
    966   1.86  christos 			aprint_error_dev(self, "failed to read ipg\n");
    967  1.130   thorpej 			usbnet_unbusy(un);
    968  1.130   thorpej 			usbnet_unlock_core(un);
    969   1.86  christos 			return;
    970   1.86  christos 		}
    971   1.86  christos 	}
    972    1.1  augustss 
    973  1.130   thorpej 	usbnet_unbusy(un);
    974  1.130   thorpej 	usbnet_unlock_core(un);
    975    1.1  augustss 
    976  1.129  nisimura 	if (!AXE_IS_172(un))
    977  1.104       mrg 		usbnet_ec(un)->ec_capabilities = ETHERCAP_VLAN_MTU;
    978  1.108       mrg 	if (un->un_flags & AX772B) {
    979  1.104       mrg 		struct ifnet *ifp = usbnet_ifp(un);
    980  1.104       mrg 
    981   1.76     skrll 		ifp->if_capabilities =
    982   1.76     skrll 		    IFCAP_CSUM_IPv4_Rx |
    983   1.76     skrll 		    IFCAP_CSUM_TCPv4_Rx | IFCAP_CSUM_UDPv4_Rx |
    984   1.76     skrll 		    IFCAP_CSUM_TCPv6_Rx | IFCAP_CSUM_UDPv6_Rx;
    985   1.76     skrll 		/*
    986   1.76     skrll 		 * Checksum offloading of AX88772B also works with VLAN
    987   1.76     skrll 		 * tagged frames but there is no way to take advantage
    988   1.76     skrll 		 * of the feature because vlan(4) assumes
    989   1.76     skrll 		 * IFCAP_VLAN_HWTAGGING is prerequisite condition to
    990   1.76     skrll 		 * support checksum offloading with VLAN. VLAN hardware
    991   1.76     skrll 		 * tagging support of AX88772B is very limited so it's
    992   1.76     skrll 		 * not possible to announce IFCAP_VLAN_HWTAGGING.
    993   1.76     skrll 		 */
    994   1.76     skrll 	}
    995  1.108       mrg 	if (un->un_flags & (AX772A | AX772B | AX178))
    996  1.128  nisimura 		unm.un_mii_flags = MIIF_DOPAUSE;
    997    1.1  augustss 
    998  1.118       mrg 	usbnet_attach_ifp(un, IFF_SIMPLEX | IFF_BROADCAST | IFF_MULTICAST,
    999  1.118       mrg 	    0, &unm);
   1000    1.1  augustss }
   1001    1.1  augustss 
   1002   1.35  pgoyette static void
   1003  1.130   thorpej axe_uno_rx_loop(struct usbnet * un, struct usbnet_chain *c, uint32_t total_len)
   1004    1.1  augustss {
   1005   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
   1006  1.104       mrg 	struct axe_softc * const sc = usbnet_softc(un);
   1007  1.104       mrg 	struct ifnet *ifp = usbnet_ifp(un);
   1008  1.104       mrg 	uint8_t *buf = c->unc_buf;
   1009    1.1  augustss 
   1010   1.35  pgoyette 	do {
   1011   1.76     skrll 		u_int pktlen = 0;
   1012   1.76     skrll 		u_int rxlen = 0;
   1013   1.76     skrll 		int flags = 0;
   1014  1.104       mrg 
   1015  1.108       mrg 		if ((un->un_flags & AXSTD_FRAME) != 0) {
   1016   1.76     skrll 			struct axe_sframe_hdr hdr;
   1017   1.76     skrll 
   1018   1.35  pgoyette 			if (total_len < sizeof(hdr)) {
   1019  1.122   thorpej 				if_statinc(ifp, if_ierrors);
   1020  1.104       mrg 				break;
   1021   1.35  pgoyette 			}
   1022   1.35  pgoyette 
   1023   1.35  pgoyette 			memcpy(&hdr, buf, sizeof(hdr));
   1024   1.76     skrll 
   1025  1.123       rin 			DPRINTFN(20, "total_len %#jx len %#jx ilen %#jx",
   1026   1.76     skrll 			    total_len,
   1027   1.76     skrll 			    (le16toh(hdr.len) & AXE_RH1M_RXLEN_MASK),
   1028   1.76     skrll 			    (le16toh(hdr.ilen) & AXE_RH1M_RXLEN_MASK), 0);
   1029   1.76     skrll 
   1030   1.35  pgoyette 			total_len -= sizeof(hdr);
   1031   1.42   tsutsui 			buf += sizeof(hdr);
   1032   1.35  pgoyette 
   1033   1.58  christos 			if (((le16toh(hdr.len) & AXE_RH1M_RXLEN_MASK) ^
   1034   1.62  christos 			    (le16toh(hdr.ilen) & AXE_RH1M_RXLEN_MASK)) !=
   1035   1.62  christos 			    AXE_RH1M_RXLEN_MASK) {
   1036  1.122   thorpej 				if_statinc(ifp, if_ierrors);
   1037  1.104       mrg 				break;
   1038   1.35  pgoyette 			}
   1039   1.42   tsutsui 
   1040   1.63  christos 			rxlen = le16toh(hdr.len) & AXE_RH1M_RXLEN_MASK;
   1041   1.42   tsutsui 			if (total_len < rxlen) {
   1042   1.42   tsutsui 				pktlen = total_len;
   1043   1.42   tsutsui 				total_len = 0;
   1044   1.42   tsutsui 			} else {
   1045   1.43   tsutsui 				pktlen = rxlen;
   1046   1.43   tsutsui 				rxlen = roundup2(rxlen, 2);
   1047   1.42   tsutsui 				total_len -= rxlen;
   1048   1.35  pgoyette 			}
   1049   1.35  pgoyette 
   1050  1.108       mrg 		} else if ((un->un_flags & AXCSUM_FRAME) != 0) {
   1051   1.76     skrll 			struct axe_csum_hdr csum_hdr;
   1052   1.76     skrll 
   1053  1.104       mrg 			if (total_len <	sizeof(csum_hdr)) {
   1054  1.122   thorpej 				if_statinc(ifp, if_ierrors);
   1055  1.104       mrg 				break;
   1056   1.76     skrll 			}
   1057   1.76     skrll 
   1058   1.76     skrll 			memcpy(&csum_hdr, buf, sizeof(csum_hdr));
   1059   1.76     skrll 
   1060   1.76     skrll 			csum_hdr.len = le16toh(csum_hdr.len);
   1061   1.76     skrll 			csum_hdr.ilen = le16toh(csum_hdr.ilen);
   1062   1.76     skrll 			csum_hdr.cstatus = le16toh(csum_hdr.cstatus);
   1063   1.76     skrll 
   1064   1.83  pgoyette 			DPRINTFN(20, "total_len %#jx len %#jx ilen %#jx"
   1065   1.83  pgoyette 			    " cstatus %#jx", total_len,
   1066   1.76     skrll 			    csum_hdr.len, csum_hdr.ilen, csum_hdr.cstatus);
   1067   1.76     skrll 
   1068   1.76     skrll 			if ((AXE_CSUM_RXBYTES(csum_hdr.len) ^
   1069   1.76     skrll 			    AXE_CSUM_RXBYTES(csum_hdr.ilen)) !=
   1070   1.76     skrll 			    sc->sc_lenmask) {
   1071   1.76     skrll 				/* we lost sync */
   1072  1.122   thorpej 				if_statinc(ifp, if_ierrors);
   1073   1.83  pgoyette 				DPRINTFN(20, "len %#jx ilen %#jx lenmask %#jx "
   1074   1.83  pgoyette 				    "err",
   1075   1.76     skrll 				    AXE_CSUM_RXBYTES(csum_hdr.len),
   1076   1.76     skrll 				    AXE_CSUM_RXBYTES(csum_hdr.ilen),
   1077   1.76     skrll 				    sc->sc_lenmask, 0);
   1078  1.104       mrg 				break;
   1079   1.76     skrll 			}
   1080   1.76     skrll 			/*
   1081   1.76     skrll 			 * Get total transferred frame length including
   1082   1.76     skrll 			 * checksum header.  The length should be multiple
   1083   1.76     skrll 			 * of 4.
   1084   1.76     skrll 			 */
   1085   1.76     skrll 			pktlen = AXE_CSUM_RXBYTES(csum_hdr.len);
   1086   1.78     skrll 			u_int len = sizeof(csum_hdr) + pktlen;
   1087   1.76     skrll 			len = (len + 3) & ~3;
   1088   1.76     skrll 			if (total_len < len) {
   1089   1.83  pgoyette 				DPRINTFN(20, "total_len %#jx < len %#jx",
   1090   1.76     skrll 				    total_len, len, 0, 0);
   1091   1.76     skrll 				/* invalid length */
   1092  1.122   thorpej 				if_statinc(ifp, if_ierrors);
   1093  1.104       mrg 				break;
   1094   1.76     skrll 			}
   1095   1.76     skrll 			buf += sizeof(csum_hdr);
   1096   1.76     skrll 
   1097   1.76     skrll 			const uint16_t cstatus = csum_hdr.cstatus;
   1098   1.76     skrll 
   1099   1.76     skrll 			if (cstatus & AXE_CSUM_HDR_L3_TYPE_IPV4) {
   1100   1.76     skrll 				if (cstatus & AXE_CSUM_HDR_L4_CSUM_ERR)
   1101   1.76     skrll 					flags |= M_CSUM_TCP_UDP_BAD;
   1102   1.76     skrll 				if (cstatus & AXE_CSUM_HDR_L3_CSUM_ERR)
   1103   1.76     skrll 					flags |= M_CSUM_IPv4_BAD;
   1104   1.76     skrll 
   1105   1.76     skrll 				const uint16_t l4type =
   1106   1.76     skrll 				    cstatus & AXE_CSUM_HDR_L4_TYPE_MASK;
   1107   1.76     skrll 
   1108   1.76     skrll 				if (l4type == AXE_CSUM_HDR_L4_TYPE_TCP)
   1109   1.76     skrll 					flags |= M_CSUM_TCPv4;
   1110   1.76     skrll 				if (l4type == AXE_CSUM_HDR_L4_TYPE_UDP)
   1111   1.76     skrll 					flags |= M_CSUM_UDPv4;
   1112   1.76     skrll 			}
   1113   1.76     skrll 			if (total_len < len) {
   1114   1.76     skrll 				pktlen = total_len;
   1115   1.76     skrll 				total_len = 0;
   1116   1.76     skrll 			} else {
   1117   1.76     skrll 				total_len -= len;
   1118   1.76     skrll 				rxlen = len - sizeof(csum_hdr);
   1119   1.76     skrll 			}
   1120   1.83  pgoyette 			DPRINTFN(20, "total_len %#jx len %#jx pktlen %#jx"
   1121   1.83  pgoyette 			    " rxlen %#jx", total_len, len, pktlen, rxlen);
   1122   1.35  pgoyette 		} else { /* AX172 */
   1123   1.42   tsutsui 			pktlen = rxlen = total_len;
   1124   1.35  pgoyette 			total_len = 0;
   1125   1.35  pgoyette 		}
   1126   1.35  pgoyette 
   1127  1.105       mrg 		usbnet_enqueue(un, buf, pktlen, flags, 0, 0);
   1128   1.42   tsutsui 		buf += rxlen;
   1129    1.1  augustss 
   1130   1.35  pgoyette 	} while (total_len > 0);
   1131    1.1  augustss 
   1132   1.76     skrll 	DPRINTFN(10, "start rx", 0, 0, 0, 0);
   1133    1.1  augustss }
   1134    1.1  augustss 
   1135  1.104       mrg static unsigned
   1136  1.130   thorpej axe_uno_tx_prepare(struct usbnet *un, struct mbuf *m, struct usbnet_chain *c)
   1137    1.1  augustss {
   1138   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
   1139  1.110       mrg 	struct axe_sframe_hdr hdr, tlr;
   1140  1.110       mrg 	size_t hdr_len = 0, tlr_len = 0;
   1141   1.38   tsutsui 	int length, boundary;
   1142    1.1  augustss 
   1143  1.104       mrg 	usbnet_isowned_tx(un);
   1144    1.1  augustss 
   1145  1.129  nisimura 	if (!AXE_IS_172(un)) {
   1146  1.110       mrg 		/*
   1147  1.110       mrg 		 * Copy the mbuf data into a contiguous buffer, leaving two
   1148  1.110       mrg 		 * bytes at the beginning to hold the frame length.
   1149  1.110       mrg 		 */
   1150  1.104       mrg 		boundary = (un->un_udev->ud_speed == USB_SPEED_HIGH) ? 512 : 64;
   1151   1.35  pgoyette 
   1152   1.35  pgoyette 		hdr.len = htole16(m->m_pkthdr.len);
   1153   1.35  pgoyette 		hdr.ilen = ~hdr.len;
   1154  1.110       mrg 		hdr_len = sizeof(hdr);
   1155   1.35  pgoyette 
   1156  1.110       mrg 		length = hdr_len + m->m_pkthdr.len;
   1157   1.35  pgoyette 
   1158   1.35  pgoyette 		if ((length % boundary) == 0) {
   1159  1.110       mrg 			tlr.len = 0x0000;
   1160  1.110       mrg 			tlr.ilen = 0xffff;
   1161  1.110       mrg 			tlr_len = sizeof(tlr);
   1162   1.35  pgoyette 		}
   1163  1.104       mrg 		DPRINTFN(20, "length %jx m_pkthdr.len %jx hdrsize %#jx",
   1164  1.104       mrg 			length, m->m_pkthdr.len, sizeof(hdr), 0);
   1165   1.35  pgoyette 	}
   1166    1.1  augustss 
   1167  1.112       mrg 	if ((unsigned)m->m_pkthdr.len > un->un_tx_bufsz - hdr_len - tlr_len)
   1168  1.111       mrg 		return 0;
   1169  1.110       mrg 	length = hdr_len + m->m_pkthdr.len + tlr_len;
   1170  1.110       mrg 
   1171  1.110       mrg 	if (hdr_len)
   1172  1.110       mrg 		memcpy(c->unc_buf, &hdr, hdr_len);
   1173  1.110       mrg 	m_copydata(m, 0, m->m_pkthdr.len, c->unc_buf + hdr_len);
   1174  1.110       mrg 	if (tlr_len)
   1175  1.119       mrg 		memcpy(c->unc_buf + length - tlr_len, &tlr, tlr_len);
   1176    1.1  augustss 
   1177  1.104       mrg 	return length;
   1178    1.1  augustss }
   1179    1.1  augustss 
   1180   1.76     skrll static void
   1181   1.76     skrll axe_csum_cfg(struct axe_softc *sc)
   1182   1.76     skrll {
   1183  1.104       mrg 	struct usbnet * const un = &sc->axe_un;
   1184  1.104       mrg 	struct ifnet * const ifp = usbnet_ifp(un);
   1185   1.76     skrll 	uint16_t csum1, csum2;
   1186   1.76     skrll 
   1187  1.108       mrg 	if ((un->un_flags & AX772B) != 0) {
   1188   1.76     skrll 		csum1 = 0;
   1189   1.76     skrll 		csum2 = 0;
   1190   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_IPv4_Tx) != 0)
   1191   1.76     skrll 			csum1 |= AXE_TXCSUM_IP;
   1192   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_TCPv4_Tx) != 0)
   1193   1.76     skrll 			csum1 |= AXE_TXCSUM_TCP;
   1194   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_UDPv4_Tx) != 0)
   1195   1.76     skrll 			csum1 |= AXE_TXCSUM_UDP;
   1196   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_TCPv6_Tx) != 0)
   1197   1.76     skrll 			csum1 |= AXE_TXCSUM_TCPV6;
   1198   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_UDPv6_Tx) != 0)
   1199   1.76     skrll 			csum1 |= AXE_TXCSUM_UDPV6;
   1200   1.76     skrll 		axe_cmd(sc, AXE_772B_CMD_WRITE_TXCSUM, csum2, csum1, NULL);
   1201   1.76     skrll 		csum1 = 0;
   1202   1.76     skrll 		csum2 = 0;
   1203   1.76     skrll 
   1204   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_IPv4_Rx) != 0)
   1205   1.76     skrll 			csum1 |= AXE_RXCSUM_IP;
   1206   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_TCPv4_Rx) != 0)
   1207   1.76     skrll 			csum1 |= AXE_RXCSUM_TCP;
   1208   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_UDPv4_Rx) != 0)
   1209   1.76     skrll 			csum1 |= AXE_RXCSUM_UDP;
   1210   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_TCPv6_Rx) != 0)
   1211   1.76     skrll 			csum1 |= AXE_RXCSUM_TCPV6;
   1212   1.76     skrll 		if ((ifp->if_capenable & IFCAP_CSUM_UDPv6_Rx) != 0)
   1213   1.76     skrll 			csum1 |= AXE_RXCSUM_UDPV6;
   1214   1.76     skrll 		axe_cmd(sc, AXE_772B_CMD_WRITE_RXCSUM, csum2, csum1, NULL);
   1215   1.76     skrll 	}
   1216   1.76     skrll }
   1217   1.76     skrll 
   1218   1.35  pgoyette static int
   1219  1.100       mrg axe_init_locked(struct ifnet *ifp)
   1220    1.1  augustss {
   1221   1.76     skrll 	AXEHIST_FUNC(); AXEHIST_CALLED();
   1222  1.104       mrg 	struct usbnet * const un = ifp->if_softc;
   1223  1.104       mrg 	struct axe_softc * const sc = usbnet_softc(un);
   1224   1.38   tsutsui 	int rxmode;
   1225   1.35  pgoyette 
   1226  1.130   thorpej 	usbnet_isowned_core(un);
   1227  1.100       mrg 
   1228  1.107       mrg 	if (usbnet_isdying(un))
   1229  1.100       mrg 		return EIO;
   1230    1.1  augustss 
   1231  1.100       mrg 	/* Cancel pending I/O */
   1232  1.104       mrg 	usbnet_stop(un, ifp, 1);
   1233  1.104       mrg 
   1234  1.100       mrg 	/* Reset the ethernet interface. */
   1235  1.104       mrg 	axe_reset(un);
   1236   1.35  pgoyette 
   1237   1.76     skrll #if 0
   1238   1.76     skrll 	ret = asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_2 |
   1239   1.76     skrll 			      AX_GPIO_GPO2EN, 5, in_pm);
   1240   1.76     skrll #endif
   1241   1.76     skrll 	/* Set MAC address and transmitter IPG values. */
   1242  1.129  nisimura 	if (AXE_IS_172(un)) {
   1243  1.104       mrg 		axe_cmd(sc, AXE_172_CMD_WRITE_NODEID, 0, 0, un->un_eaddr);
   1244   1.35  pgoyette 		axe_cmd(sc, AXE_172_CMD_WRITE_IPG0, 0, sc->axe_ipgs[0], NULL);
   1245   1.35  pgoyette 		axe_cmd(sc, AXE_172_CMD_WRITE_IPG1, 0, sc->axe_ipgs[1], NULL);
   1246   1.35  pgoyette 		axe_cmd(sc, AXE_172_CMD_WRITE_IPG2, 0, sc->axe_ipgs[2], NULL);
   1247  1.129  nisimura 	} else {
   1248  1.129  nisimura 		axe_cmd(sc, AXE_178_CMD_WRITE_NODEID, 0, 0, un->un_eaddr);
   1249  1.129  nisimura 		axe_cmd(sc, AXE_178_CMD_WRITE_IPG012, sc->axe_ipgs[2],
   1250  1.129  nisimura 		    (sc->axe_ipgs[1] << 8) | (sc->axe_ipgs[0]), NULL);
   1251  1.129  nisimura 
   1252  1.108       mrg 		un->un_flags &= ~(AXSTD_FRAME | AXCSUM_FRAME);
   1253  1.108       mrg 		if ((un->un_flags & AX772B) != 0 &&
   1254   1.76     skrll 		    (ifp->if_capenable & AX_RXCSUM) != 0) {
   1255   1.76     skrll 			sc->sc_lenmask = AXE_CSUM_HDR_LEN_MASK;
   1256  1.108       mrg 			un->un_flags |= AXCSUM_FRAME;
   1257   1.76     skrll 		} else {
   1258   1.76     skrll 			sc->sc_lenmask = AXE_HDR_LEN_MASK;
   1259  1.108       mrg 			un->un_flags |= AXSTD_FRAME;
   1260   1.76     skrll 		}
   1261   1.76     skrll 	}
   1262   1.76     skrll 
   1263   1.76     skrll 	/* Configure TX/RX checksum offloading. */
   1264   1.76     skrll 	axe_csum_cfg(sc);
   1265    1.1  augustss 
   1266  1.108       mrg 	if (un->un_flags & AX772B) {
   1267   1.76     skrll 		/* AX88772B uses different maximum frame burst configuration. */
   1268   1.76     skrll 		axe_cmd(sc, AXE_772B_CMD_RXCTL_WRITE_CFG,
   1269   1.76     skrll 		    ax88772b_mfb_table[AX88772B_MFB_16K].threshold,
   1270   1.76     skrll 		    ax88772b_mfb_table[AX88772B_MFB_16K].byte_cnt, NULL);
   1271   1.76     skrll 	}
   1272    1.1  augustss 	/* Enable receiver, set RX mode */
   1273  1.125  nisimura 	rxmode = (AXE_RXCMD_BROADCAST | AXE_RXCMD_MULTICAST | AXE_RXCMD_ENABLE);
   1274  1.129  nisimura 	if (AXE_IS_172(un))
   1275  1.129  nisimura 		rxmode |= AXE_172_RXCMD_UNICAST;
   1276  1.129  nisimura 	else {
   1277  1.108       mrg 		if (un->un_flags & AX772B) {
   1278   1.76     skrll 			/*
   1279   1.76     skrll 			 * Select RX header format type 1.  Aligning IP
   1280   1.76     skrll 			 * header on 4 byte boundary is not needed when
   1281   1.76     skrll 			 * checksum offloading feature is not used
   1282   1.76     skrll 			 * because we always copy the received frame in
   1283   1.76     skrll 			 * RX handler.  When RX checksum offloading is
   1284   1.76     skrll 			 * active, aligning IP header is required to
   1285   1.76     skrll 			 * reflect actual frame length including RX
   1286   1.76     skrll 			 * header size.
   1287   1.76     skrll 			 */
   1288   1.76     skrll 			rxmode |= AXE_772B_RXCMD_HDR_TYPE_1;
   1289  1.108       mrg 			if (un->un_flags & AXCSUM_FRAME)
   1290   1.76     skrll 				rxmode |= AXE_772B_RXCMD_IPHDR_ALIGN;
   1291   1.76     skrll 		} else {
   1292   1.76     skrll 			/*
   1293   1.76     skrll 			 * Default Rx buffer size is too small to get
   1294   1.76     skrll 			 * maximum performance.
   1295   1.76     skrll 			 */
   1296   1.76     skrll #if 0
   1297  1.104       mrg 			if (un->un_udev->ud_speed == USB_SPEED_HIGH) {
   1298   1.76     skrll 				/* Largest possible USB buffer size for AX88178 */
   1299  1.100       mrg 			}
   1300   1.76     skrll #endif
   1301   1.76     skrll 			rxmode |= AXE_178_RXCMD_MFB_16384;
   1302   1.35  pgoyette 		}
   1303   1.76     skrll 	}
   1304   1.76     skrll 
   1305  1.123       rin 	DPRINTF("rxmode %#jx", rxmode, 0, 0, 0);
   1306   1.76     skrll 
   1307    1.1  augustss 	axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
   1308    1.1  augustss 
   1309  1.129  nisimura 	/* Accept multicast frame or run promisc. mode */
   1310  1.131  nisimura 	axe_rcvfilt_locked(un);
   1311    1.1  augustss 
   1312  1.107       mrg 	return usbnet_init_rx_tx(un);
   1313    1.1  augustss }
   1314    1.1  augustss 
   1315   1.35  pgoyette static int
   1316  1.130   thorpej axe_uno_init(struct ifnet *ifp)
   1317  1.100       mrg {
   1318  1.104       mrg 	struct usbnet * const un = ifp->if_softc;
   1319  1.100       mrg 
   1320  1.130   thorpej 	usbnet_busy(un);
   1321  1.100       mrg 	int ret = axe_init_locked(ifp);
   1322  1.130   thorpej 	usbnet_unbusy(un);
   1323  1.100       mrg 
   1324  1.100       mrg 	return ret;
   1325  1.100       mrg }
   1326  1.100       mrg 
   1327  1.134  riastrad static void
   1328  1.134  riastrad axe_uno_mcast(struct ifnet *ifp)
   1329    1.1  augustss {
   1330  1.104       mrg 	struct usbnet * const un = ifp->if_softc;
   1331    1.1  augustss 
   1332  1.130   thorpej 	usbnet_lock_core(un);
   1333  1.130   thorpej 	usbnet_busy(un);
   1334  1.130   thorpej 
   1335  1.134  riastrad 	axe_rcvfilt_locked(un);
   1336    1.1  augustss 
   1337  1.130   thorpej 	usbnet_unbusy(un);
   1338  1.130   thorpej 	usbnet_unlock_core(un);
   1339  1.100       mrg }
   1340   1.71     skrll 
   1341  1.100       mrg static void
   1342  1.130   thorpej axe_uno_stop(struct ifnet *ifp, int disable)
   1343  1.100       mrg {
   1344  1.104       mrg 	struct usbnet * const un = ifp->if_softc;
   1345  1.100       mrg 
   1346  1.104       mrg 	axe_reset(un);
   1347    1.1  augustss }
   1348   1.48  pgoyette 
   1349   1.48  pgoyette #ifdef _MODULE
   1350   1.48  pgoyette #include "ioconf.c"
   1351   1.48  pgoyette #endif
   1352   1.48  pgoyette 
   1353  1.114       mrg USBNET_MODULE(axe)
   1354