Home | History | Annotate | Line # | Download | only in dev
if_le.c revision 1.23
      1  1.23    gwr /*	$NetBSD: if_le.c,v 1.23 1995/10/27 15:53:39 gwr Exp $	*/
      2  1.12    cgd 
      3  1.16    gwr /*
      4  1.16    gwr  * LANCE Ethernet driver
      5   1.1  glass  *
      6  1.16    gwr  * Copyright (c) 1995 Gordon W. Ross
      7  1.16    gwr  * Copyright (c) 1994 Charles Hannum.
      8   1.1  glass  *
      9  1.16    gwr  * Copyright (C) 1993, Paul Richards. This software may be used, modified,
     10  1.16    gwr  *   copied, distributed, and sold, in both source and binary form provided
     11  1.16    gwr  *   that the above copyright and these terms are retained. Under no
     12  1.16    gwr  *   circumstances is the author responsible for the proper functioning
     13  1.16    gwr  *   of this software, nor does the author assume any responsibility
     14  1.16    gwr  *   for damages incurred with its use.
     15   1.1  glass  */
     16   1.1  glass 
     17   1.1  glass #include "bpfilter.h"
     18   1.1  glass 
     19   1.8  glass #include <sys/param.h>
     20   1.8  glass #include <sys/systm.h>
     21  1.16    gwr #include <sys/errno.h>
     22  1.16    gwr #include <sys/ioctl.h>
     23   1.8  glass #include <sys/mbuf.h>
     24   1.8  glass #include <sys/socket.h>
     25   1.8  glass #include <sys/syslog.h>
     26  1.16    gwr #include <sys/device.h>
     27   1.8  glass 
     28   1.8  glass #include <net/if.h>
     29  1.16    gwr #include <net/if_dl.h>
     30  1.16    gwr #include <net/if_types.h>
     31   1.8  glass #include <net/netisr.h>
     32  1.10    gwr 
     33   1.1  glass #ifdef INET
     34   1.8  glass #include <netinet/in.h>
     35   1.8  glass #include <netinet/in_systm.h>
     36   1.8  glass #include <netinet/in_var.h>
     37   1.8  glass #include <netinet/ip.h>
     38   1.8  glass #include <netinet/if_ether.h>
     39   1.1  glass #endif
     40   1.1  glass 
     41   1.1  glass #ifdef NS
     42   1.8  glass #include <netns/ns.h>
     43   1.8  glass #include <netns/ns_if.h>
     44   1.1  glass #endif
     45   1.1  glass 
     46  1.16    gwr #if NBPFILTER > 0
     47  1.16    gwr #include <net/bpf.h>
     48  1.16    gwr #include <net/bpfdesc.h>
     49   1.1  glass #endif
     50   1.1  glass 
     51   1.8  glass #include <machine/autoconf.h>
     52  1.10    gwr #include <machine/cpu.h>
     53   1.1  glass 
     54  1.23    gwr /*
     55  1.23    gwr  * XXX - Be warned: Most Sun3/50 and many Sun3/60 machines have
     56  1.23    gwr  * the LANCE Rev. C bug, which we MUST avoid or suffer likely
     57  1.23    gwr  * NFS file corruption and worse!  That said, if you are SURE
     58  1.23    gwr  * your LANCE is OK, you can remove this work-around using:
     59  1.23    gwr  *  	options LANCE_REVC_BUG=0
     60  1.23    gwr  * in your kernel config file.
     61  1.23    gwr  */
     62  1.23    gwr #ifndef	LANCE_REVC_BUG
     63  1.20    gwr #define	LANCE_REVC_BUG 1
     64  1.23    gwr #endif
     65  1.20    gwr 
     66  1.16    gwr /* #define	LEDEBUG	1 */
     67  1.16    gwr 
     68   1.1  glass #include "if_lereg.h"
     69   1.1  glass #include "if_le.h"
     70   1.1  glass #include "if_le_subr.h"
     71   1.1  glass 
     72  1.19    gwr #define	RMD_BITS "\20\20own\17err\16fram\15oflo\14crc\13rbuf\12stp\11enp"
     73  1.19    gwr 
     74  1.16    gwr #define	ETHER_MIN_LEN	64
     75  1.16    gwr #define	ETHER_MAX_LEN	1518
     76  1.16    gwr 
     77  1.10    gwr /*
     78  1.10    gwr  * The lance has only 24 address lines.  When it accesses memory,
     79  1.10    gwr  * the high address lines are hard-wired to 0xFF, so we must:
     80  1.10    gwr  * (1) put what we want the LANCE to see above 0xFF000000, and
     81  1.10    gwr  * (2) mask our CPU addresses down to 24 bits for the LANCE.
     82  1.10    gwr  */
     83  1.16    gwr #define	LANCE_ADDR(sc,x)	((u_int)(x) & 0xFFffff)
     84   1.1  glass 
     85  1.10    gwr #ifdef PACKETSTATS
     86  1.10    gwr long	lexpacketsizes[LEMTU+1];
     87  1.10    gwr long	lerpacketsizes[LEMTU+1];
     88  1.10    gwr #endif
     89  1.10    gwr 
     90  1.10    gwr /* autoconfiguration driver */
     91  1.15    gwr void	le_attach(struct device *, struct device *, void *);
     92  1.10    gwr 
     93  1.10    gwr struct	cfdriver lecd = {
     94  1.15    gwr 	NULL, "le", le_md_match, le_attach,
     95  1.10    gwr 	DV_IFNET, sizeof(struct le_softc),
     96  1.10    gwr };
     97  1.10    gwr 
     98  1.16    gwr int leioctl __P((struct ifnet *, u_long, caddr_t));
     99  1.17    gwr void lestart __P((struct ifnet *));
    100  1.17    gwr void lewatchdog __P((/* short */));
    101  1.16    gwr static inline void lewrcsr __P((/* struct le_softc *, u_short, u_short */));
    102  1.16    gwr static inline u_short lerdcsr __P((/* struct le_softc *, u_short */));
    103  1.16    gwr void leinit __P((struct le_softc *));
    104  1.16    gwr void lememinit __P((struct le_softc *));
    105  1.16    gwr void lereset __P((struct le_softc *));
    106  1.16    gwr void lestop __P((struct le_softc *));
    107  1.16    gwr void letint __P((struct le_softc *));
    108  1.16    gwr void lerint __P((struct le_softc *));
    109  1.16    gwr void leread __P((struct le_softc *, u_char *, int));
    110  1.16    gwr struct mbuf *leget __P((u_char *, int, struct ifnet *));
    111  1.16    gwr void lesetladrf __P((struct arpcom *, u_long *));
    112  1.16    gwr #ifdef LEDEBUG
    113  1.16    gwr void recv_print __P((struct le_softc *, int));
    114  1.16    gwr void xmit_print __P((struct le_softc *, int));
    115  1.16    gwr #endif
    116  1.16    gwr 
    117  1.16    gwr /*
    118  1.16    gwr  * Inline routines to read and write the LANCE registers.
    119  1.16    gwr  */
    120  1.16    gwr 
    121  1.16    gwr static inline void
    122  1.16    gwr lewrcsr(sc, regnum, value)
    123  1.16    gwr 	struct le_softc *sc;
    124  1.16    gwr 	u_short regnum;
    125  1.16    gwr 	u_short value;
    126  1.16    gwr {
    127  1.16    gwr 	volatile struct le_regs *regs = sc->sc_regs;
    128  1.16    gwr 
    129  1.16    gwr 	regs->lereg_addr = regnum;
    130  1.16    gwr 	regs->lereg_data = value;
    131  1.16    gwr }
    132  1.16    gwr 
    133  1.16    gwr static inline u_short
    134  1.16    gwr lerdcsr(sc, regnum)
    135  1.16    gwr 	struct le_softc *sc;
    136  1.16    gwr 	u_short regnum;
    137  1.16    gwr {
    138  1.16    gwr 	volatile struct le_regs *regs = sc->sc_regs;
    139  1.16    gwr 	u_short value;
    140  1.16    gwr 
    141  1.16    gwr 	regs->lereg_addr = regnum;
    142  1.16    gwr 	value = regs->lereg_data;
    143  1.16    gwr 
    144  1.16    gwr 	return (value);
    145  1.16    gwr }
    146  1.16    gwr 
    147  1.16    gwr /*
    148  1.16    gwr  * The probe is done in if_le_subr.c:if_md_match()
    149  1.16    gwr  */
    150   1.1  glass 
    151   1.1  glass /*
    152   1.1  glass  * Interface exists: make available by filling in network interface
    153   1.1  glass  * record.  System will initialize the interface when it is ready
    154  1.16    gwr  * to accept packets.  We get the ethernet address here.
    155   1.1  glass  */
    156  1.10    gwr void
    157  1.15    gwr le_attach(parent, self, aux)
    158  1.16    gwr 	struct device *parent, *self;
    159  1.15    gwr 	void *aux;
    160  1.10    gwr {
    161  1.16    gwr 	struct le_softc *sc = (void *)self;
    162  1.16    gwr 	struct confargs *ca = aux;
    163  1.10    gwr 	struct ifnet *ifp = &sc->sc_if;
    164  1.10    gwr 	int pri;
    165  1.10    gwr 	u_int a;
    166  1.10    gwr 
    167  1.15    gwr 	le_md_attach(parent, self, aux);
    168  1.16    gwr 	printf(" hwaddr %s\n", ether_sprintf(sc->sc_enaddr));
    169   1.1  glass 
    170  1.15    gwr 	/*
    171  1.15    gwr 	 * Initialize and attach S/W interface
    172  1.15    gwr 	 */
    173  1.10    gwr 	ifp->if_unit = sc->sc_dev.dv_unit;
    174  1.15    gwr 	ifp->if_name = lecd.cd_name;
    175   1.1  glass 	ifp->if_start = lestart;
    176  1.16    gwr 	ifp->if_ioctl = leioctl;
    177  1.16    gwr 	ifp->if_watchdog = lewatchdog;
    178  1.18    gwr 	ifp->if_flags =
    179  1.21    gwr 	    IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
    180  1.23    gwr 
    181  1.23    gwr #if LANCE_REVC_BUG == 0
    182  1.23    gwr 	/* The work-around precludes multicast... */
    183  1.21    gwr 	ifp->if_flags |= IFF_MULTICAST;
    184  1.21    gwr #endif
    185  1.18    gwr 
    186  1.18    gwr 	/* Attach the interface. */
    187  1.15    gwr 	if_attach(ifp);
    188  1.15    gwr 	ether_ifattach(ifp);
    189  1.23    gwr 
    190   1.1  glass #if NBPFILTER > 0
    191  1.18    gwr 	bpfattach(&ifp->if_bpf, ifp, DLT_EN10MB, sizeof(struct ether_header));
    192   1.1  glass #endif
    193   1.1  glass }
    194   1.1  glass 
    195  1.10    gwr void
    196  1.16    gwr lereset(sc)
    197  1.16    gwr 	struct le_softc *sc;
    198  1.10    gwr {
    199  1.10    gwr 
    200  1.16    gwr 	leinit(sc);
    201  1.16    gwr }
    202  1.10    gwr 
    203  1.17    gwr void
    204  1.16    gwr lewatchdog(unit)
    205  1.16    gwr 	short unit;
    206  1.16    gwr {
    207  1.16    gwr 	struct le_softc *sc = lecd.cd_devs[unit];
    208  1.10    gwr 
    209  1.16    gwr 	log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
    210  1.16    gwr 	++sc->sc_if.if_oerrors;
    211  1.16    gwr 	lereset(sc);
    212  1.10    gwr }
    213  1.10    gwr 
    214  1.16    gwr /* LANCE initialization block set up. */
    215  1.10    gwr void
    216  1.16    gwr lememinit(sc)
    217  1.16    gwr 	register struct le_softc *sc;
    218   1.1  glass {
    219  1.16    gwr 	struct ifnet *ifp = &sc->sc_if;
    220  1.16    gwr 	int i;
    221  1.16    gwr 	void *mem;
    222  1.16    gwr 	u_long a;
    223   1.1  glass 
    224  1.16    gwr 	/*
    225  1.16    gwr 	 * At this point we assume that the memory allocated to the Lance is
    226  1.16    gwr 	 * quadword aligned.  If it isn't then the initialisation is going
    227  1.16    gwr 	 * fail later on.
    228  1.16    gwr 	 */
    229  1.16    gwr 	mem = sc->sc_mem;
    230  1.10    gwr 
    231  1.16    gwr 	sc->sc_init = mem;
    232  1.10    gwr #if NBPFILTER > 0
    233  1.16    gwr 	if (ifp->if_flags & IFF_PROMISC)
    234  1.16    gwr 		sc->sc_init->mode = LE_NORMAL | LE_PROM;
    235  1.10    gwr 	else
    236  1.10    gwr #endif
    237  1.16    gwr 		sc->sc_init->mode = LE_NORMAL;
    238  1.10    gwr 
    239  1.16    gwr 	/* Set the Ethernet address (have to byte-swap) */
    240  1.16    gwr 	for (i = 0; i < 6; i += 2) {
    241  1.16    gwr 		sc->sc_init->padr[i] = sc->sc_enaddr[i+1];
    242  1.16    gwr 		sc->sc_init->padr[i+1] = sc->sc_enaddr[i];
    243  1.16    gwr 	}
    244  1.16    gwr 	lesetladrf(&sc->sc_ac, sc->sc_init->ladrf);
    245  1.16    gwr 	mem += sizeof(struct init_block);
    246  1.16    gwr 
    247  1.16    gwr 	sc->sc_rd = mem;
    248  1.16    gwr 	a = LANCE_ADDR(sc, mem);
    249  1.16    gwr 	sc->sc_init->rdra = a;
    250  1.16    gwr 	sc->sc_init->rlen = ((a >> 16) & 0xff) | (RLEN << 13);
    251  1.16    gwr 	mem += NRBUF * sizeof(struct mds);
    252  1.16    gwr 
    253  1.16    gwr 	sc->sc_td = mem;
    254  1.16    gwr 	a = LANCE_ADDR(sc, mem);
    255  1.16    gwr 	sc->sc_init->tdra = a;
    256  1.16    gwr 	sc->sc_init->tlen = ((a >> 16) & 0xff) | (TLEN << 13);
    257  1.16    gwr 	mem += NTBUF * sizeof(struct mds);
    258  1.10    gwr 
    259  1.16    gwr 	/*
    260  1.16    gwr 	 * Set up receive ring descriptors.
    261  1.16    gwr 	 */
    262  1.16    gwr 	sc->sc_rbuf = mem;
    263  1.16    gwr 	for (i = 0; i < NRBUF; i++) {
    264  1.16    gwr 		a = LANCE_ADDR(sc, mem);
    265  1.16    gwr 		sc->sc_rd[i].addr = a;
    266  1.16    gwr 		sc->sc_rd[i].flags = ((a >> 16) & 0xff) | LE_OWN;
    267  1.16    gwr 		sc->sc_rd[i].bcnt = -BUFSIZE;
    268  1.16    gwr 		sc->sc_rd[i].mcnt = 0;
    269  1.16    gwr 		mem += BUFSIZE;
    270  1.16    gwr 	}
    271  1.10    gwr 
    272  1.16    gwr 	/*
    273  1.16    gwr 	 * Set up transmit ring descriptors.
    274  1.10    gwr 	 */
    275  1.16    gwr 	sc->sc_tbuf = mem;
    276  1.16    gwr 	for (i = 0; i < NTBUF; i++) {
    277  1.16    gwr 		a = LANCE_ADDR(sc, mem);
    278  1.16    gwr 		sc->sc_td[i].addr = a;
    279  1.16    gwr 		sc->sc_td[i].flags= ((a >> 16) & 0xff);
    280  1.16    gwr 		sc->sc_td[i].bcnt = 0xf000;
    281  1.16    gwr 		sc->sc_td[i].mcnt = 0;
    282  1.16    gwr 		mem += BUFSIZE;
    283  1.10    gwr 	}
    284  1.16    gwr 
    285  1.16    gwr #ifdef	DIAGNOSTIC
    286  1.16    gwr 	if (mem > (sc->sc_mem + MEMSIZE))
    287  1.16    gwr 		panic("lememinit: used 0x%x\n", mem - sc->sc_mem);
    288  1.16    gwr #endif
    289  1.16    gwr }
    290  1.16    gwr 
    291  1.16    gwr void
    292  1.16    gwr lestop(sc)
    293  1.16    gwr 	struct le_softc *sc;
    294  1.16    gwr {
    295  1.16    gwr 
    296  1.16    gwr 	lewrcsr(sc, 0, LE_STOP);
    297   1.1  glass }
    298   1.1  glass 
    299  1.10    gwr /*
    300  1.16    gwr  * Initialization of interface; set up initialization block
    301  1.16    gwr  * and transmit/receive descriptor rings.
    302  1.10    gwr  */
    303  1.16    gwr void
    304  1.16    gwr leinit(sc)
    305  1.16    gwr 	register struct le_softc *sc;
    306   1.1  glass {
    307  1.16    gwr 	struct ifnet *ifp = &sc->sc_if;
    308  1.10    gwr 	int s;
    309  1.16    gwr 	register int timo;
    310  1.16    gwr 	u_long a;
    311  1.10    gwr 
    312  1.16    gwr 	s = splimp();
    313   1.1  glass 
    314  1.16    gwr 	/* Don't want to get in a weird state. */
    315  1.16    gwr 	lewrcsr(sc, 0, LE_STOP);
    316  1.16    gwr 	delay(100);
    317  1.16    gwr 
    318  1.16    gwr 	sc->sc_last_rd = sc->sc_last_td = sc->sc_no_td = 0;
    319  1.16    gwr 
    320  1.16    gwr 	/* Set up LANCE init block. */
    321  1.16    gwr 	lememinit(sc);
    322  1.16    gwr 
    323  1.16    gwr 	/* Set byte swapping etc. */
    324  1.16    gwr 	lewrcsr(sc, 3, LE_CONF3);
    325  1.16    gwr 
    326  1.16    gwr 	/* Give LANCE the physical address of its init block. */
    327  1.16    gwr 	a = LANCE_ADDR(sc, sc->sc_init);
    328  1.16    gwr 	lewrcsr(sc, 1, a);
    329  1.16    gwr 	lewrcsr(sc, 2, (a >> 16) & 0xff);
    330  1.16    gwr 
    331  1.16    gwr 	/* Try to initialize the LANCE. */
    332  1.16    gwr 	delay(100);
    333  1.16    gwr 	lewrcsr(sc, 0, LE_INIT);
    334  1.16    gwr 
    335  1.16    gwr 	/* Wait for initialization to finish. */
    336  1.16    gwr 	for (timo = 1000; timo; timo--)
    337  1.16    gwr 		if (lerdcsr(sc, 0) & LE_IDON)
    338  1.16    gwr 			break;
    339  1.10    gwr 
    340  1.16    gwr 	if (lerdcsr(sc, 0) & LE_IDON) {
    341  1.16    gwr 		/* Start the LANCE. */
    342  1.16    gwr 		lewrcsr(sc, 0, LE_INEA | LE_STRT | LE_IDON);
    343  1.16    gwr 		ifp->if_flags |= IFF_RUNNING;
    344  1.16    gwr 		ifp->if_flags &= ~IFF_OACTIVE;
    345  1.16    gwr 		lestart(ifp);
    346  1.16    gwr 	} else
    347  1.16    gwr 		printf("%s: card failed to initialize\n", sc->sc_dev.dv_xname);
    348  1.16    gwr 
    349  1.16    gwr 	(void) splx(s);
    350   1.1  glass }
    351   1.1  glass 
    352   1.1  glass /*
    353  1.16    gwr  * Controller interrupt.
    354   1.1  glass  */
    355  1.10    gwr int
    356  1.16    gwr leintr(vsc)
    357  1.16    gwr 	void *vsc;
    358   1.1  glass {
    359  1.16    gwr 	register struct le_softc *sc = vsc;
    360  1.16    gwr 	register u_short isr;
    361  1.16    gwr 
    362  1.16    gwr 	isr = lerdcsr(sc, 0);
    363  1.16    gwr #ifdef LEDEBUG
    364  1.16    gwr 	if (sc->sc_debug)
    365  1.16    gwr 		printf("%s: leintr entering with isr=%04x\n",
    366  1.16    gwr 		    sc->sc_dev.dv_xname, isr);
    367  1.16    gwr #endif
    368  1.16    gwr 	if ((isr & LE_INTR) == 0)
    369  1.16    gwr 		return 0;
    370  1.16    gwr 
    371  1.16    gwr 	do {
    372  1.16    gwr 		lewrcsr(sc, 0,
    373  1.16    gwr 		    isr & (LE_INEA | LE_BABL | LE_MISS | LE_MERR |
    374  1.16    gwr 			   LE_RINT | LE_TINT | LE_IDON));
    375  1.16    gwr 		if (isr & (LE_BABL | LE_CERR | LE_MISS | LE_MERR)) {
    376  1.16    gwr 			if (isr & LE_BABL) {
    377  1.16    gwr 				printf("%s: babble\n", sc->sc_dev.dv_xname);
    378  1.16    gwr 				sc->sc_if.if_oerrors++;
    379  1.16    gwr 			}
    380  1.16    gwr #if 0
    381  1.16    gwr 			if (isr & LE_CERR) {
    382  1.16    gwr 				printf("%s: collision error\n", sc->sc_dev.dv_xname);
    383  1.16    gwr 				sc->sc_if.if_collisions++;
    384  1.16    gwr 			}
    385  1.16    gwr #endif
    386  1.16    gwr 			if (isr & LE_MISS) {
    387  1.16    gwr #if 0
    388  1.16    gwr 				printf("%s: missed packet\n", sc->sc_dev.dv_xname);
    389  1.16    gwr #endif
    390  1.16    gwr 				sc->sc_if.if_ierrors++;
    391  1.16    gwr 			}
    392  1.16    gwr 			if (isr & LE_MERR) {
    393  1.16    gwr 				printf("%s: memory error\n", sc->sc_dev.dv_xname);
    394  1.16    gwr 				lereset(sc);
    395  1.16    gwr 				goto out;
    396  1.16    gwr 			}
    397  1.16    gwr 		}
    398  1.16    gwr 
    399  1.16    gwr 		if ((isr & LE_RXON) == 0) {
    400  1.16    gwr 			printf("%s: receiver disabled\n", sc->sc_dev.dv_xname);
    401  1.16    gwr 			sc->sc_if.if_ierrors++;
    402  1.16    gwr 			lereset(sc);
    403  1.16    gwr 			goto out;
    404  1.16    gwr 		}
    405  1.16    gwr 		if ((isr & LE_TXON) == 0) {
    406  1.16    gwr 			printf("%s: transmitter disabled\n", sc->sc_dev.dv_xname);
    407  1.16    gwr 			sc->sc_if.if_oerrors++;
    408  1.16    gwr 			lereset(sc);
    409  1.16    gwr 			goto out;
    410  1.16    gwr 		}
    411  1.16    gwr 
    412  1.16    gwr 		if (isr & LE_RINT) {
    413  1.16    gwr 			/* Reset watchdog timer. */
    414  1.16    gwr 			sc->sc_if.if_timer = 0;
    415  1.16    gwr 			lerint(sc);
    416  1.16    gwr 		}
    417  1.16    gwr 		if (isr & LE_TINT) {
    418  1.16    gwr 			/* Reset watchdog timer. */
    419  1.16    gwr 			sc->sc_if.if_timer = 0;
    420  1.16    gwr 			letint(sc);
    421  1.16    gwr 		}
    422  1.16    gwr 
    423  1.16    gwr 		isr = lerdcsr(sc, 0);
    424  1.16    gwr 	} while ((isr & LE_INTR) != 0);
    425  1.16    gwr 
    426  1.16    gwr #ifdef LEDEBUG
    427  1.16    gwr 	if (sc->sc_debug)
    428  1.16    gwr 		printf("%s: leintr returning with isr=%04x\n",
    429  1.16    gwr 		    sc->sc_dev.dv_xname, isr);
    430  1.16    gwr #endif
    431   1.1  glass 
    432  1.16    gwr out:
    433  1.16    gwr 	return 1;
    434   1.1  glass }
    435   1.1  glass 
    436  1.16    gwr #define NEXTTDS \
    437  1.16    gwr 	if (++tmd == NTBUF) tmd=0, cdm=sc->sc_td; else ++cdm
    438  1.16    gwr 
    439   1.1  glass /*
    440  1.16    gwr  * Setup output on interface.
    441  1.16    gwr  * Get another datagram to send off of the interface queue, and map it to the
    442  1.16    gwr  * interface before starting the output.
    443  1.16    gwr  * Called only at splimp or interrupt level.
    444   1.1  glass  */
    445  1.17    gwr void
    446  1.10    gwr lestart(ifp)
    447  1.16    gwr 	struct ifnet *ifp;
    448   1.1  glass {
    449  1.10    gwr 	register struct le_softc *sc = lecd.cd_devs[ifp->if_unit];
    450  1.16    gwr 	register int tmd;
    451  1.16    gwr 	volatile struct mds *cdm;
    452  1.16    gwr 	struct mbuf *m0, *m;
    453  1.16    gwr 	u_char *buffer;
    454  1.16    gwr 	int len;
    455  1.10    gwr 
    456  1.16    gwr 	if ((sc->sc_if.if_flags & (IFF_RUNNING | IFF_OACTIVE)) !=
    457  1.16    gwr 	    IFF_RUNNING)
    458  1.16    gwr 		return;
    459  1.16    gwr 
    460  1.16    gwr 	tmd = sc->sc_last_td;
    461  1.16    gwr 	cdm = &sc->sc_td[tmd];
    462  1.16    gwr 
    463  1.16    gwr 	for (;;) {
    464  1.16    gwr 		if (sc->sc_no_td >= NTBUF) {
    465  1.16    gwr 			sc->sc_if.if_flags |= IFF_OACTIVE;
    466  1.16    gwr #ifdef LEDEBUG
    467  1.16    gwr 			if (sc->sc_debug)
    468  1.16    gwr 				printf("no_td = %d, last_td = %d\n", sc->sc_no_td,
    469  1.16    gwr 				    sc->sc_last_td);
    470  1.10    gwr #endif
    471  1.16    gwr 			break;
    472  1.16    gwr 		}
    473  1.10    gwr 
    474  1.16    gwr #ifdef LEDEBUG
    475  1.16    gwr 		if (cdm->flags & LE_OWN) {
    476  1.16    gwr 			sc->sc_if.if_flags |= IFF_OACTIVE;
    477  1.16    gwr 			printf("missing buffer, no_td = %d, last_td = %d\n",
    478  1.16    gwr 			    sc->sc_no_td, sc->sc_last_td);
    479  1.16    gwr 		}
    480   1.1  glass #endif
    481  1.10    gwr 
    482  1.16    gwr 		IF_DEQUEUE(&sc->sc_if.if_snd, m);
    483  1.16    gwr 		if (!m)
    484  1.16    gwr 			break;
    485  1.10    gwr 
    486  1.16    gwr 		++sc->sc_no_td;
    487  1.16    gwr 
    488  1.16    gwr 		/*
    489  1.16    gwr 		 * Copy the mbuf chain into the transmit buffer.
    490  1.16    gwr 		 */
    491  1.16    gwr 		buffer = sc->sc_tbuf + (BUFSIZE * sc->sc_last_td);
    492  1.16    gwr 		len = 0;
    493  1.16    gwr 		for (m0 = m; m; m = m->m_next) {
    494  1.16    gwr 			bcopy(mtod(m, caddr_t), buffer, m->m_len);
    495  1.16    gwr 			buffer += m->m_len;
    496  1.16    gwr 			len += m->m_len;
    497  1.16    gwr 		}
    498  1.10    gwr 
    499  1.16    gwr #ifdef LEDEBUG
    500  1.16    gwr 		if (len > ETHER_MAX_LEN)
    501  1.16    gwr 			printf("packet length %d\n", len);
    502  1.16    gwr #endif
    503  1.10    gwr 
    504  1.16    gwr #if NBPFILTER > 0
    505  1.16    gwr 		if (sc->sc_if.if_bpf)
    506  1.16    gwr 			bpf_mtap(sc->sc_if.if_bpf, m0);
    507  1.16    gwr #endif
    508  1.15    gwr 
    509  1.16    gwr 		m_freem(m0);
    510  1.16    gwr 		len = max(len, ETHER_MIN_LEN);
    511  1.15    gwr 
    512  1.16    gwr 		/*
    513  1.16    gwr 		 * Init transmit registers, and set transmit start flag.
    514  1.16    gwr 		 */
    515  1.16    gwr 		cdm->bcnt = -len;
    516  1.16    gwr 		cdm->mcnt = 0;
    517  1.16    gwr 		cdm->flags |= LE_OWN | LE_STP | LE_ENP;
    518  1.10    gwr 
    519  1.16    gwr #ifdef LEDEBUG
    520  1.16    gwr 		if (sc->sc_debug)
    521  1.16    gwr 			xmit_print(sc, sc->sc_last_td);
    522  1.16    gwr #endif
    523  1.16    gwr 
    524  1.16    gwr 		lewrcsr(sc, 0, LE_INEA | LE_TDMD);
    525  1.10    gwr 
    526  1.16    gwr 		NEXTTDS;
    527  1.10    gwr 	}
    528  1.16    gwr 
    529  1.16    gwr 	sc->sc_last_td = tmd;
    530   1.1  glass }
    531   1.1  glass 
    532  1.10    gwr void
    533  1.16    gwr letint(sc)
    534  1.16    gwr 	struct le_softc *sc;
    535  1.10    gwr {
    536  1.16    gwr 	register int tmd = (sc->sc_last_td - sc->sc_no_td + NTBUF) % NTBUF;
    537  1.16    gwr 	volatile struct mds *cdm;
    538  1.10    gwr 
    539  1.16    gwr 	cdm = &sc->sc_td[tmd];
    540  1.16    gwr 	if (cdm->flags & LE_OWN) {
    541  1.16    gwr 		/* Race condition with loop below. */
    542  1.16    gwr #ifdef LEDEBUG
    543  1.16    gwr 		if (sc->sc_debug)
    544  1.16    gwr 			printf("%s: extra tint\n", sc->sc_dev.dv_xname);
    545  1.16    gwr #endif
    546   1.1  glass 		return;
    547   1.1  glass 	}
    548  1.16    gwr 
    549  1.16    gwr 	sc->sc_if.if_flags &= ~IFF_OACTIVE;
    550  1.16    gwr 
    551  1.16    gwr 	do {
    552  1.16    gwr 		if (sc->sc_no_td <= 0)
    553  1.16    gwr 			break;
    554  1.16    gwr #ifdef LEDEBUG
    555  1.16    gwr 		if (sc->sc_debug)
    556  1.16    gwr 			printf("trans cdm = %x\n", cdm);
    557  1.16    gwr #endif
    558  1.16    gwr 		sc->sc_if.if_opackets++;
    559  1.16    gwr 		--sc->sc_no_td;
    560  1.16    gwr 		if (cdm->mcnt & (LE_TBUFF | LE_UFLO | LE_LCOL | LE_LCAR | LE_RTRY)) {
    561  1.16    gwr 			if (cdm->mcnt & LE_TBUFF)
    562  1.16    gwr 				printf("%s: transmit buffer error\n", sc->sc_dev.dv_xname);
    563  1.16    gwr 			if ((cdm->mcnt & (LE_TBUFF | LE_UFLO)) == LE_UFLO)
    564  1.16    gwr 				printf("%s: underflow\n", sc->sc_dev.dv_xname);
    565  1.16    gwr 			if (cdm->mcnt & LE_UFLO) {
    566  1.16    gwr 				lereset(sc);
    567  1.16    gwr 				return;
    568  1.16    gwr 			}
    569  1.16    gwr #if 0
    570  1.16    gwr 			if (cdm->mcnt & LE_LCOL) {
    571  1.16    gwr 				printf("%s: late collision\n", sc->sc_dev.dv_xname);
    572  1.16    gwr 				sc->sc_if.if_collisions++;
    573  1.16    gwr 			}
    574  1.16    gwr 			if (cdm->mcnt & LE_LCAR)
    575  1.16    gwr 				printf("%s: lost carrier\n", sc->sc_dev.dv_xname);
    576  1.16    gwr 			if (cdm->mcnt & LE_RTRY) {
    577  1.16    gwr 				printf("%s: excessive collisions, tdr %d\n",
    578  1.16    gwr 				    sc->sc_dev.dv_xname, cdm->flags & 0x1ff);
    579  1.16    gwr 				sc->sc_if.if_collisions += 16;
    580  1.16    gwr 			}
    581  1.16    gwr #endif
    582  1.16    gwr 		} else if (cdm->flags & LE_ONE)
    583  1.10    gwr 			sc->sc_if.if_collisions++;
    584  1.16    gwr 		else if (cdm->flags & LE_MORE)
    585  1.16    gwr 			/* Real number is unknown. */
    586  1.16    gwr 			sc->sc_if.if_collisions += 2;
    587  1.16    gwr 		NEXTTDS;
    588  1.16    gwr 	} while ((cdm->flags & LE_OWN) == 0);
    589  1.16    gwr 
    590  1.10    gwr 	lestart(&sc->sc_if);
    591   1.1  glass }
    592   1.1  glass 
    593  1.16    gwr #define NEXTRDS \
    594  1.16    gwr 	if (++rmd == NRBUF) rmd=0, cdm=sc->sc_rd; else ++cdm
    595  1.16    gwr 
    596  1.16    gwr /* only called from one place, so may as well integrate */
    597  1.10    gwr void
    598  1.10    gwr lerint(sc)
    599  1.16    gwr 	struct le_softc *sc;
    600   1.1  glass {
    601  1.16    gwr 	register int rmd = sc->sc_last_rd;
    602  1.16    gwr 	volatile struct mds *cdm;
    603   1.1  glass 
    604  1.16    gwr 	cdm = &sc->sc_rd[rmd];
    605  1.16    gwr 	if (cdm->flags & LE_OWN) {
    606  1.16    gwr 		/* Race condition with loop below. */
    607  1.16    gwr #ifdef LEDEBUG
    608  1.16    gwr 		if (sc->sc_debug)
    609  1.16    gwr 			printf("%s: extra rint\n", sc->sc_dev.dv_xname);
    610  1.16    gwr #endif
    611  1.16    gwr 		return;
    612  1.16    gwr 	}
    613   1.1  glass 
    614  1.16    gwr 	/* Process all buffers with valid data. */
    615  1.16    gwr 	do {
    616  1.19    gwr 		if (cdm->flags & LE_ERR) {
    617  1.19    gwr #ifdef	LEDEBUG
    618  1.19    gwr 			/*
    619  1.19    gwr 			 * XXX - These happen a LOT on the Sun3/50 so
    620  1.19    gwr 			 * it is really NOT appropriate to print them.
    621  1.19    gwr 			 */
    622  1.19    gwr 			printf("%s: error, cdm->flags=%b\n",
    623  1.19    gwr 				sc->sc_dev.dv_xname, cdm->flags, RMD_BITS);
    624  1.19    gwr #endif
    625  1.19    gwr 			sc->sc_if.if_ierrors++;
    626  1.16    gwr 		} else if (cdm->flags & (LE_STP | LE_ENP) != (LE_STP | LE_ENP)) {
    627   1.1  glass 			do {
    628  1.16    gwr 				cdm->mcnt = 0;
    629  1.16    gwr 				cdm->flags |= LE_OWN;
    630  1.16    gwr 				NEXTRDS;
    631  1.16    gwr 			} while ((cdm->flags & (LE_OWN | LE_ERR | LE_STP | LE_ENP)) == 0);
    632  1.16    gwr 			sc->sc_last_rd = rmd;
    633  1.16    gwr 			printf("%s: chained buffer\n", sc->sc_dev.dv_xname);
    634  1.16    gwr 			if ((cdm->flags & (LE_OWN | LE_ERR | LE_STP | LE_ENP)) != LE_ENP) {
    635  1.16    gwr 				lereset(sc);
    636   1.1  glass 				return;
    637   1.1  glass 			}
    638  1.10    gwr 		} else {
    639  1.16    gwr #ifdef LEDEBUG
    640  1.16    gwr 			if (sc->sc_debug)
    641  1.16    gwr 				recv_print(sc, sc->sc_last_rd);
    642  1.16    gwr #endif
    643  1.16    gwr 			leread(sc, sc->sc_rbuf + (BUFSIZE * rmd),
    644  1.16    gwr 			    (int)cdm->mcnt);
    645  1.16    gwr 		}
    646  1.16    gwr 
    647  1.16    gwr 		cdm->bcnt = -BUFSIZE;
    648  1.16    gwr 		cdm->mcnt = 0;
    649  1.16    gwr 		cdm->flags |= LE_OWN;
    650  1.16    gwr 		NEXTRDS;
    651  1.16    gwr #ifdef LEDEBUG
    652  1.16    gwr 		if (sc->sc_debug)
    653  1.16    gwr 			printf("sc->sc_last_rd = %x, cdm = %x\n",
    654  1.16    gwr 			    sc->sc_last_rd, cdm);
    655  1.10    gwr #endif
    656  1.16    gwr 	} while ((cdm->flags & LE_OWN) == 0);
    657  1.16    gwr 
    658  1.16    gwr 	sc->sc_last_rd = rmd;
    659   1.1  glass }
    660   1.1  glass 
    661  1.16    gwr /*
    662  1.16    gwr  * Pass a packet to the higher levels.
    663  1.16    gwr  */
    664  1.10    gwr void
    665  1.16    gwr leread(sc, buf, len)
    666  1.10    gwr 	register struct le_softc *sc;
    667  1.16    gwr 	u_char *buf;
    668   1.1  glass 	int len;
    669   1.1  glass {
    670  1.16    gwr 	struct ifnet *ifp;
    671  1.10    gwr 	struct mbuf *m;
    672  1.16    gwr 	struct ether_header *eh;
    673  1.16    gwr 
    674  1.23    gwr 	ifp = &sc->sc_if;
    675  1.20    gwr 
    676  1.23    gwr 	if ((len < ETHERMIN) || (len > ETHER_MAX_LEN)) {
    677  1.23    gwr 		log(LOG_ERR, "%s: invalid packet size %d; dropping\n",
    678  1.23    gwr 		    sc->sc_dev.dv_xname, len);
    679  1.23    gwr 		ifp->if_ierrors++;
    680  1.21    gwr 		return;
    681  1.20    gwr 	}
    682   1.1  glass 
    683  1.16    gwr 	/* Pull packet off interface. */
    684  1.16    gwr 	m = leget(buf, len, ifp);
    685  1.23    gwr 	if (m == 0) {
    686  1.23    gwr 		ifp->if_ierrors++;
    687   1.1  glass 		return;
    688  1.23    gwr 	}
    689  1.23    gwr 
    690  1.23    gwr 	ifp->if_ipackets++;
    691  1.10    gwr 
    692  1.16    gwr 	/* We assume that the header fit entirely in one mbuf. */
    693  1.16    gwr 	eh = mtod(m, struct ether_header *);
    694  1.10    gwr 
    695   1.1  glass #if NBPFILTER > 0
    696   1.1  glass 	/*
    697  1.16    gwr 	 * Check if there's a BPF listener on this interface.
    698  1.16    gwr 	 * If so, hand off the raw packet to BPF.
    699   1.1  glass 	 */
    700  1.10    gwr 	if (ifp->if_bpf) {
    701  1.23    gwr 		/* Note that BPF may see garbage! (if LANCE_REVC_BUG) */
    702  1.16    gwr 		bpf_mtap(ifp->if_bpf, m);
    703  1.23    gwr 	}
    704  1.23    gwr #endif	/* NBPFILTER */
    705  1.16    gwr 
    706  1.23    gwr #if LANCE_REVC_BUG
    707  1.23    gwr 	/*
    708  1.23    gwr 	 * Check for unreported packet errors.  Rev C of the LANCE chip
    709  1.23    gwr 	 * has a bug which can cause "random" bytes to be prepended to
    710  1.23    gwr 	 * the start of the packet.  The work-around is to make sure that
    711  1.23    gwr 	 * the Ethernet destination address in the packet matches our
    712  1.23    gwr 	 * address (or the broadcast address).  Must ALWAYS check!
    713  1.23    gwr 	 */
    714  1.23    gwr 	if (bcmp(eh->ether_dhost, sc->sc_enaddr, 6) &&
    715  1.23    gwr 	    bcmp(eh->ether_dhost, etherbroadcastaddr, 6))
    716  1.23    gwr 	{
    717  1.23    gwr 		/* Not for us. */
    718  1.23    gwr 		m_freem(m);
    719  1.23    gwr 		return;
    720  1.23    gwr 	}
    721  1.23    gwr #else	/* LANCE_REVC_BUG */
    722  1.23    gwr #if NBPFILTER > 0
    723  1.23    gwr 	if (ifp->if_bpf) {
    724  1.16    gwr 		/*
    725  1.16    gwr 		 * Note that the interface cannot be in promiscuous mode if
    726  1.16    gwr 		 * there are no BPF listeners.  And if we are in promiscuous
    727  1.16    gwr 		 * mode, we have to check if this packet is really ours.
    728  1.16    gwr 		 */
    729  1.16    gwr 		if ((ifp->if_flags & IFF_PROMISC) &&
    730  1.16    gwr 		    (eh->ether_dhost[0] & 1) == 0 && /* !mcast and !bcast */
    731  1.23    gwr 		    bcmp(eh->ether_dhost, sc->sc_enaddr, 6) != 0)
    732  1.23    gwr 		{
    733  1.16    gwr 			m_freem(m);
    734   1.1  glass 			return;
    735  1.16    gwr 		}
    736   1.1  glass 	}
    737  1.23    gwr #endif	/* NBPFILTER */
    738  1.23    gwr #endif	/* LANCE_REVC_BUG */
    739  1.16    gwr 
    740  1.23    gwr 	/* Pass the packet up, with the ether header sort-of removed. */
    741  1.23    gwr 	m_adj(m, sizeof(struct ether_header));
    742  1.16    gwr 	ether_input(ifp, eh, m);
    743   1.1  glass }
    744   1.1  glass 
    745   1.1  glass /*
    746  1.16    gwr  * Supporting routines
    747   1.1  glass  */
    748   1.1  glass 
    749   1.1  glass /*
    750  1.16    gwr  * Pull data off an interface.
    751  1.16    gwr  * Len is length of data, with local net header stripped.
    752  1.16    gwr  * We copy the data into mbufs.  When full cluster sized units are present
    753  1.16    gwr  * we copy into clusters.
    754   1.1  glass  */
    755   1.1  glass struct mbuf *
    756  1.16    gwr leget(buf, totlen, ifp)
    757  1.16    gwr 	u_char *buf;
    758  1.16    gwr 	int totlen;
    759   1.1  glass 	struct ifnet *ifp;
    760   1.1  glass {
    761  1.16    gwr 	struct mbuf *top, **mp, *m;
    762  1.16    gwr 	int len;
    763   1.1  glass 
    764   1.1  glass 	MGETHDR(m, M_DONTWAIT, MT_DATA);
    765   1.1  glass 	if (m == 0)
    766  1.16    gwr 		return 0;
    767   1.1  glass 	m->m_pkthdr.rcvif = ifp;
    768   1.1  glass 	m->m_pkthdr.len = totlen;
    769  1.16    gwr 	len = MHLEN;
    770  1.16    gwr 	top = 0;
    771  1.16    gwr 	mp = &top;
    772   1.1  glass 
    773   1.1  glass 	while (totlen > 0) {
    774   1.1  glass 		if (top) {
    775   1.1  glass 			MGET(m, M_DONTWAIT, MT_DATA);
    776   1.1  glass 			if (m == 0) {
    777   1.1  glass 				m_freem(top);
    778  1.16    gwr 				return 0;
    779   1.1  glass 			}
    780  1.16    gwr 			len = MLEN;
    781   1.1  glass 		}
    782  1.16    gwr 		if (totlen >= MINCLSIZE) {
    783   1.1  glass 			MCLGET(m, M_DONTWAIT);
    784   1.1  glass 			if (m->m_flags & M_EXT)
    785  1.16    gwr 				len = MCLBYTES;
    786   1.1  glass 		}
    787  1.16    gwr 		m->m_len = len = min(totlen, len);
    788  1.16    gwr 		bcopy((caddr_t)buf, mtod(m, caddr_t), len);
    789  1.16    gwr 		buf += len;
    790  1.16    gwr 		totlen -= len;
    791   1.1  glass 		*mp = m;
    792   1.1  glass 		mp = &m->m_next;
    793   1.1  glass 	}
    794  1.16    gwr 
    795  1.16    gwr 	return top;
    796   1.1  glass }
    797   1.1  glass 
    798   1.1  glass /*
    799   1.1  glass  * Process an ioctl request.
    800   1.1  glass  */
    801  1.10    gwr int
    802   1.1  glass leioctl(ifp, cmd, data)
    803   1.1  glass 	register struct ifnet *ifp;
    804  1.14    gwr 	u_long cmd;
    805   1.1  glass 	caddr_t data;
    806   1.1  glass {
    807  1.16    gwr 	struct le_softc *sc = lecd.cd_devs[ifp->if_unit];
    808  1.16    gwr 	struct ifaddr *ifa = (struct ifaddr *)data;
    809  1.16    gwr 	struct ifreq *ifr = (struct ifreq *)data;
    810  1.16    gwr 	int s, error = 0;
    811  1.10    gwr 
    812  1.16    gwr 	s = splimp();
    813   1.1  glass 
    814   1.1  glass 	switch (cmd) {
    815   1.1  glass 
    816   1.1  glass 	case SIOCSIFADDR:
    817   1.1  glass 		ifp->if_flags |= IFF_UP;
    818  1.16    gwr 
    819   1.1  glass 		switch (ifa->ifa_addr->sa_family) {
    820   1.1  glass #ifdef INET
    821   1.1  glass 		case AF_INET:
    822  1.18    gwr 			leinit(sc);
    823  1.18    gwr 			arp_ifinit(&sc->sc_ac, ifa);
    824   1.1  glass 			break;
    825   1.1  glass #endif
    826   1.1  glass #ifdef NS
    827  1.16    gwr 		/* XXX - This code is probably wrong. */
    828   1.1  glass 		case AF_NS:
    829   1.1  glass 		    {
    830  1.16    gwr 			register struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
    831   1.1  glass 
    832   1.1  glass 			if (ns_nullhost(*ina))
    833  1.16    gwr 				ina->x_host =
    834  1.16    gwr 				    *(union ns_host *)(sc->sc_enaddr);
    835  1.16    gwr 			else
    836  1.16    gwr 				bcopy(ina->x_host.c_host,
    837  1.16    gwr 				    sc->sc_enaddr,
    838  1.16    gwr 				    sizeof(sc->sc_enaddr));
    839  1.16    gwr 			/* Set new address. */
    840  1.16    gwr 			leinit(sc);
    841   1.1  glass 			break;
    842   1.1  glass 		    }
    843   1.1  glass #endif
    844   1.1  glass 		default:
    845  1.16    gwr 			leinit(sc);
    846   1.1  glass 			break;
    847   1.1  glass 		}
    848   1.1  glass 		break;
    849   1.1  glass 
    850   1.1  glass 	case SIOCSIFFLAGS:
    851  1.16    gwr 		/*
    852  1.16    gwr 		 * If interface is marked down and it is running, then stop it
    853  1.16    gwr 		 */
    854   1.1  glass 		if ((ifp->if_flags & IFF_UP) == 0 &&
    855  1.16    gwr 		    (ifp->if_flags & IFF_RUNNING) != 0) {
    856  1.16    gwr 			/*
    857  1.16    gwr 			 * If interface is marked down and it is running, then
    858  1.16    gwr 			 * stop it.
    859  1.16    gwr 			 */
    860  1.16    gwr 			lestop(sc);
    861   1.1  glass 			ifp->if_flags &= ~IFF_RUNNING;
    862  1.16    gwr 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
    863  1.16    gwr 		    	   (ifp->if_flags & IFF_RUNNING) == 0) {
    864  1.16    gwr 			/*
    865  1.16    gwr 			 * If interface is marked up and it is stopped, then
    866  1.16    gwr 			 * start it.
    867  1.16    gwr 			 */
    868  1.16    gwr 			leinit(sc);
    869  1.16    gwr 		} else {
    870  1.16    gwr 			/*
    871  1.16    gwr 			 * Reset the interface to pick up changes in any other
    872  1.16    gwr 			 * flags that affect hardware registers.
    873  1.16    gwr 			 */
    874  1.16    gwr 			/*lestop(sc);*/
    875  1.16    gwr 			leinit(sc);
    876  1.10    gwr 		}
    877  1.16    gwr #ifdef LEDEBUG
    878  1.16    gwr 		if (ifp->if_flags & IFF_DEBUG)
    879  1.16    gwr 			sc->sc_debug = 1;
    880  1.16    gwr 		else
    881  1.16    gwr 			sc->sc_debug = 0;
    882  1.16    gwr #endif
    883  1.10    gwr 		break;
    884  1.10    gwr 
    885  1.10    gwr 	case SIOCADDMULTI:
    886  1.16    gwr 	case SIOCDELMULTI:
    887  1.16    gwr 		error = (cmd == SIOCADDMULTI) ?
    888  1.16    gwr 		    ether_addmulti(ifr, &sc->sc_ac):
    889  1.16    gwr 		    ether_delmulti(ifr, &sc->sc_ac);
    890  1.10    gwr 
    891  1.10    gwr 		if (error == ENETRESET) {
    892  1.10    gwr 			/*
    893  1.16    gwr 			 * Multicast list has changed; set the hardware filter
    894  1.16    gwr 			 * accordingly.
    895  1.10    gwr 			 */
    896  1.16    gwr 			leinit(sc);
    897  1.10    gwr 			error = 0;
    898   1.1  glass 		}
    899   1.1  glass 		break;
    900   1.1  glass 
    901   1.1  glass 	default:
    902   1.1  glass 		error = EINVAL;
    903   1.1  glass 	}
    904  1.16    gwr 	(void) splx(s);
    905  1.16    gwr 	return error;
    906  1.16    gwr }
    907  1.16    gwr 
    908  1.16    gwr #ifdef LEDEBUG
    909  1.16    gwr void
    910  1.16    gwr recv_print(sc, no)
    911  1.16    gwr 	struct le_softc *sc;
    912  1.16    gwr 	int no;
    913  1.16    gwr {
    914  1.16    gwr 	struct mds *rmd;
    915  1.16    gwr 	int i, printed = 0;
    916  1.16    gwr 	u_short len;
    917  1.16    gwr 
    918  1.16    gwr 	rmd = &sc->sc_rd[no];
    919  1.16    gwr 	len = rmd->mcnt;
    920  1.16    gwr 	printf("%s: receive buffer %d, len = %d\n", sc->sc_dev.dv_xname, no,
    921  1.16    gwr 	    len);
    922  1.16    gwr 	printf("%s: status %x\n", sc->sc_dev.dv_xname, lerdcsr(sc, 0));
    923  1.16    gwr 	for (i = 0; i < len; i++) {
    924  1.16    gwr 		if (!printed) {
    925  1.16    gwr 			printed = 1;
    926  1.16    gwr 			printf("%s: data: ", sc->sc_dev.dv_xname);
    927  1.16    gwr 		}
    928  1.16    gwr 		printf("%x ", *(sc->sc_rbuf + (BUFSIZE*no) + i));
    929  1.16    gwr 	}
    930  1.16    gwr 	if (printed)
    931  1.16    gwr 		printf("\n");
    932  1.16    gwr }
    933  1.16    gwr 
    934  1.16    gwr void
    935  1.16    gwr xmit_print(sc, no)
    936  1.16    gwr 	struct le_softc *sc;
    937  1.16    gwr 	int no;
    938  1.16    gwr {
    939  1.16    gwr 	struct mds *rmd;
    940  1.16    gwr 	int i, printed=0;
    941  1.16    gwr 	u_short len;
    942  1.16    gwr 
    943  1.16    gwr 	rmd = &sc->sc_td[no];
    944  1.16    gwr 	len = -rmd->bcnt;
    945  1.16    gwr 	printf("%s: transmit buffer %d, len = %d\n", sc->sc_dev.dv_xname, no,
    946  1.16    gwr 	    len);
    947  1.16    gwr 	printf("%s: status %x\n", sc->sc_dev.dv_xname, lerdcsr(sc, 0));
    948  1.16    gwr 	printf("%s: addr %x, flags %x, bcnt %x, mcnt %x\n",
    949  1.16    gwr 	    sc->sc_dev.dv_xname, rmd->addr, rmd->flags, rmd->bcnt, rmd->mcnt);
    950  1.16    gwr 	for (i = 0; i < len; i++)  {
    951  1.16    gwr 		if (!printed) {
    952  1.16    gwr 			printed = 1;
    953  1.16    gwr 			printf("%s: data: ", sc->sc_dev.dv_xname);
    954  1.16    gwr 		}
    955  1.16    gwr 		printf("%x ", *(sc->sc_tbuf + (BUFSIZE*no) + i));
    956  1.16    gwr 	}
    957  1.16    gwr 	if (printed)
    958  1.16    gwr 		printf("\n");
    959   1.1  glass }
    960  1.16    gwr #endif /* LEDEBUG */
    961   1.1  glass 
    962  1.16    gwr /*
    963  1.16    gwr  * Set up the logical address filter.
    964  1.16    gwr  */
    965  1.10    gwr void
    966  1.16    gwr lesetladrf(ac, af)
    967  1.16    gwr 	struct arpcom *ac;
    968  1.16    gwr 	u_long *af;
    969   1.1  glass {
    970  1.16    gwr 	struct ifnet *ifp = &ac->ac_if;
    971  1.16    gwr 	struct ether_multi *enm;
    972  1.16    gwr 	register u_char *cp, c;
    973  1.16    gwr 	register u_long crc;
    974  1.16    gwr 	register int i, len;
    975  1.16    gwr 	struct ether_multistep step;
    976   1.1  glass 
    977   1.1  glass 	/*
    978  1.16    gwr 	 * Set up multicast address filter by passing all multicast addresses
    979  1.16    gwr 	 * through a crc generator, and then using the high order 6 bits as an
    980  1.16    gwr 	 * index into the 64 bit logical address filter.  The high order bit
    981  1.16    gwr 	 * selects the word, while the rest of the bits select the bit within
    982  1.16    gwr 	 * the word.
    983   1.1  glass 	 */
    984   1.1  glass 
    985  1.16    gwr 	if (ifp->if_flags & IFF_PROMISC) {
    986  1.16    gwr 		ifp->if_flags |= IFF_ALLMULTI;
    987  1.16    gwr 		af[0] = af[1] = 0xffffffff;
    988   1.1  glass 		return;
    989  1.16    gwr 	}
    990   1.1  glass 
    991  1.16    gwr 	af[0] = af[1] = 0;
    992  1.16    gwr 	ETHER_FIRST_MULTI(step, ac, enm);
    993  1.16    gwr 	while (enm != NULL) {
    994  1.16    gwr 		if (bcmp(enm->enm_addrlo, enm->enm_addrhi,
    995  1.16    gwr 		    sizeof(enm->enm_addrlo)) != 0) {
    996  1.16    gwr 			/*
    997  1.16    gwr 			 * We must listen to a range of multicast addresses.
    998  1.16    gwr 			 * For now, just accept all multicasts, rather than
    999  1.16    gwr 			 * trying to set only those filter bits needed to match
   1000  1.16    gwr 			 * the range.  (At this time, the only use of address
   1001  1.16    gwr 			 * ranges is for IP multicast routing, for which the
   1002  1.16    gwr 			 * range is big enough to require all bits set.)
   1003  1.16    gwr 			 */
   1004  1.16    gwr 			ifp->if_flags |= IFF_ALLMULTI;
   1005  1.16    gwr 			af[0] = af[1] = 0xffffffff;
   1006  1.16    gwr 			return;
   1007  1.16    gwr 		}
   1008   1.1  glass 
   1009  1.16    gwr 		cp = enm->enm_addrlo;
   1010  1.16    gwr 		crc = 0xffffffff;
   1011  1.16    gwr 		for (len = sizeof(enm->enm_addrlo); --len >= 0;) {
   1012  1.16    gwr 			c = *cp++;
   1013  1.16    gwr 			for (i = 8; --i >= 0;) {
   1014  1.16    gwr 				if ((crc & 0x01) ^ (c & 0x01)) {
   1015  1.16    gwr 					crc >>= 1;
   1016  1.16    gwr 					crc ^= 0x6db88320 | 0x80000000;
   1017  1.16    gwr 				} else
   1018  1.16    gwr 					crc >>= 1;
   1019  1.16    gwr 				c >>= 1;
   1020  1.16    gwr 			}
   1021  1.16    gwr 		}
   1022  1.16    gwr 		/* Just want the 6 most significant bits. */
   1023  1.16    gwr 		crc >>= 26;
   1024   1.1  glass 
   1025  1.16    gwr 		/* Turn on the corresponding bit in the filter. */
   1026  1.16    gwr 		af[crc >> 5] |= 1 << ((crc & 0x1f) ^ 0);
   1027   1.1  glass 
   1028  1.16    gwr 		ETHER_NEXT_MULTI(step, enm);
   1029  1.16    gwr 	}
   1030  1.16    gwr 	ifp->if_flags &= ~IFF_ALLMULTI;
   1031   1.1  glass }
   1032