Home | History | Annotate | Line # | Download | only in dev
if_es.c revision 1.34
      1  1.34       wiz /*	$NetBSD: if_es.c,v 1.34 2003/01/28 22:35:04 wiz Exp $ */
      2   1.1    chopps 
      3   1.1    chopps /*
      4   1.1    chopps  * Copyright (c) 1995 Michael L. Hitch
      5   1.1    chopps  * All rights reserved.
      6   1.1    chopps  *
      7   1.1    chopps  * Redistribution and use in source and binary forms, with or without
      8   1.1    chopps  * modification, are permitted provided that the following conditions
      9   1.1    chopps  * are met:
     10   1.1    chopps  * 1. Redistributions of source code must retain the above copyright
     11   1.1    chopps  *    notice, this list of conditions and the following disclaimer.
     12   1.1    chopps  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1    chopps  *    notice, this list of conditions and the following disclaimer in the
     14   1.1    chopps  *    documentation and/or other materials provided with the distribution.
     15   1.1    chopps  * 3. All advertising materials mentioning features or use of this software
     16   1.1    chopps  *    must display the following acknowledgement:
     17   1.1    chopps  *      This product includes software developed by Michael L. Hitch.
     18   1.1    chopps  * 4. The name of the author may not be used to endorse or promote products
     19   1.1    chopps  *    derived from this software without specific prior written permission
     20   1.1    chopps  *
     21   1.1    chopps  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1    chopps  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1    chopps  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1    chopps  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1    chopps  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1    chopps  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1    chopps  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1    chopps  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1    chopps  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1    chopps  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1    chopps  */
     32   1.1    chopps 
     33   1.1    chopps /*
     34   1.1    chopps  * SMC 91C90 Single-Chip Ethernet Controller
     35   1.1    chopps  */
     36  1.20  jonathan #include "opt_ddb.h"
     37  1.21  jonathan #include "opt_inet.h"
     38  1.22  jonathan #include "opt_ns.h"
     39  1.28   aymeric 
     40  1.28   aymeric #include <sys/cdefs.h>
     41  1.34       wiz __KERNEL_RCSID(0, "$NetBSD: if_es.c,v 1.34 2003/01/28 22:35:04 wiz Exp $");
     42   1.1    chopps 
     43   1.7    chopps #include "bpfilter.h"
     44   1.7    chopps 
     45   1.1    chopps #include <sys/param.h>
     46   1.1    chopps #include <sys/systm.h>
     47   1.1    chopps #include <sys/mbuf.h>
     48   1.1    chopps #include <sys/buf.h>
     49   1.1    chopps #include <sys/protosw.h>
     50   1.1    chopps #include <sys/socket.h>
     51   1.1    chopps #include <sys/syslog.h>
     52   1.1    chopps #include <sys/ioctl.h>
     53   1.1    chopps #include <sys/errno.h>
     54   1.1    chopps #include <sys/device.h>
     55   1.1    chopps 
     56   1.1    chopps #include <net/if.h>
     57  1.18        is #include <net/if_dl.h>
     58  1.17        is #include <net/if_ether.h>
     59  1.31    mhitch #include <net/if_media.h>
     60   1.1    chopps 
     61   1.1    chopps #ifdef INET
     62   1.1    chopps #include <netinet/in.h>
     63   1.1    chopps #include <netinet/in_systm.h>
     64   1.1    chopps #include <netinet/in_var.h>
     65   1.1    chopps #include <netinet/ip.h>
     66  1.17        is #include <netinet/if_inarp.h>
     67   1.1    chopps #endif
     68   1.1    chopps 
     69   1.1    chopps #ifdef NS
     70   1.1    chopps #include <netns/ns.h>
     71   1.1    chopps #include <netns/ns_if.h>
     72   1.1    chopps #endif
     73   1.1    chopps 
     74   1.1    chopps #include <machine/cpu.h>
     75   1.1    chopps #include <machine/mtpr.h>
     76   1.1    chopps #include <amiga/amiga/device.h>
     77   1.1    chopps #include <amiga/amiga/isr.h>
     78   1.1    chopps #include <amiga/dev/zbusvar.h>
     79   1.1    chopps #include <amiga/dev/if_esreg.h>
     80   1.1    chopps 
     81   1.1    chopps #define SWAP(x) (((x & 0xff) << 8) | ((x >> 8) & 0xff))
     82   1.1    chopps 
     83   1.1    chopps #define	USEPKTBUF
     84   1.1    chopps 
     85   1.1    chopps /*
     86   1.1    chopps  * Ethernet software status per interface.
     87   1.1    chopps  *
     88   1.1    chopps  * Each interface is referenced by a network interface structure,
     89   1.1    chopps  * es_if, which the routing code uses to locate the interface.
     90   1.1    chopps  * This structure contains the output queue for the interface, its address, ...
     91   1.1    chopps  */
     92   1.1    chopps struct	es_softc {
     93   1.1    chopps 	struct	device sc_dev;
     94   1.1    chopps 	struct	isr sc_isr;
     95  1.17        is 	struct	ethercom sc_ethercom;	/* common Ethernet structures */
     96  1.31    mhitch 	struct	ifmedia sc_media;	/* our supported media */
     97  1.12    mhitch 	void	*sc_base;		/* base address of board */
     98   1.1    chopps 	short	sc_iflags;
     99   1.1    chopps 	unsigned short sc_intctl;
    100   1.1    chopps #ifdef ESDEBUG
    101   1.1    chopps 	int	sc_debug;
    102  1.12    mhitch 	short	sc_intbusy;		/* counter for interrupt rentered */
    103  1.12    mhitch 	short	sc_smcbusy;		/* counter for other rentry checks */
    104   1.1    chopps #endif
    105   1.1    chopps };
    106   1.1    chopps 
    107   1.1    chopps #if NBPFILTER > 0
    108   1.1    chopps #include <net/bpf.h>
    109   1.1    chopps #include <net/bpfdesc.h>
    110   1.1    chopps #endif
    111   1.1    chopps 
    112   1.1    chopps #ifdef ESDEBUG
    113   1.1    chopps /* console error messages */
    114   1.1    chopps int	esdebug = 0;
    115   1.7    chopps int	estxints = 0;	/* IST_TX with TX enabled */
    116   1.7    chopps int	estxint2 = 0;	/* IST_TX active after IST_TX_EMPTY */
    117   1.7    chopps int	estxint3 = 0;	/* IST_TX interrupt processed */
    118   1.7    chopps int	estxint4 = 0;	/* ~TEMPTY counts */
    119   1.7    chopps int	estxint5 = 0;	/* IST_TX_EMPTY interrupts */
    120  1.27   aymeric void	es_dump_smcregs(char *, union smcregs *);
    121   1.1    chopps #endif
    122   1.1    chopps 
    123  1.27   aymeric int esintr(void *);
    124  1.27   aymeric void esstart(struct ifnet *);
    125  1.27   aymeric void eswatchdog(struct ifnet *);
    126  1.27   aymeric int esioctl(struct ifnet *, u_long, caddr_t);
    127  1.27   aymeric void esrint(struct es_softc *);
    128  1.27   aymeric void estint(struct es_softc *);
    129  1.27   aymeric void esinit(struct es_softc *);
    130  1.27   aymeric void esreset(struct es_softc *);
    131  1.27   aymeric void esstop(struct es_softc *);
    132  1.31    mhitch int esmediachange(struct ifnet *);
    133  1.31    mhitch void esmediastatus(struct ifnet *, struct ifmediareq *);
    134   1.1    chopps 
    135  1.27   aymeric int esmatch(struct device *, struct cfdata *, void *);
    136  1.27   aymeric void esattach(struct device *, struct device *, void *);
    137   1.1    chopps 
    138  1.33   thorpej CFATTACH_DECL(es, sizeof(struct es_softc),
    139  1.33   thorpej     esmatch, esattach, NULL, NULL);
    140   1.1    chopps 
    141   1.1    chopps int
    142  1.27   aymeric esmatch(struct device *parent, struct cfdata *cfp, void *aux)
    143   1.1    chopps {
    144   1.3   mycroft 	struct zbus_args *zap = aux;
    145   1.1    chopps 
    146   1.1    chopps 	/* Ameristar A4066 ethernet card */
    147   1.3   mycroft 	if (zap->manid == 1053 && zap->prodid == 10)
    148   1.1    chopps 		return(1);
    149   1.1    chopps 
    150   1.1    chopps 	return (0);
    151   1.1    chopps }
    152   1.1    chopps 
    153   1.1    chopps /*
    154   1.1    chopps  * Interface exists: make available by filling in network interface
    155   1.1    chopps  * record.  System will initialize the interface when it is ready
    156   1.1    chopps  * to accept packets.
    157   1.1    chopps  */
    158   1.1    chopps void
    159  1.27   aymeric esattach(struct device *parent, struct device *self, void *aux)
    160   1.1    chopps {
    161   1.3   mycroft 	struct es_softc *sc = (void *)self;
    162   1.3   mycroft 	struct zbus_args *zap = aux;
    163  1.17        is 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    164   1.1    chopps 	unsigned long ser;
    165  1.17        is 	u_int8_t myaddr[ETHER_ADDR_LEN];
    166   1.1    chopps 
    167   1.1    chopps 	sc->sc_base = zap->va;
    168   1.1    chopps 
    169   1.1    chopps 	/*
    170   1.1    chopps 	 * Manufacturer decides the 3 first bytes, i.e. ethernet vendor ID.
    171   1.1    chopps 	 * (Currently only Ameristar.)
    172   1.1    chopps 	 */
    173  1.17        is 	myaddr[0] = 0x00;
    174  1.17        is 	myaddr[1] = 0x00;
    175  1.17        is 	myaddr[2] = 0x9f;
    176   1.1    chopps 
    177   1.1    chopps 	/*
    178   1.1    chopps 	 * Serial number for board contains last 3 bytes.
    179   1.1    chopps 	 */
    180   1.1    chopps 	ser = (unsigned long) zap->serno;
    181   1.1    chopps 
    182  1.17        is 	myaddr[3] = (ser >> 16) & 0xff;
    183  1.17        is 	myaddr[4] = (ser >>  8) & 0xff;
    184  1.17        is 	myaddr[5] = (ser      ) & 0xff;
    185   1.1    chopps 
    186   1.3   mycroft 	/* Initialize ifnet structure. */
    187  1.13   thorpej 	bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
    188  1.13   thorpej 	ifp->if_softc = sc;
    189   1.1    chopps 	ifp->if_ioctl = esioctl;
    190   1.1    chopps 	ifp->if_start = esstart;
    191   1.1    chopps 	ifp->if_watchdog = eswatchdog;
    192  1.24    mhitch 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS |
    193  1.24    mhitch 	    IFF_MULTICAST;
    194   1.1    chopps 
    195  1.31    mhitch 	ifmedia_init(&sc->sc_media, 0, esmediachange, esmediastatus);
    196  1.31    mhitch 	ifmedia_add(&sc->sc_media, IFM_ETHER|IFM_MANUAL, 0, NULL);
    197  1.31    mhitch 	ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_MANUAL);
    198  1.31    mhitch 
    199   1.3   mycroft 	/* Attach the interface. */
    200   1.1    chopps 	if_attach(ifp);
    201  1.17        is 	ether_ifattach(ifp, myaddr);
    202   1.3   mycroft 
    203   1.3   mycroft 	/* Print additional info when attached. */
    204  1.17        is 	printf(": address %s\n", ether_sprintf(myaddr));
    205   1.1    chopps 
    206   1.1    chopps 	sc->sc_isr.isr_intr = esintr;
    207   1.1    chopps 	sc->sc_isr.isr_arg = sc;
    208   1.1    chopps 	sc->sc_isr.isr_ipl = 2;
    209   1.3   mycroft 	add_isr(&sc->sc_isr);
    210   1.1    chopps }
    211   1.1    chopps 
    212   1.7    chopps #ifdef ESDEBUG
    213   1.7    chopps void
    214  1.27   aymeric es_dump_smcregs(char *where, union smcregs *smc)
    215   1.7    chopps {
    216  1.12    mhitch 	u_short cur_bank = smc->b0.bsr & BSR_MASK;
    217   1.7    chopps 
    218  1.15  christos 	printf("SMC registers %p from %s bank %04x\n", smc, where,
    219   1.7    chopps 	    smc->b0.bsr);
    220   1.7    chopps 	smc->b0.bsr = BSR_BANK0;
    221  1.15  christos 	printf("TCR %04x EPHSR %04x RCR %04x ECR %04x MIR %04x MCR %04x\n",
    222   1.7    chopps 	    SWAP(smc->b0.tcr), SWAP(smc->b0.ephsr), SWAP(smc->b0.rcr),
    223   1.7    chopps 	    SWAP(smc->b0.ecr), SWAP(smc->b0.mir), SWAP(smc->b0.mcr));
    224   1.7    chopps 	smc->b1.bsr = BSR_BANK1;
    225  1.15  christos 	printf("CR %04x BAR %04x IAR %04x %04x %04x GPR %04x CTR %04x\n",
    226   1.7    chopps 	    SWAP(smc->b1.cr), SWAP(smc->b1.bar), smc->b1.iar[0], smc->b1.iar[1],
    227   1.7    chopps 	    smc->b1.iar[2], smc->b1.gpr, SWAP(smc->b1.ctr));
    228   1.7    chopps 	smc->b2.bsr = BSR_BANK2;
    229  1.15  christos 	printf("MMUCR %04x PNR %02x ARR %02x FIFO %04x PTR %04x",
    230   1.7    chopps 	    SWAP(smc->b2.mmucr), smc->b2.pnr, smc->b2.arr, smc->b2.fifo,
    231   1.7    chopps 	    SWAP(smc->b2.ptr));
    232  1.15  christos 	printf(" DATA %04x %04x IST %02x MSK %02x\n", smc->b2.data,
    233   1.7    chopps 	    smc->b2.datax, smc->b2.ist, smc->b2.msk);
    234   1.7    chopps 	smc->b3.bsr = BSR_BANK3;
    235  1.15  christos 	printf("MT %04x %04x %04x %04x\n",
    236   1.7    chopps 	    smc->b3.mt[0], smc->b3.mt[1], smc->b3.mt[2], smc->b3.mt[3]);
    237   1.7    chopps 	smc->b3.bsr = cur_bank;
    238   1.7    chopps }
    239   1.7    chopps #endif
    240   1.7    chopps 
    241   1.1    chopps void
    242  1.27   aymeric esstop(struct es_softc *sc)
    243   1.4    chopps {
    244  1.29    mhitch 	union smcregs *smc = sc->sc_base;
    245  1.29    mhitch 
    246  1.29    mhitch 	/*
    247  1.29    mhitch 	 * Clear interrupt mask; disable all interrupts.
    248  1.29    mhitch 	 */
    249  1.29    mhitch 	smc->b2.bsr = BSR_BANK2;
    250  1.29    mhitch 	smc->b2.msk = 0;
    251  1.29    mhitch 
    252  1.29    mhitch 	/*
    253  1.29    mhitch 	 * Disable transmitter and receiver.
    254  1.29    mhitch 	 */
    255  1.29    mhitch 	smc->b0.bsr = BSR_BANK0;
    256  1.29    mhitch 	smc->b0.rcr = 0;
    257  1.29    mhitch 	smc->b0.tcr = 0;
    258  1.29    mhitch 
    259  1.29    mhitch 	/*
    260  1.29    mhitch 	 * Cancel watchdog timer.
    261  1.29    mhitch 	 */
    262  1.29    mhitch 	sc->sc_ethercom.ec_if.if_timer = 0;
    263   1.4    chopps }
    264   1.4    chopps 
    265   1.4    chopps void
    266  1.27   aymeric esinit(struct es_softc *sc)
    267   1.1    chopps {
    268  1.17        is 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    269   1.1    chopps 	union smcregs *smc = sc->sc_base;
    270   1.1    chopps 	int s;
    271   1.1    chopps 
    272   1.8   mycroft 	s = splnet();
    273   1.1    chopps 
    274   1.7    chopps #ifdef ESDEBUG
    275   1.7    chopps 	if (ifp->if_flags & IFF_RUNNING)
    276   1.7    chopps 		es_dump_smcregs("esinit", smc);
    277   1.7    chopps #endif
    278   1.3   mycroft 	smc->b0.bsr = BSR_BANK0;	/* Select bank 0 */
    279   1.1    chopps 	smc->b0.rcr = RCR_EPH_RST;
    280   1.1    chopps 	smc->b0.rcr = 0;
    281   1.3   mycroft 	smc->b3.bsr = BSR_BANK3;	/* Select bank 3 */
    282   1.1    chopps 	smc->b3.mt[0] = 0;		/* clear Multicast table */
    283   1.1    chopps 	smc->b3.mt[1] = 0;
    284   1.1    chopps 	smc->b3.mt[2] = 0;
    285   1.1    chopps 	smc->b3.mt[3] = 0;
    286   1.1    chopps 	/* XXX set Multicast table from Multicast list */
    287   1.3   mycroft 	smc->b1.bsr = BSR_BANK1;	/* Select bank 1 */
    288   1.1    chopps 	smc->b1.cr = CR_RAM32K | CR_NO_WAIT_ST | CR_SET_SQLCH;
    289  1.30    mhitch 	smc->b1.ctr = CTR_AUTO_RLSE | CTR_TE_ENA;
    290  1.17        is 	smc->b1.iar[0] = *((unsigned short *) &LLADDR(ifp->if_sadl)[0]);
    291  1.17        is 	smc->b1.iar[1] = *((unsigned short *) &LLADDR(ifp->if_sadl)[2]);
    292  1.17        is 	smc->b1.iar[2] = *((unsigned short *) &LLADDR(ifp->if_sadl)[4]);
    293   1.3   mycroft 	smc->b2.bsr = BSR_BANK2;	/* Select bank 2 */
    294   1.1    chopps 	smc->b2.mmucr = MMUCR_RESET;
    295   1.3   mycroft 	smc->b0.bsr = BSR_BANK0;	/* Select bank 0 */
    296   1.3   mycroft 	smc->b0.mcr = SWAP(0x0020);	/* reserve 8K for transmit buffers */
    297  1.11     veego 	smc->b0.tcr = TCR_PAD_EN | (TCR_TXENA + TCR_MON_CSN);
    298  1.24    mhitch 	smc->b0.rcr = RCR_FILT_CAR | RCR_STRIP_CRC | RCR_RXEN | RCR_ALLMUL;
    299  1.24    mhitch 	/* XXX add promiscuous flags */
    300   1.3   mycroft 	smc->b2.bsr = BSR_BANK2;	/* Select bank 2 */
    301  1.30    mhitch 	smc->b2.msk = sc->sc_intctl = MSK_RX_OVRN | MSK_RX | MSK_EPHINT;
    302   1.1    chopps 
    303   1.1    chopps 	/* Interface is now 'running', with no output active. */
    304   1.1    chopps 	ifp->if_flags |= IFF_RUNNING;
    305   1.1    chopps 	ifp->if_flags &= ~IFF_OACTIVE;
    306   1.1    chopps 
    307   1.1    chopps 	/* Attempt to start output, if any. */
    308   1.1    chopps 	esstart(ifp);
    309   1.1    chopps 
    310   1.1    chopps 	splx(s);
    311   1.1    chopps }
    312   1.1    chopps 
    313   1.1    chopps int
    314  1.27   aymeric esintr(void *arg)
    315   1.1    chopps {
    316  1.11     veego 	struct es_softc *sc = arg;
    317  1.17        is 	struct ifnet *ifp = &sc->sc_ethercom.ec_if;
    318   1.2    chopps 	u_short intsts, intact;
    319   1.1    chopps 	union smcregs *smc;
    320   1.8   mycroft 	int s = splnet();
    321   1.1    chopps 
    322   1.1    chopps 	smc = sc->sc_base;
    323   1.7    chopps #ifdef ESDEBUG
    324  1.12    mhitch 	while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2 &&
    325  1.17        is 	    ifp->if_flags & IFF_RUNNING) {
    326  1.15  christos 		printf("%s: intr BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    327   1.7    chopps 		    smc->b2.bsr);
    328   1.7    chopps 		smc->b2.bsr = BSR_BANK2;
    329   1.7    chopps 	}
    330   1.7    chopps #endif
    331   1.2    chopps 	intsts = smc->b2.ist;
    332   1.2    chopps 	intact = smc->b2.msk & intsts;
    333   1.7    chopps 	if ((intact) == 0) {
    334   1.7    chopps 		splx(s);
    335   1.1    chopps 		return (0);
    336   1.7    chopps 	}
    337   1.1    chopps #ifdef ESDEBUG
    338   1.1    chopps 	if (esdebug)
    339  1.15  christos 		printf ("%s: esintr ist %02x msk %02x",
    340   1.2    chopps 		    sc->sc_dev.dv_xname, intsts, smc->b2.msk);
    341   1.7    chopps 	if (sc->sc_intbusy++) {
    342  1.15  christos 		printf("%s: esintr re-entered\n", sc->sc_dev.dv_xname);
    343   1.7    chopps 		panic("esintr re-entered");
    344   1.7    chopps 	}
    345  1.12    mhitch 	if (sc->sc_smcbusy)
    346  1.15  christos 		printf("%s: esintr interrupted busy %d\n", sc->sc_dev.dv_xname,
    347  1.12    mhitch 		    sc->sc_smcbusy);
    348   1.1    chopps #endif
    349   1.1    chopps 	smc->b2.msk = 0;
    350   1.1    chopps #ifdef ESDEBUG
    351   1.1    chopps 	if (esdebug)
    352  1.15  christos 		printf ("=>%02x%02x pnr %02x arr %02x fifo %04x\n",
    353   1.1    chopps 		    smc->b2.ist, smc->b2.ist, smc->b2.pnr, smc->b2.arr,
    354   1.1    chopps 		    smc->b2.fifo);
    355   1.1    chopps #endif
    356   1.2    chopps 	if (intact & IST_ALLOC) {
    357   1.1    chopps 		sc->sc_intctl &= ~MSK_ALLOC;
    358   1.1    chopps #ifdef ESDEBUG
    359   1.1    chopps 		if (esdebug || 1)
    360  1.15  christos 			printf ("%s: ist %02x", sc->sc_dev.dv_xname,
    361   1.2    chopps 			    intsts);
    362   1.1    chopps #endif
    363   1.1    chopps 		if ((smc->b2.arr & ARR_FAILED) == 0) {
    364   1.7    chopps 			u_char save_pnr;
    365   1.1    chopps #ifdef ESDEBUG
    366   1.1    chopps 			if (esdebug || 1)
    367  1.15  christos 				printf (" arr %02x\n", smc->b2.arr);
    368   1.1    chopps #endif
    369   1.7    chopps 			save_pnr = smc->b2.pnr;
    370   1.1    chopps 			smc->b2.pnr = smc->b2.arr;
    371   1.1    chopps 			smc->b2.mmucr = MMUCR_RLSPKT;
    372   1.1    chopps 			while (smc->b2.mmucr & MMUCR_BUSY)
    373   1.1    chopps 				;
    374   1.7    chopps 			smc->b2.pnr = save_pnr;
    375  1.17        is 			ifp->if_flags &= ~IFF_OACTIVE;
    376  1.29    mhitch 			ifp->if_timer = 0;
    377   1.1    chopps 		}
    378   1.7    chopps #ifdef ESDEBUG
    379   1.7    chopps 		else if (esdebug || 1)
    380  1.15  christos 			printf (" IST_ALLOC with ARR_FAILED?\n");
    381   1.7    chopps #endif
    382   1.7    chopps 	}
    383   1.7    chopps #ifdef ESDEBUG
    384  1.12    mhitch 	while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    385  1.15  christos 		printf("%s: intr+ BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    386   1.7    chopps 		    smc->b2.bsr);
    387   1.7    chopps 		smc->b2.bsr = BSR_BANK2;
    388   1.1    chopps 	}
    389   1.7    chopps #endif
    390   1.1    chopps 	while ((smc->b2.fifo & FIFO_REMPTY) == 0) {
    391   1.1    chopps 		esrint(sc);
    392   1.1    chopps 	}
    393   1.7    chopps #ifdef ESDEBUG
    394  1.12    mhitch 	while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    395  1.15  christos 		printf("%s: intr++ BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    396   1.7    chopps 		    smc->b2.bsr);
    397   1.7    chopps 		smc->b2.bsr = BSR_BANK2;
    398   1.7    chopps 	}
    399   1.7    chopps #endif
    400   1.2    chopps 	if (intact & IST_RX_OVRN) {
    401  1.15  christos 		printf ("%s: Overrun ist %02x", sc->sc_dev.dv_xname,
    402   1.2    chopps 		    intsts);
    403   1.1    chopps 		smc->b2.ist = ACK_RX_OVRN;
    404  1.15  christos 		printf ("->%02x\n", smc->b2.ist);
    405  1.17        is 		ifp->if_ierrors++;
    406   1.1    chopps 	}
    407   1.2    chopps 	if (intact & IST_TX_EMPTY) {
    408   1.1    chopps 		u_short ecr;
    409   1.1    chopps #ifdef ESDEBUG
    410   1.1    chopps 		if (esdebug)
    411  1.15  christos 			printf ("%s: TX EMPTY %02x",
    412   1.2    chopps 			    sc->sc_dev.dv_xname, intsts);
    413   1.7    chopps 		++estxint5;		/* count # IST_TX_EMPTY ints */
    414   1.1    chopps #endif
    415   1.1    chopps 		smc->b2.ist = ACK_TX_EMPTY;
    416   1.7    chopps 		sc->sc_intctl &= ~(MSK_TX_EMPTY | MSK_TX);
    417  1.29    mhitch 		ifp->if_timer = 0;
    418   1.1    chopps #ifdef ESDEBUG
    419   1.1    chopps 		if (esdebug)
    420  1.15  christos 			printf ("->%02x intcl %x pnr %02x arr %02x\n",
    421   1.1    chopps 			    smc->b2.ist, sc->sc_intctl, smc->b2.pnr,
    422   1.1    chopps 			    smc->b2.arr);
    423   1.1    chopps #endif
    424   1.7    chopps 		if (smc->b2.ist & IST_TX) {
    425   1.7    chopps 			intact |= IST_TX;
    426   1.7    chopps #ifdef ESDEBUG
    427   1.7    chopps 			++estxint2;		/* count # TX after TX_EMPTY */
    428   1.7    chopps #endif
    429   1.7    chopps 		} else {
    430   1.7    chopps 			smc->b0.bsr = BSR_BANK0;
    431   1.7    chopps 			ecr = smc->b0.ecr;	/* Get error counters */
    432   1.7    chopps 			if (ecr & 0xff00)
    433  1.17        is 				ifp->if_collisions += ((ecr >> 8) & 15) +
    434   1.7    chopps 				    ((ecr >> 11) & 0x1e);
    435   1.7    chopps 			smc->b2.bsr = BSR_BANK2;
    436   1.7    chopps #if 0
    437   1.7    chopps 			smc->b2.mmucr = MMUCR_RESET_TX; /* XXX reset TX FIFO */
    438   1.7    chopps #endif
    439   1.7    chopps 		}
    440   1.7    chopps 	}
    441   1.7    chopps 	if (intact & IST_TX) {
    442   1.7    chopps 		u_char tx_pnr, save_pnr;
    443   1.7    chopps 		u_short save_ptr, ephsr, tcr;
    444   1.7    chopps 		int n = 0;
    445   1.7    chopps #ifdef ESDEBUG
    446   1.7    chopps 		if (esdebug) {
    447  1.15  christos 			printf ("%s: TX INT ist %02x",
    448   1.7    chopps 			    sc->sc_dev.dv_xname, intsts);
    449  1.15  christos 			printf ("->%02x\n", smc->b2.ist);
    450   1.7    chopps 		}
    451   1.7    chopps 		++estxint3;			/* count # IST_TX */
    452   1.7    chopps #endif
    453   1.7    chopps zzzz:
    454  1.12    mhitch #ifdef ESDEBUG
    455   1.7    chopps 		++estxint4;			/* count # ~TEMPTY */
    456  1.12    mhitch #endif
    457   1.3   mycroft 		smc->b0.bsr = BSR_BANK0;
    458   1.7    chopps 		ephsr = smc->b0.ephsr;		/* get EPHSR */
    459   1.7    chopps 		tcr = smc->b0.tcr;		/* and TCR */
    460   1.3   mycroft 		smc->b2.bsr = BSR_BANK2;
    461   1.7    chopps 		save_ptr = smc->b2.ptr;
    462   1.7    chopps 		save_pnr = smc->b2.pnr;
    463   1.7    chopps 		tx_pnr = smc->b2.fifo >> 8;	/* pktno from completion fifo */
    464   1.7    chopps 		smc->b2.pnr = tx_pnr;		/* set TX packet number */
    465   1.7    chopps 		smc->b2.ptr = PTR_READ;		/* point to status word */
    466   1.7    chopps #if 0 /* XXXX */
    467  1.15  christos 		printf("%s: esintr TXINT IST %02x PNR %02x(%d)",
    468   1.7    chopps 		    sc->sc_dev.dv_xname, smc->b2.ist,
    469   1.7    chopps 		    tx_pnr, n);
    470  1.15  christos 		printf(" Status %04x", smc->b2.data);
    471  1.15  christos 		printf(" EPHSR %04x\n", ephsr);
    472   1.7    chopps #endif
    473   1.7    chopps 		if ((smc->b2.data & EPHSR_TX_SUC) == 0 && (tcr & TCR_TXENA) == 0) {
    474   1.7    chopps 			/*
    475   1.7    chopps 			 * Transmitter was stopped for some error.  Enqueue
    476   1.7    chopps 			 * the packet again and restart the transmitter.
    477   1.7    chopps 			 * May need some check to limit the number of retries.
    478   1.7    chopps 			 */
    479   1.7    chopps 			smc->b2.mmucr = MMUCR_ENQ_TX;
    480   1.7    chopps 			smc->b0.bsr = BSR_BANK0;
    481   1.7    chopps 			smc->b0.tcr |= TCR_TXENA;
    482   1.7    chopps 			smc->b2.bsr = BSR_BANK2;
    483  1.17        is 			ifp->if_oerrors++;
    484   1.7    chopps 			sc->sc_intctl |= MSK_TX_EMPTY | MSK_TX;
    485   1.7    chopps 		} else {
    486   1.7    chopps 			/*
    487   1.7    chopps 			 * This shouldn't have happened:  IST_TX indicates
    488   1.7    chopps 			 * the TX completion FIFO is not empty, but the
    489   1.7    chopps 			 * status for the packet on the completion FIFO
    490  1.34       wiz 			 * shows that the transmit was successful.  Since
    491  1.34       wiz 			 * AutoRelease is being used, a successful transmit
    492   1.7    chopps 			 * should not result in a packet on the completion
    493   1.7    chopps 			 * FIFO.  Also, that packet doesn't seem to want
    494   1.7    chopps 			 * to be acknowledged.  If this occurs, just reset
    495   1.7    chopps 			 * the TX FIFOs.
    496   1.7    chopps 			 */
    497   1.7    chopps #if 1
    498   1.7    chopps 			if (smc->b2.ist & IST_TX_EMPTY) {
    499   1.7    chopps 				smc->b2.mmucr = MMUCR_RESET_TX;
    500   1.7    chopps 				sc->sc_intctl &= ~(MSK_TX_EMPTY | MSK_TX);
    501  1.29    mhitch 				ifp->if_timer = 0;
    502   1.7    chopps 			}
    503   1.7    chopps #endif
    504   1.7    chopps #ifdef ESDEBUG
    505   1.7    chopps 			++estxints;	/* count IST_TX with TX enabled */
    506   1.7    chopps #endif
    507   1.7    chopps 		}
    508   1.7    chopps 		smc->b2.pnr = save_pnr;
    509   1.7    chopps 		smc->b2.ptr = save_ptr;
    510   1.7    chopps 		smc->b2.ist = ACK_TX;
    511   1.7    chopps 
    512   1.7    chopps 		if ((smc->b2.fifo & FIFO_TEMPTY) == 0 && n++ < 32) {
    513   1.7    chopps #if 0 /* XXXX */
    514  1.15  christos 			printf("%s: multiple TX int(%2d) pnr %02x ist %02x fifo %04x",
    515   1.7    chopps 			    sc->sc_dev.dv_xname, n, tx_pnr, smc->b2.ist, smc->b2.fifo);
    516   1.7    chopps 			smc->w2.istmsk = ACK_TX << 8;
    517  1.15  christos 			printf(" %04x\n", smc->b2.fifo);
    518   1.7    chopps #endif
    519   1.7    chopps 			if (tx_pnr != (smc->b2.fifo >> 8))
    520   1.7    chopps 				goto zzzz;
    521   1.7    chopps 		}
    522  1.30    mhitch 	}
    523  1.30    mhitch 	if (intact & IST_EPHINT) {
    524  1.30    mhitch 		ifp->if_oerrors++;
    525  1.30    mhitch 		esreset(sc);
    526   1.1    chopps 	}
    527   1.1    chopps 	/* output packets */
    528   1.1    chopps 	estint(sc);
    529   1.7    chopps #ifdef ESDEBUG
    530  1.12    mhitch 	while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    531  1.15  christos 		printf("%s: intr+++ BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    532   1.7    chopps 		    smc->b2.bsr);
    533   1.7    chopps 		smc->b2.bsr = BSR_BANK2;
    534   1.7    chopps 	}
    535   1.7    chopps #endif
    536   1.1    chopps 	smc->b2.msk = sc->sc_intctl;
    537   1.7    chopps #ifdef ESDEBUG
    538   1.7    chopps 	if (--sc->sc_intbusy) {
    539  1.15  christos 		printf("%s: esintr busy on exit\n", sc->sc_dev.dv_xname);
    540   1.7    chopps 		panic("esintr busy on exit");
    541   1.7    chopps 	}
    542   1.7    chopps #endif
    543   1.7    chopps 	splx(s);
    544   1.1    chopps 	return (1);
    545   1.1    chopps }
    546   1.1    chopps 
    547   1.1    chopps void
    548  1.27   aymeric esrint(struct es_softc *sc)
    549   1.1    chopps {
    550   1.1    chopps 	union smcregs *smc = sc->sc_base;
    551   1.1    chopps 	u_short len;
    552   1.1    chopps 	short cnt;
    553   1.1    chopps 	u_short pktctlw, pktlen, *buf;
    554  1.11     veego 	volatile u_short *data;
    555  1.11     veego #if 0
    556   1.1    chopps 	u_long *lbuf;
    557   1.1    chopps 	volatile u_long *ldata;
    558  1.11     veego #endif
    559   1.1    chopps 	struct ifnet *ifp;
    560   1.1    chopps 	struct mbuf *top, **mp, *m;
    561   1.1    chopps #ifdef USEPKTBUF
    562   1.1    chopps 	u_char *b, pktbuf[1530];
    563   1.1    chopps #endif
    564  1.12    mhitch #ifdef ESDEBUG
    565  1.12    mhitch 	int i;
    566  1.12    mhitch #endif
    567   1.1    chopps 
    568  1.17        is 	ifp = &sc->sc_ethercom.ec_if;
    569   1.1    chopps #ifdef ESDEBUG
    570   1.1    chopps 	if (esdebug)
    571  1.15  christos 		printf ("%s: esrint fifo %04x", sc->sc_dev.dv_xname,
    572   1.1    chopps 		    smc->b2.fifo);
    573   1.7    chopps 	if (sc->sc_smcbusy++) {
    574  1.15  christos 		printf("%s: esrint re-entered\n", sc->sc_dev.dv_xname);
    575   1.7    chopps 		panic("esrint re-entered");
    576   1.7    chopps 	}
    577  1.12    mhitch 	while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    578  1.15  christos 		printf("%s: rint BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    579   1.7    chopps 		    smc->b2.bsr);
    580   1.7    chopps 		smc->b2.bsr = BSR_BANK2;
    581   1.7    chopps 	}
    582   1.1    chopps #endif
    583   1.1    chopps 	data = (u_short *)&smc->b2.data;
    584   1.3   mycroft 	smc->b2.ptr = PTR_RCV | PTR_AUTOINCR | PTR_READ | SWAP(0x0002);
    585   1.1    chopps 	(void) smc->b2.mmucr;
    586   1.1    chopps #ifdef ESDEBUG
    587   1.1    chopps 	if (esdebug)
    588  1.15  christos 		printf ("->%04x", smc->b2.fifo);
    589   1.1    chopps #endif
    590   1.1    chopps 	len = *data;
    591   1.3   mycroft 	len = SWAP(len);	/* Careful of macro side-effects */
    592   1.1    chopps #ifdef ESDEBUG
    593   1.1    chopps 	if (esdebug)
    594  1.15  christos 		printf (" length %d", len);
    595   1.1    chopps #endif
    596  1.11     veego 	smc->b2.ptr = PTR_RCV | (PTR_AUTOINCR + PTR_READ) | SWAP(0x0000);
    597   1.1    chopps 	(void) smc->b2.mmucr;
    598   1.1    chopps 	pktctlw = *data;
    599   1.1    chopps 	pktlen = *data;
    600   1.3   mycroft 	pktctlw = SWAP(pktctlw);
    601   1.3   mycroft 	pktlen = SWAP(pktlen) - 6;
    602   1.1    chopps 	if (pktctlw & RFSW_ODDFRM)
    603   1.1    chopps 		pktlen++;
    604   1.7    chopps 	if (len > 1530) {
    605  1.15  christos 		printf("%s: Corrupted packet length-sts %04x bytcnt %04x len %04x bank %04x\n",
    606   1.7    chopps 		    sc->sc_dev.dv_xname, pktctlw, pktlen, len, smc->b2.bsr);
    607   1.7    chopps 		/* XXX ignore packet, or just truncate? */
    608   1.7    chopps #if defined(ESDEBUG) && defined(DDB)
    609  1.12    mhitch 		if ((smc->b2.bsr & BSR_MASK) != BSR_BANK2)
    610   1.7    chopps 			Debugger();
    611   1.7    chopps #endif
    612   1.7    chopps 		smc->b2.bsr = BSR_BANK2;
    613   1.7    chopps 		smc->b2.mmucr = MMUCR_REMRLS_RX;
    614   1.7    chopps 		while (smc->b2.mmucr & MMUCR_BUSY)
    615   1.7    chopps 			;
    616  1.17        is 		++ifp->if_ierrors;
    617   1.7    chopps #ifdef ESDEBUG
    618   1.7    chopps 		if (--sc->sc_smcbusy) {
    619  1.15  christos 			printf("%s: esrintr busy on bad packet exit\n",
    620   1.7    chopps 			    sc->sc_dev.dv_xname);
    621   1.7    chopps 			panic("esrintr busy on exit");
    622   1.7    chopps 		}
    623   1.7    chopps #endif
    624   1.7    chopps 		return;
    625   1.7    chopps 	}
    626   1.1    chopps #ifdef USEPKTBUF
    627   1.7    chopps #if 0
    628   1.1    chopps 	lbuf = (u_long *) pktbuf;
    629   1.1    chopps 	ldata = (u_long *)data;
    630   1.1    chopps 	cnt = (len - 4) / 4;
    631   1.1    chopps 	while (cnt--)
    632   1.1    chopps 		*lbuf++ = *ldata;
    633   1.1    chopps 	if ((len - 4) & 2) {
    634   1.1    chopps 		buf = (u_short *) lbuf;
    635   1.1    chopps 		*buf = *data;
    636   1.1    chopps 	}
    637   1.1    chopps #else
    638   1.1    chopps 	buf = (u_short *)pktbuf;
    639   1.1    chopps 	cnt = (len - 4) / 2;
    640   1.1    chopps 	while (cnt--)
    641   1.1    chopps 		*buf++ = *data;
    642   1.1    chopps #endif
    643   1.1    chopps 	smc->b2.mmucr = MMUCR_REMRLS_RX;
    644   1.1    chopps 	while (smc->b2.mmucr & MMUCR_BUSY)
    645   1.1    chopps 		;
    646   1.1    chopps #ifdef ESDEBUG
    647   1.1    chopps 	if (pktctlw & (RFSW_ALGNERR | RFSW_BADCRC | RFSW_TOOLNG | RFSW_TOOSHORT)) {
    648  1.15  christos 		printf ("%s: Packet error %04x\n", sc->sc_dev.dv_xname, pktctlw);
    649   1.1    chopps 		/* count input error? */
    650   1.1    chopps 	}
    651   1.1    chopps 	if (esdebug) {
    652  1.15  christos 		printf (" pktctlw %04x pktlen %04x fifo %04x\n", pktctlw, pktlen,
    653   1.1    chopps 		    smc->b2.fifo);
    654   1.1    chopps 		for (i = 0; i < pktlen; ++i)
    655  1.15  christos 			printf ("%02x%s", pktbuf[i], ((i & 31) == 31) ? "\n" :
    656   1.1    chopps 			    "");
    657   1.1    chopps 		if (i & 31)
    658  1.15  christos 			printf ("\n");
    659   1.1    chopps 	}
    660   1.1    chopps #endif
    661   1.1    chopps #else	/* USEPKTBUF */
    662   1.7    chopps 	/* XXX copy directly from controller to mbuf */
    663   1.1    chopps #ifdef ESDEBUG
    664   1.1    chopps 	if (pktctlw & (RFSW_ALGNERR | RFSW_BADCRC | RFSW_TOOLNG | RFSW_TOOSHORT)) {
    665  1.15  christos 		printf ("%s: Packet error %04x\n", sc->sc_dev.dv_xname, pktctlw);
    666   1.1    chopps 		/* count input error? */
    667   1.1    chopps 	}
    668   1.1    chopps 	if (esdebug) {
    669  1.15  christos 		printf (" pktctlw %04x pktlen %04x fifo %04x\n", pktctlw, pktlen,
    670   1.1    chopps 		    smc->b2.fifo);
    671   1.1    chopps 	}
    672   1.1    chopps #endif
    673   1.1    chopps #endif /* USEPKTBUF */
    674   1.1    chopps 	ifp->if_ipackets++;
    675   1.1    chopps 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    676   1.1    chopps 	if (m == NULL)
    677   1.1    chopps 		return;
    678   1.1    chopps 	m->m_pkthdr.rcvif = ifp;
    679   1.1    chopps 	m->m_pkthdr.len = pktlen;
    680   1.1    chopps 	len = MHLEN;
    681   1.1    chopps 	top = NULL;
    682   1.1    chopps 	mp = &top;
    683   1.1    chopps #ifdef USEPKTBUF
    684   1.1    chopps 	b = pktbuf;
    685   1.1    chopps #endif
    686   1.1    chopps 	while (pktlen > 0) {
    687   1.1    chopps 		if (top) {
    688   1.1    chopps 			MGET(m, M_DONTWAIT, MT_DATA);
    689   1.1    chopps 			if (m == 0) {
    690   1.1    chopps 				m_freem(top);
    691   1.1    chopps 				return;
    692   1.1    chopps 			}
    693   1.1    chopps 			len = MLEN;
    694   1.1    chopps 		}
    695   1.1    chopps 		if (pktlen >= MINCLSIZE) {
    696   1.1    chopps 			MCLGET(m, M_DONTWAIT);
    697   1.1    chopps 			if (m->m_flags & M_EXT)
    698   1.1    chopps 				len = MCLBYTES;
    699   1.1    chopps 		}
    700   1.1    chopps 		m->m_len = len = min(pktlen, len);
    701   1.1    chopps #ifdef USEPKTBUF
    702   1.1    chopps 		bcopy((caddr_t)b, mtod(m, caddr_t), len);
    703   1.1    chopps 		b += len;
    704   1.1    chopps #else	/* USEPKTBUF */
    705   1.1    chopps 		buf = mtod(m, u_short *);
    706   1.1    chopps 		cnt = len / 2;
    707   1.1    chopps 		while (cnt--)
    708   1.1    chopps 			*buf++ = *data;
    709   1.1    chopps 		if (len & 1)
    710   1.1    chopps 			*buf = *data;	/* XXX should be byte store */
    711   1.1    chopps #ifdef ESDEBUG
    712   1.1    chopps 		if (esdebug) {
    713   1.1    chopps 			buf = mtod(m, u_short *);
    714   1.1    chopps 			for (i = 0; i < len; ++i)
    715  1.15  christos 				printf ("%02x%s", ((u_char *)buf)[i],
    716   1.1    chopps 				    ((i & 31) == 31) ? "\n" : "");
    717   1.1    chopps 			if (i & 31)
    718  1.15  christos 				printf ("\n");
    719   1.1    chopps 		}
    720   1.1    chopps #endif
    721   1.1    chopps #endif	/* USEPKTBUF */
    722   1.1    chopps 		pktlen -= len;
    723   1.1    chopps 		*mp = m;
    724   1.1    chopps 		mp = &m->m_next;
    725   1.1    chopps 	}
    726   1.1    chopps #ifndef USEPKTBUF
    727   1.1    chopps 	smc->b2.mmucr = MMUCR_REMRLS_RX;
    728   1.1    chopps 	while (smc->b2.mmucr & MMUCR_BUSY)
    729   1.1    chopps 		;
    730   1.1    chopps #endif
    731   1.7    chopps #if NBPFILTER > 0
    732   1.7    chopps 	/*
    733   1.7    chopps 	 * Check if there's a BPF listener on this interface.  If so, hand off
    734   1.7    chopps 	 * the raw packet to bpf.
    735   1.7    chopps 	 */
    736  1.25   thorpej 	if (ifp->if_bpf)
    737  1.17        is 		bpf_mtap(ifp->if_bpf, top);
    738   1.7    chopps #endif
    739  1.23   thorpej 	(*ifp->if_input)(ifp, top);
    740   1.7    chopps #ifdef ESDEBUG
    741   1.7    chopps 	if (--sc->sc_smcbusy) {
    742  1.15  christos 		printf("%s: esintr busy on exit\n", sc->sc_dev.dv_xname);
    743   1.7    chopps 		panic("esintr busy on exit");
    744   1.7    chopps 	}
    745   1.7    chopps #endif
    746   1.1    chopps }
    747   1.1    chopps 
    748   1.1    chopps void
    749  1.27   aymeric estint(struct es_softc *sc)
    750   1.1    chopps {
    751   1.3   mycroft 
    752  1.17        is 	esstart(&sc->sc_ethercom.ec_if);
    753   1.1    chopps }
    754   1.1    chopps 
    755   1.3   mycroft void
    756  1.27   aymeric esstart(struct ifnet *ifp)
    757   1.1    chopps {
    758  1.13   thorpej 	struct es_softc *sc = ifp->if_softc;
    759   1.1    chopps 	union smcregs *smc = sc->sc_base;
    760   1.1    chopps 	struct mbuf *m0, *m;
    761   1.1    chopps #ifdef USEPKTBUF
    762   1.3   mycroft 	u_short pktbuf[ETHERMTU + 2];
    763   1.7    chopps #else
    764   1.7    chopps 	u_short oddbyte, needbyte;
    765   1.1    chopps #endif
    766   1.1    chopps 	u_short pktctlw, pktlen;
    767   1.1    chopps 	u_short *buf;
    768   1.1    chopps 	volatile u_short *data;
    769  1.11     veego #if 0
    770   1.1    chopps 	u_long *lbuf;
    771   1.1    chopps 	volatile u_long *ldata;
    772  1.11     veego #endif
    773   1.1    chopps 	short cnt;
    774   1.1    chopps 	int i;
    775   1.7    chopps 	u_char active_pnr;
    776   1.1    chopps 
    777  1.17        is 	if ((sc->sc_ethercom.ec_if.if_flags & (IFF_RUNNING | IFF_OACTIVE)) !=
    778   1.1    chopps 	    IFF_RUNNING)
    779   1.1    chopps 		return;
    780   1.1    chopps 
    781   1.7    chopps #ifdef ESDEBUG
    782   1.7    chopps 	if (sc->sc_smcbusy++) {
    783  1.15  christos 		printf("%s: esstart re-entered\n", sc->sc_dev.dv_xname);
    784   1.7    chopps 		panic("esstart re-entred");
    785   1.7    chopps 	}
    786  1.12    mhitch 	while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    787  1.15  christos 		printf("%s: esstart BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    788   1.7    chopps 		    smc->b2.bsr);
    789   1.7    chopps 		smc->b2.bsr = BSR_BANK2;
    790   1.7    chopps 	}
    791   1.7    chopps #endif
    792   1.1    chopps 	for (;;) {
    793  1.12    mhitch #ifdef ESDEBUG
    794  1.12    mhitch 		u_short start_ptr, end_ptr;
    795  1.12    mhitch #endif
    796   1.1    chopps 		/*
    797   1.1    chopps 		 * Sneak a peek at the next packet to get the length
    798   1.1    chopps 		 * and see if the SMC 91C90 can accept it.
    799   1.1    chopps 		 */
    800  1.17        is 		m = sc->sc_ethercom.ec_if.if_snd.ifq_head;
    801   1.1    chopps 		if (!m)
    802   1.1    chopps 			break;
    803   1.1    chopps #ifdef ESDEBUG
    804  1.12    mhitch 		if (esdebug && (m->m_next || m->m_len & 1))
    805  1.15  christos 			printf("%s: esstart m_next %p m_len %d\n",
    806  1.12    mhitch 			    sc->sc_dev.dv_xname, m->m_next, m->m_len);
    807   1.1    chopps #endif
    808   1.1    chopps 		for (m0 = m, pktlen = 0; m0; m0 = m0->m_next)
    809   1.1    chopps 			pktlen += m0->m_len;
    810   1.1    chopps 		pktctlw = 0;
    811   1.1    chopps 		pktlen += 4;
    812   1.1    chopps 		if (pktlen & 1)
    813   1.1    chopps 			++pktlen;	/* control byte after last byte */
    814   1.1    chopps 		else
    815   1.1    chopps 			pktlen += 2;	/* control byte after pad byte */
    816   1.1    chopps 		smc->b2.mmucr = MMUCR_ALLOC | (pktlen & 0x0700);
    817   1.1    chopps 		for (i = 0; i <= 5; ++i)
    818   1.1    chopps 			if ((smc->b2.arr & ARR_FAILED) == 0)
    819   1.1    chopps 				break;
    820   1.1    chopps 		if (smc->b2.arr & ARR_FAILED) {
    821  1.17        is 			sc->sc_ethercom.ec_if.if_flags |= IFF_OACTIVE;
    822   1.2    chopps 			sc->sc_intctl |= MSK_ALLOC;
    823  1.29    mhitch 			sc->sc_ethercom.ec_if.if_timer = 5;
    824   1.1    chopps 			break;
    825   1.1    chopps 		}
    826   1.7    chopps 		active_pnr = smc->b2.pnr = smc->b2.arr;
    827   1.1    chopps 
    828   1.7    chopps #ifdef ESDEBUG
    829  1.12    mhitch 		while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    830  1.15  christos 			printf("%s: esstart+ BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    831   1.7    chopps 			    smc->b2.bsr);
    832  1.29    mhitch 			smc->b2.bsr = BSR_BANK2;
    833   1.7    chopps 		}
    834   1.7    chopps #endif
    835  1.17        is 		IF_DEQUEUE(&sc->sc_ethercom.ec_if.if_snd, m);
    836   1.1    chopps 		smc->b2.ptr = PTR_AUTOINCR;
    837   1.1    chopps 		(void) smc->b2.mmucr;
    838   1.1    chopps 		data = (u_short *)&smc->b2.data;
    839   1.3   mycroft 		*data = SWAP(pktctlw);
    840   1.3   mycroft 		*data = SWAP(pktlen);
    841   1.7    chopps #ifdef ESDEBUG
    842  1.12    mhitch 		while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    843  1.15  christos 			printf("%s: esstart++ BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    844   1.7    chopps 			    smc->b2.bsr);
    845   1.7    chopps 			smc->b2.bsr = BSR_BANK2;
    846   1.7    chopps 		}
    847   1.7    chopps #endif
    848   1.1    chopps #ifdef USEPKTBUF
    849   1.1    chopps 		i = 0;
    850   1.1    chopps 		for (m0 = m; m; m = m->m_next) {
    851   1.1    chopps 			bcopy(mtod(m, caddr_t), (char *)pktbuf + i, m->m_len);
    852   1.1    chopps 			i += m->m_len;
    853   1.1    chopps 		}
    854   1.1    chopps 
    855   1.1    chopps 		if (i & 1)	/* Figure out where to put control byte */
    856   1.1    chopps 			pktbuf[i/2] = (pktbuf[i/2] & 0xff00) | CTLB_ODD;
    857   1.1    chopps 		else
    858   1.1    chopps 			pktbuf[i/2] = 0;
    859   1.7    chopps 		pktlen -= 4;
    860   1.1    chopps #ifdef ESDEBUG
    861  1.12    mhitch 		if (pktlen > sizeof(pktbuf) && i > (sizeof(pktbuf) * 2))
    862  1.15  christos 			printf("%s: esstart packet longer than pktbuf\n",
    863   1.7    chopps 			    sc->sc_dev.dv_xname);
    864   1.1    chopps #endif
    865   1.1    chopps #if 0 /* doesn't quite work? */
    866   1.1    chopps 		lbuf = (u_long *)(pktbuf);
    867   1.1    chopps 		ldata = (u_long *)data;
    868   1.1    chopps 		cnt = pktlen / 4;
    869   1.1    chopps 		while(cnt--)
    870   1.1    chopps 			*ldata = *lbuf++;
    871   1.1    chopps 		if (pktlen & 2) {
    872   1.1    chopps 			buf = (u_short *)lbuf;
    873   1.1    chopps 			*data = *buf;
    874   1.1    chopps 		}
    875   1.1    chopps #else
    876  1.12    mhitch #ifdef ESDEBUG
    877  1.12    mhitch 		while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    878  1.15  christos 			printf("%s: esstart++2 BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    879  1.12    mhitch 			    smc->b2.bsr);
    880  1.12    mhitch 			smc->b2.bsr = BSR_BANK2;
    881  1.12    mhitch 		}
    882  1.12    mhitch 		start_ptr = SWAP(smc->b2.ptr);	/* save PTR before copy */
    883  1.12    mhitch #endif
    884   1.1    chopps 		buf = pktbuf;
    885   1.1    chopps 		cnt = pktlen / 2;
    886   1.1    chopps 		while (cnt--)
    887   1.1    chopps 			*data = *buf++;
    888  1.12    mhitch #ifdef ESDEBUG
    889  1.12    mhitch 		end_ptr = SWAP(smc->b2.ptr);	/* save PTR after copy */
    890  1.12    mhitch #endif
    891   1.1    chopps #endif
    892   1.1    chopps #else	/* USEPKTBUF */
    893   1.1    chopps 		pktctlw = 0;
    894   1.7    chopps 		oddbyte = needbyte = 0;
    895   1.1    chopps 		for (m0 = m; m; m = m->m_next) {
    896   1.1    chopps 			buf = mtod(m, u_short *);
    897   1.1    chopps 			cnt = m->m_len / 2;
    898   1.7    chopps 			if (needbyte) {
    899   1.7    chopps 				oddbyte |= *buf >> 8;
    900   1.7    chopps 				*data = oddbyte;
    901   1.7    chopps 			}
    902   1.1    chopps 			while (cnt--)
    903   1.1    chopps 				*data = *buf++;
    904   1.1    chopps 			if (m->m_len & 1)
    905   1.1    chopps 				pktctlw = (*buf & 0xff00) | CTLB_ODD;
    906   1.7    chopps 			if (m->m_len & 1 && m->m_next)
    907  1.15  christos 				printf("%s: esstart odd byte count in mbuf\n",
    908   1.7    chopps 				    sc->sc_dev.dv_xname);
    909   1.1    chopps 		}
    910   1.1    chopps 		*data = pktctlw;
    911   1.1    chopps #endif	/* USEPKTBUF */
    912  1.12    mhitch 		while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    913  1.12    mhitch 			/*
    914  1.12    mhitch 			 * The bank select register has changed.  This seems
    915  1.12    mhitch 			 * to happen with my A2000/Zeus once in a while.  It
    916  1.12    mhitch 			 * appears that the Ethernet chip resets while
    917  1.12    mhitch 			 * copying the transmit buffer.  Requeue the current
    918  1.12    mhitch 			 * transmit buffer and reinitialize the interface.
    919  1.12    mhitch 			 * The initialize routine will take care of
    920  1.12    mhitch 			 * retransmitting the buffer.  mhitch
    921  1.12    mhitch 			 */
    922  1.12    mhitch #ifdef DIAGNOSTIC
    923  1.15  christos 			printf("%s: esstart+++ BSR not 2: %04x\n",
    924  1.12    mhitch 			    sc->sc_dev.dv_xname, smc->b2.bsr);
    925  1.12    mhitch #endif
    926  1.12    mhitch 			smc->b2.bsr = BSR_BANK2;
    927   1.1    chopps #ifdef ESDEBUG
    928  1.15  christos 			printf("start_ptr %04x end_ptr %04x cur ptr %04x\n",
    929  1.12    mhitch 			    start_ptr, end_ptr, SWAP(smc->b2.ptr));
    930  1.12    mhitch 			--sc->sc_smcbusy;
    931  1.12    mhitch #endif
    932  1.17        is 			IF_PREPEND(&sc->sc_ethercom.ec_if.if_snd, m0);
    933  1.12    mhitch 			esinit(sc);	/* It's really hosed - reset */
    934  1.12    mhitch 			return;
    935   1.7    chopps 		}
    936   1.7    chopps 		smc->b2.mmucr = MMUCR_ENQ_TX;
    937   1.7    chopps 		if (smc->b2.pnr != active_pnr)
    938  1.15  christos 			printf("%s: esstart - PNR changed %x->%x\n",
    939   1.7    chopps 			    sc->sc_dev.dv_xname, active_pnr, smc->b2.pnr);
    940   1.1    chopps #if NBPFILTER > 0
    941  1.17        is 		if (sc->sc_ethercom.ec_if.if_bpf)
    942  1.17        is 			bpf_mtap(sc->sc_ethercom.ec_if.if_bpf, m0);
    943   1.1    chopps #endif
    944   1.1    chopps 		m_freem(m0);
    945  1.17        is 		sc->sc_ethercom.ec_if.if_opackets++;	/* move to interrupt? */
    946   1.2    chopps 		sc->sc_intctl |= MSK_TX_EMPTY | MSK_TX;
    947  1.29    mhitch 		sc->sc_ethercom.ec_if.if_timer = 5;
    948   1.1    chopps 	}
    949   1.1    chopps 	smc->b2.msk = sc->sc_intctl;
    950   1.7    chopps #ifdef ESDEBUG
    951  1.12    mhitch 	while ((smc->b2.bsr & BSR_MASK) != BSR_BANK2) {
    952  1.15  christos 		printf("%s: esstart++++ BSR not 2: %04x\n", sc->sc_dev.dv_xname,
    953   1.7    chopps 		    smc->b2.bsr);
    954   1.7    chopps 		smc->b2.bsr = BSR_BANK2;
    955   1.7    chopps 	}
    956   1.7    chopps 	if (--sc->sc_smcbusy) {
    957  1.15  christos 		printf("%s: esstart busy on exit\n", sc->sc_dev.dv_xname);
    958   1.7    chopps 		panic("esstart busy on exit");
    959   1.7    chopps 	}
    960   1.7    chopps #endif
    961   1.1    chopps }
    962   1.1    chopps 
    963   1.1    chopps int
    964  1.27   aymeric esioctl(register struct ifnet *ifp, u_long command, caddr_t data)
    965   1.1    chopps {
    966  1.13   thorpej 	struct es_softc *sc = ifp->if_softc;
    967   1.3   mycroft 	register struct ifaddr *ifa = (struct ifaddr *)data;
    968   1.1    chopps 	struct ifreq *ifr = (struct ifreq *)data;
    969   1.1    chopps 	int s, error = 0;
    970   1.1    chopps 
    971   1.8   mycroft 	s = splnet();
    972   1.1    chopps 
    973   1.3   mycroft 	switch (command) {
    974   1.1    chopps 
    975   1.1    chopps 	case SIOCSIFADDR:
    976   1.1    chopps 		ifp->if_flags |= IFF_UP;
    977   1.1    chopps 
    978   1.1    chopps 		switch (ifa->ifa_addr->sa_family) {
    979   1.1    chopps #ifdef INET
    980   1.1    chopps 		case AF_INET:
    981   1.1    chopps 			esinit(sc);
    982  1.17        is 			arp_ifinit(ifp, ifa);
    983   1.1    chopps 			break;
    984   1.1    chopps #endif
    985   1.1    chopps #ifdef NS
    986   1.1    chopps 		case AF_NS:
    987   1.1    chopps 		    {
    988   1.1    chopps 			register struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
    989   1.1    chopps 
    990   1.1    chopps 			if (ns_nullhost(*ina))
    991   1.1    chopps 				ina->x_host =
    992  1.17        is 				    *(union ns_host *)LLADDR(ifp->if_sadl);
    993   1.1    chopps 			else
    994   1.1    chopps 				bcopy(ina->x_host.c_host,
    995  1.17        is 				    LLADDR(ifp->if_sadl), ETHER_ADDR_LEN);
    996   1.3   mycroft 			/* Set new address. */
    997   1.1    chopps 			esinit(sc);
    998   1.1    chopps 			break;
    999  1.11     veego 		    }
   1000   1.1    chopps #endif
   1001   1.1    chopps 		default:
   1002   1.1    chopps 			esinit(sc);
   1003   1.1    chopps 			break;
   1004   1.1    chopps 		}
   1005   1.1    chopps 		break;
   1006   1.3   mycroft 
   1007   1.1    chopps 	case SIOCSIFFLAGS:
   1008   1.1    chopps 		/*
   1009   1.1    chopps 		 * If interface is marked down and it is running, then stop it
   1010   1.1    chopps 		 */
   1011   1.1    chopps 		if ((ifp->if_flags & IFF_UP) == 0 &&
   1012   1.1    chopps 		    (ifp->if_flags & IFF_RUNNING) != 0) {
   1013   1.1    chopps 			/*
   1014   1.1    chopps 			 * If interface is marked down and it is running, then
   1015   1.1    chopps 			 * stop it.
   1016   1.1    chopps 			 */
   1017   1.3   mycroft 			esstop(sc);
   1018   1.1    chopps 			ifp->if_flags &= ~IFF_RUNNING;
   1019   1.1    chopps 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
   1020   1.1    chopps 		    	   (ifp->if_flags & IFF_RUNNING) == 0) {
   1021   1.1    chopps 			/*
   1022   1.1    chopps 			 * If interface is marked up and it is stopped, then
   1023   1.1    chopps 			 * start it.
   1024   1.1    chopps 			 */
   1025   1.1    chopps 			esinit(sc);
   1026   1.1    chopps 		} else {
   1027   1.1    chopps 			/*
   1028   1.1    chopps 			 * Reset the interface to pick up changes in any other
   1029   1.1    chopps 			 * flags that affect hardware registers.
   1030   1.1    chopps 			 */
   1031   1.3   mycroft 			esstop(sc);
   1032   1.1    chopps 			esinit(sc);
   1033   1.1    chopps 		}
   1034   1.1    chopps #ifdef ESDEBUG
   1035   1.1    chopps 		if (ifp->if_flags & IFF_DEBUG)
   1036   1.1    chopps 			esdebug = sc->sc_debug = 1;
   1037   1.1    chopps 		else
   1038   1.1    chopps 			esdebug = sc->sc_debug = 0;
   1039   1.1    chopps #endif
   1040   1.7    chopps 		break;
   1041   1.7    chopps 
   1042   1.7    chopps 	case SIOCADDMULTI:
   1043   1.7    chopps 	case SIOCDELMULTI:
   1044   1.7    chopps 		error = (command == SIOCADDMULTI) ?
   1045  1.17        is 		    ether_addmulti(ifr, &sc->sc_ethercom) :
   1046  1.17        is 		    ether_delmulti(ifr, &sc->sc_ethercom);
   1047   1.7    chopps 
   1048   1.7    chopps 		if (error == ENETRESET) {
   1049   1.7    chopps 			/*
   1050   1.7    chopps 			 * Multicast list has changed; set the hardware filter
   1051   1.7    chopps 			 * accordingly.
   1052   1.7    chopps 			 */
   1053   1.7    chopps 			/* XXX */
   1054   1.7    chopps 			error = 0;
   1055   1.7    chopps 		}
   1056   1.1    chopps 		break;
   1057   1.1    chopps 
   1058  1.31    mhitch 	case SIOCGIFMEDIA:
   1059  1.31    mhitch 	case SIOCSIFMEDIA:
   1060  1.31    mhitch 		error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, command);
   1061  1.31    mhitch 		break;
   1062  1.31    mhitch 
   1063   1.1    chopps 	default:
   1064   1.1    chopps 		error = EINVAL;
   1065   1.1    chopps 	}
   1066   1.1    chopps 
   1067   1.1    chopps 	splx(s);
   1068   1.1    chopps 	return (error);
   1069   1.1    chopps }
   1070   1.1    chopps 
   1071  1.29    mhitch /*
   1072  1.29    mhitch  * Reset the interface.
   1073  1.29    mhitch  */
   1074   1.1    chopps void
   1075  1.27   aymeric esreset(struct es_softc *sc)
   1076   1.1    chopps {
   1077   1.1    chopps 	int s;
   1078   1.1    chopps 
   1079   1.8   mycroft 	s = splnet();
   1080   1.3   mycroft 	esstop(sc);
   1081   1.1    chopps 	esinit(sc);
   1082   1.1    chopps 	splx(s);
   1083   1.1    chopps }
   1084   1.1    chopps 
   1085   1.3   mycroft void
   1086  1.27   aymeric eswatchdog(struct ifnet *ifp)
   1087   1.1    chopps {
   1088  1.13   thorpej 	struct es_softc *sc = ifp->if_softc;
   1089   1.1    chopps 
   1090   1.1    chopps 	log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
   1091  1.17        is 	++ifp->if_oerrors;
   1092   1.3   mycroft 
   1093   1.1    chopps 	esreset(sc);
   1094  1.31    mhitch }
   1095  1.31    mhitch 
   1096  1.31    mhitch int
   1097  1.31    mhitch esmediachange(struct ifnet *ifp)
   1098  1.31    mhitch {
   1099  1.31    mhitch 	return 0;
   1100  1.31    mhitch }
   1101  1.31    mhitch 
   1102  1.31    mhitch void
   1103  1.31    mhitch esmediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
   1104  1.31    mhitch {
   1105   1.1    chopps }
   1106