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