Home | History | Annotate | Line # | Download | only in usb
if_cdce.c revision 1.53
      1  1.53       mrg /*	$NetBSD: if_cdce.c,v 1.53 2019/07/21 10:27:56 mrg Exp $ */
      2   1.1  augustss 
      3   1.1  augustss /*
      4   1.1  augustss  * Copyright (c) 1997, 1998, 1999, 2000-2003 Bill Paul <wpaul (at) windriver.com>
      5   1.1  augustss  * Copyright (c) 2003 Craig Boston
      6   1.1  augustss  * Copyright (c) 2004 Daniel Hartmeier
      7   1.1  augustss  * All rights reserved.
      8   1.1  augustss  *
      9   1.1  augustss  * Redistribution and use in source and binary forms, with or without
     10   1.1  augustss  * modification, are permitted provided that the following conditions
     11   1.1  augustss  * are met:
     12   1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     13   1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     14   1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     16   1.1  augustss  *    documentation and/or other materials provided with the distribution.
     17   1.1  augustss  * 3. All advertising materials mentioning features or use of this software
     18   1.1  augustss  *    must display the following acknowledgement:
     19   1.1  augustss  *	This product includes software developed by Bill Paul.
     20   1.1  augustss  * 4. Neither the name of the author nor the names of any co-contributors
     21   1.1  augustss  *    may be used to endorse or promote products derived from this software
     22   1.1  augustss  *    without specific prior written permission.
     23   1.1  augustss  *
     24   1.1  augustss  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
     25   1.1  augustss  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26   1.1  augustss  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27   1.1  augustss  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul, THE VOICES IN HIS HEAD OR
     28   1.1  augustss  * THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     29   1.1  augustss  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     30   1.1  augustss  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     31   1.1  augustss  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     32   1.1  augustss  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     33   1.1  augustss  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     34   1.1  augustss  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     35   1.1  augustss  */
     36   1.1  augustss 
     37   1.1  augustss /*
     38   1.1  augustss  * USB Communication Device Class (Ethernet Networking Control Model)
     39   1.1  augustss  * http://www.usb.org/developers/devclass_docs/usbcdc11.pdf
     40   1.1  augustss  *
     41   1.1  augustss  */
     42   1.1  augustss 
     43   1.1  augustss #include <sys/cdefs.h>
     44  1.53       mrg __KERNEL_RCSID(0, "$NetBSD: if_cdce.c,v 1.53 2019/07/21 10:27:56 mrg Exp $");
     45  1.36       mrg 
     46  1.38  christos #ifdef _KERNEL_OPT
     47  1.18        ws #include "opt_inet.h"
     48  1.18        ws #endif
     49   1.1  augustss 
     50   1.1  augustss #include <sys/param.h>
     51   1.1  augustss #include <sys/systm.h>
     52   1.1  augustss #include <sys/sockio.h>
     53   1.1  augustss #include <sys/mbuf.h>
     54   1.1  augustss #include <sys/kernel.h>
     55   1.1  augustss #include <sys/socket.h>
     56   1.1  augustss #include <sys/device.h>
     57  1.48       mrg #include <sys/rndsource.h>
     58   1.1  augustss 
     59   1.1  augustss #include <net/if.h>
     60   1.1  augustss #include <net/if_arp.h>
     61   1.1  augustss #include <net/if_dl.h>
     62   1.1  augustss #include <net/if_media.h>
     63   1.1  augustss 
     64   1.1  augustss #include <net/bpf.h>
     65   1.1  augustss 
     66   1.1  augustss #include <net/if_ether.h>
     67   1.1  augustss #ifdef INET
     68   1.1  augustss #include <netinet/in.h>
     69   1.1  augustss #include <netinet/if_inarp.h>
     70   1.1  augustss #endif
     71   1.1  augustss 
     72   1.1  augustss #include <dev/usb/usb.h>
     73   1.1  augustss #include <dev/usb/usbdi.h>
     74  1.50       mrg #include <dev/usb/usbdivar.h>
     75   1.1  augustss #include <dev/usb/usbdi_util.h>
     76   1.1  augustss #include <dev/usb/usbdevs.h>
     77   1.1  augustss #include <dev/usb/usbcdc.h>
     78   1.1  augustss 
     79   1.1  augustss #include <dev/usb/if_cdcereg.h>
     80   1.1  augustss 
     81  1.48       mrg struct cdce_type {
     82  1.48       mrg 	struct usb_devno	 cdce_dev;
     83  1.48       mrg 	uint16_t		 cdce_flags;
     84  1.48       mrg #define CDCE_ZAURUS	1
     85  1.48       mrg #define CDCE_NO_UNION	2
     86  1.48       mrg };
     87  1.48       mrg 
     88  1.48       mrg struct cdce_softc;
     89  1.48       mrg 
     90  1.48       mrg struct cdce_chain {
     91  1.48       mrg 	struct cdce_softc	*cdce_sc;
     92  1.48       mrg 	struct usbd_xfer	*cdce_xfer;
     93  1.48       mrg 	char			*cdce_buf;
     94  1.48       mrg 	struct mbuf		*cdce_mbuf;
     95  1.48       mrg 	int			 cdce_accum;
     96  1.48       mrg 	int			 cdce_idx;
     97  1.48       mrg };
     98  1.48       mrg 
     99  1.48       mrg struct cdce_cdata {
    100  1.48       mrg 	struct cdce_chain	 cdce_rx_chain[CDCE_RX_LIST_CNT];
    101  1.48       mrg 	struct cdce_chain	 cdce_tx_chain[CDCE_TX_LIST_CNT];
    102  1.48       mrg 	int			 cdce_tx_prod;
    103  1.48       mrg 	int			 cdce_tx_cnt;
    104  1.48       mrg };
    105  1.48       mrg 
    106  1.48       mrg struct cdce_softc {
    107  1.48       mrg 	device_t cdce_dev;
    108  1.48       mrg 	struct ethercom		 cdce_ec;
    109  1.48       mrg 	krndsource_t	 rnd_source;
    110  1.48       mrg #define GET_IFP(sc) (&(sc)->cdce_ec.ec_if)
    111  1.48       mrg 	struct usbd_device *	 cdce_udev;
    112  1.48       mrg 	struct usbd_interface *	 cdce_ctl_iface;
    113  1.48       mrg 	struct usbd_interface *	 cdce_data_iface;
    114  1.48       mrg 	int			 cdce_bulkin_no;
    115  1.48       mrg 	struct usbd_pipe *	 cdce_bulkin_pipe;
    116  1.48       mrg 	int			 cdce_bulkout_no;
    117  1.48       mrg 	struct usbd_pipe *	 cdce_bulkout_pipe;
    118  1.48       mrg 	int			 cdce_unit;
    119  1.48       mrg 	struct cdce_cdata	 cdce_cdata;
    120  1.48       mrg 	int			 cdce_rxeof_errors;
    121  1.48       mrg 	uint16_t		 cdce_flags;
    122  1.50       mrg 	uint16_t		 cdce_timer;
    123  1.48       mrg 
    124  1.50       mrg 	bool			 cdce_attached;
    125  1.50       mrg 	bool			 cdce_dying;
    126  1.50       mrg 	bool			 cdce_stopping;
    127  1.50       mrg 
    128  1.50       mrg 	struct usb_task		 cdce_tick_task;
    129  1.50       mrg 	struct callout		 cdce_stat_ch;
    130  1.50       mrg 
    131  1.50       mrg 	kmutex_t		 cdce_lock;
    132  1.50       mrg 	kmutex_t		 cdce_mii_lock;
    133  1.50       mrg 	kmutex_t		 cdce_rxlock;
    134  1.50       mrg 	kmutex_t		 cdce_txlock;
    135  1.48       mrg };
    136  1.48       mrg 
    137  1.52     skrll static int	cdce_tx_list_init(struct cdce_softc *);
    138  1.52     skrll static int	cdce_rx_list_init(struct cdce_softc *);
    139  1.52     skrll static int	cdce_newbuf(struct cdce_softc *, struct cdce_chain *,
    140   1.1  augustss 		    struct mbuf *);
    141  1.52     skrll static int	cdce_encap(struct cdce_softc *, struct mbuf *, int);
    142  1.52     skrll static void	cdce_rxeof(struct usbd_xfer *, void *, usbd_status);
    143  1.52     skrll static void	cdce_txeof(struct usbd_xfer *, void *, usbd_status);
    144  1.52     skrll static void	cdce_start(struct ifnet *);
    145  1.52     skrll static int	cdce_ioctl(struct ifnet *, u_long, void *);
    146  1.52     skrll static void	cdce_init(void *);
    147  1.52     skrll static void	cdce_stop(struct cdce_softc *);
    148  1.52     skrll static void	cdce_tick(void *);
    149  1.52     skrll static void	cdce_tick_task(void *);
    150   1.1  augustss 
    151  1.49       mrg static const struct cdce_type cdce_devs[] = {
    152  1.33   msaitoh   {{ USB_VENDOR_ACERLABS, USB_PRODUCT_ACERLABS_M5632 }, CDCE_NO_UNION },
    153  1.33   msaitoh   {{ USB_VENDOR_COMPAQ, USB_PRODUCT_COMPAQ_IPAQLINUX }, CDCE_NO_UNION },
    154  1.33   msaitoh   {{ USB_VENDOR_GMATE, USB_PRODUCT_GMATE_YP3X00 }, CDCE_NO_UNION },
    155  1.33   msaitoh   {{ USB_VENDOR_MOTOROLA2, USB_PRODUCT_MOTOROLA2_USBLAN }, CDCE_ZAURUS | CDCE_NO_UNION },
    156  1.33   msaitoh   {{ USB_VENDOR_MOTOROLA2, USB_PRODUCT_MOTOROLA2_USBLAN2 }, CDCE_ZAURUS | CDCE_NO_UNION },
    157   1.1  augustss   {{ USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2501 }, CDCE_NO_UNION },
    158   1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_SL5500 }, CDCE_ZAURUS },
    159   1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_A300 }, CDCE_ZAURUS | CDCE_NO_UNION },
    160   1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_SL5600 }, CDCE_ZAURUS | CDCE_NO_UNION },
    161   1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_C700 }, CDCE_ZAURUS | CDCE_NO_UNION },
    162   1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_C750 }, CDCE_ZAURUS | CDCE_NO_UNION },
    163   1.1  augustss };
    164  1.33   msaitoh #define cdce_lookup(v, p) \
    165  1.33   msaitoh 	((const struct cdce_type *)usb_lookup(cdce_devs, v, p))
    166   1.1  augustss 
    167  1.23    dyoung int cdce_match(device_t, cfdata_t, void *);
    168  1.23    dyoung void cdce_attach(device_t, device_t, void *);
    169  1.23    dyoung int cdce_detach(device_t, int);
    170  1.23    dyoung int cdce_activate(device_t, enum devact);
    171  1.47       mrg 
    172  1.23    dyoung CFATTACH_DECL_NEW(cdce, sizeof(struct cdce_softc), cdce_match, cdce_attach,
    173  1.23    dyoung     cdce_detach, cdce_activate);
    174   1.1  augustss 
    175  1.23    dyoung int
    176  1.23    dyoung cdce_match(device_t parent, cfdata_t match, void *aux)
    177   1.1  augustss {
    178  1.41     skrll 	struct usbif_attach_arg *uiaa = aux;
    179   1.1  augustss 
    180  1.41     skrll 	if (cdce_lookup(uiaa->uiaa_vendor, uiaa->uiaa_product) != NULL)
    181  1.41     skrll 		return UMATCH_VENDOR_PRODUCT;
    182   1.1  augustss 
    183  1.41     skrll 	if (uiaa->uiaa_class == UICLASS_CDC && uiaa->uiaa_subclass ==
    184   1.1  augustss 	    UISUBCLASS_ETHERNET_NETWORKING_CONTROL_MODEL)
    185  1.41     skrll 		return UMATCH_IFACECLASS_GENERIC;
    186   1.1  augustss 
    187  1.41     skrll 	return UMATCH_NONE;
    188   1.1  augustss }
    189   1.1  augustss 
    190  1.23    dyoung void
    191  1.23    dyoung cdce_attach(device_t parent, device_t self, void *aux)
    192   1.1  augustss {
    193  1.23    dyoung 	struct cdce_softc *sc = device_private(self);
    194  1.41     skrll 	struct usbif_attach_arg *uiaa = aux;
    195  1.33   msaitoh 	char				*devinfop;
    196   1.1  augustss 	struct ifnet			*ifp;
    197  1.41     skrll 	struct usbd_device	        *dev = uiaa->uiaa_device;
    198   1.1  augustss 	const struct cdce_type		*t;
    199   1.1  augustss 	usb_interface_descriptor_t	*id;
    200   1.1  augustss 	usb_endpoint_descriptor_t	*ed;
    201   1.2  augustss 	const usb_cdc_union_descriptor_t *ud;
    202  1.22      tron 	usb_config_descriptor_t		*cd;
    203   1.1  augustss 	int				 data_ifcno;
    204  1.22      tron 	int				 i, j, numalts;
    205   1.1  augustss 	u_char				 eaddr[ETHER_ADDR_LEN];
    206   1.2  augustss 	const usb_cdc_ethernet_descriptor_t *ue;
    207   1.5  augustss 	char				 eaddr_str[USB_MAX_ENCODED_STRING_LEN];
    208   1.1  augustss 
    209  1.25    plunky 	sc->cdce_dev = self;
    210  1.25    plunky 
    211  1.23    dyoung 	aprint_naive("\n");
    212  1.23    dyoung 	aprint_normal("\n");
    213  1.25    plunky 
    214  1.25    plunky 	devinfop = usbd_devinfo_alloc(dev, 0);
    215  1.16      cube 	aprint_normal_dev(self, "%s\n", devinfop);
    216   1.6  augustss 	usbd_devinfo_free(devinfop);
    217   1.1  augustss 
    218  1.41     skrll 	sc->cdce_udev = uiaa->uiaa_device;
    219  1.41     skrll 	sc->cdce_ctl_iface = uiaa->uiaa_iface;
    220   1.1  augustss 
    221  1.41     skrll 	t = cdce_lookup(uiaa->uiaa_vendor, uiaa->uiaa_product);
    222   1.1  augustss 	if (t)
    223   1.1  augustss 		sc->cdce_flags = t->cdce_flags;
    224   1.1  augustss 
    225   1.1  augustss 	if (sc->cdce_flags & CDCE_NO_UNION)
    226   1.1  augustss 		sc->cdce_data_iface = sc->cdce_ctl_iface;
    227   1.1  augustss 	else {
    228   1.7  christos 		ud = (const usb_cdc_union_descriptor_t *)usb_find_desc(sc->cdce_udev,
    229   1.2  augustss 		    UDESC_CS_INTERFACE, UDESCSUB_CDC_UNION);
    230   1.1  augustss 		if (ud == NULL) {
    231  1.16      cube 			aprint_error_dev(self, "no union descriptor\n");
    232  1.24    dyoung 			return;
    233   1.1  augustss 		}
    234   1.1  augustss 		data_ifcno = ud->bSlaveInterface[0];
    235   1.1  augustss 
    236  1.41     skrll 		for (i = 0; i < uiaa->uiaa_nifaces; i++) {
    237  1.41     skrll 			if (uiaa->uiaa_ifaces[i] != NULL) {
    238   1.1  augustss 				id = usbd_get_interface_descriptor(
    239  1.41     skrll 				    uiaa->uiaa_ifaces[i]);
    240   1.1  augustss 				if (id != NULL && id->bInterfaceNumber ==
    241   1.1  augustss 				    data_ifcno) {
    242  1.41     skrll 					sc->cdce_data_iface = uiaa->uiaa_ifaces[i];
    243  1.41     skrll 					uiaa->uiaa_ifaces[i] = NULL;
    244   1.1  augustss 				}
    245   1.1  augustss 			}
    246   1.1  augustss 		}
    247   1.1  augustss 	}
    248   1.1  augustss 
    249   1.1  augustss 	if (sc->cdce_data_iface == NULL) {
    250  1.16      cube 		aprint_error_dev(self, "no data interface\n");
    251  1.24    dyoung 		return;
    252   1.1  augustss 	}
    253   1.1  augustss 
    254  1.22      tron 	/*
    255  1.22      tron 	 * <quote>
    256  1.22      tron 	 *  The Data Class interface of a networking device shall have a minimum
    257  1.22      tron 	 *  of two interface settings. The first setting (the default interface
    258  1.22      tron 	 *  setting) includes no endpoints and therefore no networking traffic is
    259  1.22      tron 	 *  exchanged whenever the default interface setting is selected. One or
    260  1.22      tron 	 *  more additional interface settings are used for normal operation, and
    261  1.22      tron 	 *  therefore each includes a pair of endpoints (one IN, and one OUT) to
    262  1.22      tron 	 *  exchange network traffic. Select an alternate interface setting to
    263  1.22      tron 	 *  initialize the network aspects of the device and to enable the
    264  1.22      tron 	 *  exchange of network traffic.
    265  1.22      tron 	 * </quote>
    266  1.22      tron 	 *
    267  1.22      tron 	 * Some devices, most notably cable modems, include interface settings
    268  1.22      tron 	 * that have no IN or OUT endpoint, therefore loop through the list of all
    269  1.22      tron 	 * available interface settings looking for one with both IN and OUT
    270  1.22      tron 	 * endpoints.
    271  1.22      tron 	 */
    272   1.1  augustss 	id = usbd_get_interface_descriptor(sc->cdce_data_iface);
    273  1.22      tron 	cd = usbd_get_config_descriptor(sc->cdce_udev);
    274  1.22      tron 	numalts = usbd_get_no_alts(cd, id->bInterfaceNumber);
    275  1.22      tron 
    276  1.22      tron 	for (j = 0; j < numalts; j++) {
    277  1.22      tron 		if (usbd_set_interface(sc->cdce_data_iface, j)) {
    278  1.22      tron 			aprint_error_dev(sc->cdce_dev,
    279  1.22      tron 					"setting alternate interface failed\n");
    280  1.24    dyoung 			return;
    281   1.1  augustss 		}
    282  1.22      tron 		/* Find endpoints. */
    283  1.22      tron 		id = usbd_get_interface_descriptor(sc->cdce_data_iface);
    284  1.22      tron 		sc->cdce_bulkin_no = sc->cdce_bulkout_no = -1;
    285  1.22      tron 		for (i = 0; i < id->bNumEndpoints; i++) {
    286  1.22      tron 			ed = usbd_interface2endpoint_descriptor(sc->cdce_data_iface, i);
    287  1.22      tron 			if (!ed) {
    288  1.22      tron 				aprint_error_dev(self,
    289  1.22      tron 						"could not read endpoint descriptor\n");
    290  1.24    dyoung 				return;
    291  1.22      tron 			}
    292  1.22      tron 			if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    293  1.22      tron 					UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    294  1.22      tron 				sc->cdce_bulkin_no = ed->bEndpointAddress;
    295  1.22      tron 			} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    296  1.22      tron 					UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    297  1.22      tron 				sc->cdce_bulkout_no = ed->bEndpointAddress;
    298  1.22      tron 			} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    299  1.22      tron 					UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
    300  1.22      tron 				/* XXX: CDC spec defines an interrupt pipe, but it is not
    301  1.22      tron 				 * needed for simple host-to-host applications. */
    302  1.22      tron 			} else {
    303  1.22      tron 				aprint_error_dev(self, "unexpected endpoint\n");
    304  1.22      tron 			}
    305   1.1  augustss 		}
    306  1.22      tron 		/* If we found something, try and use it... */
    307  1.22      tron 		if ((sc->cdce_bulkin_no != -1) && (sc->cdce_bulkout_no != -1))
    308  1.22      tron 			break;
    309   1.1  augustss 	}
    310   1.1  augustss 
    311   1.1  augustss 	if (sc->cdce_bulkin_no == -1) {
    312  1.16      cube 		aprint_error_dev(self, "could not find data bulk in\n");
    313  1.24    dyoung 		return;
    314   1.1  augustss 	}
    315   1.1  augustss 	if (sc->cdce_bulkout_no == -1 ) {
    316  1.16      cube 		aprint_error_dev(self, "could not find data bulk out\n");
    317  1.24    dyoung 		return;
    318   1.1  augustss 	}
    319   1.1  augustss 
    320   1.7  christos 	ue = (const usb_cdc_ethernet_descriptor_t *)usb_find_desc(dev,
    321  1.30  jakllsch 	    UDESC_CS_INTERFACE, UDESCSUB_CDC_ENF);
    322  1.30  jakllsch 	if (!ue || usbd_get_string(dev, ue->iMacAddress, eaddr_str) ||
    323  1.30  jakllsch 	    ether_aton_r(eaddr, sizeof(eaddr), eaddr_str)) {
    324  1.16      cube 		aprint_normal_dev(self, "faking address\n");
    325   1.2  augustss 		eaddr[0]= 0x2a;
    326  1.30  jakllsch 		memcpy(&eaddr[1], &hardclock_ticks, sizeof(uint32_t));
    327  1.30  jakllsch 		eaddr[5] = (uint8_t)(device_unit(sc->cdce_dev));
    328   1.2  augustss 	}
    329   1.2  augustss 
    330  1.50       mrg 	mutex_init(&sc->cdce_txlock, MUTEX_DEFAULT, IPL_SOFTUSB);
    331  1.50       mrg 	mutex_init(&sc->cdce_rxlock, MUTEX_DEFAULT, IPL_SOFTUSB);
    332  1.50       mrg 	mutex_init(&sc->cdce_lock, MUTEX_DEFAULT, IPL_NONE);
    333  1.50       mrg 
    334  1.50       mrg 	usb_init_task(&sc->cdce_tick_task, cdce_tick_task, sc, USB_TASKQ_MPSAFE);
    335   1.1  augustss 
    336  1.16      cube 	aprint_normal_dev(self, "address %s\n", ether_sprintf(eaddr));
    337   1.1  augustss 
    338   1.1  augustss 	ifp = GET_IFP(sc);
    339   1.1  augustss 	ifp->if_softc = sc;
    340   1.1  augustss 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
    341  1.50       mrg 	ifp->if_extflags = IFEF_MPSAFE;
    342   1.1  augustss 	ifp->if_ioctl = cdce_ioctl;
    343   1.1  augustss 	ifp->if_start = cdce_start;
    344  1.44      maya 	strlcpy(ifp->if_xname, device_xname(sc->cdce_dev), IFNAMSIZ);
    345   1.1  augustss 
    346   1.1  augustss 	IFQ_SET_READY(&ifp->if_snd);
    347   1.1  augustss 
    348   1.1  augustss 	if_attach(ifp);
    349  1.24    dyoung 	ether_ifattach(ifp, eaddr);
    350   1.1  augustss 
    351  1.50       mrg 	callout_init(&sc->cdce_stat_ch, CALLOUT_MPSAFE);
    352  1.50       mrg 	callout_setfunc(&sc->cdce_stat_ch, cdce_tick, sc);
    353  1.50       mrg 
    354  1.50       mrg 	sc->cdce_attached = true;
    355   1.1  augustss 
    356   1.1  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->cdce_udev,
    357  1.24    dyoung 	    sc->cdce_dev);
    358   1.1  augustss 
    359  1.31  jakllsch 	if (!pmf_device_register(self, NULL, NULL))
    360  1.31  jakllsch 		aprint_error_dev(self, "couldn't establish power handler\n");
    361  1.31  jakllsch 
    362  1.24    dyoung 	return;
    363   1.1  augustss }
    364   1.1  augustss 
    365  1.23    dyoung int
    366  1.23    dyoung cdce_detach(device_t self, int flags)
    367   1.1  augustss {
    368  1.24    dyoung 	struct cdce_softc *sc = device_private(self);
    369   1.1  augustss 	struct ifnet	*ifp = GET_IFP(sc);
    370  1.50       mrg 
    371  1.50       mrg 	mutex_enter(&sc->cdce_lock);
    372  1.50       mrg 	sc->cdce_dying = true;
    373  1.50       mrg 	mutex_exit(&sc->cdce_lock);
    374  1.50       mrg 
    375  1.50       mrg 	if (!sc->cdce_attached)
    376  1.50       mrg 		return 0;
    377   1.1  augustss 
    378  1.37    plunky 	pmf_device_deregister(self);
    379  1.31  jakllsch 
    380  1.50       mrg 	callout_halt(&sc->cdce_stat_ch, NULL);
    381  1.50       mrg 	usb_rem_task_wait(sc->cdce_udev, &sc->cdce_tick_task,
    382  1.50       mrg 	    USB_TASKQ_DRIVER, NULL);
    383   1.1  augustss 
    384  1.51       mrg 	if (ifp->if_flags & IFF_RUNNING) {
    385  1.51       mrg 		IFNET_LOCK(ifp);
    386   1.1  augustss 		cdce_stop(sc);
    387  1.51       mrg 		IFNET_UNLOCK(ifp);
    388  1.51       mrg 	}
    389   1.1  augustss 
    390  1.50       mrg 	callout_destroy(&sc->cdce_stat_ch);
    391   1.1  augustss 	ether_ifdetach(ifp);
    392  1.50       mrg 	if_detach(ifp);
    393  1.50       mrg 	sc->cdce_attached = false;
    394   1.1  augustss 
    395  1.50       mrg 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->cdce_udev,sc->cdce_dev);
    396   1.1  augustss 
    397  1.50       mrg 	mutex_destroy(&sc->cdce_lock);
    398  1.50       mrg 	mutex_destroy(&sc->cdce_rxlock);
    399  1.50       mrg 	mutex_destroy(&sc->cdce_txlock);
    400   1.1  augustss 
    401  1.41     skrll 	return 0;
    402   1.1  augustss }
    403   1.1  augustss 
    404  1.49       mrg static void
    405  1.50       mrg cdce_start_locked(struct ifnet *ifp)
    406   1.1  augustss {
    407   1.1  augustss 	struct cdce_softc	*sc = ifp->if_softc;
    408   1.1  augustss 	struct mbuf		*m_head = NULL;
    409   1.1  augustss 
    410  1.50       mrg 	KASSERT(mutex_owned(&sc->cdce_txlock));
    411  1.51       mrg 
    412  1.51       mrg 	if (sc->cdce_dying || sc->cdce_cdata.cdce_tx_cnt == CDCE_TX_LIST_CNT)
    413   1.1  augustss 		return;
    414   1.1  augustss 
    415   1.1  augustss 	IFQ_POLL(&ifp->if_snd, m_head);
    416   1.1  augustss 	if (m_head == NULL)
    417   1.1  augustss 		return;
    418   1.1  augustss 
    419   1.1  augustss 	if (cdce_encap(sc, m_head, 0)) {
    420   1.1  augustss 		ifp->if_flags |= IFF_OACTIVE;
    421   1.1  augustss 		return;
    422   1.1  augustss 	}
    423   1.1  augustss 
    424   1.1  augustss 	IFQ_DEQUEUE(&ifp->if_snd, m_head);
    425   1.1  augustss 
    426  1.46   msaitoh 	bpf_mtap(ifp, m_head, BPF_D_OUT);
    427   1.1  augustss 
    428  1.50       mrg 	/*
    429  1.50       mrg 	 * Set a timeout in case the chip goes out to lunch.
    430  1.50       mrg 	 */
    431  1.51       mrg 	sc->cdce_timer = 6;
    432   1.1  augustss }
    433   1.1  augustss 
    434  1.50       mrg static void
    435  1.50       mrg cdce_start(struct ifnet *ifp)
    436  1.50       mrg {
    437  1.50       mrg 	struct cdce_softc * const sc = ifp->if_softc;
    438  1.50       mrg 
    439  1.50       mrg 	mutex_enter(&sc->cdce_txlock);
    440  1.50       mrg 	cdce_start_locked(ifp);
    441  1.50       mrg 	mutex_exit(&sc->cdce_txlock);
    442  1.50       mrg }
    443  1.50       mrg 
    444  1.49       mrg static int
    445   1.1  augustss cdce_encap(struct cdce_softc *sc, struct mbuf *m, int idx)
    446   1.1  augustss {
    447   1.1  augustss 	struct cdce_chain	*c;
    448   1.1  augustss 	usbd_status		 err;
    449   1.1  augustss 	int			 extra = 0;
    450   1.1  augustss 
    451  1.50       mrg 	KASSERT(mutex_owned(&sc->cdce_txlock));
    452  1.50       mrg 
    453   1.1  augustss 	c = &sc->cdce_cdata.cdce_tx_chain[idx];
    454   1.1  augustss 
    455   1.1  augustss 	m_copydata(m, 0, m->m_pkthdr.len, c->cdce_buf);
    456   1.1  augustss 	if (sc->cdce_flags & CDCE_ZAURUS) {
    457   1.1  augustss 		/* Zaurus wants a 32-bit CRC appended to every frame */
    458  1.30  jakllsch 		uint32_t crc;
    459   1.1  augustss 
    460  1.30  jakllsch 		crc = htole32(~ether_crc32_le(c->cdce_buf, m->m_pkthdr.len));
    461  1.30  jakllsch 		memcpy(c->cdce_buf + m->m_pkthdr.len, &crc, sizeof(crc));
    462  1.30  jakllsch 		extra = sizeof(crc);
    463   1.1  augustss 	}
    464   1.1  augustss 	c->cdce_mbuf = m;
    465   1.1  augustss 
    466  1.41     skrll 	usbd_setup_xfer(c->cdce_xfer, c, c->cdce_buf, m->m_pkthdr.len + extra,
    467  1.41     skrll 	    USBD_FORCE_SHORT_XFER, 10000, cdce_txeof);
    468   1.1  augustss 	err = usbd_transfer(c->cdce_xfer);
    469   1.1  augustss 	if (err != USBD_IN_PROGRESS) {
    470  1.51       mrg 		/* XXXSMP IFNET_LOCK */
    471   1.1  augustss 		cdce_stop(sc);
    472  1.41     skrll 		return EIO;
    473   1.1  augustss 	}
    474   1.1  augustss 
    475   1.1  augustss 	sc->cdce_cdata.cdce_tx_cnt++;
    476  1.51       mrg 	KASSERT(sc->cdce_cdata.cdce_tx_cnt <= CDCE_TX_LIST_CNT);
    477   1.1  augustss 
    478  1.41     skrll 	return 0;
    479   1.1  augustss }
    480   1.1  augustss 
    481  1.49       mrg static void
    482  1.51       mrg cdce_stop_locked(struct cdce_softc *sc)
    483   1.1  augustss {
    484   1.1  augustss 	usbd_status	 err;
    485   1.1  augustss 	struct ifnet	*ifp = GET_IFP(sc);
    486   1.1  augustss 	int		 i;
    487   1.1  augustss 
    488  1.51       mrg 	/* XXXSMP can't KASSERT(IFNET_LOCKED(ifp)); */
    489  1.51       mrg 	KASSERT(mutex_owned(&sc->cdce_lock));
    490  1.51       mrg 
    491  1.50       mrg 	mutex_enter(&sc->cdce_rxlock);
    492  1.50       mrg 	mutex_enter(&sc->cdce_txlock);
    493  1.50       mrg 	sc->cdce_stopping = true;
    494  1.50       mrg 	mutex_exit(&sc->cdce_txlock);
    495  1.50       mrg 	mutex_exit(&sc->cdce_rxlock);
    496  1.50       mrg 
    497  1.51       mrg 	/*
    498  1.51       mrg 	 * XXXSMP Would like to
    499  1.51       mrg 	 *	KASSERT(IFNET_LOCKED(ifp))
    500  1.51       mrg 	 * here but the locking order is:
    501  1.51       mrg 	 *	ifnet -> sc lock -> rxlock -> txlock
    502  1.51       mrg 	 * and sc lock is already held.
    503  1.51       mrg 	 */
    504  1.51       mrg 	ifp->if_flags &= ~IFF_RUNNING;
    505  1.51       mrg 	sc->cdce_timer = 0;
    506  1.50       mrg 
    507  1.50       mrg 	callout_stop(&sc->cdce_stat_ch);
    508   1.1  augustss 
    509   1.1  augustss 	if (sc->cdce_bulkin_pipe != NULL) {
    510   1.1  augustss 		err = usbd_abort_pipe(sc->cdce_bulkin_pipe);
    511   1.1  augustss 		if (err)
    512   1.1  augustss 			printf("%s: abort rx pipe failed: %s\n",
    513  1.24    dyoung 			    device_xname(sc->cdce_dev), usbd_errstr(err));
    514   1.1  augustss 	}
    515   1.1  augustss 
    516   1.1  augustss 	if (sc->cdce_bulkout_pipe != NULL) {
    517   1.1  augustss 		err = usbd_abort_pipe(sc->cdce_bulkout_pipe);
    518   1.1  augustss 		if (err)
    519   1.1  augustss 			printf("%s: abort tx pipe failed: %s\n",
    520  1.24    dyoung 			    device_xname(sc->cdce_dev), usbd_errstr(err));
    521   1.1  augustss 	}
    522   1.1  augustss 
    523   1.1  augustss 	for (i = 0; i < CDCE_RX_LIST_CNT; i++) {
    524   1.1  augustss 		if (sc->cdce_cdata.cdce_rx_chain[i].cdce_mbuf != NULL) {
    525   1.1  augustss 			m_freem(sc->cdce_cdata.cdce_rx_chain[i].cdce_mbuf);
    526   1.1  augustss 			sc->cdce_cdata.cdce_rx_chain[i].cdce_mbuf = NULL;
    527   1.1  augustss 		}
    528   1.1  augustss 		if (sc->cdce_cdata.cdce_rx_chain[i].cdce_xfer != NULL) {
    529  1.41     skrll 			usbd_destroy_xfer
    530  1.33   msaitoh 			    (sc->cdce_cdata.cdce_rx_chain[i].cdce_xfer);
    531   1.1  augustss 			sc->cdce_cdata.cdce_rx_chain[i].cdce_xfer = NULL;
    532   1.1  augustss 		}
    533   1.1  augustss 	}
    534   1.1  augustss 
    535   1.1  augustss 	for (i = 0; i < CDCE_TX_LIST_CNT; i++) {
    536   1.1  augustss 		if (sc->cdce_cdata.cdce_tx_chain[i].cdce_mbuf != NULL) {
    537   1.1  augustss 			m_freem(sc->cdce_cdata.cdce_tx_chain[i].cdce_mbuf);
    538   1.1  augustss 			sc->cdce_cdata.cdce_tx_chain[i].cdce_mbuf = NULL;
    539   1.1  augustss 		}
    540   1.1  augustss 		if (sc->cdce_cdata.cdce_tx_chain[i].cdce_xfer != NULL) {
    541  1.41     skrll 			usbd_destroy_xfer(
    542  1.33   msaitoh 				sc->cdce_cdata.cdce_tx_chain[i].cdce_xfer);
    543   1.1  augustss 			sc->cdce_cdata.cdce_tx_chain[i].cdce_xfer = NULL;
    544   1.1  augustss 		}
    545   1.1  augustss 	}
    546   1.1  augustss 
    547  1.41     skrll 	if (sc->cdce_bulkin_pipe != NULL) {
    548  1.41     skrll 		err = usbd_close_pipe(sc->cdce_bulkin_pipe);
    549  1.41     skrll 		if (err)
    550  1.41     skrll 			printf("%s: close rx pipe failed: %s\n",
    551  1.41     skrll 			    device_xname(sc->cdce_dev), usbd_errstr(err));
    552  1.41     skrll 		sc->cdce_bulkin_pipe = NULL;
    553  1.41     skrll 	}
    554  1.41     skrll 
    555  1.41     skrll 	if (sc->cdce_bulkout_pipe != NULL) {
    556  1.41     skrll 		err = usbd_close_pipe(sc->cdce_bulkout_pipe);
    557  1.41     skrll 		if (err)
    558  1.41     skrll 			printf("%s: close tx pipe failed: %s\n",
    559  1.41     skrll 			    device_xname(sc->cdce_dev), usbd_errstr(err));
    560  1.41     skrll 		sc->cdce_bulkout_pipe = NULL;
    561  1.41     skrll 	}
    562  1.51       mrg }
    563  1.51       mrg 
    564  1.51       mrg static void
    565  1.51       mrg cdce_stop(struct cdce_softc *sc)
    566  1.51       mrg {
    567  1.51       mrg 
    568  1.51       mrg 	mutex_enter(&sc->cdce_lock);
    569  1.51       mrg 	cdce_stop_locked(sc);
    570  1.51       mrg 	mutex_exit(&sc->cdce_lock);
    571   1.1  augustss }
    572   1.1  augustss 
    573  1.49       mrg static int
    574  1.13  christos cdce_ioctl(struct ifnet *ifp, u_long command, void *data)
    575   1.1  augustss {
    576   1.1  augustss 	struct cdce_softc	*sc = ifp->if_softc;
    577   1.1  augustss 	struct ifaddr		*ifa = (struct ifaddr *)data;
    578   1.1  augustss 	struct ifreq		*ifr = (struct ifreq *)data;
    579  1.50       mrg 	int			 error = 0;
    580   1.1  augustss 
    581   1.1  augustss 	if (sc->cdce_dying)
    582  1.41     skrll 		return EIO;
    583   1.1  augustss 
    584   1.1  augustss 	switch(command) {
    585  1.19    dyoung 	case SIOCINITIFADDR:
    586   1.1  augustss 		ifp->if_flags |= IFF_UP;
    587   1.1  augustss 		cdce_init(sc);
    588   1.1  augustss 		switch (ifa->ifa_addr->sa_family) {
    589   1.1  augustss #ifdef INET
    590   1.1  augustss 		case AF_INET:
    591   1.1  augustss 			arp_ifinit(ifp, ifa);
    592   1.1  augustss 			break;
    593   1.1  augustss #endif /* INET */
    594   1.1  augustss 		}
    595   1.1  augustss 		break;
    596   1.1  augustss 
    597   1.1  augustss 	case SIOCSIFMTU:
    598  1.15    dyoung 		if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > ETHERMTU)
    599   1.1  augustss 			error = EINVAL;
    600  1.15    dyoung 		else if ((error = ifioctl_common(ifp, command, data)) == ENETRESET)
    601  1.15    dyoung 			error = 0;
    602   1.1  augustss 		break;
    603   1.1  augustss 
    604   1.1  augustss 	case SIOCSIFFLAGS:
    605  1.19    dyoung 		if ((error = ifioctl_common(ifp, command, data)) != 0)
    606  1.19    dyoung 			break;
    607  1.19    dyoung 		/* XXX re-use ether_ioctl() */
    608  1.19    dyoung 		switch (ifp->if_flags & (IFF_UP|IFF_RUNNING)) {
    609  1.19    dyoung 		case IFF_UP:
    610  1.19    dyoung 			cdce_init(sc);
    611  1.19    dyoung 			break;
    612  1.19    dyoung 		case IFF_RUNNING:
    613  1.19    dyoung 			cdce_stop(sc);
    614  1.19    dyoung 			break;
    615  1.19    dyoung 		default:
    616  1.19    dyoung 			break;
    617   1.1  augustss 		}
    618   1.1  augustss 		break;
    619   1.1  augustss 
    620   1.1  augustss 	default:
    621  1.19    dyoung 		error = ether_ioctl(ifp, command, data);
    622   1.1  augustss 		break;
    623   1.1  augustss 	}
    624   1.1  augustss 
    625  1.30  jakllsch 	if (error == ENETRESET)
    626  1.30  jakllsch 		error = 0;
    627  1.30  jakllsch 
    628  1.41     skrll 	return error;
    629   1.1  augustss }
    630   1.1  augustss 
    631  1.49       mrg static void
    632   1.1  augustss cdce_watchdog(struct ifnet *ifp)
    633   1.1  augustss {
    634  1.51       mrg 	struct cdce_softc *sc = ifp->if_softc;
    635  1.50       mrg 	struct cdce_chain *c;
    636  1.50       mrg 	usbd_status stat;
    637  1.50       mrg 
    638  1.50       mrg 	KASSERT(mutex_owned(&sc->cdce_lock));
    639   1.1  augustss 
    640   1.1  augustss 	if (sc->cdce_dying)
    641   1.1  augustss 		return;
    642   1.1  augustss 
    643   1.1  augustss 	ifp->if_oerrors++;
    644  1.50       mrg 	aprint_error_dev(sc->cdce_dev, "watchdog timeout\n");
    645  1.50       mrg 
    646  1.51       mrg 	mutex_enter(&sc->cdce_txlock);
    647  1.51       mrg 
    648  1.50       mrg 	c = &sc->cdce_cdata.cdce_rx_chain[0];
    649  1.50       mrg 	usbd_get_xfer_status(c->cdce_xfer, NULL, NULL, NULL, &stat);
    650  1.50       mrg 	cdce_txeof(c->cdce_xfer, c, stat);
    651  1.50       mrg 
    652  1.50       mrg 	if (!IFQ_IS_EMPTY(&ifp->if_snd))
    653  1.50       mrg 		cdce_start_locked(ifp);
    654  1.51       mrg 
    655  1.51       mrg 	mutex_exit(&sc->cdce_txlock);
    656   1.1  augustss }
    657   1.1  augustss 
    658  1.49       mrg static void
    659   1.1  augustss cdce_init(void *xsc)
    660   1.1  augustss {
    661   1.1  augustss 	struct cdce_softc	*sc = xsc;
    662   1.1  augustss 	struct ifnet		*ifp = GET_IFP(sc);
    663   1.1  augustss 	struct cdce_chain	*c;
    664   1.1  augustss 	usbd_status		 err;
    665  1.50       mrg 	int			 i;
    666   1.1  augustss 
    667  1.50       mrg 	mutex_enter(&sc->cdce_lock);
    668   1.1  augustss 	if (ifp->if_flags & IFF_RUNNING)
    669  1.50       mrg 		goto out;
    670   1.1  augustss 
    671   1.1  augustss 	/* Maybe set multicast / broadcast here??? */
    672   1.1  augustss 
    673   1.1  augustss 	err = usbd_open_pipe(sc->cdce_data_iface, sc->cdce_bulkin_no,
    674  1.51       mrg 	    USBD_EXCLUSIVE_USE | USBD_MPSAFE, &sc->cdce_bulkin_pipe);
    675   1.1  augustss 	if (err) {
    676  1.24    dyoung 		printf("%s: open rx pipe failed: %s\n", device_xname(sc->cdce_dev),
    677   1.1  augustss 		    usbd_errstr(err));
    678  1.50       mrg 		goto out;
    679   1.1  augustss 	}
    680   1.1  augustss 
    681   1.1  augustss 	err = usbd_open_pipe(sc->cdce_data_iface, sc->cdce_bulkout_no,
    682  1.51       mrg 	    USBD_EXCLUSIVE_USE | USBD_MPSAFE, &sc->cdce_bulkout_pipe);
    683   1.1  augustss 	if (err) {
    684  1.24    dyoung 		printf("%s: open tx pipe failed: %s\n",
    685  1.24    dyoung 		    device_xname(sc->cdce_dev), usbd_errstr(err));
    686  1.50       mrg 		goto out;
    687   1.1  augustss 	}
    688   1.1  augustss 
    689  1.41     skrll 	if (cdce_tx_list_init(sc)) {
    690  1.41     skrll 		printf("%s: tx list init failed\n", device_xname(sc->cdce_dev));
    691  1.50       mrg 		goto out;
    692  1.41     skrll 	}
    693  1.41     skrll 
    694  1.41     skrll 	if (cdce_rx_list_init(sc)) {
    695  1.41     skrll 		printf("%s: rx list init failed\n", device_xname(sc->cdce_dev));
    696  1.50       mrg 		goto out;
    697  1.41     skrll 	}
    698  1.41     skrll 
    699  1.51       mrg 	mutex_enter(&sc->cdce_rxlock);
    700  1.51       mrg 	mutex_enter(&sc->cdce_txlock);
    701  1.51       mrg 	sc->cdce_stopping = false;
    702  1.51       mrg 
    703   1.1  augustss 	for (i = 0; i < CDCE_RX_LIST_CNT; i++) {
    704   1.1  augustss 		c = &sc->cdce_cdata.cdce_rx_chain[i];
    705  1.41     skrll 
    706  1.41     skrll 		usbd_setup_xfer(c->cdce_xfer, c, c->cdce_buf, CDCE_BUFSZ,
    707  1.41     skrll 		    USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, cdce_rxeof);
    708   1.1  augustss 		usbd_transfer(c->cdce_xfer);
    709   1.1  augustss 	}
    710   1.1  augustss 
    711  1.51       mrg 	mutex_exit(&sc->cdce_txlock);
    712  1.51       mrg 	mutex_exit(&sc->cdce_rxlock);
    713  1.51       mrg 
    714   1.1  augustss 	ifp->if_flags |= IFF_RUNNING;
    715   1.1  augustss 
    716  1.50       mrg 	callout_schedule(&sc->cdce_stat_ch, hz);
    717  1.50       mrg 
    718  1.50       mrg out:
    719  1.50       mrg 	mutex_exit(&sc->cdce_lock);
    720   1.1  augustss }
    721   1.1  augustss 
    722  1.49       mrg static int
    723   1.1  augustss cdce_newbuf(struct cdce_softc *sc, struct cdce_chain *c, struct mbuf *m)
    724   1.1  augustss {
    725   1.1  augustss 	struct mbuf	*m_new = NULL;
    726   1.1  augustss 
    727   1.1  augustss 	if (m == NULL) {
    728   1.1  augustss 		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
    729   1.1  augustss 		if (m_new == NULL) {
    730   1.1  augustss 			printf("%s: no memory for rx list "
    731  1.24    dyoung 			    "-- packet dropped!\n", device_xname(sc->cdce_dev));
    732  1.41     skrll 			return ENOBUFS;
    733   1.1  augustss 		}
    734   1.1  augustss 		MCLGET(m_new, M_DONTWAIT);
    735   1.1  augustss 		if (!(m_new->m_flags & M_EXT)) {
    736   1.1  augustss 			printf("%s: no memory for rx list "
    737  1.24    dyoung 			    "-- packet dropped!\n", device_xname(sc->cdce_dev));
    738   1.1  augustss 			m_freem(m_new);
    739  1.41     skrll 			return ENOBUFS;
    740   1.1  augustss 		}
    741   1.1  augustss 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
    742   1.1  augustss 	} else {
    743   1.1  augustss 		m_new = m;
    744   1.1  augustss 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
    745   1.1  augustss 		m_new->m_data = m_new->m_ext.ext_buf;
    746   1.1  augustss 	}
    747   1.1  augustss 	c->cdce_mbuf = m_new;
    748  1.41     skrll 	return 0;
    749   1.1  augustss }
    750   1.1  augustss 
    751  1.49       mrg static int
    752   1.1  augustss cdce_rx_list_init(struct cdce_softc *sc)
    753   1.1  augustss {
    754   1.1  augustss 	struct cdce_cdata	*cd;
    755   1.1  augustss 	struct cdce_chain	*c;
    756   1.1  augustss 	int			 i;
    757   1.1  augustss 
    758   1.1  augustss 	cd = &sc->cdce_cdata;
    759   1.1  augustss 	for (i = 0; i < CDCE_RX_LIST_CNT; i++) {
    760   1.1  augustss 		c = &cd->cdce_rx_chain[i];
    761   1.1  augustss 		c->cdce_sc = sc;
    762   1.1  augustss 		c->cdce_idx = i;
    763   1.1  augustss 		if (cdce_newbuf(sc, c, NULL) == ENOBUFS)
    764  1.41     skrll 			return ENOBUFS;
    765   1.1  augustss 		if (c->cdce_xfer == NULL) {
    766  1.41     skrll 			int err = usbd_create_xfer(sc->cdce_bulkin_pipe,
    767  1.45     skrll 			    CDCE_BUFSZ, 0, 0, &c->cdce_xfer);
    768  1.41     skrll 			if (err)
    769  1.41     skrll 				return err;
    770  1.41     skrll 			c->cdce_buf = usbd_get_buffer(c->cdce_xfer);
    771   1.1  augustss 		}
    772   1.1  augustss 	}
    773   1.1  augustss 
    774  1.41     skrll 	return 0;
    775   1.1  augustss }
    776   1.1  augustss 
    777  1.49       mrg static int
    778   1.1  augustss cdce_tx_list_init(struct cdce_softc *sc)
    779   1.1  augustss {
    780   1.1  augustss 	struct cdce_cdata	*cd;
    781   1.1  augustss 	struct cdce_chain	*c;
    782   1.1  augustss 	int			 i;
    783   1.1  augustss 
    784   1.1  augustss 	cd = &sc->cdce_cdata;
    785   1.1  augustss 	for (i = 0; i < CDCE_TX_LIST_CNT; i++) {
    786   1.1  augustss 		c = &cd->cdce_tx_chain[i];
    787   1.1  augustss 		c->cdce_sc = sc;
    788   1.1  augustss 		c->cdce_idx = i;
    789   1.1  augustss 		c->cdce_mbuf = NULL;
    790   1.1  augustss 		if (c->cdce_xfer == NULL) {
    791  1.41     skrll 			int err = usbd_create_xfer(sc->cdce_bulkout_pipe,
    792  1.41     skrll 			    CDCE_BUFSZ, USBD_FORCE_SHORT_XFER, 0,
    793  1.41     skrll 			    &c->cdce_xfer);
    794  1.41     skrll 			if (err)
    795  1.41     skrll 				return err;
    796  1.41     skrll 			c->cdce_buf = usbd_get_buffer(c->cdce_xfer);
    797   1.1  augustss 		}
    798   1.1  augustss 	}
    799   1.1  augustss 
    800  1.41     skrll 	return 0;
    801   1.1  augustss }
    802   1.1  augustss 
    803  1.49       mrg static void
    804  1.41     skrll cdce_rxeof(struct usbd_xfer *xfer, void *priv, usbd_status status)
    805   1.1  augustss {
    806   1.1  augustss 	struct cdce_chain	*c = priv;
    807   1.1  augustss 	struct cdce_softc	*sc = c->cdce_sc;
    808   1.1  augustss 	struct ifnet		*ifp = GET_IFP(sc);
    809   1.1  augustss 	struct mbuf		*m;
    810   1.1  augustss 	int			 total_len = 0;
    811   1.1  augustss 
    812  1.50       mrg 	mutex_enter(&sc->cdce_rxlock);
    813  1.50       mrg 
    814  1.50       mrg 	if (sc->cdce_dying || sc->cdce_stopping ||
    815  1.50       mrg 	    status == USBD_INVAL || status == USBD_NOT_STARTED ||
    816  1.50       mrg 	    status == USBD_CANCELLED || !(ifp->if_flags & IFF_RUNNING)) {
    817  1.50       mrg 		mutex_exit(&sc->cdce_rxlock);
    818   1.1  augustss 		return;
    819  1.50       mrg 	}
    820   1.1  augustss 
    821   1.1  augustss 	if (status != USBD_NORMAL_COMPLETION) {
    822   1.1  augustss 		if (sc->cdce_rxeof_errors == 0)
    823   1.1  augustss 			printf("%s: usb error on rx: %s\n",
    824  1.24    dyoung 			    device_xname(sc->cdce_dev), usbd_errstr(status));
    825   1.1  augustss 		if (status == USBD_STALLED)
    826   1.8  augustss 			usbd_clear_endpoint_stall_async(sc->cdce_bulkin_pipe);
    827  1.50       mrg 		usbd_delay_ms(sc->cdce_udev, 10);
    828   1.1  augustss 		sc->cdce_rxeof_errors++;
    829   1.1  augustss 		goto done;
    830   1.1  augustss 	}
    831   1.1  augustss 
    832   1.1  augustss 	sc->cdce_rxeof_errors = 0;
    833   1.1  augustss 
    834   1.1  augustss 	usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
    835   1.1  augustss 	if (sc->cdce_flags & CDCE_ZAURUS)
    836   1.1  augustss 		total_len -= 4;	/* Strip off CRC added by Zaurus */
    837  1.50       mrg 	if (total_len <= 1) {
    838  1.50       mrg 		ifp->if_ierrors++;
    839   1.1  augustss 		goto done;
    840  1.50       mrg 	}
    841   1.1  augustss 
    842   1.1  augustss 	m = c->cdce_mbuf;
    843   1.1  augustss 	memcpy(mtod(m, char *), c->cdce_buf, total_len);
    844   1.1  augustss 
    845   1.1  augustss 	if (total_len < sizeof(struct ether_header)) {
    846   1.1  augustss 		ifp->if_ierrors++;
    847   1.1  augustss 		goto done;
    848   1.1  augustss 	}
    849   1.1  augustss 
    850   1.1  augustss 	m->m_pkthdr.len = m->m_len = total_len;
    851  1.42     ozaki 	m_set_rcvif(m, ifp);
    852   1.1  augustss 
    853   1.1  augustss 	if (cdce_newbuf(sc, c, NULL) == ENOBUFS) {
    854   1.1  augustss 		ifp->if_ierrors++;
    855  1.50       mrg 		goto done;
    856   1.1  augustss 	}
    857   1.1  augustss 
    858  1.50       mrg 	mutex_exit(&sc->cdce_rxlock);
    859  1.50       mrg 	if_percpuq_enqueue(ifp->if_percpuq, m);
    860  1.50       mrg 	mutex_enter(&sc->cdce_rxlock);
    861   1.1  augustss 
    862  1.51       mrg done:
    863  1.50       mrg 	if (sc->cdce_stopping || sc->cdce_dying) {
    864  1.50       mrg 		mutex_exit(&sc->cdce_rxlock);
    865  1.50       mrg 		return;
    866  1.50       mrg 	}
    867   1.1  augustss 
    868  1.50       mrg 	mutex_exit(&sc->cdce_rxlock);
    869  1.50       mrg 
    870   1.1  augustss 	/* Setup new transfer. */
    871  1.41     skrll 	usbd_setup_xfer(c->cdce_xfer, c, c->cdce_buf, CDCE_BUFSZ,
    872  1.41     skrll 	    USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, cdce_rxeof);
    873   1.1  augustss 	usbd_transfer(c->cdce_xfer);
    874   1.1  augustss }
    875   1.1  augustss 
    876  1.49       mrg static void
    877  1.50       mrg cdce_txeof(struct usbd_xfer *xfer, void *priv, usbd_status status)
    878   1.1  augustss {
    879   1.1  augustss 	struct cdce_chain	*c = priv;
    880   1.1  augustss 	struct cdce_softc	*sc = c->cdce_sc;
    881   1.1  augustss 	struct ifnet		*ifp = GET_IFP(sc);
    882   1.1  augustss 	usbd_status		 err;
    883  1.50       mrg 
    884  1.50       mrg 	mutex_enter(&sc->cdce_txlock);
    885   1.1  augustss 
    886   1.1  augustss 	if (sc->cdce_dying)
    887  1.50       mrg 		goto out;
    888  1.50       mrg 
    889  1.51       mrg 	KASSERT(sc->cdce_cdata.cdce_tx_cnt > 0);
    890  1.51       mrg 	sc->cdce_cdata.cdce_tx_cnt--;
    891  1.51       mrg 
    892  1.50       mrg 	sc->cdce_timer = 0;
    893   1.1  augustss 
    894  1.50       mrg 	switch (status) {
    895  1.50       mrg 	case USBD_NOT_STARTED:
    896  1.50       mrg 	case USBD_CANCELLED:
    897  1.50       mrg 		goto out;
    898   1.1  augustss 
    899  1.50       mrg 	case USBD_NORMAL_COMPLETION:
    900  1.50       mrg 		break;
    901   1.1  augustss 
    902  1.50       mrg 	default:
    903   1.1  augustss 		ifp->if_oerrors++;
    904  1.24    dyoung 		printf("%s: usb error on tx: %s\n", device_xname(sc->cdce_dev),
    905  1.24    dyoung 		    usbd_errstr(status));
    906   1.1  augustss 		if (status == USBD_STALLED)
    907   1.8  augustss 			usbd_clear_endpoint_stall_async(sc->cdce_bulkout_pipe);
    908  1.50       mrg 		goto out;
    909   1.1  augustss 	}
    910   1.1  augustss 
    911   1.1  augustss 	usbd_get_xfer_status(c->cdce_xfer, NULL, NULL, NULL, &err);
    912   1.1  augustss 
    913   1.1  augustss 	if (c->cdce_mbuf != NULL) {
    914   1.1  augustss 		m_freem(c->cdce_mbuf);
    915   1.1  augustss 		c->cdce_mbuf = NULL;
    916   1.1  augustss 	}
    917   1.1  augustss 
    918   1.1  augustss 	if (err)
    919   1.1  augustss 		ifp->if_oerrors++;
    920   1.1  augustss 	else
    921   1.1  augustss 		ifp->if_opackets++;
    922   1.1  augustss 
    923   1.1  augustss 	if (IFQ_IS_EMPTY(&ifp->if_snd) == 0)
    924  1.50       mrg 		cdce_start_locked(ifp);
    925  1.50       mrg 
    926  1.50       mrg out:
    927  1.50       mrg 	mutex_exit(&sc->cdce_txlock);
    928  1.50       mrg }
    929  1.50       mrg 
    930  1.50       mrg static void
    931  1.50       mrg cdce_tick(void *xsc)
    932  1.50       mrg {
    933  1.50       mrg 	struct cdce_softc * const sc = xsc;
    934  1.50       mrg 
    935  1.50       mrg 	if (sc == NULL)
    936  1.50       mrg 		return;
    937  1.50       mrg 
    938  1.50       mrg 	mutex_enter(&sc->cdce_lock);
    939  1.50       mrg 
    940  1.50       mrg 	if (sc->cdce_stopping || sc->cdce_dying) {
    941  1.50       mrg 		mutex_exit(&sc->cdce_lock);
    942  1.50       mrg 		return;
    943  1.50       mrg 	}
    944  1.50       mrg 
    945  1.50       mrg 	/* Perform periodic stuff in process context */
    946  1.50       mrg 	usb_add_task(sc->cdce_udev, &sc->cdce_tick_task, USB_TASKQ_DRIVER);
    947  1.50       mrg 
    948  1.50       mrg 	mutex_exit(&sc->cdce_lock);
    949  1.50       mrg }
    950  1.50       mrg 
    951  1.50       mrg static void
    952  1.50       mrg cdce_tick_task(void *xsc)
    953  1.50       mrg {
    954  1.50       mrg 	struct cdce_softc * const sc = xsc;
    955  1.50       mrg 	struct ifnet *ifp;
    956   1.1  augustss 
    957  1.50       mrg 	if (sc == NULL)
    958  1.50       mrg 		return;
    959  1.50       mrg 
    960  1.50       mrg 	mutex_enter(&sc->cdce_lock);
    961  1.50       mrg 
    962  1.50       mrg 	if (sc->cdce_stopping || sc->cdce_dying) {
    963  1.50       mrg 		mutex_exit(&sc->cdce_lock);
    964  1.50       mrg 		return;
    965  1.50       mrg 	}
    966  1.50       mrg 
    967  1.50       mrg 	ifp = GET_IFP(sc);
    968  1.50       mrg 
    969  1.50       mrg 	if (sc->cdce_timer != 0 && --sc->cdce_timer == 0)
    970  1.50       mrg 		cdce_watchdog(ifp);
    971  1.50       mrg 	if (!sc->cdce_stopping && !sc->cdce_dying)
    972  1.50       mrg 		callout_schedule(&sc->cdce_stat_ch, hz);
    973  1.50       mrg 
    974  1.50       mrg 	mutex_exit(&sc->cdce_lock);
    975   1.1  augustss }
    976   1.1  augustss 
    977   1.4  augustss int
    978  1.23    dyoung cdce_activate(device_t self, enum devact act)
    979   1.1  augustss {
    980  1.16      cube 	struct cdce_softc *sc = device_private(self);
    981   1.1  augustss 
    982   1.1  augustss 	switch (act) {
    983   1.1  augustss 	case DVACT_DEACTIVATE:
    984   1.1  augustss 		if_deactivate(GET_IFP(sc));
    985  1.50       mrg 
    986  1.50       mrg 		mutex_enter(&sc->cdce_lock);
    987  1.50       mrg 		sc->cdce_dying = true;
    988  1.50       mrg 		mutex_exit(&sc->cdce_lock);
    989  1.50       mrg 
    990  1.50       mrg 		mutex_enter(&sc->cdce_rxlock);
    991  1.50       mrg 		mutex_enter(&sc->cdce_txlock);
    992  1.50       mrg 		sc->cdce_stopping = true;
    993  1.50       mrg 		mutex_exit(&sc->cdce_txlock);
    994  1.50       mrg 		mutex_exit(&sc->cdce_rxlock);
    995  1.50       mrg 
    996  1.26    dyoung 		return 0;
    997  1.26    dyoung 	default:
    998  1.26    dyoung 		return EOPNOTSUPP;
    999   1.1  augustss 	}
   1000   1.1  augustss }
   1001