Home | History | Annotate | Line # | Download | only in usb
if_cdce.c revision 1.27.4.1
      1  1.27.4.1     rmind /*	$NetBSD: if_cdce.c,v 1.27.4.1 2010/05/30 05:17:44 rmind 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.27.4.1     rmind __KERNEL_RCSID(0, "$NetBSD: if_cdce.c,v 1.27.4.1 2010/05/30 05:17:44 rmind Exp $");
     45      1.18        ws #ifdef	__NetBSD__
     46      1.18        ws #include "opt_inet.h"
     47      1.18        ws #endif
     48       1.1  augustss 
     49       1.1  augustss #include <sys/param.h>
     50       1.1  augustss #include <sys/systm.h>
     51       1.1  augustss #include <sys/sockio.h>
     52       1.1  augustss #include <sys/mbuf.h>
     53       1.1  augustss #include <sys/malloc.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.1  augustss 
     58       1.1  augustss #if NRND > 0
     59       1.1  augustss #include <sys/rnd.h>
     60       1.1  augustss #endif
     61       1.1  augustss 
     62       1.1  augustss #include <net/if.h>
     63       1.1  augustss #include <net/if_arp.h>
     64       1.1  augustss #include <net/if_dl.h>
     65       1.1  augustss #include <net/if_media.h>
     66       1.1  augustss 
     67       1.1  augustss #include <net/bpf.h>
     68       1.1  augustss 
     69       1.1  augustss #include <net/if_ether.h>
     70       1.1  augustss #ifdef INET
     71       1.1  augustss #include <netinet/in.h>
     72       1.1  augustss #include <netinet/if_inarp.h>
     73       1.1  augustss #endif
     74       1.1  augustss 
     75       1.1  augustss 
     76       1.1  augustss 
     77       1.1  augustss #include <dev/usb/usb.h>
     78       1.1  augustss #include <dev/usb/usbdi.h>
     79       1.1  augustss #include <dev/usb/usbdi_util.h>
     80       1.1  augustss #include <dev/usb/usbdevs.h>
     81       1.1  augustss #include <dev/usb/usbcdc.h>
     82       1.1  augustss 
     83       1.1  augustss #include <dev/usb/if_cdcereg.h>
     84       1.1  augustss 
     85       1.1  augustss Static int	 cdce_tx_list_init(struct cdce_softc *);
     86       1.1  augustss Static int	 cdce_rx_list_init(struct cdce_softc *);
     87       1.1  augustss Static int	 cdce_newbuf(struct cdce_softc *, struct cdce_chain *,
     88       1.1  augustss 		    struct mbuf *);
     89       1.1  augustss Static int	 cdce_encap(struct cdce_softc *, struct mbuf *, int);
     90       1.1  augustss Static void	 cdce_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
     91       1.1  augustss Static void	 cdce_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
     92       1.1  augustss Static void	 cdce_start(struct ifnet *);
     93      1.13  christos Static int	 cdce_ioctl(struct ifnet *, u_long, void *);
     94       1.1  augustss Static void	 cdce_init(void *);
     95       1.1  augustss Static void	 cdce_watchdog(struct ifnet *);
     96       1.1  augustss Static void	 cdce_stop(struct cdce_softc *);
     97       1.1  augustss 
     98       1.1  augustss Static const struct cdce_type cdce_devs[] = {
     99       1.1  augustss   {{ USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2501 }, CDCE_NO_UNION },
    100       1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_SL5500 }, CDCE_ZAURUS },
    101       1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_A300 }, CDCE_ZAURUS | CDCE_NO_UNION },
    102       1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_SL5600 }, CDCE_ZAURUS | CDCE_NO_UNION },
    103       1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_C700 }, CDCE_ZAURUS | CDCE_NO_UNION },
    104       1.1  augustss   {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_C750 }, CDCE_ZAURUS | CDCE_NO_UNION },
    105       1.1  augustss };
    106       1.1  augustss #define cdce_lookup(v, p) ((const struct cdce_type *)usb_lookup(cdce_devs, v, p))
    107       1.1  augustss 
    108      1.23    dyoung int cdce_match(device_t, cfdata_t, void *);
    109      1.23    dyoung void cdce_attach(device_t, device_t, void *);
    110      1.23    dyoung int cdce_detach(device_t, int);
    111      1.23    dyoung int cdce_activate(device_t, enum devact);
    112      1.23    dyoung extern struct cfdriver cdce_cd;
    113      1.23    dyoung CFATTACH_DECL_NEW(cdce, sizeof(struct cdce_softc), cdce_match, cdce_attach,
    114      1.23    dyoung     cdce_detach, cdce_activate);
    115       1.1  augustss 
    116      1.23    dyoung int
    117      1.23    dyoung cdce_match(device_t parent, cfdata_t match, void *aux)
    118       1.1  augustss {
    119      1.23    dyoung 	struct usbif_attach_arg *uaa = aux;
    120       1.1  augustss 
    121       1.1  augustss 	if (cdce_lookup(uaa->vendor, uaa->product) != NULL)
    122       1.1  augustss 		return (UMATCH_VENDOR_PRODUCT);
    123       1.1  augustss 
    124      1.14  drochner 	if (uaa->class == UICLASS_CDC && uaa->subclass ==
    125       1.1  augustss 	    UISUBCLASS_ETHERNET_NETWORKING_CONTROL_MODEL)
    126       1.1  augustss 		return (UMATCH_IFACECLASS_GENERIC);
    127       1.1  augustss 
    128       1.1  augustss 	return (UMATCH_NONE);
    129       1.1  augustss }
    130       1.1  augustss 
    131      1.23    dyoung void
    132      1.23    dyoung cdce_attach(device_t parent, device_t self, void *aux)
    133       1.1  augustss {
    134      1.23    dyoung 	struct cdce_softc *sc = device_private(self);
    135      1.23    dyoung 	struct usbif_attach_arg *uaa = aux;
    136       1.6  augustss 	char				 *devinfop;
    137       1.1  augustss 	int				 s;
    138       1.1  augustss 	struct ifnet			*ifp;
    139       1.1  augustss 	usbd_device_handle		 dev = uaa->device;
    140       1.1  augustss 	const struct cdce_type		*t;
    141       1.1  augustss 	usb_interface_descriptor_t	*id;
    142       1.1  augustss 	usb_endpoint_descriptor_t	*ed;
    143       1.2  augustss 	const usb_cdc_union_descriptor_t *ud;
    144      1.22      tron 	usb_config_descriptor_t		*cd;
    145       1.1  augustss 	int				 data_ifcno;
    146      1.22      tron 	int				 i, j, numalts;
    147       1.1  augustss 	u_char				 eaddr[ETHER_ADDR_LEN];
    148       1.2  augustss 	const usb_cdc_ethernet_descriptor_t *ue;
    149       1.5  augustss 	char				 eaddr_str[USB_MAX_ENCODED_STRING_LEN];
    150       1.1  augustss 
    151      1.25    plunky 	sc->cdce_dev = self;
    152      1.25    plunky 
    153      1.23    dyoung 	aprint_naive("\n");
    154      1.23    dyoung 	aprint_normal("\n");
    155      1.25    plunky 
    156      1.25    plunky 	devinfop = usbd_devinfo_alloc(dev, 0);
    157      1.16      cube 	aprint_normal_dev(self, "%s\n", devinfop);
    158       1.6  augustss 	usbd_devinfo_free(devinfop);
    159       1.1  augustss 
    160       1.1  augustss 	sc->cdce_udev = uaa->device;
    161       1.1  augustss 	sc->cdce_ctl_iface = uaa->iface;
    162       1.1  augustss 
    163       1.1  augustss 	t = cdce_lookup(uaa->vendor, uaa->product);
    164       1.1  augustss 	if (t)
    165       1.1  augustss 		sc->cdce_flags = t->cdce_flags;
    166       1.1  augustss 
    167       1.1  augustss 	if (sc->cdce_flags & CDCE_NO_UNION)
    168       1.1  augustss 		sc->cdce_data_iface = sc->cdce_ctl_iface;
    169       1.1  augustss 	else {
    170       1.7  christos 		ud = (const usb_cdc_union_descriptor_t *)usb_find_desc(sc->cdce_udev,
    171       1.2  augustss 		    UDESC_CS_INTERFACE, UDESCSUB_CDC_UNION);
    172       1.1  augustss 		if (ud == NULL) {
    173      1.16      cube 			aprint_error_dev(self, "no union descriptor\n");
    174      1.24    dyoung 			return;
    175       1.1  augustss 		}
    176       1.1  augustss 		data_ifcno = ud->bSlaveInterface[0];
    177       1.1  augustss 
    178       1.1  augustss 		for (i = 0; i < uaa->nifaces; i++) {
    179       1.1  augustss 			if (uaa->ifaces[i] != NULL) {
    180       1.1  augustss 				id = usbd_get_interface_descriptor(
    181       1.1  augustss 				    uaa->ifaces[i]);
    182       1.1  augustss 				if (id != NULL && id->bInterfaceNumber ==
    183       1.1  augustss 				    data_ifcno) {
    184       1.1  augustss 					sc->cdce_data_iface = uaa->ifaces[i];
    185       1.1  augustss 					uaa->ifaces[i] = NULL;
    186       1.1  augustss 				}
    187       1.1  augustss 			}
    188       1.1  augustss 		}
    189       1.1  augustss 	}
    190       1.1  augustss 
    191       1.1  augustss 	if (sc->cdce_data_iface == NULL) {
    192      1.16      cube 		aprint_error_dev(self, "no data interface\n");
    193      1.24    dyoung 		return;
    194       1.1  augustss 	}
    195       1.1  augustss 
    196      1.22      tron 	/*
    197      1.22      tron 	 * <quote>
    198      1.22      tron 	 *  The Data Class interface of a networking device shall have a minimum
    199      1.22      tron 	 *  of two interface settings. The first setting (the default interface
    200      1.22      tron 	 *  setting) includes no endpoints and therefore no networking traffic is
    201      1.22      tron 	 *  exchanged whenever the default interface setting is selected. One or
    202      1.22      tron 	 *  more additional interface settings are used for normal operation, and
    203      1.22      tron 	 *  therefore each includes a pair of endpoints (one IN, and one OUT) to
    204      1.22      tron 	 *  exchange network traffic. Select an alternate interface setting to
    205      1.22      tron 	 *  initialize the network aspects of the device and to enable the
    206      1.22      tron 	 *  exchange of network traffic.
    207      1.22      tron 	 * </quote>
    208      1.22      tron 	 *
    209      1.22      tron 	 * Some devices, most notably cable modems, include interface settings
    210      1.22      tron 	 * that have no IN or OUT endpoint, therefore loop through the list of all
    211      1.22      tron 	 * available interface settings looking for one with both IN and OUT
    212      1.22      tron 	 * endpoints.
    213      1.22      tron 	 */
    214       1.1  augustss 	id = usbd_get_interface_descriptor(sc->cdce_data_iface);
    215      1.22      tron 	cd = usbd_get_config_descriptor(sc->cdce_udev);
    216      1.22      tron 	numalts = usbd_get_no_alts(cd, id->bInterfaceNumber);
    217      1.22      tron 
    218      1.22      tron 	for (j = 0; j < numalts; j++) {
    219      1.22      tron 		if (usbd_set_interface(sc->cdce_data_iface, j)) {
    220      1.22      tron 			aprint_error_dev(sc->cdce_dev,
    221      1.22      tron 					"setting alternate interface failed\n");
    222      1.24    dyoung 			return;
    223       1.1  augustss 		}
    224      1.22      tron 		/* Find endpoints. */
    225      1.22      tron 		id = usbd_get_interface_descriptor(sc->cdce_data_iface);
    226      1.22      tron 		sc->cdce_bulkin_no = sc->cdce_bulkout_no = -1;
    227      1.22      tron 		for (i = 0; i < id->bNumEndpoints; i++) {
    228      1.22      tron 			ed = usbd_interface2endpoint_descriptor(sc->cdce_data_iface, i);
    229      1.22      tron 			if (!ed) {
    230      1.22      tron 				aprint_error_dev(self,
    231      1.22      tron 						"could not read endpoint descriptor\n");
    232      1.24    dyoung 				return;
    233      1.22      tron 			}
    234      1.22      tron 			if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    235      1.22      tron 					UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    236      1.22      tron 				sc->cdce_bulkin_no = ed->bEndpointAddress;
    237      1.22      tron 			} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    238      1.22      tron 					UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    239      1.22      tron 				sc->cdce_bulkout_no = ed->bEndpointAddress;
    240      1.22      tron 			} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    241      1.22      tron 					UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
    242      1.22      tron 				/* XXX: CDC spec defines an interrupt pipe, but it is not
    243      1.22      tron 				 * needed for simple host-to-host applications. */
    244      1.22      tron 			} else {
    245      1.22      tron 				aprint_error_dev(self, "unexpected endpoint\n");
    246      1.22      tron 			}
    247       1.1  augustss 		}
    248      1.22      tron 		/* If we found something, try and use it... */
    249      1.22      tron 		if ((sc->cdce_bulkin_no != -1) && (sc->cdce_bulkout_no != -1))
    250      1.22      tron 			break;
    251       1.1  augustss 	}
    252       1.1  augustss 
    253       1.1  augustss 	if (sc->cdce_bulkin_no == -1) {
    254      1.16      cube 		aprint_error_dev(self, "could not find data bulk in\n");
    255      1.24    dyoung 		return;
    256       1.1  augustss 	}
    257       1.1  augustss 	if (sc->cdce_bulkout_no == -1 ) {
    258      1.16      cube 		aprint_error_dev(self, "could not find data bulk out\n");
    259      1.24    dyoung 		return;
    260       1.1  augustss 	}
    261       1.1  augustss 
    262       1.7  christos 	ue = (const usb_cdc_ethernet_descriptor_t *)usb_find_desc(dev,
    263  1.27.4.1     rmind 	    UDESC_CS_INTERFACE, UDESCSUB_CDC_ENF);
    264  1.27.4.1     rmind 	if (!ue || usbd_get_string(dev, ue->iMacAddress, eaddr_str) ||
    265  1.27.4.1     rmind 	    ether_aton_r(eaddr, sizeof(eaddr), eaddr_str)) {
    266      1.16      cube 		aprint_normal_dev(self, "faking address\n");
    267       1.2  augustss 		eaddr[0]= 0x2a;
    268  1.27.4.1     rmind 		memcpy(&eaddr[1], &hardclock_ticks, sizeof(uint32_t));
    269  1.27.4.1     rmind 		eaddr[5] = (uint8_t)(device_unit(sc->cdce_dev));
    270       1.2  augustss 	}
    271       1.2  augustss 
    272       1.1  augustss 	s = splnet();
    273       1.1  augustss 
    274      1.16      cube 	aprint_normal_dev(self, "address %s\n", ether_sprintf(eaddr));
    275       1.1  augustss 
    276       1.1  augustss 	ifp = GET_IFP(sc);
    277       1.1  augustss 	ifp->if_softc = sc;
    278       1.1  augustss 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
    279       1.1  augustss 	ifp->if_ioctl = cdce_ioctl;
    280       1.1  augustss 	ifp->if_start = cdce_start;
    281       1.1  augustss 	ifp->if_watchdog = cdce_watchdog;
    282      1.24    dyoung 	strncpy(ifp->if_xname, device_xname(sc->cdce_dev), IFNAMSIZ);
    283       1.1  augustss 
    284       1.1  augustss 	IFQ_SET_READY(&ifp->if_snd);
    285       1.1  augustss 
    286       1.1  augustss 	if_attach(ifp);
    287      1.24    dyoung 	ether_ifattach(ifp, eaddr);
    288       1.1  augustss 
    289       1.1  augustss 	sc->cdce_attached = 1;
    290       1.1  augustss 	splx(s);
    291       1.1  augustss 
    292       1.1  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->cdce_udev,
    293      1.24    dyoung 	    sc->cdce_dev);
    294       1.1  augustss 
    295      1.24    dyoung 	return;
    296       1.1  augustss }
    297       1.1  augustss 
    298      1.23    dyoung int
    299      1.23    dyoung cdce_detach(device_t self, int flags)
    300       1.1  augustss {
    301      1.24    dyoung 	struct cdce_softc *sc = device_private(self);
    302       1.1  augustss 	struct ifnet	*ifp = GET_IFP(sc);
    303       1.1  augustss 	int		 s;
    304       1.1  augustss 
    305       1.1  augustss 	s = splusb();
    306       1.1  augustss 
    307       1.1  augustss 	if (!sc->cdce_attached) {
    308       1.1  augustss 		splx(s);
    309       1.1  augustss 		return (0);
    310       1.1  augustss 	}
    311       1.1  augustss 
    312       1.1  augustss 	if (ifp->if_flags & IFF_RUNNING)
    313       1.1  augustss 		cdce_stop(sc);
    314       1.1  augustss 
    315       1.1  augustss 	ether_ifdetach(ifp);
    316       1.1  augustss 
    317       1.1  augustss 	if_detach(ifp);
    318       1.1  augustss 
    319       1.1  augustss 	sc->cdce_attached = 0;
    320       1.1  augustss 	splx(s);
    321       1.1  augustss 
    322       1.1  augustss 	return (0);
    323       1.1  augustss }
    324       1.1  augustss 
    325       1.1  augustss Static void
    326       1.1  augustss cdce_start(struct ifnet *ifp)
    327       1.1  augustss {
    328       1.1  augustss 	struct cdce_softc	*sc = ifp->if_softc;
    329       1.1  augustss 	struct mbuf		*m_head = NULL;
    330       1.1  augustss 
    331       1.1  augustss 	if (sc->cdce_dying || (ifp->if_flags & IFF_OACTIVE))
    332       1.1  augustss 		return;
    333       1.1  augustss 
    334       1.1  augustss 	IFQ_POLL(&ifp->if_snd, m_head);
    335       1.1  augustss 	if (m_head == NULL)
    336       1.1  augustss 		return;
    337       1.1  augustss 
    338       1.1  augustss 	if (cdce_encap(sc, m_head, 0)) {
    339       1.1  augustss 		ifp->if_flags |= IFF_OACTIVE;
    340       1.1  augustss 		return;
    341       1.1  augustss 	}
    342       1.1  augustss 
    343       1.1  augustss 	IFQ_DEQUEUE(&ifp->if_snd, m_head);
    344       1.1  augustss 
    345  1.27.4.1     rmind 	bpf_mtap(ifp, m_head);
    346       1.1  augustss 
    347       1.1  augustss 	ifp->if_flags |= IFF_OACTIVE;
    348       1.1  augustss 
    349       1.1  augustss 	ifp->if_timer = 6;
    350       1.1  augustss }
    351       1.1  augustss 
    352       1.1  augustss Static int
    353       1.1  augustss cdce_encap(struct cdce_softc *sc, struct mbuf *m, int idx)
    354       1.1  augustss {
    355       1.1  augustss 	struct cdce_chain	*c;
    356       1.1  augustss 	usbd_status		 err;
    357       1.1  augustss 	int			 extra = 0;
    358       1.1  augustss 
    359       1.1  augustss 	c = &sc->cdce_cdata.cdce_tx_chain[idx];
    360       1.1  augustss 
    361       1.1  augustss 	m_copydata(m, 0, m->m_pkthdr.len, c->cdce_buf);
    362       1.1  augustss 	if (sc->cdce_flags & CDCE_ZAURUS) {
    363       1.1  augustss 		/* Zaurus wants a 32-bit CRC appended to every frame */
    364  1.27.4.1     rmind 		uint32_t crc;
    365       1.1  augustss 
    366  1.27.4.1     rmind 		crc = htole32(~ether_crc32_le(c->cdce_buf, m->m_pkthdr.len));
    367  1.27.4.1     rmind 		memcpy(c->cdce_buf + m->m_pkthdr.len, &crc, sizeof(crc));
    368  1.27.4.1     rmind 		extra = sizeof(crc);
    369       1.1  augustss 	}
    370       1.1  augustss 	c->cdce_mbuf = m;
    371       1.1  augustss 
    372       1.1  augustss 	usbd_setup_xfer(c->cdce_xfer, sc->cdce_bulkout_pipe, c, c->cdce_buf,
    373       1.1  augustss 	    m->m_pkthdr.len + extra, USBD_NO_COPY, 10000, cdce_txeof);
    374       1.1  augustss 	err = usbd_transfer(c->cdce_xfer);
    375       1.1  augustss 	if (err != USBD_IN_PROGRESS) {
    376       1.1  augustss 		cdce_stop(sc);
    377       1.1  augustss 		return (EIO);
    378       1.1  augustss 	}
    379       1.1  augustss 
    380       1.1  augustss 	sc->cdce_cdata.cdce_tx_cnt++;
    381       1.1  augustss 
    382       1.1  augustss 	return (0);
    383       1.1  augustss }
    384       1.1  augustss 
    385       1.1  augustss Static void
    386       1.1  augustss cdce_stop(struct cdce_softc *sc)
    387       1.1  augustss {
    388       1.1  augustss 	usbd_status	 err;
    389       1.1  augustss 	struct ifnet	*ifp = GET_IFP(sc);
    390       1.1  augustss 	int		 i;
    391       1.1  augustss 
    392       1.1  augustss 	ifp->if_timer = 0;
    393       1.1  augustss 
    394       1.1  augustss 	if (sc->cdce_bulkin_pipe != NULL) {
    395       1.1  augustss 		err = usbd_abort_pipe(sc->cdce_bulkin_pipe);
    396       1.1  augustss 		if (err)
    397       1.1  augustss 			printf("%s: abort rx pipe failed: %s\n",
    398      1.24    dyoung 			    device_xname(sc->cdce_dev), usbd_errstr(err));
    399       1.1  augustss 		err = usbd_close_pipe(sc->cdce_bulkin_pipe);
    400       1.1  augustss 		if (err)
    401       1.1  augustss 			printf("%s: close rx pipe failed: %s\n",
    402      1.24    dyoung 			    device_xname(sc->cdce_dev), usbd_errstr(err));
    403       1.1  augustss 		sc->cdce_bulkin_pipe = NULL;
    404       1.1  augustss 	}
    405       1.1  augustss 
    406       1.1  augustss 	if (sc->cdce_bulkout_pipe != NULL) {
    407       1.1  augustss 		err = usbd_abort_pipe(sc->cdce_bulkout_pipe);
    408       1.1  augustss 		if (err)
    409       1.1  augustss 			printf("%s: abort tx pipe failed: %s\n",
    410      1.24    dyoung 			    device_xname(sc->cdce_dev), usbd_errstr(err));
    411       1.1  augustss 		err = usbd_close_pipe(sc->cdce_bulkout_pipe);
    412       1.1  augustss 		if (err)
    413       1.1  augustss 			printf("%s: close tx pipe failed: %s\n",
    414      1.24    dyoung 			    device_xname(sc->cdce_dev), usbd_errstr(err));
    415       1.1  augustss 		sc->cdce_bulkout_pipe = NULL;
    416       1.1  augustss 	}
    417       1.1  augustss 
    418       1.1  augustss 	for (i = 0; i < CDCE_RX_LIST_CNT; i++) {
    419       1.1  augustss 		if (sc->cdce_cdata.cdce_rx_chain[i].cdce_mbuf != NULL) {
    420       1.1  augustss 			m_freem(sc->cdce_cdata.cdce_rx_chain[i].cdce_mbuf);
    421       1.1  augustss 			sc->cdce_cdata.cdce_rx_chain[i].cdce_mbuf = NULL;
    422       1.1  augustss 		}
    423       1.1  augustss 		if (sc->cdce_cdata.cdce_rx_chain[i].cdce_xfer != NULL) {
    424       1.1  augustss 			usbd_free_xfer(sc->cdce_cdata.cdce_rx_chain[i].cdce_xfer);
    425       1.1  augustss 			sc->cdce_cdata.cdce_rx_chain[i].cdce_xfer = NULL;
    426       1.1  augustss 		}
    427       1.1  augustss 	}
    428       1.1  augustss 
    429       1.1  augustss 	for (i = 0; i < CDCE_TX_LIST_CNT; i++) {
    430       1.1  augustss 		if (sc->cdce_cdata.cdce_tx_chain[i].cdce_mbuf != NULL) {
    431       1.1  augustss 			m_freem(sc->cdce_cdata.cdce_tx_chain[i].cdce_mbuf);
    432       1.1  augustss 			sc->cdce_cdata.cdce_tx_chain[i].cdce_mbuf = NULL;
    433       1.1  augustss 		}
    434       1.1  augustss 		if (sc->cdce_cdata.cdce_tx_chain[i].cdce_xfer != NULL) {
    435       1.1  augustss 			usbd_free_xfer(sc->cdce_cdata.cdce_tx_chain[i].cdce_xfer);
    436       1.1  augustss 			sc->cdce_cdata.cdce_tx_chain[i].cdce_xfer = NULL;
    437       1.1  augustss 		}
    438       1.1  augustss 	}
    439       1.1  augustss 
    440       1.1  augustss 	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
    441       1.1  augustss }
    442       1.1  augustss 
    443       1.1  augustss Static int
    444      1.13  christos cdce_ioctl(struct ifnet *ifp, u_long command, void *data)
    445       1.1  augustss {
    446       1.1  augustss 	struct cdce_softc	*sc = ifp->if_softc;
    447       1.1  augustss 	struct ifaddr		*ifa = (struct ifaddr *)data;
    448       1.1  augustss 	struct ifreq		*ifr = (struct ifreq *)data;
    449       1.1  augustss 	int			 s, error = 0;
    450       1.1  augustss 
    451       1.1  augustss 	if (sc->cdce_dying)
    452       1.1  augustss 		return (EIO);
    453       1.1  augustss 
    454       1.1  augustss 	s = splnet();
    455       1.1  augustss 
    456       1.1  augustss 	switch(command) {
    457      1.19    dyoung 	case SIOCINITIFADDR:
    458       1.1  augustss 		ifp->if_flags |= IFF_UP;
    459       1.1  augustss 		cdce_init(sc);
    460       1.1  augustss 		switch (ifa->ifa_addr->sa_family) {
    461       1.1  augustss #ifdef INET
    462       1.1  augustss 		case AF_INET:
    463       1.1  augustss 			arp_ifinit(ifp, ifa);
    464       1.1  augustss 			break;
    465       1.1  augustss #endif /* INET */
    466       1.1  augustss 		}
    467       1.1  augustss 		break;
    468       1.1  augustss 
    469       1.1  augustss 	case SIOCSIFMTU:
    470      1.15    dyoung 		if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > ETHERMTU)
    471       1.1  augustss 			error = EINVAL;
    472      1.15    dyoung 		else if ((error = ifioctl_common(ifp, command, data)) == ENETRESET)
    473      1.15    dyoung 			error = 0;
    474       1.1  augustss 		break;
    475       1.1  augustss 
    476       1.1  augustss 	case SIOCSIFFLAGS:
    477      1.19    dyoung 		if ((error = ifioctl_common(ifp, command, data)) != 0)
    478      1.19    dyoung 			break;
    479      1.19    dyoung 		/* XXX re-use ether_ioctl() */
    480      1.19    dyoung 		switch (ifp->if_flags & (IFF_UP|IFF_RUNNING)) {
    481      1.19    dyoung 		case IFF_UP:
    482      1.19    dyoung 			cdce_init(sc);
    483      1.19    dyoung 			break;
    484      1.19    dyoung 		case IFF_RUNNING:
    485      1.19    dyoung 			cdce_stop(sc);
    486      1.19    dyoung 			break;
    487      1.19    dyoung 		default:
    488      1.19    dyoung 			break;
    489       1.1  augustss 		}
    490       1.1  augustss 		break;
    491       1.1  augustss 
    492       1.1  augustss 	default:
    493      1.19    dyoung 		error = ether_ioctl(ifp, command, data);
    494       1.1  augustss 		break;
    495       1.1  augustss 	}
    496       1.1  augustss 
    497       1.1  augustss 	splx(s);
    498       1.1  augustss 
    499  1.27.4.1     rmind 	if (error == ENETRESET)
    500  1.27.4.1     rmind 		error = 0;
    501  1.27.4.1     rmind 
    502       1.1  augustss 	return (error);
    503       1.1  augustss }
    504       1.1  augustss 
    505       1.1  augustss Static void
    506       1.1  augustss cdce_watchdog(struct ifnet *ifp)
    507       1.1  augustss {
    508       1.1  augustss 	struct cdce_softc	*sc = ifp->if_softc;
    509       1.1  augustss 
    510       1.1  augustss 	if (sc->cdce_dying)
    511       1.1  augustss 		return;
    512       1.1  augustss 
    513       1.1  augustss 	ifp->if_oerrors++;
    514      1.24    dyoung 	printf("%s: watchdog timeout\n", device_xname(sc->cdce_dev));
    515       1.1  augustss }
    516       1.1  augustss 
    517       1.1  augustss Static void
    518       1.1  augustss cdce_init(void *xsc)
    519       1.1  augustss {
    520       1.1  augustss 	struct cdce_softc	*sc = xsc;
    521       1.1  augustss 	struct ifnet		*ifp = GET_IFP(sc);
    522       1.1  augustss 	struct cdce_chain	*c;
    523       1.1  augustss 	usbd_status		 err;
    524       1.1  augustss 	int			 s, i;
    525       1.1  augustss 
    526       1.1  augustss 	if (ifp->if_flags & IFF_RUNNING)
    527       1.1  augustss 		return;
    528       1.1  augustss 
    529       1.1  augustss 	s = splnet();
    530       1.1  augustss 
    531       1.1  augustss 	if (cdce_tx_list_init(sc) == ENOBUFS) {
    532      1.24    dyoung 		printf("%s: tx list init failed\n", device_xname(sc->cdce_dev));
    533       1.1  augustss 		splx(s);
    534       1.1  augustss 		return;
    535       1.1  augustss 	}
    536       1.1  augustss 
    537       1.1  augustss 	if (cdce_rx_list_init(sc) == ENOBUFS) {
    538      1.24    dyoung 		printf("%s: rx list init failed\n", device_xname(sc->cdce_dev));
    539       1.1  augustss 		splx(s);
    540       1.1  augustss 		return;
    541       1.1  augustss 	}
    542       1.1  augustss 
    543       1.1  augustss 	/* Maybe set multicast / broadcast here??? */
    544       1.1  augustss 
    545       1.1  augustss 	err = usbd_open_pipe(sc->cdce_data_iface, sc->cdce_bulkin_no,
    546       1.1  augustss 	    USBD_EXCLUSIVE_USE, &sc->cdce_bulkin_pipe);
    547       1.1  augustss 	if (err) {
    548      1.24    dyoung 		printf("%s: open rx pipe failed: %s\n", device_xname(sc->cdce_dev),
    549       1.1  augustss 		    usbd_errstr(err));
    550       1.1  augustss 		splx(s);
    551       1.1  augustss 		return;
    552       1.1  augustss 	}
    553       1.1  augustss 
    554       1.1  augustss 	err = usbd_open_pipe(sc->cdce_data_iface, sc->cdce_bulkout_no,
    555       1.1  augustss 	    USBD_EXCLUSIVE_USE, &sc->cdce_bulkout_pipe);
    556       1.1  augustss 	if (err) {
    557      1.24    dyoung 		printf("%s: open tx pipe failed: %s\n",
    558      1.24    dyoung 		    device_xname(sc->cdce_dev), usbd_errstr(err));
    559       1.1  augustss 		splx(s);
    560       1.1  augustss 		return;
    561       1.1  augustss 	}
    562       1.1  augustss 
    563       1.1  augustss 	for (i = 0; i < CDCE_RX_LIST_CNT; i++) {
    564       1.1  augustss 		c = &sc->cdce_cdata.cdce_rx_chain[i];
    565       1.1  augustss 		usbd_setup_xfer(c->cdce_xfer, sc->cdce_bulkin_pipe, c,
    566       1.1  augustss 		    c->cdce_buf, CDCE_BUFSZ, USBD_SHORT_XFER_OK | USBD_NO_COPY,
    567       1.1  augustss 		    USBD_NO_TIMEOUT, cdce_rxeof);
    568       1.1  augustss 		usbd_transfer(c->cdce_xfer);
    569       1.1  augustss 	}
    570       1.1  augustss 
    571       1.1  augustss 	ifp->if_flags |= IFF_RUNNING;
    572       1.1  augustss 	ifp->if_flags &= ~IFF_OACTIVE;
    573       1.1  augustss 
    574       1.1  augustss 	splx(s);
    575       1.1  augustss }
    576       1.1  augustss 
    577       1.1  augustss Static int
    578       1.1  augustss cdce_newbuf(struct cdce_softc *sc, struct cdce_chain *c, struct mbuf *m)
    579       1.1  augustss {
    580       1.1  augustss 	struct mbuf	*m_new = NULL;
    581       1.1  augustss 
    582       1.1  augustss 	if (m == NULL) {
    583       1.1  augustss 		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
    584       1.1  augustss 		if (m_new == NULL) {
    585       1.1  augustss 			printf("%s: no memory for rx list "
    586      1.24    dyoung 			    "-- packet dropped!\n", device_xname(sc->cdce_dev));
    587       1.1  augustss 			return (ENOBUFS);
    588       1.1  augustss 		}
    589       1.1  augustss 		MCLGET(m_new, M_DONTWAIT);
    590       1.1  augustss 		if (!(m_new->m_flags & M_EXT)) {
    591       1.1  augustss 			printf("%s: no memory for rx list "
    592      1.24    dyoung 			    "-- packet dropped!\n", device_xname(sc->cdce_dev));
    593       1.1  augustss 			m_freem(m_new);
    594       1.1  augustss 			return (ENOBUFS);
    595       1.1  augustss 		}
    596       1.1  augustss 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
    597       1.1  augustss 	} else {
    598       1.1  augustss 		m_new = m;
    599       1.1  augustss 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
    600       1.1  augustss 		m_new->m_data = m_new->m_ext.ext_buf;
    601       1.1  augustss 	}
    602       1.1  augustss 	c->cdce_mbuf = m_new;
    603       1.1  augustss 	return (0);
    604       1.1  augustss }
    605       1.1  augustss 
    606       1.1  augustss Static int
    607       1.1  augustss cdce_rx_list_init(struct cdce_softc *sc)
    608       1.1  augustss {
    609       1.1  augustss 	struct cdce_cdata	*cd;
    610       1.1  augustss 	struct cdce_chain	*c;
    611       1.1  augustss 	int			 i;
    612       1.1  augustss 
    613       1.1  augustss 	cd = &sc->cdce_cdata;
    614       1.1  augustss 	for (i = 0; i < CDCE_RX_LIST_CNT; i++) {
    615       1.1  augustss 		c = &cd->cdce_rx_chain[i];
    616       1.1  augustss 		c->cdce_sc = sc;
    617       1.1  augustss 		c->cdce_idx = i;
    618       1.1  augustss 		if (cdce_newbuf(sc, c, NULL) == ENOBUFS)
    619       1.1  augustss 			return (ENOBUFS);
    620       1.1  augustss 		if (c->cdce_xfer == NULL) {
    621       1.1  augustss 			c->cdce_xfer = usbd_alloc_xfer(sc->cdce_udev);
    622       1.1  augustss 			if (c->cdce_xfer == NULL)
    623       1.1  augustss 				return (ENOBUFS);
    624       1.1  augustss 			c->cdce_buf = usbd_alloc_buffer(c->cdce_xfer, CDCE_BUFSZ);
    625       1.1  augustss 			if (c->cdce_buf == NULL)
    626       1.1  augustss 				return (ENOBUFS);
    627       1.1  augustss 		}
    628       1.1  augustss 	}
    629       1.1  augustss 
    630       1.1  augustss 	return (0);
    631       1.1  augustss }
    632       1.1  augustss 
    633       1.1  augustss Static int
    634       1.1  augustss cdce_tx_list_init(struct cdce_softc *sc)
    635       1.1  augustss {
    636       1.1  augustss 	struct cdce_cdata	*cd;
    637       1.1  augustss 	struct cdce_chain	*c;
    638       1.1  augustss 	int			 i;
    639       1.1  augustss 
    640       1.1  augustss 	cd = &sc->cdce_cdata;
    641       1.1  augustss 	for (i = 0; i < CDCE_TX_LIST_CNT; i++) {
    642       1.1  augustss 		c = &cd->cdce_tx_chain[i];
    643       1.1  augustss 		c->cdce_sc = sc;
    644       1.1  augustss 		c->cdce_idx = i;
    645       1.1  augustss 		c->cdce_mbuf = NULL;
    646       1.1  augustss 		if (c->cdce_xfer == NULL) {
    647       1.1  augustss 			c->cdce_xfer = usbd_alloc_xfer(sc->cdce_udev);
    648       1.1  augustss 			if (c->cdce_xfer == NULL)
    649       1.1  augustss 				return (ENOBUFS);
    650       1.1  augustss 			c->cdce_buf = usbd_alloc_buffer(c->cdce_xfer, CDCE_BUFSZ);
    651       1.1  augustss 			if (c->cdce_buf == NULL)
    652       1.1  augustss 				return (ENOBUFS);
    653       1.1  augustss 		}
    654       1.1  augustss 	}
    655       1.1  augustss 
    656       1.1  augustss 	return (0);
    657       1.1  augustss }
    658       1.1  augustss 
    659       1.1  augustss Static void
    660       1.1  augustss cdce_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
    661       1.1  augustss {
    662       1.1  augustss 	struct cdce_chain	*c = priv;
    663       1.1  augustss 	struct cdce_softc	*sc = c->cdce_sc;
    664       1.1  augustss 	struct ifnet		*ifp = GET_IFP(sc);
    665       1.1  augustss 	struct mbuf		*m;
    666       1.1  augustss 	int			 total_len = 0;
    667       1.1  augustss 	int			 s;
    668       1.1  augustss 
    669       1.1  augustss 	if (sc->cdce_dying || !(ifp->if_flags & IFF_RUNNING))
    670       1.1  augustss 		return;
    671       1.1  augustss 
    672       1.1  augustss 	if (status != USBD_NORMAL_COMPLETION) {
    673       1.1  augustss 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
    674       1.1  augustss 			return;
    675       1.1  augustss 		if (sc->cdce_rxeof_errors == 0)
    676       1.1  augustss 			printf("%s: usb error on rx: %s\n",
    677      1.24    dyoung 			    device_xname(sc->cdce_dev), usbd_errstr(status));
    678       1.1  augustss 		if (status == USBD_STALLED)
    679       1.8  augustss 			usbd_clear_endpoint_stall_async(sc->cdce_bulkin_pipe);
    680       1.1  augustss 		DELAY(sc->cdce_rxeof_errors * 10000);
    681       1.1  augustss 		sc->cdce_rxeof_errors++;
    682       1.1  augustss 		goto done;
    683       1.1  augustss 	}
    684       1.1  augustss 
    685       1.1  augustss 	sc->cdce_rxeof_errors = 0;
    686       1.1  augustss 
    687       1.1  augustss 	usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
    688       1.1  augustss 	if (sc->cdce_flags & CDCE_ZAURUS)
    689       1.1  augustss 		total_len -= 4;	/* Strip off CRC added by Zaurus */
    690       1.1  augustss 	if (total_len <= 1)
    691       1.1  augustss 		goto done;
    692       1.1  augustss 
    693       1.1  augustss 	m = c->cdce_mbuf;
    694       1.1  augustss 	memcpy(mtod(m, char *), c->cdce_buf, total_len);
    695       1.1  augustss 
    696       1.1  augustss 	if (total_len < sizeof(struct ether_header)) {
    697       1.1  augustss 		ifp->if_ierrors++;
    698       1.1  augustss 		goto done;
    699       1.1  augustss 	}
    700       1.1  augustss 
    701       1.1  augustss 	ifp->if_ipackets++;
    702       1.1  augustss 	m->m_pkthdr.len = m->m_len = total_len;
    703       1.1  augustss 	m->m_pkthdr.rcvif = ifp;
    704       1.1  augustss 
    705       1.1  augustss 	s = splnet();
    706       1.1  augustss 
    707       1.1  augustss 	if (cdce_newbuf(sc, c, NULL) == ENOBUFS) {
    708       1.1  augustss 		ifp->if_ierrors++;
    709       1.1  augustss 		goto done1;
    710       1.1  augustss 	}
    711       1.1  augustss 
    712  1.27.4.1     rmind 	bpf_mtap(ifp, m);
    713       1.1  augustss 
    714      1.24    dyoung 	(*(ifp)->if_input)((ifp), (m));
    715       1.1  augustss 
    716       1.1  augustss done1:
    717       1.1  augustss 	splx(s);
    718       1.1  augustss 
    719       1.1  augustss done:
    720       1.1  augustss 	/* Setup new transfer. */
    721       1.1  augustss 	usbd_setup_xfer(c->cdce_xfer, sc->cdce_bulkin_pipe, c, c->cdce_buf,
    722       1.1  augustss 	    CDCE_BUFSZ, USBD_SHORT_XFER_OK | USBD_NO_COPY, USBD_NO_TIMEOUT,
    723       1.1  augustss 	    cdce_rxeof);
    724       1.1  augustss 	usbd_transfer(c->cdce_xfer);
    725       1.1  augustss }
    726       1.1  augustss 
    727       1.1  augustss Static void
    728      1.12  christos cdce_txeof(usbd_xfer_handle xfer, usbd_private_handle priv,
    729      1.11  christos     usbd_status status)
    730       1.1  augustss {
    731       1.1  augustss 	struct cdce_chain	*c = priv;
    732       1.1  augustss 	struct cdce_softc	*sc = c->cdce_sc;
    733       1.1  augustss 	struct ifnet		*ifp = GET_IFP(sc);
    734       1.1  augustss 	usbd_status		 err;
    735       1.1  augustss 	int			 s;
    736       1.1  augustss 
    737       1.1  augustss 	if (sc->cdce_dying)
    738       1.1  augustss 		return;
    739       1.1  augustss 
    740       1.1  augustss 	s = splnet();
    741       1.1  augustss 
    742       1.1  augustss 	ifp->if_timer = 0;
    743       1.1  augustss 	ifp->if_flags &= ~IFF_OACTIVE;
    744       1.1  augustss 
    745       1.1  augustss 	if (status != USBD_NORMAL_COMPLETION) {
    746       1.1  augustss 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
    747       1.1  augustss 			splx(s);
    748       1.1  augustss 			return;
    749       1.1  augustss 		}
    750       1.1  augustss 		ifp->if_oerrors++;
    751      1.24    dyoung 		printf("%s: usb error on tx: %s\n", device_xname(sc->cdce_dev),
    752      1.24    dyoung 		    usbd_errstr(status));
    753       1.1  augustss 		if (status == USBD_STALLED)
    754       1.8  augustss 			usbd_clear_endpoint_stall_async(sc->cdce_bulkout_pipe);
    755       1.1  augustss 		splx(s);
    756       1.1  augustss 		return;
    757       1.1  augustss 	}
    758       1.1  augustss 
    759       1.1  augustss 	usbd_get_xfer_status(c->cdce_xfer, NULL, NULL, NULL, &err);
    760       1.1  augustss 
    761       1.1  augustss 	if (c->cdce_mbuf != NULL) {
    762       1.1  augustss 		m_freem(c->cdce_mbuf);
    763       1.1  augustss 		c->cdce_mbuf = NULL;
    764       1.1  augustss 	}
    765       1.1  augustss 
    766       1.1  augustss 	if (err)
    767       1.1  augustss 		ifp->if_oerrors++;
    768       1.1  augustss 	else
    769       1.1  augustss 		ifp->if_opackets++;
    770       1.1  augustss 
    771       1.1  augustss 	if (IFQ_IS_EMPTY(&ifp->if_snd) == 0)
    772       1.1  augustss 		cdce_start(ifp);
    773       1.1  augustss 
    774       1.1  augustss 	splx(s);
    775       1.1  augustss }
    776       1.1  augustss 
    777       1.4  augustss int
    778      1.23    dyoung cdce_activate(device_t self, enum devact act)
    779       1.1  augustss {
    780      1.16      cube 	struct cdce_softc *sc = device_private(self);
    781       1.1  augustss 
    782       1.1  augustss 	switch (act) {
    783       1.1  augustss 	case DVACT_DEACTIVATE:
    784       1.1  augustss 		if_deactivate(GET_IFP(sc));
    785       1.1  augustss 		sc->cdce_dying = 1;
    786      1.26    dyoung 		return 0;
    787      1.26    dyoung 	default:
    788      1.26    dyoung 		return EOPNOTSUPP;
    789       1.1  augustss 	}
    790       1.1  augustss }
    791