Home | History | Annotate | Line # | Download | only in ic
smc91cxx.c revision 1.25
      1  1.25     jhawk /*	$NetBSD: smc91cxx.c,v 1.25 2000/05/29 17:37:14 jhawk Exp $	*/
      2   1.2   thorpej 
      3   1.2   thorpej /*-
      4   1.2   thorpej  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      5   1.2   thorpej  * All rights reserved.
      6   1.2   thorpej  *
      7   1.2   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.2   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9   1.2   thorpej  * NASA Ames Research Center.
     10   1.2   thorpej  *
     11   1.2   thorpej  * Redistribution and use in source and binary forms, with or without
     12   1.2   thorpej  * modification, are permitted provided that the following conditions
     13   1.2   thorpej  * are met:
     14   1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     15   1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     16   1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18   1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     19   1.2   thorpej  * 3. All advertising materials mentioning features or use of this software
     20   1.2   thorpej  *    must display the following acknowledgement:
     21   1.2   thorpej  *	This product includes software developed by the NetBSD
     22   1.2   thorpej  *	Foundation, Inc. and its contributors.
     23   1.2   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24   1.2   thorpej  *    contributors may be used to endorse or promote products derived
     25   1.2   thorpej  *    from this software without specific prior written permission.
     26   1.2   thorpej  *
     27   1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28   1.2   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29   1.2   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30   1.3       jtc  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31   1.3       jtc  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32   1.2   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33   1.2   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34   1.2   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35   1.2   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36   1.2   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37   1.2   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38   1.2   thorpej  */
     39   1.2   thorpej 
     40   1.2   thorpej /*
     41   1.2   thorpej  * Copyright (c) 1996 Gardner Buchanan <gbuchanan (at) shl.com>
     42   1.2   thorpej  * All rights reserved.
     43   1.2   thorpej  *
     44   1.2   thorpej  * Redistribution and use in source and binary forms, with or without
     45   1.2   thorpej  * modification, are permitted provided that the following conditions
     46   1.2   thorpej  * are met:
     47   1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     48   1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     49   1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     50   1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     51   1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     52   1.2   thorpej  * 3. All advertising materials mentioning features or use of this software
     53   1.2   thorpej  *    must display the following acknowledgement:
     54   1.2   thorpej  *	This product includes software developed by Gardner Buchanan.
     55   1.2   thorpej  * 4. The name of Gardner Buchanan may not be used to endorse or promote
     56   1.2   thorpej  *    products derived from this software without specific prior written
     57   1.2   thorpej  *    permission.
     58   1.2   thorpej  *
     59   1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     60   1.2   thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     61   1.2   thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     62   1.2   thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     63   1.2   thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     64   1.2   thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     65   1.2   thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     66   1.2   thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     67   1.2   thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     68   1.2   thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     69   1.2   thorpej  *
     70   1.2   thorpej  *   from FreeBSD Id: if_sn.c,v 1.4 1996/03/18 15:47:16 gardner Exp
     71   1.2   thorpej  */
     72   1.2   thorpej 
     73   1.2   thorpej /*
     74   1.2   thorpej  * Core driver for the SMC 91Cxx family of Ethernet chips.
     75   1.2   thorpej  *
     76   1.2   thorpej  * Memory allocation interrupt logic is drived from an SMC 91C90 driver
     77   1.2   thorpej  * written for NetBSD/amiga by Michael Hitch.
     78   1.2   thorpej  */
     79   1.2   thorpej 
     80   1.7  jonathan #include "opt_inet.h"
     81   1.8  jonathan #include "opt_ccitt.h"
     82   1.9  jonathan #include "opt_llc.h"
     83  1.10  jonathan #include "opt_ns.h"
     84   1.2   thorpej #include "bpfilter.h"
     85   1.5  explorer #include "rnd.h"
     86   1.2   thorpej 
     87   1.2   thorpej #include <sys/param.h>
     88   1.2   thorpej #include <sys/systm.h>
     89   1.2   thorpej #include <sys/mbuf.h>
     90   1.2   thorpej #include <sys/syslog.h>
     91   1.2   thorpej #include <sys/socket.h>
     92   1.2   thorpej #include <sys/device.h>
     93   1.2   thorpej #include <sys/malloc.h>
     94   1.2   thorpej #include <sys/ioctl.h>
     95   1.2   thorpej #include <sys/errno.h>
     96   1.5  explorer #if NRND > 0
     97   1.5  explorer #include <sys/rnd.h>
     98   1.5  explorer #endif
     99   1.2   thorpej 
    100   1.2   thorpej #include <machine/bus.h>
    101   1.2   thorpej #include <machine/intr.h>
    102   1.2   thorpej 
    103   1.2   thorpej #include <net/if.h>
    104   1.2   thorpej #include <net/if_dl.h>
    105   1.2   thorpej #include <net/if_ether.h>
    106   1.2   thorpej #include <net/if_media.h>
    107   1.2   thorpej 
    108   1.2   thorpej #ifdef INET
    109   1.2   thorpej #include <netinet/in.h>
    110   1.2   thorpej #include <netinet/if_inarp.h>
    111   1.2   thorpej #include <netinet/in_systm.h>
    112   1.2   thorpej #include <netinet/in_var.h>
    113   1.2   thorpej #include <netinet/ip.h>
    114   1.2   thorpej #endif
    115   1.2   thorpej 
    116   1.2   thorpej #ifdef NS
    117   1.2   thorpej #include <netns/ns.h>
    118   1.2   thorpej #include <netns/ns_if.h>
    119   1.2   thorpej #endif
    120   1.2   thorpej 
    121   1.2   thorpej #if defined(CCITT) && defined(LLC)
    122   1.2   thorpej #include <sys/socketvar.h>
    123   1.2   thorpej #include <netccitt/x25.h>
    124   1.2   thorpej #include <netccitt/pk.h>
    125   1.2   thorpej #include <netccitt/pk_var.h>
    126   1.2   thorpej #include <netccitt/pk_extern.h>
    127   1.2   thorpej #endif
    128   1.2   thorpej 
    129   1.2   thorpej #if NBPFILTER > 0
    130   1.2   thorpej #include <net/bpf.h>
    131   1.2   thorpej #include <net/bpfdesc.h>
    132   1.2   thorpej #endif
    133   1.2   thorpej 
    134   1.2   thorpej #include <dev/ic/smc91cxxreg.h>
    135   1.2   thorpej #include <dev/ic/smc91cxxvar.h>
    136   1.2   thorpej 
    137   1.2   thorpej /* XXX Hardware padding doesn't work yet(?) */
    138   1.2   thorpej #define	SMC91CXX_SW_PAD
    139   1.2   thorpej 
    140   1.2   thorpej const char *smc91cxx_idstrs[] = {
    141   1.2   thorpej 	NULL,				/* 0 */
    142   1.2   thorpej 	NULL,				/* 1 */
    143   1.2   thorpej 	NULL,				/* 2 */
    144   1.2   thorpej 	"SMC91C90/91C92",		/* 3 */
    145   1.2   thorpej 	"SMC91C94",			/* 4 */
    146   1.2   thorpej 	"SMC91C95",			/* 5 */
    147   1.2   thorpej 	NULL,				/* 6 */
    148   1.2   thorpej 	"SMC91C100",			/* 7 */
    149   1.2   thorpej 	NULL,				/* 8 */
    150   1.2   thorpej 	NULL,				/* 9 */
    151   1.2   thorpej 	NULL,				/* 10 */
    152   1.2   thorpej 	NULL,				/* 11 */
    153   1.2   thorpej 	NULL,				/* 12 */
    154   1.2   thorpej 	NULL,				/* 13 */
    155   1.2   thorpej 	NULL,				/* 14 */
    156   1.2   thorpej 	NULL,				/* 15 */
    157   1.2   thorpej };
    158   1.2   thorpej 
    159   1.2   thorpej /* Supported media types. */
    160   1.2   thorpej const int smc91cxx_media[] = {
    161   1.2   thorpej 	IFM_ETHER|IFM_10_T,
    162   1.2   thorpej 	IFM_ETHER|IFM_10_5,
    163   1.2   thorpej };
    164   1.2   thorpej #define	NSMC91CxxMEDIA	(sizeof(smc91cxx_media) / sizeof(smc91cxx_media[0]))
    165   1.2   thorpej 
    166   1.2   thorpej int	smc91cxx_mediachange __P((struct ifnet *));
    167   1.2   thorpej void	smc91cxx_mediastatus __P((struct ifnet *, struct ifmediareq *));
    168   1.2   thorpej 
    169   1.2   thorpej int	smc91cxx_set_media __P((struct smc91cxx_softc *, int));
    170   1.2   thorpej 
    171   1.2   thorpej void	smc91cxx_init __P((struct smc91cxx_softc *));
    172   1.2   thorpej void	smc91cxx_read __P((struct smc91cxx_softc *));
    173   1.2   thorpej void	smc91cxx_reset __P((struct smc91cxx_softc *));
    174   1.2   thorpej void	smc91cxx_start __P((struct ifnet *));
    175   1.2   thorpej void	smc91cxx_resume __P((struct smc91cxx_softc *));
    176   1.2   thorpej void	smc91cxx_stop __P((struct smc91cxx_softc *));
    177   1.2   thorpej void	smc91cxx_watchdog __P((struct ifnet *));
    178   1.2   thorpej int	smc91cxx_ioctl __P((struct ifnet *, u_long, caddr_t));
    179   1.2   thorpej 
    180   1.2   thorpej static __inline int ether_cmp __P((void *, void *));
    181   1.2   thorpej static __inline int
    182   1.2   thorpej ether_cmp(va, vb)
    183   1.2   thorpej 	void *va, *vb;
    184   1.2   thorpej {
    185   1.2   thorpej 	u_int8_t *a = va;
    186   1.2   thorpej 	u_int8_t *b = vb;
    187   1.2   thorpej 
    188   1.2   thorpej 	return ((a[5] != b[5]) || (a[4] != b[4]) || (a[3] != b[3]) ||
    189   1.2   thorpej 		(a[2] != b[2]) || (a[1] != b[1]) || (a[0] != b[0]));
    190   1.2   thorpej }
    191   1.2   thorpej 
    192   1.2   thorpej void
    193   1.2   thorpej smc91cxx_attach(sc, myea)
    194   1.2   thorpej 	struct smc91cxx_softc *sc;
    195   1.2   thorpej 	u_int8_t *myea;
    196   1.2   thorpej {
    197   1.2   thorpej 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    198   1.2   thorpej 	bus_space_tag_t bst = sc->sc_bst;
    199   1.2   thorpej 	bus_space_handle_t bsh = sc->sc_bsh;
    200   1.2   thorpej 	const char *idstr;
    201   1.2   thorpej 	u_int16_t tmp;
    202   1.2   thorpej 	u_int8_t enaddr[ETHER_ADDR_LEN];
    203   1.2   thorpej 	int i, aui;
    204   1.2   thorpej 
    205   1.2   thorpej 	/* Make sure the chip is stopped. */
    206   1.2   thorpej 	smc91cxx_stop(sc);
    207   1.2   thorpej 
    208   1.2   thorpej 	SMC_SELECT_BANK(sc, 3);
    209   1.2   thorpej 	tmp = bus_space_read_2(bst, bsh, REVISION_REG_W);
    210  1.20   thorpej 	/* check magic number */
    211  1.20   thorpej 	if ((tmp & BSR_DETECT_MASK) != BSR_DETECT_VALUE) {
    212  1.20   thorpej 		idstr = NULL;
    213  1.20   thorpej 		printf("%s: invalid BSR 0x%04x\n", sc->sc_dev.dv_xname, tmp);
    214  1.20   thorpej 	} else
    215  1.20   thorpej 		idstr = smc91cxx_idstrs[RR_ID(tmp)];
    216   1.2   thorpej 	printf("%s: ", sc->sc_dev.dv_xname);
    217   1.2   thorpej 	if (idstr != NULL)
    218   1.2   thorpej 		printf("%s, ", idstr);
    219   1.2   thorpej 	else
    220   1.2   thorpej 		printf("unknown chip id %d, ", RR_ID(tmp));
    221   1.2   thorpej 	printf("revision %d\n", RR_REV(tmp));
    222   1.2   thorpej 
    223   1.2   thorpej 	/* Read the station address from the chip. */
    224   1.2   thorpej 	SMC_SELECT_BANK(sc, 1);
    225   1.2   thorpej 	if (myea == NULL) {
    226   1.2   thorpej 		myea = enaddr;
    227   1.2   thorpej 		for (i = 0; i < ETHER_ADDR_LEN; i += 2) {
    228   1.2   thorpej 			tmp = bus_space_read_2(bst, bsh, IAR_ADDR0_REG_W + i);
    229   1.2   thorpej 			myea[i + 1] = (tmp >> 8) & 0xff;
    230   1.2   thorpej 			myea[i] = tmp & 0xff;
    231   1.2   thorpej 		}
    232   1.2   thorpej 	}
    233   1.2   thorpej 	printf("%s: MAC address %s, ", sc->sc_dev.dv_xname,
    234   1.2   thorpej 	    ether_sprintf(myea));
    235   1.2   thorpej 
    236   1.2   thorpej 	/* ..and default media. */
    237   1.2   thorpej 	tmp = bus_space_read_2(bst, bsh, CONFIG_REG_W);
    238   1.2   thorpej 	printf("default media %s\n", (aui = (tmp & CR_AUI_SELECT)) ?
    239   1.2   thorpej 	    "AUI" : "UTP");
    240   1.2   thorpej 
    241   1.2   thorpej 	/* Initialize the ifnet structure. */
    242   1.2   thorpej 	bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
    243   1.2   thorpej 	ifp->if_softc = sc;
    244   1.2   thorpej 	ifp->if_start = smc91cxx_start;
    245   1.2   thorpej 	ifp->if_ioctl = smc91cxx_ioctl;
    246   1.2   thorpej 	ifp->if_watchdog = smc91cxx_watchdog;
    247   1.2   thorpej 	ifp->if_flags =
    248   1.2   thorpej 	    IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST;
    249   1.2   thorpej 
    250   1.2   thorpej 	/* Attach the interface. */
    251   1.2   thorpej 	if_attach(ifp);
    252   1.2   thorpej 	ether_ifattach(ifp, myea);
    253   1.2   thorpej 
    254   1.2   thorpej 	/* Initialize the media structures. */
    255   1.2   thorpej 	ifmedia_init(&sc->sc_media, 0, smc91cxx_mediachange,
    256   1.2   thorpej 	    smc91cxx_mediastatus);
    257   1.2   thorpej 	for (i = 0; i < NSMC91CxxMEDIA; i++)
    258   1.2   thorpej 		ifmedia_add(&sc->sc_media, smc91cxx_media[i], 0, NULL);
    259   1.2   thorpej 	ifmedia_set(&sc->sc_media, IFM_ETHER | (aui ? IFM_10_5 : IFM_10_T));
    260   1.2   thorpej 
    261   1.2   thorpej #if NBPFILTER > 0
    262   1.2   thorpej 	bpfattach(&ifp->if_bpf, ifp, DLT_EN10MB, sizeof(struct ether_header));
    263   1.2   thorpej #endif
    264   1.5  explorer 
    265   1.5  explorer #if NRND > 0
    266  1.15  explorer 	rnd_attach_source(&sc->rnd_source, sc->sc_dev.dv_xname,
    267  1.15  explorer 			  RND_TYPE_NET, 0);
    268   1.5  explorer #endif
    269  1.25     jhawk 
    270  1.25     jhawk 	/* The attach is successful. */
    271  1.25     jhawk 	sc->sc_flags |= SMC_FLAGS_ATTACHED;
    272   1.2   thorpej }
    273   1.2   thorpej 
    274   1.2   thorpej /*
    275   1.2   thorpej  * Change media according to request.
    276   1.2   thorpej  */
    277   1.2   thorpej int
    278   1.2   thorpej smc91cxx_mediachange(ifp)
    279   1.2   thorpej 	struct ifnet *ifp;
    280   1.2   thorpej {
    281   1.2   thorpej 	struct smc91cxx_softc *sc = ifp->if_softc;
    282   1.2   thorpej 
    283   1.2   thorpej 	return (smc91cxx_set_media(sc, sc->sc_media.ifm_media));
    284   1.2   thorpej }
    285   1.2   thorpej 
    286   1.2   thorpej int
    287   1.2   thorpej smc91cxx_set_media(sc, media)
    288   1.2   thorpej 	struct smc91cxx_softc *sc;
    289   1.2   thorpej 	int media;
    290   1.2   thorpej {
    291   1.2   thorpej 	bus_space_tag_t bst = sc->sc_bst;
    292   1.2   thorpej 	bus_space_handle_t bsh = sc->sc_bsh;
    293   1.2   thorpej 	u_int16_t tmp;
    294   1.2   thorpej 
    295   1.4   thorpej 	/*
    296   1.4   thorpej 	 * If the interface is not currently powered on, just return.
    297   1.4   thorpej 	 * When it is enabled later, smc91cxx_init() will properly set
    298   1.4   thorpej 	 * up the media for us.
    299   1.4   thorpej 	 */
    300  1.25     jhawk 	if ((sc->sc_flags & SMC_FLAGS_ENABLED) == 0)
    301   1.4   thorpej 		return (0);
    302   1.4   thorpej 
    303   1.2   thorpej 	if (IFM_TYPE(media) != IFM_ETHER)
    304   1.2   thorpej 		return (EINVAL);
    305   1.2   thorpej 
    306   1.2   thorpej 	switch (IFM_SUBTYPE(media)) {
    307   1.2   thorpej 	case IFM_10_T:
    308   1.2   thorpej 	case IFM_10_5:
    309   1.2   thorpej 		SMC_SELECT_BANK(sc, 1);
    310   1.2   thorpej 		tmp = bus_space_read_2(bst, bsh, CONFIG_REG_W);
    311   1.2   thorpej 		if (IFM_SUBTYPE(media) == IFM_10_5)
    312   1.2   thorpej 			tmp |= CR_AUI_SELECT;
    313   1.2   thorpej 		else
    314   1.2   thorpej 			tmp &= ~CR_AUI_SELECT;
    315   1.2   thorpej 		bus_space_write_2(bst, bsh, CONFIG_REG_W, tmp);
    316   1.2   thorpej 		delay(20000);	/* XXX is this needed? */
    317   1.2   thorpej 		break;
    318   1.2   thorpej 
    319   1.2   thorpej 	default:
    320   1.2   thorpej 		return (EINVAL);
    321   1.2   thorpej 	}
    322   1.2   thorpej 
    323   1.2   thorpej 	return (0);
    324   1.2   thorpej }
    325   1.2   thorpej 
    326   1.2   thorpej /*
    327   1.2   thorpej  * Notify the world which media we're using.
    328   1.2   thorpej  */
    329   1.2   thorpej void
    330   1.2   thorpej smc91cxx_mediastatus(ifp, ifmr)
    331   1.2   thorpej 	struct ifnet *ifp;
    332   1.2   thorpej 	struct ifmediareq *ifmr;
    333   1.2   thorpej {
    334   1.2   thorpej 	struct smc91cxx_softc *sc = ifp->if_softc;
    335   1.2   thorpej 	bus_space_tag_t bst = sc->sc_bst;
    336   1.2   thorpej 	bus_space_handle_t bsh = sc->sc_bsh;
    337   1.2   thorpej 	u_int16_t tmp;
    338   1.2   thorpej 
    339  1.25     jhawk 	if ((sc->sc_flags & SMC_FLAGS_ENABLED) == 0) {
    340   1.4   thorpej 		ifmr->ifm_active = IFM_ETHER | IFM_NONE;
    341   1.4   thorpej 		ifmr->ifm_status = 0;
    342   1.4   thorpej 		return;
    343   1.4   thorpej 	}
    344   1.4   thorpej 
    345   1.2   thorpej 	SMC_SELECT_BANK(sc, 1);
    346   1.2   thorpej 	tmp = bus_space_read_2(bst, bsh, CONFIG_REG_W);
    347   1.2   thorpej 	ifmr->ifm_active =
    348   1.2   thorpej 	    IFM_ETHER | ((tmp & CR_AUI_SELECT) ? IFM_10_5 : IFM_10_T);
    349   1.2   thorpej }
    350   1.2   thorpej 
    351   1.2   thorpej /*
    352   1.2   thorpej  * Reset and initialize the chip.
    353   1.2   thorpej  */
    354   1.2   thorpej void
    355   1.2   thorpej smc91cxx_init(sc)
    356   1.2   thorpej 	struct smc91cxx_softc *sc;
    357   1.2   thorpej {
    358   1.2   thorpej 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    359   1.2   thorpej 	bus_space_tag_t bst = sc->sc_bst;
    360   1.2   thorpej 	bus_space_handle_t bsh = sc->sc_bsh;
    361   1.2   thorpej 	u_int16_t tmp;
    362   1.2   thorpej 	u_int8_t *enaddr;
    363   1.2   thorpej 	int s, i;
    364   1.2   thorpej 
    365  1.11   mycroft 	s = splnet();
    366   1.2   thorpej 
    367   1.2   thorpej 	/*
    368   1.2   thorpej 	 * This resets the registersmostly to defaults, but doesn't
    369   1.2   thorpej 	 * affect the EEPROM.  After the reset cycle, we pause briefly
    370   1.2   thorpej 	 * for the chip to recover.
    371   1.2   thorpej 	 *
    372   1.2   thorpej 	 * XXX how long are we really supposed to delay?  --thorpej
    373   1.2   thorpej 	 */
    374   1.2   thorpej 	SMC_SELECT_BANK(sc, 0);
    375   1.2   thorpej 	bus_space_write_2(bst, bsh, RECV_CONTROL_REG_W, RCR_SOFTRESET);
    376   1.2   thorpej 	delay(100);
    377   1.2   thorpej 	bus_space_write_2(bst, bsh, RECV_CONTROL_REG_W, 0);
    378   1.2   thorpej 	delay(200);
    379   1.2   thorpej 
    380   1.2   thorpej 	bus_space_write_2(bst, bsh, TXMIT_CONTROL_REG_W, 0);
    381   1.2   thorpej 
    382   1.2   thorpej 	/* Set the Ethernet address. */
    383   1.2   thorpej 	SMC_SELECT_BANK(sc, 1);
    384   1.2   thorpej 	enaddr = (u_int8_t *)LLADDR(ifp->if_sadl);
    385   1.2   thorpej 	for (i = 0; i < ETHER_ADDR_LEN; i += 2) {
    386   1.2   thorpej 		tmp = enaddr[i + 1] << 8 | enaddr[i];
    387   1.2   thorpej 		bus_space_write_2(bst, bsh, IAR_ADDR0_REG_W + i, tmp);
    388   1.2   thorpej 	}
    389   1.2   thorpej 
    390   1.2   thorpej 	/*
    391   1.2   thorpej 	 * Set the control register to automatically release successfully
    392   1.2   thorpej 	 * transmitted packets (making the best use of our limited memory)
    393   1.2   thorpej 	 * and enable the EPH interrupt on certain TX errors.
    394   1.2   thorpej 	 */
    395   1.2   thorpej 	bus_space_write_2(bst, bsh, CONTROL_REG_W, (CTR_AUTO_RELEASE |
    396   1.2   thorpej 	    CTR_TE_ENABLE | CTR_CR_ENABLE | CTR_LE_ENABLE));
    397   1.2   thorpej 
    398   1.2   thorpej 	/*
    399   1.2   thorpej 	 * Reset the MMU and wait for it to be un-busy.
    400   1.2   thorpej 	 */
    401   1.2   thorpej 	SMC_SELECT_BANK(sc, 2);
    402   1.2   thorpej 	bus_space_write_2(bst, bsh, MMU_CMD_REG_W, MMUCR_RESET);
    403   1.2   thorpej 	while (bus_space_read_2(bst, bsh, MMU_CMD_REG_W) & MMUCR_BUSY)
    404   1.2   thorpej 		/* XXX bound this loop! */ ;
    405   1.2   thorpej 
    406   1.2   thorpej 	/*
    407   1.2   thorpej 	 * Disable all interrupts.
    408   1.2   thorpej 	 */
    409   1.2   thorpej 	bus_space_write_1(bst, bsh, INTR_MASK_REG_B, 0);
    410   1.2   thorpej 
    411   1.2   thorpej 	/*
    412   1.2   thorpej 	 * Set current media.
    413   1.2   thorpej 	 */
    414   1.2   thorpej 	smc91cxx_set_media(sc, sc->sc_media.ifm_cur->ifm_media);
    415   1.2   thorpej 
    416   1.2   thorpej 	/*
    417   1.2   thorpej 	 * Set the receive filter.  We want receive enable and auto
    418   1.2   thorpej 	 * strip of CRC from received packet.  If we are in promisc. mode,
    419   1.2   thorpej 	 * then set that bit as well.
    420   1.2   thorpej 	 *
    421   1.2   thorpej 	 * XXX Initialize multicast filter.  For now, we just accept
    422   1.2   thorpej 	 * XXX all multicast.
    423   1.2   thorpej 	 */
    424   1.2   thorpej 	SMC_SELECT_BANK(sc, 0);
    425   1.2   thorpej 
    426   1.2   thorpej 	tmp = RCR_ENABLE | RCR_STRIP_CRC | RCR_ALMUL;
    427   1.2   thorpej 	if (ifp->if_flags & IFF_PROMISC)
    428   1.2   thorpej 		tmp |= RCR_PROMISC;
    429   1.2   thorpej 
    430   1.2   thorpej 	bus_space_write_2(bst, bsh, RECV_CONTROL_REG_W, tmp);
    431   1.2   thorpej 
    432   1.2   thorpej 	/*
    433   1.2   thorpej 	 * Set transmitter control to "enabled".
    434   1.2   thorpej 	 */
    435   1.2   thorpej 	tmp = TCR_ENABLE;
    436   1.2   thorpej 
    437   1.2   thorpej #ifndef SMC91CXX_SW_PAD
    438   1.2   thorpej 	/*
    439   1.2   thorpej 	 * Enable hardware padding of transmitted packets.
    440   1.2   thorpej 	 * XXX doesn't work?
    441   1.2   thorpej 	 */
    442   1.2   thorpej 	tmp |= TCR_PAD_ENABLE;
    443   1.2   thorpej #endif
    444   1.2   thorpej 
    445   1.2   thorpej 	bus_space_write_2(bst, bsh, TXMIT_CONTROL_REG_W, tmp);
    446   1.2   thorpej 
    447   1.2   thorpej 	/*
    448   1.2   thorpej 	 * Now, enable interrupts.
    449   1.2   thorpej 	 */
    450   1.2   thorpej 	SMC_SELECT_BANK(sc, 2);
    451   1.2   thorpej 
    452   1.2   thorpej 	bus_space_write_1(bst, bsh, INTR_MASK_REG_B,
    453   1.2   thorpej 	    IM_EPH_INT | IM_RX_OVRN_INT | IM_RCV_INT | IM_TX_INT);
    454   1.2   thorpej 
    455   1.2   thorpej 	/* Interface is now running, with no output active. */
    456   1.2   thorpej 	ifp->if_flags |= IFF_RUNNING;
    457   1.2   thorpej 	ifp->if_flags &= ~IFF_OACTIVE;
    458   1.2   thorpej 
    459   1.2   thorpej 	/*
    460   1.2   thorpej 	 * Attempt to start any pending transmission.
    461   1.2   thorpej 	 */
    462   1.2   thorpej 	smc91cxx_start(ifp);
    463   1.2   thorpej 
    464   1.2   thorpej 	splx(s);
    465   1.2   thorpej }
    466   1.2   thorpej 
    467   1.2   thorpej /*
    468   1.2   thorpej  * Start output on an interface.
    469  1.11   mycroft  * Must be called at splnet or interrupt level.
    470   1.2   thorpej  */
    471   1.2   thorpej void
    472   1.2   thorpej smc91cxx_start(ifp)
    473   1.2   thorpej 	struct ifnet *ifp;
    474   1.2   thorpej {
    475   1.2   thorpej 	struct smc91cxx_softc *sc = ifp->if_softc;
    476   1.2   thorpej 	bus_space_tag_t bst = sc->sc_bst;
    477   1.2   thorpej 	bus_space_handle_t bsh = sc->sc_bsh;
    478   1.2   thorpej 	u_int len;
    479   1.2   thorpej 	struct mbuf *m, *top;
    480   1.2   thorpej 	u_int16_t length, npages;
    481   1.2   thorpej 	u_int8_t packetno;
    482   1.2   thorpej 	int timo, pad;
    483   1.2   thorpej 
    484   1.2   thorpej 	if ((ifp->if_flags & (IFF_RUNNING|IFF_OACTIVE)) != IFF_RUNNING)
    485   1.2   thorpej 		return;
    486   1.2   thorpej 
    487   1.2   thorpej  again:
    488   1.2   thorpej 	/*
    489   1.2   thorpej 	 * Peek at the next packet.
    490   1.2   thorpej 	 */
    491   1.2   thorpej 	if ((m = ifp->if_snd.ifq_head) == NULL)
    492   1.2   thorpej 		return;
    493   1.2   thorpej 
    494   1.2   thorpej 	/*
    495   1.2   thorpej 	 * Compute the frame length and set pad to give an overall even
    496   1.2   thorpej 	 * number of bytes.  Below, we assume that the packet length
    497   1.2   thorpej 	 * is even.
    498   1.2   thorpej 	 */
    499   1.2   thorpej 	for (len = 0, top = m; m != NULL; m = m->m_next)
    500   1.2   thorpej 		len += m->m_len;
    501   1.2   thorpej 	pad = (len & 1);
    502   1.2   thorpej 
    503   1.2   thorpej 	/*
    504   1.2   thorpej 	 * We drop packets that are too large.  Perhaps we should
    505   1.2   thorpej 	 * truncate them instead?
    506   1.2   thorpej 	 */
    507   1.2   thorpej 	if ((len + pad) > (ETHER_MAX_LEN - ETHER_CRC_LEN)) {
    508   1.2   thorpej 		printf("%s: large packet discarded\n", sc->sc_dev.dv_xname);
    509   1.2   thorpej 		ifp->if_oerrors++;
    510   1.2   thorpej 		IF_DEQUEUE(&ifp->if_snd, m);
    511   1.2   thorpej 		m_freem(m);
    512   1.2   thorpej 		goto readcheck;
    513   1.2   thorpej 	}
    514   1.2   thorpej 
    515   1.2   thorpej #ifdef SMC91CXX_SW_PAD
    516   1.2   thorpej 	/*
    517   1.2   thorpej 	 * Not using hardware padding; pad to ETHER_MIN_LEN.
    518   1.2   thorpej 	 */
    519   1.2   thorpej 	if (len < (ETHER_MIN_LEN - ETHER_CRC_LEN))
    520   1.2   thorpej 		pad = ETHER_MIN_LEN - ETHER_CRC_LEN - len;
    521   1.2   thorpej #endif
    522   1.2   thorpej 
    523   1.2   thorpej 	length = pad + len;
    524   1.2   thorpej 
    525   1.2   thorpej 	/*
    526   1.2   thorpej 	 * The MMU has a 256 byte page size.  The MMU expects us to
    527   1.2   thorpej 	 * ask for "npages - 1".  We include space for the status word,
    528   1.2   thorpej 	 * byte count, and control bytes in the allocation request.
    529   1.2   thorpej 	 */
    530   1.2   thorpej 	npages = (length + 6) >> 8;
    531   1.2   thorpej 
    532   1.2   thorpej 	/*
    533   1.2   thorpej 	 * Now allocate the memory.
    534   1.2   thorpej 	 */
    535   1.2   thorpej 	SMC_SELECT_BANK(sc, 2);
    536   1.2   thorpej 	bus_space_write_2(bst, bsh, MMU_CMD_REG_W, MMUCR_ALLOC | npages);
    537   1.2   thorpej 
    538   1.2   thorpej 	timo = MEMORY_WAIT_TIME;
    539   1.2   thorpej 	do {
    540   1.2   thorpej 		if (bus_space_read_1(bst, bsh, INTR_STAT_REG_B) & IM_ALLOC_INT)
    541   1.2   thorpej 			break;
    542   1.2   thorpej 		delay(1);
    543   1.2   thorpej 	} while (--timo);
    544   1.2   thorpej 
    545   1.2   thorpej 	packetno = bus_space_read_1(bst, bsh, ALLOC_RESULT_REG_B);
    546   1.2   thorpej 
    547   1.2   thorpej 	if (packetno & ARR_FAILED || timo == 0) {
    548   1.2   thorpej 		/*
    549   1.2   thorpej 		 * No transmit memory is available.  Record the number
    550   1.2   thorpej 		 * of requestd pages and enable the allocation completion
    551   1.2   thorpej 		 * interrupt.  Set up the watchdog timer in case we miss
    552   1.2   thorpej 		 * the interrupt.  Mark the interface as active so that
    553   1.2   thorpej 		 * no one else attempts to transmit while we're allocating
    554   1.2   thorpej 		 * memory.
    555   1.2   thorpej 		 */
    556   1.2   thorpej 		bus_space_write_1(bst, bsh, INTR_MASK_REG_B,
    557   1.2   thorpej 		    bus_space_read_1(bst, bsh, INTR_MASK_REG_B) | IM_ALLOC_INT);
    558   1.2   thorpej 
    559   1.2   thorpej 		ifp->if_timer = 5;
    560   1.2   thorpej 		ifp->if_flags |= IFF_OACTIVE;
    561   1.2   thorpej 
    562   1.2   thorpej 		return;
    563   1.2   thorpej 	}
    564   1.2   thorpej 
    565   1.2   thorpej 	/*
    566   1.2   thorpej 	 * We have a packet number - set the data window.
    567   1.2   thorpej 	 */
    568   1.2   thorpej 	bus_space_write_1(bst, bsh, PACKET_NUM_REG_B, packetno);
    569   1.2   thorpej 
    570   1.2   thorpej 	/*
    571   1.2   thorpej 	 * Point to the beginning of the packet.
    572   1.2   thorpej 	 */
    573   1.2   thorpej 	bus_space_write_2(bst, bsh, POINTER_REG_W, PTR_AUTOINC /* | 0x0000 */);
    574   1.2   thorpej 
    575   1.2   thorpej 	/*
    576   1.2   thorpej 	 * Send the packet length (+6 for stats, length, and control bytes)
    577   1.2   thorpej 	 * and the status word (set to zeros).
    578   1.2   thorpej 	 */
    579   1.2   thorpej 	bus_space_write_2(bst, bsh, DATA_REG_W, 0);
    580   1.2   thorpej 	bus_space_write_1(bst, bsh, DATA_REG_B, (length + 6) & 0xff);
    581   1.2   thorpej 	bus_space_write_1(bst, bsh, DATA_REG_B, ((length + 6) >> 8) & 0xff);
    582   1.2   thorpej 
    583   1.2   thorpej 	/*
    584   1.2   thorpej 	 * Get the packet from the kernel.  This will include the Ethernet
    585   1.2   thorpej 	 * frame header, MAC address, etc.
    586   1.2   thorpej 	 */
    587   1.2   thorpej 	IF_DEQUEUE(&ifp->if_snd, m);
    588   1.2   thorpej 
    589   1.2   thorpej 	/*
    590   1.2   thorpej 	 * Push the packet out to the card.
    591   1.2   thorpej 	 */
    592   1.2   thorpej 	for (top = m; m != NULL; m = m->m_next) {
    593   1.2   thorpej 		/* Words... */
    594   1.2   thorpej 		bus_space_write_multi_2(bst, bsh, DATA_REG_W,
    595   1.2   thorpej 		    mtod(m, u_int16_t *), m->m_len >> 1);
    596   1.2   thorpej 
    597   1.2   thorpej 		/* ...and the remaining byte, if any. */
    598   1.2   thorpej 		if (m->m_len & 1)
    599   1.2   thorpej 			bus_space_write_1(bst, bsh, DATA_REG_B,
    600   1.2   thorpej 			  *(u_int8_t *)(mtod(m, u_int8_t *) + (m->m_len - 1)));
    601   1.2   thorpej 	}
    602   1.2   thorpej 
    603   1.2   thorpej #ifdef SMC91CXX_SW_PAD
    604   1.2   thorpej 	/*
    605   1.2   thorpej 	 * Push out padding.
    606   1.2   thorpej 	 */
    607   1.2   thorpej 	while (pad > 1) {
    608   1.2   thorpej 		bus_space_write_2(bst, bsh, DATA_REG_W, 0);
    609   1.2   thorpej 		pad -= 2;
    610   1.2   thorpej 	}
    611   1.2   thorpej 	if (pad)
    612   1.2   thorpej 		bus_space_write_1(bst, bsh, DATA_REG_B, 0);
    613   1.2   thorpej #endif
    614   1.2   thorpej 
    615   1.2   thorpej 	/*
    616   1.2   thorpej 	 * Push out control byte and unused packet byte.  The control byte
    617   1.2   thorpej 	 * is 0, meaning the packet is even lengthed and no special
    618   1.2   thorpej 	 * CRC handling is necessary.
    619   1.2   thorpej 	 */
    620   1.2   thorpej 	bus_space_write_2(bst, bsh, DATA_REG_W, 0);
    621   1.2   thorpej 
    622   1.2   thorpej 	/*
    623   1.2   thorpej 	 * Enable transmit interrupts and let the chip go.  Set a watchdog
    624   1.2   thorpej 	 * in case we miss the interrupt.
    625   1.2   thorpej 	 */
    626   1.2   thorpej 	bus_space_write_1(bst, bsh, INTR_MASK_REG_B,
    627   1.2   thorpej 	    bus_space_read_1(bst, bsh, INTR_MASK_REG_B) |
    628   1.2   thorpej 	    IM_TX_INT | IM_TX_EMPTY_INT);
    629   1.2   thorpej 
    630   1.2   thorpej 	bus_space_write_2(bst, bsh, MMU_CMD_REG_W, MMUCR_ENQUEUE);
    631   1.2   thorpej 
    632   1.2   thorpej 	ifp->if_timer = 5;
    633   1.2   thorpej 
    634   1.2   thorpej #if NBPFILTER > 0
    635   1.2   thorpej 	/* Hand off a copy to the bpf. */
    636   1.2   thorpej 	if (ifp->if_bpf)
    637   1.2   thorpej 		bpf_mtap(ifp->if_bpf, top);
    638   1.2   thorpej #endif
    639   1.2   thorpej 
    640   1.2   thorpej 	ifp->if_opackets++;
    641   1.2   thorpej 	m_freem(top);
    642   1.2   thorpej 
    643   1.2   thorpej  readcheck:
    644   1.2   thorpej 	/*
    645   1.2   thorpej 	 * Check for incoming pcakets.  We don't want to overflow the small
    646   1.2   thorpej 	 * RX FIFO.  If nothing has arrived, attempt to queue another
    647   1.2   thorpej 	 * transmit packet.
    648   1.2   thorpej 	 */
    649   1.2   thorpej 	if (bus_space_read_2(bst, bsh, FIFO_PORTS_REG_W) & FIFO_REMPTY)
    650   1.2   thorpej 		goto again;
    651   1.2   thorpej }
    652   1.2   thorpej 
    653   1.2   thorpej /*
    654   1.2   thorpej  * Interrupt service routine.
    655   1.2   thorpej  */
    656   1.2   thorpej int
    657   1.2   thorpej smc91cxx_intr(arg)
    658   1.2   thorpej 	void *arg;
    659   1.2   thorpej {
    660   1.2   thorpej 	struct smc91cxx_softc *sc = arg;
    661   1.2   thorpej 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    662   1.2   thorpej 	bus_space_tag_t bst = sc->sc_bst;
    663   1.2   thorpej 	bus_space_handle_t bsh = sc->sc_bsh;
    664   1.2   thorpej 	u_int8_t mask, interrupts, status;
    665   1.2   thorpej 	u_int16_t packetno, tx_status, card_stats;
    666   1.2   thorpej 
    667  1.25     jhawk 	if ((sc->sc_flags & SMC_FLAGS_ENABLED) == 0 ||
    668  1.22    itojun 	    (sc->sc_dev.dv_flags & DVF_ACTIVE) == 0)
    669   1.4   thorpej 		return (0);
    670   1.4   thorpej 
    671   1.2   thorpej 	SMC_SELECT_BANK(sc, 2);
    672   1.2   thorpej 
    673   1.2   thorpej 	/*
    674   1.2   thorpej 	 * Obtain the current interrupt mask.
    675   1.2   thorpej 	 */
    676   1.2   thorpej 	mask = bus_space_read_1(bst, bsh, INTR_MASK_REG_B);
    677   1.2   thorpej 
    678   1.2   thorpej 	/*
    679   1.2   thorpej 	 * Get the set of interrupt which occurred and eliminate any
    680   1.2   thorpej 	 * which are not enabled.
    681   1.2   thorpej 	 */
    682   1.2   thorpej 	interrupts = bus_space_read_1(bst, bsh, INTR_STAT_REG_B);
    683   1.2   thorpej 	status = interrupts & mask;
    684   1.2   thorpej 
    685   1.2   thorpej 	/* Ours? */
    686   1.2   thorpej 	if (status == 0)
    687   1.2   thorpej 		return (0);
    688   1.2   thorpej 
    689   1.2   thorpej 	/*
    690   1.2   thorpej 	 * It's ours; disable all interrupts while we process them.
    691   1.2   thorpej 	 */
    692   1.2   thorpej 	bus_space_write_1(bst, bsh, INTR_MASK_REG_B, 0);
    693   1.2   thorpej 
    694   1.2   thorpej 	/*
    695   1.2   thorpej 	 * Receive overrun interrupts.
    696   1.2   thorpej 	 */
    697   1.2   thorpej 	if (status & IM_RX_OVRN_INT) {
    698   1.2   thorpej 		bus_space_write_1(bst, bsh, INTR_ACK_REG_B, IM_RX_OVRN_INT);
    699   1.2   thorpej 		ifp->if_ierrors++;
    700   1.2   thorpej 	}
    701   1.2   thorpej 
    702   1.2   thorpej 	/*
    703   1.2   thorpej 	 * Receive interrupts.
    704   1.2   thorpej 	 */
    705   1.2   thorpej 	if (status & IM_RCV_INT) {
    706   1.2   thorpej #if 1 /* DIAGNOSTIC */
    707   1.2   thorpej 		packetno = bus_space_read_2(bst, bsh, FIFO_PORTS_REG_W);
    708   1.2   thorpej 		if (packetno & FIFO_REMPTY)
    709   1.2   thorpej 			printf("%s: receive interrupt on empty fifo\n",
    710   1.2   thorpej 			    sc->sc_dev.dv_xname);
    711   1.2   thorpej 		else
    712   1.2   thorpej #endif
    713   1.2   thorpej 		smc91cxx_read(sc);
    714   1.2   thorpej 	}
    715   1.2   thorpej 
    716   1.2   thorpej 	/*
    717   1.2   thorpej 	 * Memory allocation interrupts.
    718   1.2   thorpej 	 */
    719   1.2   thorpej 	if (status & IM_ALLOC_INT) {
    720   1.2   thorpej 		/* Disable this interrupt. */
    721   1.2   thorpej 		mask &= ~IM_ALLOC_INT;
    722   1.2   thorpej 
    723   1.2   thorpej 		/*
    724   1.2   thorpej 		 * Release the just-allocated memory.  We will reallocate
    725   1.2   thorpej 		 * it through the normal start logic.
    726   1.2   thorpej 		 */
    727   1.2   thorpej 		while (bus_space_read_2(bst, bsh, MMU_CMD_REG_W) & MMUCR_BUSY)
    728   1.2   thorpej 			/* XXX bound this loop! */ ;
    729   1.2   thorpej 		bus_space_write_2(bst, bsh, MMU_CMD_REG_W, MMUCR_FREEPKT);
    730   1.2   thorpej 
    731   1.2   thorpej 		ifp->if_flags &= ~IFF_OACTIVE;
    732   1.2   thorpej 		ifp->if_timer = 0;
    733   1.2   thorpej 	}
    734   1.2   thorpej 
    735   1.2   thorpej 	/*
    736   1.2   thorpej 	 * Transmit complete interrupt.  Handle transmission error messages.
    737   1.2   thorpej 	 * This will only be called on error condition because of AUTO RELEASE
    738   1.2   thorpej 	 * mode.
    739   1.2   thorpej 	 */
    740   1.2   thorpej 	if (status & IM_TX_INT) {
    741   1.2   thorpej 		bus_space_write_1(bst, bsh, INTR_ACK_REG_B, IM_TX_INT);
    742   1.2   thorpej 
    743   1.2   thorpej 		packetno = bus_space_read_2(bst, bsh, FIFO_PORTS_REG_W) &
    744   1.2   thorpej 		    FIFO_TX_MASK;
    745   1.2   thorpej 
    746   1.2   thorpej 		/*
    747   1.2   thorpej 		 * Select this as the packet to read from.
    748   1.2   thorpej 		 */
    749   1.2   thorpej 		bus_space_write_1(bst, bsh, PACKET_NUM_REG_B, packetno);
    750   1.2   thorpej 
    751   1.2   thorpej 		/*
    752   1.2   thorpej 		 * Position the pointer to the beginning of the packet.
    753   1.2   thorpej 		 */
    754   1.2   thorpej 		bus_space_write_2(bst, bsh, POINTER_REG_W,
    755   1.2   thorpej 		    PTR_AUTOINC | PTR_READ /* | 0x0000 */);
    756   1.2   thorpej 
    757   1.2   thorpej 		/*
    758   1.2   thorpej 		 * Fetch the TX status word.  This will be a copy of
    759   1.2   thorpej 		 * the EPH_STATUS_REG_W at the time of the transmission
    760   1.2   thorpej 		 * failure.
    761   1.2   thorpej 		 */
    762   1.2   thorpej 		tx_status = bus_space_read_2(bst, bsh, DATA_REG_W);
    763   1.2   thorpej 
    764   1.2   thorpej 		if (tx_status & EPHSR_TX_SUC)
    765   1.2   thorpej 			printf("%s: successful packet caused TX interrupt?!\n",
    766   1.2   thorpej 			    sc->sc_dev.dv_xname);
    767   1.2   thorpej 		else
    768   1.2   thorpej 			ifp->if_oerrors++;
    769   1.2   thorpej 
    770   1.2   thorpej 		if (tx_status & EPHSR_LATCOL)
    771   1.2   thorpej 			ifp->if_collisions++;
    772   1.2   thorpej 
    773   1.2   thorpej 		/*
    774   1.2   thorpej 		 * Some of these errors disable the transmitter; reenable it.
    775   1.2   thorpej 		 */
    776   1.2   thorpej 		SMC_SELECT_BANK(sc, 0);
    777   1.2   thorpej #ifdef SMC91CXX_SW_PAD
    778   1.2   thorpej 		bus_space_write_2(bst, bsh, TXMIT_CONTROL_REG_W, TCR_ENABLE);
    779   1.2   thorpej #else
    780   1.2   thorpej 		bus_space_write_2(bst, bsh, TXMIT_CONTROL_REG_W,
    781   1.2   thorpej 		    TCR_ENABLE | TCR_PAD_ENABLE);
    782   1.2   thorpej #endif
    783   1.2   thorpej 
    784   1.2   thorpej 		/*
    785   1.2   thorpej 		 * Kill the failed packet and wait for the MMU to unbusy.
    786   1.2   thorpej 		 */
    787   1.2   thorpej 		SMC_SELECT_BANK(sc, 2);
    788   1.2   thorpej 		while (bus_space_read_2(bst, bsh, MMU_CMD_REG_W) & MMUCR_BUSY)
    789   1.2   thorpej 			/* XXX bound this loop! */ ;
    790   1.2   thorpej 		bus_space_write_2(bst, bsh, MMU_CMD_REG_W, MMUCR_FREEPKT);
    791   1.2   thorpej 
    792   1.2   thorpej 		ifp->if_timer = 0;
    793   1.2   thorpej 	}
    794   1.2   thorpej 
    795   1.2   thorpej 	/*
    796   1.2   thorpej 	 * Transmit underrun interrupts.  We use this opportunity to
    797   1.2   thorpej 	 * update transmit statistics from the card.
    798   1.2   thorpej 	 */
    799   1.2   thorpej 	if (status & IM_TX_EMPTY_INT) {
    800   1.2   thorpej 		bus_space_write_1(bst, bsh, INTR_ACK_REG_B, IM_TX_EMPTY_INT);
    801   1.2   thorpej 
    802   1.2   thorpej 		/* Disable this interrupt. */
    803   1.2   thorpej 		mask &= ~IM_TX_EMPTY_INT;
    804   1.2   thorpej 
    805   1.2   thorpej 		SMC_SELECT_BANK(sc, 0);
    806   1.2   thorpej 		card_stats = bus_space_read_2(bst, bsh, COUNTER_REG_W);
    807   1.2   thorpej 
    808   1.2   thorpej 		/* Single collisions. */
    809   1.2   thorpej 		ifp->if_collisions += card_stats & ECR_COLN_MASK;
    810   1.2   thorpej 
    811   1.2   thorpej 		/* Multiple collisions. */
    812   1.2   thorpej 		ifp->if_collisions += (card_stats & ECR_MCOLN_MASK) >> 4;
    813   1.2   thorpej 
    814   1.2   thorpej 		SMC_SELECT_BANK(sc, 2);
    815   1.2   thorpej 
    816   1.2   thorpej 		ifp->if_timer = 0;
    817   1.2   thorpej 	}
    818   1.2   thorpej 
    819   1.2   thorpej 	/*
    820   1.2   thorpej 	 * Other errors.  Reset the interface.
    821   1.2   thorpej 	 */
    822   1.2   thorpej 	if (status & IM_EPH_INT) {
    823   1.2   thorpej 		smc91cxx_stop(sc);
    824   1.2   thorpej 		smc91cxx_init(sc);
    825   1.2   thorpej 	}
    826   1.2   thorpej 
    827   1.2   thorpej 	/*
    828   1.2   thorpej 	 * Attempt to queue more packets for transmission.
    829   1.2   thorpej 	 */
    830   1.2   thorpej 	smc91cxx_start(ifp);
    831   1.2   thorpej 
    832   1.2   thorpej 	/*
    833   1.2   thorpej 	 * Reenable the interrupts we wish to receive now that processing
    834   1.2   thorpej 	 * is complete.
    835   1.2   thorpej 	 */
    836   1.2   thorpej 	mask |= bus_space_read_1(bst, bsh, INTR_MASK_REG_B);
    837   1.2   thorpej 	bus_space_write_1(bst, bsh, INTR_MASK_REG_B, mask);
    838   1.5  explorer 
    839   1.5  explorer #if NRND > 0
    840   1.5  explorer 	if (status)
    841   1.5  explorer 		rnd_add_uint32(&sc->rnd_source, status);
    842   1.5  explorer #endif
    843   1.2   thorpej 
    844   1.2   thorpej 	return (1);
    845   1.2   thorpej }
    846   1.2   thorpej 
    847   1.2   thorpej /*
    848   1.2   thorpej  * Read a packet from the card and pass it up to the kernel.
    849   1.2   thorpej  * NOTE!  WE EXPECT TO BE IN REGISTER WINDOW 2!
    850   1.2   thorpej  */
    851   1.2   thorpej void
    852   1.2   thorpej smc91cxx_read(sc)
    853   1.2   thorpej 	struct smc91cxx_softc *sc;
    854   1.2   thorpej {
    855   1.2   thorpej 	struct ifnet *ifp = &sc->sc_ec.ec_if;
    856   1.2   thorpej 	bus_space_tag_t bst = sc->sc_bst;
    857   1.2   thorpej 	bus_space_handle_t bsh = sc->sc_bsh;
    858   1.2   thorpej 	struct ether_header *eh;
    859   1.2   thorpej 	struct mbuf *m;
    860   1.2   thorpej 	u_int16_t status, packetno, packetlen;
    861   1.2   thorpej 	u_int8_t *data;
    862   1.2   thorpej 
    863   1.2   thorpej  again:
    864   1.2   thorpej 	/*
    865   1.2   thorpej 	 * Set data pointer to the beginning of the packet.  Since
    866   1.2   thorpej 	 * PTR_RCV is set, the packet number will be found automatically
    867   1.2   thorpej 	 * in FIFO_PORTS_REG_W, FIFO_RX_MASK.
    868   1.2   thorpej 	 */
    869   1.2   thorpej 	bus_space_write_2(bst, bsh, POINTER_REG_W,
    870   1.2   thorpej 	    PTR_READ | PTR_RCV | PTR_AUTOINC /* | 0x0000 */);
    871   1.2   thorpej 
    872   1.2   thorpej 	/*
    873   1.2   thorpej 	 * First two words are status and packet length.
    874   1.2   thorpej 	 */
    875   1.2   thorpej 	status = bus_space_read_2(bst, bsh, DATA_REG_W);
    876   1.2   thorpej 	packetlen = bus_space_read_2(bst, bsh, DATA_REG_W);
    877   1.2   thorpej 
    878   1.2   thorpej 	/*
    879   1.2   thorpej 	 * The packet length includes 3 extra words: status, length,
    880   1.2   thorpej 	 * and an extra word that includes the control byte.
    881   1.2   thorpej 	 */
    882   1.2   thorpej 	packetlen -= 6;
    883   1.2   thorpej 
    884   1.2   thorpej 	/*
    885   1.2   thorpej 	 * Account for receive errors and discard.
    886   1.2   thorpej 	 */
    887   1.2   thorpej 	if (status & RS_ERRORS) {
    888   1.2   thorpej 		ifp->if_ierrors++;
    889   1.2   thorpej 		goto out;
    890   1.2   thorpej 	}
    891   1.2   thorpej 
    892   1.2   thorpej 	/*
    893   1.2   thorpej 	 * Adjust for odd-length packet.
    894   1.2   thorpej 	 */
    895   1.2   thorpej 	if (status & RS_ODDFRAME)
    896   1.2   thorpej 		packetlen++;
    897   1.2   thorpej 
    898   1.2   thorpej 	/*
    899   1.2   thorpej 	 * Allocate a header mbuf.
    900   1.2   thorpej 	 */
    901   1.2   thorpej 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    902   1.2   thorpej 	if (m == NULL)
    903   1.2   thorpej 		goto out;
    904   1.2   thorpej 
    905   1.2   thorpej 	m->m_pkthdr.rcvif = ifp;
    906   1.2   thorpej 	m->m_pkthdr.len = m->m_len = packetlen;
    907   1.2   thorpej 
    908   1.2   thorpej 	/*
    909   1.2   thorpej 	 * Always put the packet in a cluster.
    910   1.2   thorpej 	 * XXX should chain small mbufs if less than threshold.
    911   1.2   thorpej 	 */
    912   1.2   thorpej 	MCLGET(m, M_DONTWAIT);
    913   1.2   thorpej 	if ((m->m_flags & M_EXT) == 0) {
    914   1.2   thorpej 		m_freem(m);
    915   1.2   thorpej 		ifp->if_ierrors++;
    916   1.2   thorpej 		printf("%s: can't allocate cluster for incoming packet\n",
    917   1.2   thorpej 		    sc->sc_dev.dv_xname);
    918   1.2   thorpej 		goto out;
    919   1.2   thorpej 	}
    920   1.2   thorpej 
    921   1.2   thorpej 	/*
    922   1.2   thorpej 	 * Pull the packet off the interface.
    923   1.2   thorpej 	 */
    924   1.2   thorpej 	eh = mtod(m, struct ether_header *);
    925   1.2   thorpej 	data = mtod(m, u_int8_t *);
    926   1.2   thorpej 	bus_space_read_multi_2(bst, bsh, DATA_REG_W, (u_int16_t *)data,
    927   1.2   thorpej 	    packetlen >> 1);
    928   1.2   thorpej 	if (packetlen & 1) {
    929   1.2   thorpej 		data += packetlen & ~1;
    930   1.2   thorpej 		*data = bus_space_read_1(bst, bsh, DATA_REG_B);
    931   1.2   thorpej 	}
    932   1.2   thorpej 
    933   1.2   thorpej 	ifp->if_ipackets++;
    934   1.2   thorpej 
    935  1.21    itojun 	/*
    936  1.21    itojun 	 * Make sure to behave as IFF_SIMPLEX in all cases.
    937  1.21    itojun 	 * This is to cope with SMC91C92 (Megahertz XJ10BT), which
    938  1.21    itojun 	 * loops back packets to itself on promiscuous mode.
    939  1.21    itojun 	 * (should be ensured by chipset configuration)
    940  1.21    itojun 	 */
    941  1.19    itojun 	if ((ifp->if_flags & IFF_PROMISC) != 0) {
    942  1.19    itojun 		/*
    943  1.23    itojun 		 * Drop packet looped back from myself.
    944  1.19    itojun 		 */
    945  1.23    itojun 		if (ether_cmp(eh->ether_shost, LLADDR(ifp->if_sadl)) == 0) {
    946   1.2   thorpej 			m_freem(m);
    947   1.2   thorpej 			goto out;
    948   1.2   thorpej 		}
    949   1.2   thorpej 	}
    950  1.21    itojun 
    951  1.21    itojun #if NBPFILTER > 0
    952  1.21    itojun 	/*
    953  1.21    itojun 	 * Hand the packet off to bpf listeners.
    954  1.21    itojun 	 */
    955  1.21    itojun 	if (ifp->if_bpf)
    956  1.21    itojun 		bpf_mtap(ifp->if_bpf, m);
    957  1.21    itojun #endif
    958  1.23    itojun 
    959  1.23    itojun 	/*
    960  1.23    itojun 	 * If this is unicast and not for me, drop it.
    961  1.23    itojun 	 */
    962  1.23    itojun 	if ((eh->ether_dhost[0] & 1) == 0 &&	/* !mcast and !bcast */
    963  1.23    itojun 	    ether_cmp(eh->ether_dhost, LLADDR(ifp->if_sadl)) != 0) {
    964  1.23    itojun 		m_freem(m);
    965  1.23    itojun 		goto out;
    966  1.23    itojun 	}
    967   1.2   thorpej 
    968  1.17   thorpej 	m->m_pkthdr.len = m->m_len = packetlen;
    969  1.17   thorpej 	(*ifp->if_input)(ifp, m);
    970   1.2   thorpej 
    971   1.2   thorpej  out:
    972   1.2   thorpej 	/*
    973   1.2   thorpej 	 * Tell the card to free the memory occupied by this packet.
    974   1.2   thorpej 	 */
    975   1.2   thorpej 	while (bus_space_read_2(bst, bsh, MMU_CMD_REG_W) & MMUCR_BUSY)
    976   1.2   thorpej 		/* XXX bound this loop! */ ;
    977   1.2   thorpej 	bus_space_write_2(bst, bsh, MMU_CMD_REG_W, MMUCR_RELEASE);
    978   1.2   thorpej 
    979   1.2   thorpej 	/*
    980   1.2   thorpej 	 * Check for another packet.
    981   1.2   thorpej 	 */
    982   1.2   thorpej 	packetno = bus_space_read_2(bst, bsh, FIFO_PORTS_REG_W);
    983   1.2   thorpej 	if (packetno & FIFO_REMPTY)
    984   1.2   thorpej 		return;
    985   1.2   thorpej 	goto again;
    986   1.2   thorpej }
    987   1.2   thorpej 
    988   1.2   thorpej /*
    989   1.2   thorpej  * Process an ioctl request.
    990   1.2   thorpej  */
    991   1.2   thorpej int
    992   1.2   thorpej smc91cxx_ioctl(ifp, cmd, data)
    993   1.2   thorpej 	struct ifnet *ifp;
    994   1.2   thorpej 	u_long cmd;
    995   1.2   thorpej 	caddr_t data;
    996   1.2   thorpej {
    997   1.2   thorpej 	struct smc91cxx_softc *sc = ifp->if_softc;
    998   1.2   thorpej 	struct ifaddr *ifa = (struct ifaddr *)data;
    999   1.2   thorpej 	struct ifreq *ifr = (struct ifreq *)data;
   1000   1.2   thorpej 	int s, error = 0;
   1001   1.2   thorpej 
   1002  1.11   mycroft 	s = splnet();
   1003   1.2   thorpej 
   1004   1.2   thorpej 	switch (cmd) {
   1005   1.2   thorpej 	case SIOCSIFADDR:
   1006   1.4   thorpej 		if ((error = smc91cxx_enable(sc)) != 0)
   1007   1.4   thorpej 			break;
   1008   1.2   thorpej 		ifp->if_flags |= IFF_UP;
   1009   1.2   thorpej 		switch (ifa->ifa_addr->sa_family) {
   1010   1.2   thorpej #ifdef INET
   1011   1.2   thorpej 		case AF_INET:
   1012   1.2   thorpej 		smc91cxx_init(sc);
   1013   1.2   thorpej 		arp_ifinit(ifp, ifa);
   1014   1.2   thorpej 		break;
   1015   1.2   thorpej #endif
   1016   1.2   thorpej #ifdef NS
   1017   1.2   thorpej 		case AF_NS:
   1018   1.2   thorpej 		    {
   1019   1.2   thorpej 			struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
   1020   1.2   thorpej 
   1021   1.2   thorpej 			if (ns_nullhost(*ina))
   1022   1.2   thorpej 				ina->x_host =
   1023   1.2   thorpej 				    *(union ns_host *)LLADDR(ifp->if_sadl);
   1024   1.2   thorpej 			else {
   1025   1.2   thorpej 				bcopy(ina->x_host.c_host, LLADDR(ifp->if_sadl),
   1026   1.2   thorpej 				    ETHER_ADDR_LEN);
   1027   1.2   thorpej 			}
   1028   1.2   thorpej 
   1029   1.2   thorpej 			/*
   1030   1.2   thorpej 			 * Set new address.  Reset, because the receiver
   1031   1.2   thorpej 			 * has to be stopped before we can set the new
   1032   1.2   thorpej 			 * MAC address.
   1033   1.2   thorpej 			 */
   1034   1.2   thorpej 			smc91cxx_reset(sc);
   1035   1.2   thorpej 			break;
   1036   1.2   thorpej 		    }
   1037   1.2   thorpej #endif
   1038   1.2   thorpej 		default:
   1039   1.2   thorpej 			smc91cxx_init(sc);
   1040   1.2   thorpej 			break;
   1041   1.2   thorpej 		}
   1042   1.2   thorpej 		break;
   1043   1.2   thorpej 
   1044   1.2   thorpej #if defined(CCITT) && defined(LLC)
   1045   1.2   thorpej 	case SIOCSIFCONF_X25:
   1046   1.4   thorpej 		if ((error = smc91cxx_enable(sc)) != 0)
   1047   1.4   thorpej 			break;
   1048   1.2   thorpej 		ifp->if_flags |= IFF_UP;
   1049   1.2   thorpej 		ifa->ifa_rtrequest = cons_rtrequest;	/* XXX */
   1050   1.2   thorpej 		error = x25_llcglue(PRC_IFUP, ifa->ifa_addr);
   1051   1.2   thorpej 		if (error == 0)
   1052   1.2   thorpej 			smc91cxx_init(sc);
   1053   1.2   thorpej 		break;
   1054   1.2   thorpej #endif
   1055   1.2   thorpej 
   1056   1.2   thorpej 	case SIOCSIFFLAGS:
   1057   1.2   thorpej 		if ((ifp->if_flags & IFF_UP) == 0 &&
   1058   1.2   thorpej 		    (ifp->if_flags & IFF_RUNNING) != 0) {
   1059   1.2   thorpej 			/*
   1060   1.2   thorpej 			 * If interface is marked down and it is running,
   1061   1.2   thorpej 			 * stop it.
   1062   1.2   thorpej 			 */
   1063   1.2   thorpej 			smc91cxx_stop(sc);
   1064   1.2   thorpej 			ifp->if_flags &= ~IFF_RUNNING;
   1065   1.4   thorpej 			smc91cxx_disable(sc);
   1066   1.2   thorpej 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
   1067   1.2   thorpej 			   (ifp->if_flags & IFF_RUNNING) == 0) {
   1068   1.2   thorpej 			/*
   1069   1.2   thorpej 			 * If interface is marked up and it is stopped,
   1070   1.2   thorpej 			 * start it.
   1071   1.2   thorpej 			 */
   1072   1.4   thorpej 			if ((error = smc91cxx_enable(sc)) != 0)
   1073   1.4   thorpej 				break;
   1074   1.2   thorpej 			smc91cxx_init(sc);
   1075  1.14   thorpej 		} else if ((ifp->if_flags & IFF_UP) != 0) {
   1076   1.2   thorpej 			/*
   1077   1.2   thorpej 			 * Reset the interface to pick up changes in any
   1078   1.2   thorpej 			 * other flags that affect hardware registers.
   1079   1.2   thorpej 			 */
   1080   1.2   thorpej 			smc91cxx_reset(sc);
   1081   1.2   thorpej 		}
   1082   1.2   thorpej 		break;
   1083   1.2   thorpej 
   1084   1.2   thorpej 	case SIOCADDMULTI:
   1085   1.2   thorpej 	case SIOCDELMULTI:
   1086  1.25     jhawk 		if ((sc->sc_flags & SMC_FLAGS_ENABLED) == 0) {
   1087   1.4   thorpej 			error = EIO;
   1088   1.4   thorpej 			break;
   1089   1.4   thorpej 		}
   1090   1.4   thorpej 
   1091   1.2   thorpej 		error = (cmd == SIOCADDMULTI) ?
   1092   1.2   thorpej 		    ether_addmulti(ifr, &sc->sc_ec) :
   1093   1.2   thorpej 		    ether_delmulti(ifr, &sc->sc_ec);
   1094   1.2   thorpej 		if (error == ENETRESET) {
   1095   1.2   thorpej 			/*
   1096   1.2   thorpej 			 * Multicast list has changed; set the hardware
   1097   1.2   thorpej 			 * filter accordingly.
   1098   1.2   thorpej 			 */
   1099   1.2   thorpej 			smc91cxx_reset(sc);
   1100   1.2   thorpej 			error = 0;
   1101   1.2   thorpej 		}
   1102   1.2   thorpej 		break;
   1103   1.2   thorpej 
   1104   1.2   thorpej 	case SIOCGIFMEDIA:
   1105   1.2   thorpej 	case SIOCSIFMEDIA:
   1106   1.2   thorpej 		error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
   1107   1.2   thorpej 		break;
   1108   1.2   thorpej 
   1109   1.2   thorpej 	default:
   1110   1.2   thorpej 		error = EINVAL;
   1111   1.2   thorpej 		break;
   1112   1.2   thorpej 	}
   1113   1.2   thorpej 
   1114   1.2   thorpej 	splx(s);
   1115   1.2   thorpej 	return (error);
   1116   1.2   thorpej }
   1117   1.2   thorpej 
   1118   1.2   thorpej /*
   1119   1.2   thorpej  * Reset the interface.
   1120   1.2   thorpej  */
   1121   1.2   thorpej void
   1122   1.2   thorpej smc91cxx_reset(sc)
   1123   1.2   thorpej 	struct smc91cxx_softc *sc;
   1124   1.2   thorpej {
   1125   1.2   thorpej 	int s;
   1126   1.2   thorpej 
   1127  1.11   mycroft 	s = splnet();
   1128   1.2   thorpej 	smc91cxx_stop(sc);
   1129   1.2   thorpej 	smc91cxx_init(sc);
   1130   1.2   thorpej 	splx(s);
   1131   1.2   thorpej }
   1132   1.2   thorpej 
   1133   1.2   thorpej /*
   1134   1.2   thorpej  * Watchdog timer.
   1135   1.2   thorpej  */
   1136   1.2   thorpej void
   1137   1.2   thorpej smc91cxx_watchdog(ifp)
   1138   1.2   thorpej 	struct ifnet *ifp;
   1139   1.2   thorpej {
   1140   1.2   thorpej 	struct smc91cxx_softc *sc = ifp->if_softc;
   1141   1.2   thorpej 
   1142   1.2   thorpej 	log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
   1143   1.2   thorpej 	ifp->if_oerrors++;
   1144   1.2   thorpej 	smc91cxx_reset(sc);
   1145   1.2   thorpej }
   1146   1.2   thorpej 
   1147   1.2   thorpej /*
   1148   1.2   thorpej  * Stop output on the interface.
   1149   1.2   thorpej  */
   1150   1.2   thorpej void
   1151   1.2   thorpej smc91cxx_stop(sc)
   1152   1.2   thorpej 	struct smc91cxx_softc *sc;
   1153   1.2   thorpej {
   1154   1.2   thorpej 	bus_space_tag_t bst = sc->sc_bst;
   1155   1.2   thorpej 	bus_space_handle_t bsh = sc->sc_bsh;
   1156   1.2   thorpej 
   1157   1.2   thorpej 	/*
   1158   1.2   thorpej 	 * Clear interrupt mask; disable all interrupts.
   1159   1.2   thorpej 	 */
   1160   1.2   thorpej 	SMC_SELECT_BANK(sc, 2);
   1161   1.2   thorpej 	bus_space_write_1(bst, bsh, INTR_MASK_REG_B, 0);
   1162   1.2   thorpej 
   1163   1.2   thorpej 	/*
   1164   1.2   thorpej 	 * Disable transmitter and receiver.
   1165   1.2   thorpej 	 */
   1166   1.2   thorpej 	SMC_SELECT_BANK(sc, 0);
   1167   1.2   thorpej 	bus_space_write_2(bst, bsh, RECV_CONTROL_REG_W, 0);
   1168   1.2   thorpej 	bus_space_write_2(bst, bsh, TXMIT_CONTROL_REG_W, 0);
   1169   1.2   thorpej 
   1170   1.2   thorpej 	/*
   1171   1.2   thorpej 	 * Cancel watchdog timer.
   1172   1.2   thorpej 	 */
   1173   1.2   thorpej 	sc->sc_ec.ec_if.if_timer = 0;
   1174   1.4   thorpej }
   1175   1.4   thorpej 
   1176   1.4   thorpej /*
   1177   1.4   thorpej  * Enable power on the interface.
   1178   1.4   thorpej  */
   1179   1.4   thorpej int
   1180   1.4   thorpej smc91cxx_enable(sc)
   1181   1.4   thorpej 	struct smc91cxx_softc *sc;
   1182   1.4   thorpej {
   1183   1.4   thorpej 
   1184  1.25     jhawk 	if ((sc->sc_flags & SMC_FLAGS_ENABLED) == 0 && sc->sc_enable != NULL) {
   1185   1.4   thorpej 		if ((*sc->sc_enable)(sc) != 0) {
   1186   1.4   thorpej 			printf("%s: device enable failed\n",
   1187   1.4   thorpej 			    sc->sc_dev.dv_xname);
   1188   1.4   thorpej 			return (EIO);
   1189   1.4   thorpej 		}
   1190   1.4   thorpej 	}
   1191   1.4   thorpej 
   1192  1.25     jhawk 	sc->sc_flags |= SMC_FLAGS_ENABLED;
   1193   1.4   thorpej 	return (0);
   1194   1.4   thorpej }
   1195   1.4   thorpej 
   1196   1.4   thorpej /*
   1197   1.4   thorpej  * Disable power on the interface.
   1198   1.4   thorpej  */
   1199   1.4   thorpej void
   1200   1.4   thorpej smc91cxx_disable(sc)
   1201   1.4   thorpej 	struct smc91cxx_softc *sc;
   1202   1.4   thorpej {
   1203   1.4   thorpej 
   1204  1.25     jhawk 	if ((sc->sc_flags & SMC_FLAGS_ENABLED) != 0 && sc->sc_disable != NULL) {
   1205   1.4   thorpej 		(*sc->sc_disable)(sc);
   1206  1.25     jhawk 		sc->sc_flags &= ~SMC_FLAGS_ENABLED;
   1207   1.4   thorpej 	}
   1208  1.13   thorpej }
   1209  1.13   thorpej 
   1210  1.13   thorpej int
   1211  1.13   thorpej smc91cxx_activate(self, act)
   1212  1.13   thorpej 	struct device *self;
   1213  1.13   thorpej 	enum devact act;
   1214  1.13   thorpej {
   1215  1.13   thorpej 	struct smc91cxx_softc *sc = (struct smc91cxx_softc *)self;
   1216  1.13   thorpej 	int rv = 0, s;
   1217  1.13   thorpej 
   1218  1.13   thorpej 	s = splnet();
   1219  1.13   thorpej 	switch (act) {
   1220  1.13   thorpej 	case DVACT_ACTIVATE:
   1221  1.13   thorpej 		rv = EOPNOTSUPP;
   1222  1.13   thorpej 		break;
   1223  1.13   thorpej 
   1224  1.13   thorpej 	case DVACT_DEACTIVATE:
   1225  1.24     enami 		if_deactivate(&sc->sc_ec.ec_if);
   1226  1.13   thorpej 		break;
   1227  1.13   thorpej 	}
   1228  1.13   thorpej 	splx(s);
   1229  1.13   thorpej 	return (rv);
   1230  1.22    itojun }
   1231  1.22    itojun 
   1232  1.22    itojun int
   1233  1.22    itojun smc91cxx_detach(self, flags)
   1234  1.22    itojun 	struct device *self;
   1235  1.22    itojun 	int flags;
   1236  1.22    itojun {
   1237  1.22    itojun 	struct smc91cxx_softc *sc = (struct smc91cxx_softc *)self;
   1238  1.22    itojun 	struct ifnet *ifp = &sc->sc_ec.ec_if;
   1239  1.22    itojun 
   1240  1.25     jhawk 	/* Succeed now if there's no work to do. */
   1241  1.25     jhawk 	if ((sc->sc_flags & SMC_FLAGS_ATTACHED) == 0)
   1242  1.25     jhawk 		return (0);
   1243  1.25     jhawk 
   1244  1.25     jhawk 
   1245  1.25     jhawk 	/* smc91cxx_disable() checks SMC_FLAGS_ENABLED */
   1246  1.22    itojun 	smc91cxx_disable(sc);
   1247  1.22    itojun 
   1248  1.22    itojun 	/* smc91cxx_attach() never fails */
   1249  1.22    itojun 
   1250  1.22    itojun 	/* Delete all media. */
   1251  1.22    itojun 	ifmedia_delete_instance(&sc->sc_media, IFM_INST_ANY);
   1252  1.22    itojun 
   1253  1.22    itojun #if NRND > 0
   1254  1.22    itojun 	rnd_detach_source(&sc->rnd_source);
   1255  1.22    itojun #endif
   1256  1.22    itojun #if NBPFILTER > 0
   1257  1.22    itojun 	bpfdetach(ifp);
   1258  1.22    itojun #endif
   1259  1.22    itojun 	ether_ifdetach(ifp);
   1260  1.22    itojun 	if_detach(ifp);
   1261  1.22    itojun 
   1262  1.22    itojun 	return (0);
   1263   1.2   thorpej }
   1264